Home
last modified time | relevance | path

Searched refs:GetVRegLong (Results 1 – 8 of 8) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_intrinsics.cc43 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVRegLong(arg[2]), set)
46 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVReg(arg[2]), set)
95 UNARY_INTRINSIC(MterpLongReverse, ReverseBits64, GetVRegLong, SetJ);
98 UNARY_INTRINSIC(MterpLongReverseBytes, BSWAP, GetVRegLong, SetJ);
101 UNARY_INTRINSIC(MterpLongBitCount, POPCOUNT, GetVRegLong, SetI);
107 UNARY_INTRINSIC(MterpLongHighestOneBit, HighestOneBitValue, GetVRegLong, SetJ);
110 UNARY_INTRINSIC(MterpLongLowestOneBit, LowestOneBitValue, GetVRegLong, SetJ);
113 UNARY_INTRINSIC(MterpLongNumberOfLeadingZeros, JAVASTYLE_CLZ, GetVRegLong, SetJ);
116 UNARY_INTRINSIC(MterpLongNumberOfTrailingZeros, JAVASTYLE_CTZ, GetVRegLong, SetJ);
125 UNARY_INTRINSIC(MterpLongSignum, Signum, GetVRegLong, SetI);
[all …]
Dinterpreter_switch_impl.cc250 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImplCpp()
256 shadow_frame.GetVRegLong(inst->VRegB_22x())); in ExecuteSwitchImplCpp()
262 shadow_frame.GetVRegLong(inst->VRegB_32x())); in ExecuteSwitchImplCpp()
379 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in ExecuteSwitchImplCpp()
875 int64_t val1 = shadow_frame.GetVRegLong(inst->VRegB_23x()); in ExecuteSwitchImplCpp()
876 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteSwitchImplCpp()
1283 int64_t val = shadow_frame.GetVRegLong(inst->VRegA_23x(inst_data)); in ExecuteSwitchImplCpp()
1732 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImplCpp()
1738 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImplCpp()
1774 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImplCpp()
[all …]
Dunstarted_runtime.cc1170 int64_t address = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeek()
1234 int64_t address_long = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeekArray()
1441 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapLong()
1442 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4); in UnstartedUnsafeCompareAndSwapLong()
1443 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong()
1466 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapObject()
1509 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeGetObjectVolatile()
1523 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutObjectVolatile()
1541 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutOrderedObject()
Dshadow_frame.h160 int64_t GetVRegLong(size_t i) const { in GetVRegLong() function
/art/runtime/
Dmethod_handles.h144 return shadow_frame_.GetVRegLong(NextLong()); in GetLong()
Dstack.cc357 *val = cur_shadow_frame_->GetVRegLong(vreg); in GetVRegPair()
Dreflection.cc203 AppendWide(shadow_frame->GetVRegLong(cur_arg)); in BuildArgArrayFromFrame()
Dmethod_handles.cc869 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetValueFromShadowFrame()