Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h386 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE()
391 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_FROM16()
396 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_16()
453 result.SetJ(GetVRegLong(A())); in RETURN_WIDE()
783 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG()
883 return HandleAPut<mirror::LongArray>(GetVRegLong(A())); in APUT_WIDE()
1098 SetVRegLong(A(), -GetVRegLong(B())); in NEG_LONG()
1103 SetVRegLong(A(), ~GetVRegLong(B())); in NOT_LONG()
1133 SetVReg(A(), GetVRegLong(B())); in LONG_TO_INT()
1138 SetVRegFloat(A(), GetVRegLong(B())); in LONG_TO_FLOAT()
[all …]
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 …]
Dunstarted_runtime.cc1203 int64_t address = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeek()
1267 int64_t address_long = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeekArray()
1521 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedJdkUnsafeCompareAndSwapLong()
1522 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4); in UnstartedJdkUnsafeCompareAndSwapLong()
1523 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedJdkUnsafeCompareAndSwapLong()
1555 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedJdkUnsafeCompareAndSwapObject()
1611 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedJdkUnsafeGetObjectVolatile()
1625 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedJdkUnsafePutObjectVolatile()
1647 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedJdkUnsafePutOrderedObject()
Dshadow_frame.h169 int64_t GetVRegLong(size_t i) const { in GetVRegLong() function
Dinterpreter_common.h377 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetFieldValue()
/art/runtime/
Dmethod_handles-inl.h50 return shadow_frame_.GetVRegLong(NextLong()); in GetLong()
Dstack.cc416 *val = cur_shadow_frame_->GetVRegLong(vreg); in GetVRegPair()
Dmethod_handles.cc602 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetValueFromShadowFrame()
Dreflection.cc205 AppendWide(shadow_frame->GetVRegLong(cur_arg)); in BuildArgArrayFromFrame()