Searched defs:right_operand (Results 1 - 14 of 14) sorted by relevance

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

Completed in 400 milliseconds