Home
last modified time | relevance | path

Searched refs:GetVRegDouble (Results 1 – 4 of 4) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h859 return HandleCmpl<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPL_DOUBLE()
863 return HandleCmpg<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPG_DOUBLE()
1261 SetVRegDouble(A(), -GetVRegDouble(B())); in NEG_DOUBLE()
1315 double val = GetVRegDouble(B()); in DOUBLE_TO_INT()
1322 double val = GetVRegDouble(B()); in DOUBLE_TO_LONG()
1329 SetVRegFloat(A(), GetVRegDouble(B())); in DOUBLE_TO_FLOAT()
1480 SetVRegDouble(A(), GetVRegDouble(B()) + GetVRegDouble(C())); in ADD_DOUBLE()
1485 SetVRegDouble(A(), GetVRegDouble(B()) - GetVRegDouble(C())); in SUB_DOUBLE()
1490 SetVRegDouble(A(), GetVRegDouble(B()) * GetVRegDouble(C())); in MUL_DOUBLE()
1495 SetVRegDouble(A(), GetVRegDouble(B()) / GetVRegDouble(C())); in DIV_DOUBLE()
[all …]
Dinterpreter_intrinsics.cc155 UNARY_INTRINSIC(MterpMathSqrt, std::sqrt, GetVRegDouble, SetD);
158 UNARY_INTRINSIC(MterpMathCeil, std::ceil, GetVRegDouble, SetD);
161 UNARY_INTRINSIC(MterpMathFloor, std::floor, GetVRegDouble, SetD);
164 UNARY_INTRINSIC(MterpMathSin, std::sin, GetVRegDouble, SetD);
167 UNARY_INTRINSIC(MterpMathCos, std::cos, GetVRegDouble, SetD);
170 UNARY_INTRINSIC(MterpMathTan, std::tan, GetVRegDouble, SetD);
173 UNARY_INTRINSIC(MterpMathAsin, std::asin, GetVRegDouble, SetD);
176 UNARY_INTRINSIC(MterpMathAcos, std::acos, GetVRegDouble, SetD);
179 UNARY_INTRINSIC(MterpMathAtan, std::atan, GetVRegDouble, SetD);
Dunstarted_runtime.cc1100 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCeil()
1105 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathFloor()
1110 result->SetD(sin(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathSin()
1115 result->SetD(cos(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCos()
1120 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()
1121 shadow_frame->GetVRegDouble(arg_offset + 2))); in UnstartedMathPow()
1132 double in = shadow_frame->GetVRegDouble(arg_offset); in UnstartedDoubleDoubleToRawLongBits()
Dshadow_frame.h176 double GetVRegDouble(size_t i) const { in GetVRegDouble() function