(&mut self, label: Label)
| 147 | } |
| 148 | |
| 149 | fn get_or_create_block(&mut self, label: Label) -> Block { |
| 150 | let builder = &mut self.builder; |
| 151 | *self |
| 152 | .label_to_block |
| 153 | .entry(label) |
| 154 | .or_insert_with(|| builder.create_block()) |
| 155 | } |
| 156 | |
| 157 | fn jump_target_forward(offset: u32, caches: u32, arg: OpArg) -> Result<Label, JitCompileError> { |
| 158 | let after = offset |
no outgoing calls
no test coverage detected