Home
last modified time | relevance | path

Searched refs:GetVRegLong (Results 1 – 10 of 10) 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-inl.h418 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in MOVE_WIDE()
424 shadow_frame.GetVRegLong(inst->VRegB_22x())); in MOVE_WIDE_FROM16()
430 shadow_frame.GetVRegLong(inst->VRegB_32x())); in MOVE_WIDE_16()
558 result.SetJ(shadow_frame.GetVRegLong(inst->VRegA_11x(inst_data))); in RETURN_WIDE()
1043 int64_t val1 = shadow_frame.GetVRegLong(inst->VRegB_23x()); in CMP_LONG()
1044 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in CMP_LONG()
1413 int64_t val = shadow_frame.GetVRegLong(inst->VRegA_23x(inst_data)); in APUT_WIDE()
1801 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in NEG_LONG()
1807 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in NOT_LONG()
1843 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in LONG_TO_INT()
[all …]
Dunstarted_runtime.cc1184 int64_t address = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeek()
1248 int64_t address_long = shadow_frame->GetVRegLong(arg_offset); in UnstartedMemoryPeekArray()
1455 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapLong()
1456 int64_t expectedValue = shadow_frame->GetVRegLong(arg_offset + 4); in UnstartedUnsafeCompareAndSwapLong()
1457 int64_t newValue = shadow_frame->GetVRegLong(arg_offset + 6); in UnstartedUnsafeCompareAndSwapLong()
1480 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeCompareAndSwapObject()
1527 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafeGetObjectVolatile()
1541 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutObjectVolatile()
1559 int64_t offset = shadow_frame->GetVRegLong(arg_offset + 2); in UnstartedUnsafePutOrderedObject()
Dshadow_frame.h171 int64_t GetVRegLong(size_t i) const { in GetVRegLong() function
Dinterpreter_common.cc294 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetFieldValue()
441 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA)); in EXPLICIT_DO_FIELD_PUT_ALL_TEMPLATE_DECL()
/art/runtime/
Dmethod_handles-inl.h50 return shadow_frame_.GetVRegLong(NextLong()); in GetLong()
Dstack.cc338 *val = cur_shadow_frame_->GetVRegLong(vreg); in GetVRegPair()
Dreflection.cc205 AppendWide(shadow_frame->GetVRegLong(cur_arg)); in BuildArgArrayFromFrame()
Dmethod_handles.cc871 field_value.SetJ(shadow_frame.GetVRegLong(vreg)); in GetValueFromShadowFrame()
/art/runtime/interpreter/mterp/
Dmterp.cc691 ? shadow_frame->GetVRegLong(vRegA) in MterpFieldAccess()