Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h409 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE()
414 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_FROM16()
419 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_16()
481 result.SetJ(GetVRegLong(A())); in RETURN_WIDE()
867 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG()
967 return HandleAPut<mirror::LongArray>(GetVRegLong(A())); in APUT_WIDE()
1246 SetVRegLong(A(), -GetVRegLong(B())); in NEG_LONG()
1251 SetVRegLong(A(), ~GetVRegLong(B())); in NOT_LONG()
1281 SetVReg(A(), GetVRegLong(B())); in LONG_TO_INT()
1286 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.cc1138 int64_t address = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeek()
1202 int64_t address_long = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeekArray()
1412 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapLong()
1413 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4); in UnstartedUnsafeCompareAndSwapLong()
1414 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong()
1441 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapObject()
1492 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeGetObjectVolatile()
1506 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutObjectVolatile()
1528 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutOrderedObject()
Dshadow_frame.h169 int64_t GetVRegLong(size_t i) const { in GetVRegLong() function
Dinterpreter_common.h492 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetFieldValue()
776 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA)); in DoIPutQuick()
/art/runtime/
Dmethod_handles-inl.h50 return shadow_frame_.GetVRegLong(NextLong()); in GetLong()
Dstack.cc423 *val = cur_shadow_frame_->GetVRegLong(vreg); in GetVRegPair()
Dreflection.cc205 AppendWide(shadow_frame->GetVRegLong(cur_arg)); in BuildArgArrayFromFrame()
Dmethod_handles.cc887 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetValueFromShadowFrame()
/art/runtime/interpreter/mterp/
Dmterp.cc688 ? shadow_frame->GetVRegLong(vRegA) in MterpFieldAccess()