Home
last modified time | relevance | path

Searched refs:right_operand (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc311 InstructionOperand right_operand) { in EmitDiv() argument
314 selector->Emit(div_opcode, result_operand, left_operand, right_operand); in EmitDiv()
321 selector->Emit(f64i32_opcode, right_double_operand, right_operand); in EmitDiv()
345 InstructionOperand right_operand = g.UseRegister(m.right().node()); in VisitMod() local
347 left_operand, right_operand); in VisitMod()
349 selector->Emit(kArmMls, result_operand, div_operand, right_operand, in VisitMod()
353 selector->Emit(kArmMul, mul_operand, div_operand, right_operand); in VisitMod()
/external/v8/src/crankshaft/x64/
Dlithium-codegen-x64.cc1394 int32_t right_operand = in DoBitI() local
1399 __ andl(ToRegister(left), Immediate(right_operand)); in DoBitI()
1402 __ orl(ToRegister(left), Immediate(right_operand)); in DoBitI()
1405 if (right_operand == int32_t(~0)) { in DoBitI()
1408 __ xorl(ToRegister(left), Immediate(right_operand)); in DoBitI()
1561 int32_t right_operand = in DoSubI() local
1564 __ subl(ToRegister(left), Immediate(right_operand)); in DoSubI()
1733 int32_t right_operand = in DoAddI() local
1737 __ addp(ToRegister(left), Immediate(right_operand)); in DoAddI()
1739 __ addl(ToRegister(left), Immediate(right_operand)); in DoAddI()
Dlithium-x64.cc715 LOperand* right_operand = UseFixed(right, rax); in DoArithmeticT() local
717 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/ia32/
Dlithium-codegen-ia32.cc1332 int32_t right_operand = in DoBitI() local
1337 __ and_(ToRegister(left), right_operand); in DoBitI()
1340 __ or_(ToRegister(left), right_operand); in DoBitI()
1343 if (right_operand == int32_t(~0)) { in DoBitI()
1346 __ xor_(ToRegister(left), right_operand); in DoBitI()
Dlithium-ia32.cc721 LOperand* right_operand = UseFixed(right, eax); in DoArithmeticT() local
723 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/mips/
Dlithium-mips.cc698 LOperand* right_operand = UseFixed(right, a0); in DoArithmeticT() local
700 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.cc698 LOperand* right_operand = UseFixed(right, a0); in DoArithmeticT() local
700 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/arm/
Dlithium-arm.cc688 LOperand* right_operand = UseFixed(right, r0); in DoArithmeticT() local
690 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/s390/
Dlithium-s390.cc636 LOperand* right_operand = UseFixed(right, r2); in DoArithmeticT() local
638 new (zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.cc703 LOperand* right_operand = UseFixed(right, r3); in DoArithmeticT() local
705 new (zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
Dlithium-codegen-ppc.cc1740 Operand right_operand = ToOperand(right); in DoShiftI() local
1741 if (is_int16(right_operand.immediate())) { in DoShiftI()
1742 __ subfic(ToRegister(result), ToRegister(left), right_operand); in DoShiftI()
1744 __ mov(r0, right_operand); in DoShiftI()
/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.cc1633 int32_t right_operand = in DoBitI() local
1638 __ and_(ToRegister(left), right_operand); in DoBitI()
1641 __ or_(ToRegister(left), right_operand); in DoBitI()
1644 if (right_operand == int32_t(~0)) { in DoBitI()
1647 __ xor_(ToRegister(left), right_operand); in DoBitI()
Dlithium-x87.cc718 LOperand* right_operand = UseFixed(right, eax); in DoArithmeticT() local
720 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.cc755 LOperand* right_operand = UseFixed(right, x0); in DoArithmeticT() local
757 new(zone()) LArithmeticT(op, context, left_operand, right_operand); in DoArithmeticT()