| 4564 | } |
| 4565 | |
| 4566 | void JitX86CodeGen::JumpInBlock(U32 address) { |
| 4567 | Label label; |
| 4568 | if (!opLabels.get(address, label)) { |
| 4569 | label = compiler.new_label(); |
| 4570 | opLabels.set(address, label); |
| 4571 | } |
| 4572 | |
| 4573 | compiler.jmp(label); |
| 4574 | } |
| 4575 | |
| 4576 | void JitX86CodeGen::StartElse() { |
| 4577 | Label label = compiler.new_label(); |