Searched refs:GetVRegLong (Results 1 – 10 of 10) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 393 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE() 398 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_FROM16() 403 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_16() 460 result.SetJ(GetVRegLong(A())); in RETURN_WIDE() 792 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG() 892 return HandleAPut<mirror::LongArray>(GetVRegLong(A())); in APUT_WIDE() 1107 SetVRegLong(A(), -GetVRegLong(B())); in NEG_LONG() 1112 SetVRegLong(A(), ~GetVRegLong(B())); in NOT_LONG() 1142 SetVReg(A(), GetVRegLong(B())); in LONG_TO_INT() 1147 SetVRegFloat(A(), GetVRegLong(B())); in LONG_TO_FLOAT() [all …]
|
D | interpreter_intrinsics.cc | 43 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 …]
|
D | unstarted_runtime.cc | 1162 int64_t address = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeek() 1226 int64_t address_long = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeekArray() 1452 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapLong() 1453 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4); in UnstartedUnsafeCompareAndSwapLong() 1454 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong() 1481 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapObject() 1532 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeGetObjectVolatile() 1546 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutObjectVolatile() 1568 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutOrderedObject()
|
D | shadow_frame.h | 169 int64_t GetVRegLong(size_t i) const { in GetVRegLong() function
|
D | interpreter_common.h | 471 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetFieldValue()
|
/art/runtime/ |
D | method_handles-inl.h | 50 return shadow_frame_.GetVRegLong(NextLong()); in GetLong()
|
D | stack.cc | 416 *val = cur_shadow_frame_->GetVRegLong(vreg); in GetVRegPair()
|
D | reflection.cc | 205 AppendWide(shadow_frame->GetVRegLong(cur_arg)); in BuildArgArrayFromFrame()
|
D | method_handles.cc | 887 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetValueFromShadowFrame()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 634 ? shadow_frame->GetVRegLong(vRegA) in MterpFieldAccess()
|