Home
last modified time | relevance | path

Searched refs:input_high (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/mips/
Dcode-stubs-mips.cc184 Register input_high = scratch2; in Generate() local
189 __ lw(input_high, in Generate()
195 input_high, in Generate()
223 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate()
229 __ mov(input_high, zero_reg); in Generate()
234 __ Or(input_high, in Generate()
235 input_high, in Generate()
240 __ sllv(input_high, input_high, scratch); in Generate()
259 __ Or(input_high, input_high, Operand(input_low)); in Generate()
264 __ Subu(result_reg, zero_reg, input_high); in Generate()
[all …]
/external/v8/src/mips64/
Dcode-stubs-mips64.cc182 Register input_high = scratch2; in Generate() local
187 __ lw(input_high, in Generate()
193 input_high, in Generate()
221 __ And(sign, input_high, Operand(HeapNumber::kSignMask)); in Generate()
227 __ mov(input_high, zero_reg); in Generate()
232 __ Or(input_high, in Generate()
233 input_high, in Generate()
238 __ sllv(input_high, input_high, scratch); in Generate()
257 __ Or(input_high, input_high, Operand(input_low)); in Generate()
262 __ Subu(result_reg, zero_reg, input_high); in Generate()
[all …]
/external/v8/src/arm/
Dmacro-assembler-arm.cc2314 Register input_high, in TryInt32Floor() argument
2318 DCHECK(!result.is(input_high)); in TryInt32Floor()
2322 VmovHigh(input_high, double_input); in TryInt32Floor()
2325 Sbfx(result, input_high, in TryInt32Floor()
2334 cmp(input_high, Operand::Zero()); in TryInt32Floor()
Dmacro-assembler-arm.h1012 Register input_high,
/external/v8/src/crankshaft/arm/
Dlithium-codegen-arm.cc3463 Register input_high = scratch0(); in DoMathFloor() local
3466 __ TryInt32Floor(result, input, input_high, double_scratch0(), &done, &exact); in DoMathFloor()
3474 __ cmp(input_high, Operand::Zero()); in DoMathFloor()
3486 Register input_high = scratch0(); in DoMathRound() local
3498 __ VmovHigh(input_high, input); in DoMathRound()
3499 __ cmp(input_high, Operand::Zero()); in DoMathRound()
3513 __ TryInt32Floor(result, input_plus_dot_five, input_high, double_scratch0(), in DoMathRound()
/external/v8/src/ppc/
Dmacro-assembler-ppc.cc2146 Register input_high, Register scratch, in TryInt32Floor() argument
2149 DCHECK(!result.is(input_high)); in TryInt32Floor()
2153 MovDoubleHighToInt(input_high, double_input); in TryInt32Floor()
2156 ExtractBitMask(result, input_high, HeapNumber::kExponentMask); in TryInt32Floor()
Dmacro-assembler-ppc.h871 Register input_high, Register scratch,
/external/v8/src/crankshaft/ppc/
Dlithium-codegen-ppc.cc3671 Register input_high = scratch0(); in DoShiftI() local
3675 __ TryInt32Floor(result, input, input_high, scratch, double_scratch0(), &done, in DoShiftI()
3684 __ cmpwi(input_high, Operand::Zero()); in DoShiftI()