Index: test/cctest/compiler/test-instruction-selector-arm.cc |
diff --git a/test/cctest/compiler/test-instruction-selector-arm.cc b/test/cctest/compiler/test-instruction-selector-arm.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4dcf21728e5abad9bcc428db6c5211081b7b8813 |
--- /dev/null |
+++ b/test/cctest/compiler/test-instruction-selector-arm.cc |
@@ -0,0 +1,977 @@ |
+// Copyright 2014 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include <list> |
+ |
+#include "test/cctest/compiler/instruction-selector-tester.h" |
+ |
+using namespace v8::internal; |
+using namespace v8::internal::compiler; |
+ |
+namespace { |
+ |
+typedef RawMachineAssembler::Label MLabel; |
+ |
+struct DPI { |
+ Operator* op; |
+ ArchOpcode arch_opcode; |
+ ArchOpcode reverse_arch_opcode; |
+ ArchOpcode test_arch_opcode; |
+}; |
+ |
+ |
+// ARM data processing instructions. |
+class DPIs V8_FINAL : public std::list<DPI>, private HandleAndZoneScope { |
+ public: |
+ DPIs() { |
+ MachineOperatorBuilder machine(main_zone()); |
+ DPI and_ = {machine.Word32And(), kArmAnd, kArmAnd, kArmTst}; |
+ push_back(and_); |
+ DPI or_ = {machine.Word32Or(), kArmOrr, kArmOrr, kArmOrr}; |
+ push_back(or_); |
+ DPI xor_ = {machine.Word32Xor(), kArmEor, kArmEor, kArmTeq}; |
+ push_back(xor_); |
+ DPI add = {machine.Int32Add(), kArmAdd, kArmAdd, kArmCmn}; |
+ push_back(add); |
+ DPI sub = {machine.Int32Sub(), kArmSub, kArmRsb, kArmCmp}; |
+ push_back(sub); |
+ } |
+}; |
+ |
+ |
+// ARM immediates. |
+class Immediates V8_FINAL : public std::list<int32_t> { |
+ public: |
+ Immediates() { |
+ for (uint32_t imm8 = 0; imm8 < 256; ++imm8) { |
+ for (uint32_t rot4 = 0; rot4 < 32; rot4 += 2) { |
+ int32_t imm = (imm8 >> rot4) | (imm8 << (32 - rot4)); |
+ CHECK(Assembler::ImmediateFitsAddrMode1Instruction(imm)); |
+ push_back(imm); |
+ } |
+ } |
+ } |
+}; |
+ |
+ |
+struct Shift { |
+ Operator* op; |
+ int32_t i_low; // lowest possible immediate |
+ int32_t i_high; // highest possible immediate |
+ AddressingMode i_mode; // Operand2_R_<shift>_I |
+ AddressingMode r_mode; // Operand2_R_<shift>_R |
+}; |
+ |
+ |
+// ARM shifts. |
+class Shifts V8_FINAL : public std::list<Shift>, private HandleAndZoneScope { |
+ public: |
+ Shifts() { |
+ MachineOperatorBuilder machine(main_zone()); |
+ Shift sar = {machine.Word32Sar(), 1, 32, kMode_Operand2_R_ASR_I, |
+ kMode_Operand2_R_ASR_R}; |
+ Shift shl = {machine.Word32Shl(), 0, 31, kMode_Operand2_R_LSL_I, |
+ kMode_Operand2_R_LSL_R}; |
+ Shift shr = {machine.Word32Shr(), 1, 32, kMode_Operand2_R_LSR_I, |
+ kMode_Operand2_R_LSR_R}; |
+ push_back(sar); |
+ push_back(shl); |
+ push_back(shr); |
+ } |
+}; |
+ |
+} // namespace |
+ |
+ |
+TEST(InstructionSelectorDPIP) { |
+ DPIs dpis; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorDPIAndShiftP) { |
+ DPIs dpis; |
+ Shifts shifts; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ for (Shifts::const_iterator j = shifts.begin(); j != shifts.end(); ++j) { |
+ Shift shift = *j; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return( |
+ m.NewNode(dpi.op, m.Parameter(0), |
+ m.NewNode(shift.op, m.Parameter(1), m.Parameter(2)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode(dpi.op, |
+ m.NewNode(shift.op, m.Parameter(0), m.Parameter(1)), |
+ m.Parameter(2))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.reverse_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorDPIAndShiftImm) { |
+ DPIs dpis; |
+ Shifts shifts; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ for (Shifts::const_iterator j = shifts.begin(); j != shifts.end(); ++j) { |
+ Shift shift = *j; |
+ for (int32_t imm = shift.i_low; imm <= shift.i_high; ++imm) { |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode( |
+ dpi.op, m.Parameter(0), |
+ m.NewNode(shift.op, m.Parameter(1), m.Int32Constant(imm)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.i_mode, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode( |
+ dpi.op, m.NewNode(shift.op, m.Parameter(0), m.Int32Constant(imm)), |
+ m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.reverse_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.i_mode, m.code[0]->addressing_mode()); |
+ } |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32AndAndWord32XorWithMinus1P) { |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Parameter(0), |
+ m.Word32Xor(m.Int32Constant(-1), m.Parameter(1)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmBic, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Parameter(0), |
+ m.Word32Xor(m.Parameter(1), m.Int32Constant(-1)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmBic, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Word32Xor(m.Int32Constant(-1), m.Parameter(0)), |
+ m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmBic, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Word32Xor(m.Parameter(0), m.Int32Constant(-1)), |
+ m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmBic, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32XorWithMinus1P) { |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Xor(m.Int32Constant(-1), m.Parameter(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmMvn, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Xor(m.Parameter(0), m.Int32Constant(-1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmMvn, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32MulP) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mul(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmMul, m.code[0]->arch_opcode()); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32MulImm) { |
+ // x * (2^k + 1) -> (x >> k) + x |
+ for (int k = 1; k < 31; ++k) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mul(m.Parameter(0), m.Int32Constant((1 << k) + 1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmAdd, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R_LSL_I, m.code[0]->addressing_mode()); |
+ } |
+ // (2^k + 1) * x -> (x >> k) + x |
+ for (int k = 1; k < 31; ++k) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mul(m.Int32Constant((1 << k) + 1), m.Parameter(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmAdd, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R_LSL_I, m.code[0]->addressing_mode()); |
+ } |
+ // x * (2^k - 1) -> (x >> k) - x |
+ for (int k = 3; k < 31; ++k) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mul(m.Parameter(0), m.Int32Constant((1 << k) - 1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmRsb, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R_LSL_I, m.code[0]->addressing_mode()); |
+ } |
+ // (2^k - 1) * x -> (x >> k) - x |
+ for (int k = 3; k < 31; ++k) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mul(m.Int32Constant((1 << k) - 1), m.Parameter(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmRsb, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R_LSL_I, m.code[0]->addressing_mode()); |
+ } |
+} |
+ |
+ |
+// The following tests depend on the exact CPU features available, which we do |
+// only fully control in a simulator build. |
+#ifdef USE_SIMULATOR |
+ |
+TEST(InstructionSelectorDPIImm_ARMv7AndVFP3Disabled) { |
+ i::FLAG_enable_armv7 = false; |
+ i::FLAG_enable_vfp3 = false; |
+ DPIs dpis; |
+ Immediates immediates; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ for (Immediates::const_iterator j = immediates.begin(); |
+ j != immediates.end(); ++j) { |
+ int32_t imm = *j; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode(dpi.op, m.Parameter(0), m.Int32Constant(imm))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.NewNode(dpi.op, m.Int32Constant(imm), m.Parameter(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.reverse_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32AndImm_ARMv7Enabled) { |
+ i::FLAG_enable_armv7 = true; |
+ for (uint32_t width = 1; width <= 32; ++width) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Parameter(0), |
+ m.Int32Constant(0xffffffffu >> (32 - width)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUbfx, m.code[0]->arch_opcode()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(0, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ for (uint32_t lsb = 0; lsb <= 31; ++lsb) { |
+ for (uint32_t width = 1; width < 32 - lsb; ++width) { |
+ uint32_t msk = ~((0xffffffffu >> (32 - width)) << lsb); |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Parameter(0), m.Int32Constant(msk))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmBfc, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK(UnallocatedOperand::cast(m.code[0]->Output()) |
+ ->HasSameAsInputPolicy()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(lsb, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32AndAndWord32ShrImm_ARMv7Enabled) { |
+ i::FLAG_enable_armv7 = true; |
+ for (uint32_t lsb = 0; lsb <= 31; ++lsb) { |
+ for (uint32_t width = 1; width <= 32 - lsb; ++width) { |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32And(m.Word32Shr(m.Parameter(0), m.Int32Constant(lsb)), |
+ m.Int32Constant(0xffffffffu >> (32 - width)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUbfx, m.code[0]->arch_opcode()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(lsb, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return( |
+ m.Word32And(m.Int32Constant(0xffffffffu >> (32 - width)), |
+ m.Word32Shr(m.Parameter(0), m.Int32Constant(lsb)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUbfx, m.code[0]->arch_opcode()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(lsb, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32ShrAndWord32AndImm_ARMv7Enabled) { |
+ i::FLAG_enable_armv7 = true; |
+ for (uint32_t lsb = 0; lsb <= 31; ++lsb) { |
+ for (uint32_t width = 1; width <= 32 - lsb; ++width) { |
+ uint32_t max = 1 << lsb; |
+ if (max > static_cast<uint32_t>(kMaxInt)) max -= 1; |
+ uint32_t jnk = CcTest::random_number_generator()->NextInt(max); |
+ uint32_t msk = ((0xffffffffu >> (32 - width)) << lsb) | jnk; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Shr(m.Word32And(m.Parameter(0), m.Int32Constant(msk)), |
+ m.Int32Constant(lsb))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUbfx, m.code[0]->arch_opcode()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(lsb, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Shr(m.Word32And(m.Int32Constant(msk), m.Parameter(0)), |
+ m.Int32Constant(lsb))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUbfx, m.code[0]->arch_opcode()); |
+ CHECK_EQ(3, m.code[0]->InputCount()); |
+ CHECK_EQ(lsb, m.ToInt32(m.code[0]->InputAt(1))); |
+ CHECK_EQ(width, m.ToInt32(m.code[0]->InputAt(2))); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32SubAndInt32MulP_MlsEnabled) { |
+ i::FLAG_enable_mls = true; |
+ InstructionSelectorTester m; |
+ m.Return( |
+ m.Int32Sub(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmMls, m.code[0]->arch_opcode()); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32SubAndInt32MulP_MlsDisabled) { |
+ i::FLAG_enable_mls = false; |
+ InstructionSelectorTester m; |
+ m.Return( |
+ m.Int32Sub(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(2, m.code.size()); |
+ CHECK_EQ(kArmMul, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(kArmSub, m.code[1]->arch_opcode()); |
+ CHECK_EQ(2, m.code[1]->InputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[1]->InputAt(1)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32DivP_ARMv7AndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Div(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmSdiv, m.code[0]->arch_opcode()); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32DivP_SudivDisabled) { |
+ i::FLAG_enable_sudiv = false; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Div(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(4, m.code.size()); |
+ CHECK_EQ(kArmVcvtF64S32, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(kArmVcvtF64S32, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(kArmVdivF64, m.code[2]->arch_opcode()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+ CHECK_EQ(kArmVcvtS32F64, m.code[3]->arch_opcode()); |
+ CHECK_EQ(1, m.code[3]->InputCount()); |
+ CheckSameVreg(m.code[2]->Output(), m.code[3]->InputAt(0)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32UDivP_ARMv7AndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32UDiv(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmUdiv, m.code[0]->arch_opcode()); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32UDivP_SudivDisabled) { |
+ i::FLAG_enable_sudiv = false; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32UDiv(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(4, m.code.size()); |
+ CHECK_EQ(kArmVcvtF64U32, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(kArmVcvtF64U32, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(kArmVdivF64, m.code[2]->arch_opcode()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+ CHECK_EQ(kArmVcvtU32F64, m.code[3]->arch_opcode()); |
+ CHECK_EQ(1, m.code[3]->InputCount()); |
+ CheckSameVreg(m.code[2]->Output(), m.code[3]->InputAt(0)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32ModP_ARMv7AndMlsAndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_mls = true; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(2, m.code.size()); |
+ CHECK_EQ(kArmSdiv, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CHECK_EQ(kArmMls, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(3, m.code[1]->InputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[1]->InputAt(0)); |
+ CheckSameVreg(m.code[0]->InputAt(1), m.code[1]->InputAt(1)); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[1]->InputAt(2)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32ModP_ARMv7AndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_mls = false; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(3, m.code.size()); |
+ CHECK_EQ(kArmSdiv, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CHECK_EQ(kArmMul, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(2, m.code[1]->InputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[1]->InputAt(0)); |
+ CheckSameVreg(m.code[0]->InputAt(1), m.code[1]->InputAt(1)); |
+ CHECK_EQ(kArmSub, m.code[2]->arch_opcode()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32ModP_ARMv7AndMlsAndSudivDisabled) { |
+ i::FLAG_enable_armv7 = false; |
+ i::FLAG_enable_mls = false; |
+ i::FLAG_enable_sudiv = false; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32Mod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(6, m.code.size()); |
+ CHECK_EQ(kArmVcvtF64S32, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(kArmVcvtF64S32, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(kArmVdivF64, m.code[2]->arch_opcode()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+ CHECK_EQ(kArmVcvtS32F64, m.code[3]->arch_opcode()); |
+ CHECK_EQ(1, m.code[3]->InputCount()); |
+ CheckSameVreg(m.code[2]->Output(), m.code[3]->InputAt(0)); |
+ CHECK_EQ(kArmMul, m.code[4]->arch_opcode()); |
+ CHECK_EQ(1, m.code[4]->OutputCount()); |
+ CHECK_EQ(2, m.code[4]->InputCount()); |
+ CheckSameVreg(m.code[3]->Output(), m.code[4]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->InputAt(0), m.code[4]->InputAt(1)); |
+ CHECK_EQ(kArmSub, m.code[5]->arch_opcode()); |
+ CHECK_EQ(1, m.code[5]->OutputCount()); |
+ CHECK_EQ(2, m.code[5]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[5]->InputAt(0)); |
+ CheckSameVreg(m.code[4]->Output(), m.code[5]->InputAt(1)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32UModP_ARMv7AndMlsAndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_mls = true; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32UMod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(2, m.code.size()); |
+ CHECK_EQ(kArmUdiv, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CHECK_EQ(kArmMls, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(3, m.code[1]->InputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[1]->InputAt(0)); |
+ CheckSameVreg(m.code[0]->InputAt(1), m.code[1]->InputAt(1)); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[1]->InputAt(2)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32UModP_ARMv7AndSudivEnabled) { |
+ i::FLAG_enable_armv7 = true; |
+ i::FLAG_enable_mls = false; |
+ i::FLAG_enable_sudiv = true; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32UMod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(3, m.code.size()); |
+ CHECK_EQ(kArmUdiv, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CHECK_EQ(kArmMul, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(2, m.code[1]->InputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[1]->InputAt(0)); |
+ CheckSameVreg(m.code[0]->InputAt(1), m.code[1]->InputAt(1)); |
+ CHECK_EQ(kArmSub, m.code[2]->arch_opcode()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+} |
+ |
+ |
+TEST(InstructionSelectorInt32UModP_ARMv7AndMlsAndSudivDisabled) { |
+ i::FLAG_enable_armv7 = false; |
+ i::FLAG_enable_mls = false; |
+ i::FLAG_enable_sudiv = false; |
+ InstructionSelectorTester m; |
+ m.Return(m.Int32UMod(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(6, m.code.size()); |
+ CHECK_EQ(kArmVcvtF64U32, m.code[0]->arch_opcode()); |
+ CHECK_EQ(1, m.code[0]->OutputCount()); |
+ CHECK_EQ(kArmVcvtF64U32, m.code[1]->arch_opcode()); |
+ CHECK_EQ(1, m.code[1]->OutputCount()); |
+ CHECK_EQ(kArmVdivF64, m.code[2]->arch_opcode()); |
+ CHECK_EQ(2, m.code[2]->InputCount()); |
+ CHECK_EQ(1, m.code[2]->OutputCount()); |
+ CheckSameVreg(m.code[0]->Output(), m.code[2]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->Output(), m.code[2]->InputAt(1)); |
+ CHECK_EQ(kArmVcvtU32F64, m.code[3]->arch_opcode()); |
+ CHECK_EQ(1, m.code[3]->InputCount()); |
+ CheckSameVreg(m.code[2]->Output(), m.code[3]->InputAt(0)); |
+ CHECK_EQ(kArmMul, m.code[4]->arch_opcode()); |
+ CHECK_EQ(1, m.code[4]->OutputCount()); |
+ CHECK_EQ(2, m.code[4]->InputCount()); |
+ CheckSameVreg(m.code[3]->Output(), m.code[4]->InputAt(0)); |
+ CheckSameVreg(m.code[1]->InputAt(0), m.code[4]->InputAt(1)); |
+ CHECK_EQ(kArmSub, m.code[5]->arch_opcode()); |
+ CHECK_EQ(1, m.code[5]->OutputCount()); |
+ CHECK_EQ(2, m.code[5]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[5]->InputAt(0)); |
+ CheckSameVreg(m.code[4]->Output(), m.code[5]->InputAt(1)); |
+} |
+ |
+#endif // USE_SIMULATOR |
+ |
+ |
+TEST(InstructionSelectorWord32EqualP) { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal(m.Parameter(0), m.Parameter(1))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32EqualImm) { |
+ Immediates immediates; |
+ for (Immediates::const_iterator i = immediates.begin(); i != immediates.end(); |
+ ++i) { |
+ int32_t imm = *i; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal(m.Parameter(0), m.Int32Constant(imm))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ if (imm == 0) { |
+ CHECK_EQ(kArmTst, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[0]->InputAt(1)); |
+ } else { |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ } |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal(m.Int32Constant(imm), m.Parameter(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ if (imm == 0) { |
+ CHECK_EQ(kArmTst, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(2, m.code[0]->InputCount()); |
+ CheckSameVreg(m.code[0]->InputAt(0), m.code[0]->InputAt(1)); |
+ } else { |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ } |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32EqualAndDPIP) { |
+ DPIs dpis; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal(m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1)), |
+ m.Int32Constant(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return( |
+ m.Word32Equal(m.Int32Constant(0), |
+ m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32EqualAndDPIImm) { |
+ DPIs dpis; |
+ Immediates immediates; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ for (Immediates::const_iterator j = immediates.begin(); |
+ j != immediates.end(); ++j) { |
+ int32_t imm = *j; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.NewNode(dpi.op, m.Parameter(0), m.Int32Constant(imm)), |
+ m.Int32Constant(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.NewNode(dpi.op, m.Int32Constant(imm), m.Parameter(0)), |
+ m.Int32Constant(0))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.Int32Constant(0), |
+ m.NewNode(dpi.op, m.Parameter(0), m.Int32Constant(imm)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.Int32Constant(0), |
+ m.NewNode(dpi.op, m.Int32Constant(imm), m.Parameter(0)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_I, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorWord32EqualAndShiftP) { |
+ Shifts shifts; |
+ for (Shifts::const_iterator i = shifts.begin(); i != shifts.end(); ++i) { |
+ Shift shift = *i; |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.Parameter(0), m.NewNode(shift.op, m.Parameter(1), m.Parameter(2)))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ m.Return(m.Word32Equal( |
+ m.NewNode(shift.op, m.Parameter(0), m.Parameter(1)), m.Parameter(2))); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_set, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorBranchWithWord32EqualAndShiftP) { |
+ Shifts shifts; |
+ for (Shifts::const_iterator i = shifts.begin(); i != shifts.end(); ++i) { |
+ Shift shift = *i; |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch(m.Word32Equal(m.Parameter(0), m.NewNode(shift.op, m.Parameter(1), |
+ m.Parameter(2))), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch( |
+ m.Word32Equal(m.NewNode(shift.op, m.Parameter(1), m.Parameter(2)), |
+ m.Parameter(0)), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.r_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorBranchWithWord32EqualAndShiftImm) { |
+ Shifts shifts; |
+ for (Shifts::const_iterator i = shifts.begin(); i != shifts.end(); ++i) { |
+ Shift shift = *i; |
+ for (int32_t imm = shift.i_low; imm <= shift.i_high; ++imm) { |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch( |
+ m.Word32Equal(m.Parameter(0), m.NewNode(shift.op, m.Parameter(1), |
+ m.Int32Constant(imm))), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.i_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch(m.Word32Equal( |
+ m.NewNode(shift.op, m.Parameter(1), m.Int32Constant(imm)), |
+ m.Parameter(0)), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(kArmCmp, m.code[0]->arch_opcode()); |
+ CHECK_EQ(shift.i_mode, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+ } |
+} |
+ |
+ |
+TEST(InstructionSelectorBranchWithDPIP) { |
+ DPIs dpis; |
+ for (DPIs::const_iterator i = dpis.begin(); i != dpis.end(); ++i) { |
+ DPI dpi = *i; |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch(m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1)), &blocka, |
+ &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kNotEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch(m.Word32Equal(m.Int32Constant(0), |
+ m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1))), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ { |
+ InstructionSelectorTester m; |
+ MLabel blocka, blockb; |
+ m.Branch(m.Word32Equal(m.NewNode(dpi.op, m.Parameter(0), m.Parameter(1)), |
+ m.Int32Constant(0)), |
+ &blocka, &blockb); |
+ m.Bind(&blocka); |
+ m.Return(m.Int32Constant(1)); |
+ m.Bind(&blockb); |
+ m.Return(m.Int32Constant(0)); |
+ m.SelectInstructions(); |
+ CHECK_EQ(1, m.code.size()); |
+ CHECK_EQ(dpi.test_arch_opcode, m.code[0]->arch_opcode()); |
+ CHECK_EQ(kMode_Operand2_R, m.code[0]->addressing_mode()); |
+ CHECK_EQ(kFlags_branch, m.code[0]->flags_mode()); |
+ CHECK_EQ(kEqual, m.code[0]->flags_condition()); |
+ } |
+ } |
+} |