/external/v8/src/mips64/ |
D | code-stubs-mips64.cc | 123 Register input_high = scratch2; in Generate() local 128 __ lw(input_high, in Generate() 134 input_high, in Generate() 162 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate() 168 __ mov(input_high, zero_reg); in Generate() 173 __ Or(input_high, in Generate() 174 input_high, in Generate() 179 __ sllv(input_high, input_high, scratch); in Generate() 198 __ Or(input_high, input_high, Operand(input_low)); in Generate() 203 __ Subu(result_reg, zero_reg, input_high); in Generate() [all …]
|
/external/v8/src/mips/ |
D | code-stubs-mips.cc | 125 Register input_high = scratch2; in Generate() local 130 __ lw(input_high, in Generate() 136 input_high, in Generate() 164 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate() 170 __ mov(input_high, zero_reg); in Generate() 175 __ Or(input_high, in Generate() 176 input_high, in Generate() 181 __ sllv(input_high, input_high, scratch); in Generate() 200 __ Or(input_high, input_high, Operand(input_low)); in Generate() 205 __ Subu(result_reg, zero_reg, input_high); in Generate() [all …]
|
/external/v8/src/compiler/ |
D | int64-lowering.cc | 695 Node* input_high = in LowerNode() local 702 graph()->NewNode(machine()->Word32Ror(), input_high, safe_shift); in LowerNode()
|
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 2468 Register input_high, in TryInt32Floor() argument 2472 DCHECK(!result.is(input_high)); in TryInt32Floor() 2476 VmovHigh(input_high, double_input); in TryInt32Floor() 2479 Sbfx(result, input_high, in TryInt32Floor() 2488 cmp(input_high, Operand::Zero()); in TryInt32Floor()
|
D | macro-assembler-arm.h | 965 Register input_high,
|
/external/v8/src/crankshaft/arm/ |
D | lithium-codegen-arm.cc | 3311 Register input_high = scratch0(); in DoMathFloor() local 3314 __ TryInt32Floor(result, input, input_high, double_scratch0(), &done, &exact); in DoMathFloor() 3322 __ cmp(input_high, Operand::Zero()); in DoMathFloor() 3334 Register input_high = scratch0(); in DoMathRound() local 3346 __ VmovHigh(input_high, input); in DoMathRound() 3347 __ cmp(input_high, Operand::Zero()); in DoMathRound() 3361 __ TryInt32Floor(result, input_plus_dot_five, input_high, double_scratch0(), in DoMathRound()
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.cc | 2233 Register input_high, Register scratch, in TryInt32Floor() argument 2236 DCHECK(!result.is(input_high)); in TryInt32Floor() 2240 MovDoubleHighToInt(input_high, double_input); in TryInt32Floor() 2243 ExtractBitMask(result, input_high, HeapNumber::kExponentMask); in TryInt32Floor()
|
D | macro-assembler-ppc.h | 872 Register input_high, Register scratch,
|
/external/v8/src/s390/ |
D | macro-assembler-s390.cc | 2037 Register input_high, Register scratch, in TryInt32Floor() argument 2040 DCHECK(!result.is(input_high)); in TryInt32Floor() 2047 LoadlW(input_high, MemOperand(sp, Register::kExponentOffset)); in TryInt32Floor() 2051 ExtractBitMask(result, input_high, HeapNumber::kExponentMask); in TryInt32Floor()
|
D | macro-assembler-s390.h | 1182 Register input_high, Register scratch,
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-codegen-ppc.cc | 3545 Register input_high = scratch0(); in DoShiftI() local 3549 __ TryInt32Floor(result, input, input_high, scratch, double_scratch0(), &done, in DoShiftI() 3558 __ cmpwi(input_high, Operand::Zero()); in DoShiftI()
|
/external/v8/src/crankshaft/s390/ |
D | lithium-codegen-s390.cc | 3468 Register input_high = scratch0(); in DoShiftI() local 3472 __ TryInt32Floor(result, input, input_high, scratch, double_scratch0(), &done, in DoShiftI() 3481 __ Cmp32(input_high, Operand::Zero()); in DoShiftI()
|