| 5578 | } |
| 5579 | |
| 5580 | void JitArmV8CodeGen::JumpInBlock(U32 address) { |
| 5581 | Label label; |
| 5582 | if (!opLabels.get(address, label)) { |
| 5583 | label = compiler.new_label(); |
| 5584 | opLabels.set(address, label); |
| 5585 | } |
| 5586 | compiler.b(label); |
| 5587 | } |
| 5588 | |
| 5589 | void JitArmV8CodeGen::StartElse() { |
| 5590 | Label label = compiler.new_label(); |