Index: src/compiler/arm64/code-generator-arm64.cc |
diff --git a/src/compiler/arm64/code-generator-arm64.cc b/src/compiler/arm64/code-generator-arm64.cc |
index 74b4bd96718fb1fbdc2c44cc4927540c64100749..2b5995f3309762ebabd20dd1a7fd43dfb9dc42d2 100644 |
--- a/src/compiler/arm64/code-generator-arm64.cc |
+++ b/src/compiler/arm64/code-generator-arm64.cc |
@@ -214,7 +214,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
break; |
} |
case kArchJmp: |
- __ B(GetLabel(i.InputRpo(0))); |
+ AssembleArchJump(i.InputRpo(0)); |
break; |
case kArchNop: |
// don't emit code for nops. |
@@ -612,21 +612,11 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
// Assemble branches after this instruction. |
-void CodeGenerator::AssembleArchBranch(Instruction* instr, |
- FlagsCondition condition) { |
+void CodeGenerator::AssembleArchBranch(Instruction* instr, BranchInfo* branch) { |
Arm64OperandConverter i(this, instr); |
- Label done; |
- |
- // Emit a branch. The true and false targets are always the last two inputs |
- // to the instruction. |
- BasicBlock::RpoNumber tblock = |
- i.InputRpo(static_cast<int>(instr->InputCount()) - 2); |
- BasicBlock::RpoNumber fblock = |
- i.InputRpo(static_cast<int>(instr->InputCount()) - 1); |
- bool fallthru = IsNextInAssemblyOrder(fblock); |
- Label* tlabel = GetLabel(tblock); |
- Label* flabel = fallthru ? &done : GetLabel(fblock); |
- switch (condition) { |
+ Label* tlabel = branch->true_label; |
+ Label* flabel = branch->false_label; |
+ switch (branch->condition) { |
case kUnorderedEqual: |
__ B(vs, flabel); |
// Fall through. |
@@ -682,8 +672,12 @@ void CodeGenerator::AssembleArchBranch(Instruction* instr, |
__ B(vc, tlabel); |
break; |
} |
- if (!fallthru) __ B(flabel); // no fallthru to flabel. |
- __ Bind(&done); |
+ if (!branch->fallthru) __ B(flabel); // no fallthru to flabel. |
+} |
+ |
+ |
+void CodeGenerator::AssembleArchJump(BasicBlock::RpoNumber target) { |
+ if (!IsNextInAssemblyOrder(target)) __ B(GetLabel(target)); |
} |