Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h784 return HandleCmpl<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPL_DOUBLE()
788 return HandleCmpg<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPG_DOUBLE()
1122 SetVRegDouble(A(), -GetVRegDouble(B())); in NEG_DOUBLE()
1172 SetVReg(A(), art_float_to_integral<int32_t, double>(GetVRegDouble(B()))); in DOUBLE_TO_INT()
1177 SetVRegLong(A(), art_float_to_integral<int64_t, double>(GetVRegDouble(B()))); in DOUBLE_TO_LONG()
1182 SetVRegFloat(A(), GetVRegDouble(B())); in DOUBLE_TO_FLOAT()
1333 SetVRegDouble(A(), GetVRegDouble(B()) + GetVRegDouble(C())); in ADD_DOUBLE()
1338 SetVRegDouble(A(), GetVRegDouble(B()) - GetVRegDouble(C())); in SUB_DOUBLE()
1343 SetVRegDouble(A(), GetVRegDouble(B()) * GetVRegDouble(C())); in MUL_DOUBLE()
1348 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.cc1124 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCeil()
1129 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathFloor()
1134 result->SetD(sin(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathSin()
1139 result->SetD(cos(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCos()
1144 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()
1145 shadow_frame->GetVRegDouble(arg_offset + 2))); in UnstartedMathPow()
1156 double in = shadow_frame->GetVRegDouble(arg_offset); in UnstartedDoubleDoubleToRawLongBits()
Dshadow_frame.h176 double GetVRegDouble(size_t i) const { in GetVRegDouble() function