Searched defs:dot_five (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc3335 DwVfpRegister dot_five = double_scratch0(); local
3338 __ Vmov(dot_five, 0.5, scratch0());
3340 __ VFPCompareAndSetFlags(double_scratch1, dot_five);
3351 __ VFPCompareAndSetFlags(input, dot_five);
3359 __ vadd(input_plus_dot_five, input, dot_five);
3360 // Reuse dot_five (double_scratch0) as we no longer need this value.
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc3745 DoubleRegister dot_five = double_scratch(); local
3758 __ Fmov(dot_five, 0.5);
3759 __ Fadd(temp, input, dot_five);
3785 __ Fcmp(input, dot_five);
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc3567 DoubleRegister dot_five = double_scratch0(); local
3577 __ LoadDoubleLiteral(dot_five, 0.5, r0);
3578 __ fadd(output_reg, input_reg, dot_five);
3594 DoubleRegister dot_five = double_scratch0(); local
3597 __ LoadDoubleLiteral(dot_five, 0.5, r0);
3599 __ fcmpu(double_scratch1, dot_five);
3610 __ fcmpu(input, dot_five);
3628 __ fadd(input_plus_dot_five, input, dot_five);
3629 // Reuse dot_five (double_scratch0) as we no longer need this value.
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc3494 DoubleRegister dot_five = double_scratch0(); local
3497 __ LoadDoubleLiteral(dot_five, 0.5, r0);
3499 __ cdbr(double_scratch1, dot_five);
3511 __ cdbr(input, dot_five);
3523 __ adbr(input_plus_dot_five, dot_five);
3524 // Reuse dot_five (double_scratch0) as we no longer need this value.

Completed in 690 milliseconds