Home
last modified time | relevance | path

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

/art/runtime/interpreter/
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);
Dinterpreter_switch_impl.cc748 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl()
749 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
765 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in ExecuteSwitchImpl()
766 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
1659 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1722 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); in ExecuteSwitchImpl()
1730 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); in ExecuteSwitchImpl()
1739 shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1955 shadow_frame.GetVRegDouble(inst->VRegB_23x()) + in ExecuteSwitchImpl()
1956 shadow_frame.GetVRegDouble(inst->VRegC_23x())); in ExecuteSwitchImpl()
[all …]
Dunstarted_runtime.cc1096 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCeil()
1101 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathFloor()
1106 result->SetD(sin(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathSin()
1111 result->SetD(cos(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCos()
1116 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()
1117 shadow_frame->GetVRegDouble(arg_offset + 2))); in UnstartedMathPow()
1128 double in = shadow_frame->GetVRegDouble(arg_offset); in UnstartedDoubleDoubleToRawLongBits()
Dshadow_frame.h171 double GetVRegDouble(size_t i) const { in GetVRegDouble() function