Searched refs:GetVRegDouble (Results 1 – 4 of 4) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter_intrinsics.cc | 155 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);
|
D | interpreter_switch_impl-inl.h | 1009 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in CMPL_DOUBLE() 1010 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in CMPL_DOUBLE() 1025 double val1 = shadow_frame.GetVRegDouble(inst->VRegB_23x()); in CMPG_DOUBLE() 1026 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in CMPG_DOUBLE() 1819 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in NEG_DOUBLE() 1880 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); in DOUBLE_TO_INT() 1887 double val = shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data)); in DOUBLE_TO_LONG() 1895 shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in DOUBLE_TO_FLOAT() 2108 shadow_frame.GetVRegDouble(inst->VRegB_23x()) + in ADD_DOUBLE() 2109 shadow_frame.GetVRegDouble(inst->VRegC_23x())); in ADD_DOUBLE() [all …]
|
D | unstarted_runtime.cc | 1146 result->SetD(ceil(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCeil() 1151 result->SetD(floor(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathFloor() 1156 result->SetD(sin(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathSin() 1161 result->SetD(cos(shadow_frame->GetVRegDouble(arg_offset))); in UnstartedMathCos() 1166 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow() 1167 shadow_frame->GetVRegDouble(arg_offset + 2))); in UnstartedMathPow() 1178 double in = shadow_frame->GetVRegDouble(arg_offset); in UnstartedDoubleDoubleToRawLongBits()
|
D | shadow_frame.h | 178 double GetVRegDouble(size_t i) const { in GetVRegDouble() function
|