Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h961 return HandleCmpl<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPL_DOUBLE()
965 return HandleCmpg<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPG_DOUBLE()
1299 SetVRegDouble(A(), -GetVRegDouble(B())); in NEG_DOUBLE()
1349 SetVReg(A(), art_float_to_integral<int32_t, double>(GetVRegDouble(B()))); in DOUBLE_TO_INT()
1354 SetVRegLong(A(), art_float_to_integral<int64_t, double>(GetVRegDouble(B()))); in DOUBLE_TO_LONG()
1359 SetVRegFloat(A(), GetVRegDouble(B())); in DOUBLE_TO_FLOAT()
1510 SetVRegDouble(A(), GetVRegDouble(B()) + GetVRegDouble(C())); in ADD_DOUBLE()
1515 SetVRegDouble(A(), GetVRegDouble(B()) - GetVRegDouble(C())); in SUB_DOUBLE()
1520 SetVRegDouble(A(), GetVRegDouble(B()) * GetVRegDouble(C())); in MUL_DOUBLE()
1525 SetVRegDouble(A(), GetVRegDouble(B()) / GetVRegDouble(C())); in DIV_DOUBLE()
[all …]
Dunstarted_runtime.cc1181 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCeil()
1188 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathFloor()
1195 result->SetD(sin(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathSin()
1202 result->SetD(cos(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCos()
1209 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()
1210 shadow_frame->GetVRegDouble(arg_offset + 2))); in UnstartedMathPow()
1217 result->SetD(tan(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathTan()
1232 double in = shadow_frame->GetVRegDouble(arg_offset); in UnstartedDoubleDoubleToRawLongBits()
Dshadow_frame.h184 double GetVRegDouble(size_t i) const { in GetVRegDouble() function