Searched refs:right_op (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/v8/src/arm/ |
D | lithium-codegen-arm.cc | 1625 LOperand* right_op = instr->right(); in DoMulI() local 1631 if (right_op->IsConstantOperand()) { in DoMulI() 1632 int32_t constant = ToInteger32(LConstantOperand::cast(right_op)); in DoMulI() 1692 DCHECK(right_op->IsRegister()); in DoMulI() 1693 Register right = ToRegister(right_op); in DoMulI() 1730 LOperand* right_op = instr->right(); in DoBitI() local 1736 if (right_op->IsStackSlot()) { in DoBitI() 1737 right = Operand(EmitLoadRegister(right_op, ip)); in DoBitI() 1739 DCHECK(right_op->IsRegister() || right_op->IsConstantOperand()); in DoBitI() 1740 right = ToOperand(right_op); in DoBitI() [all …]
|
D | lithium-arm.cc | 1493 LOperand* right_op; in DoMul() local 1504 right_op = UseConstant(right); in DoMul() 1511 right_op = UseRegister(right); in DoMul() 1519 right_op = UseRegister(right); in DoMul() 1521 LMulI* mul = new(zone()) LMulI(left_op, right_op); in DoMul()
|
D | simulator-arm.cc | 2062 int64_t right_op = static_cast<int32_t>(rs_val); in DecodeType01() local 2063 uint64_t result = left_op * right_op; in DecodeType01() 2069 uint64_t right_op = static_cast<uint32_t>(rs_val); in DecodeType01() local 2070 uint64_t result = left_op * right_op; in DecodeType01()
|
/external/chromium_org/v8/src/mips64/ |
D | lithium-codegen-mips64.cc | 1434 LOperand* right_op = instr->right(); in DoMulI() local 1440 if (right_op->IsConstantOperand()) { in DoMulI() 1441 int32_t constant = ToInteger32(LConstantOperand::cast(right_op)); in DoMulI() 1502 DCHECK(right_op->IsRegister()); in DoMulI() 1503 Register right = ToRegister(right_op); in DoMulI() 1541 LOperand* right_op = instr->right(); in DoBitI() local 1547 if (right_op->IsStackSlot()) { in DoBitI() 1548 right = Operand(EmitLoadRegister(right_op, at)); in DoBitI() 1550 DCHECK(right_op->IsRegister() || right_op->IsConstantOperand()); in DoBitI() 1551 right = ToOperand(right_op); in DoBitI() [all …]
|
D | lithium-mips64.cc | 1488 LOperand* right_op; in DoMul() local 1499 right_op = UseConstant(right); in DoMul() 1506 right_op = UseRegister(right); in DoMul() 1514 right_op = UseRegister(right); in DoMul() 1516 LMulI* mul = new(zone()) LMulI(left_op, right_op); in DoMul()
|
/external/chromium_org/v8/src/mips/ |
D | lithium-codegen-mips.cc | 1472 LOperand* right_op = instr->right(); in DoMulI() local 1478 if (right_op->IsConstantOperand()) { in DoMulI() 1479 int32_t constant = ToInteger32(LConstantOperand::cast(right_op)); in DoMulI() 1540 DCHECK(right_op->IsRegister()); in DoMulI() 1541 Register right = ToRegister(right_op); in DoMulI() 1576 LOperand* right_op = instr->right(); in DoBitI() local 1582 if (right_op->IsStackSlot()) { in DoBitI() 1583 right = Operand(EmitLoadRegister(right_op, at)); in DoBitI() 1585 DCHECK(right_op->IsRegister() || right_op->IsConstantOperand()); in DoBitI() 1586 right = ToOperand(right_op); in DoBitI() [all …]
|
D | lithium-mips.cc | 1487 LOperand* right_op; in DoMul() local 1498 right_op = UseConstant(right); in DoMul() 1505 right_op = UseRegister(right); in DoMul() 1513 right_op = UseRegister(right); in DoMul() 1515 LMulI* mul = new(zone()) LMulI(left_op, right_op); in DoMul()
|
/external/chromium_org/v8/src/arm64/ |
D | lithium-codegen-arm64.cc | 4893 LOperand* right_op = instr->right(); in DoShiftI() local 4897 if (right_op->IsRegister()) { in DoShiftI() 4914 DCHECK(right_op->IsConstantOperand()); in DoShiftI() 4915 int shift_count = JSShiftAmountFromLConstant(right_op); in DoShiftI() 4935 LOperand* right_op = instr->right(); in DoShiftS() local 4939 if (right_op->IsRegister()) { in DoShiftS() 4977 DCHECK(right_op->IsConstantOperand()); in DoShiftS() 4978 int shift_count = JSShiftAmountFromLConstant(right_op); in DoShiftS()
|
/external/chromium_org/v8/src/x64/ |
D | lithium-codegen-x64.cc | 1967 Operand right_op = ToOperand(right); in DoMathMinMax() local 1969 __ cmpp(left_reg, right_op); in DoMathMinMax() 1971 __ cmpl(left_reg, right_op); in DoMathMinMax() 1974 __ movp(left_reg, right_op); in DoMathMinMax()
|
/external/chromium_org/v8/src/ia32/ |
D | lithium-codegen-ia32.cc | 1937 Operand right_op = ToOperand(right); in DoMathMinMax() local 1938 __ cmp(left_reg, right_op); in DoMathMinMax() 1940 __ mov(left_reg, right_op); in DoMathMinMax()
|
/external/chromium_org/v8/src/x87/ |
D | lithium-codegen-x87.cc | 2205 Operand right_op = ToOperand(right); in DoMathMinMax() local 2206 __ cmp(left_reg, right_op); in DoMathMinMax() 2208 __ mov(left_reg, right_op); in DoMathMinMax()
|