/art/test/457-regs/ |
D | regs_jni.cc | 42 CHECK(GetVReg(m, 0, kIntVReg, &value)); in VisitFrame() 45 CHECK(GetVReg(m, 1, kIntVReg, &value)); in VisitFrame() 48 CHECK(GetVReg(m, 2, kIntVReg, &value)); in VisitFrame() 51 CHECK(GetVReg(m, 3, kIntVReg, &value)); in VisitFrame() 54 CHECK(GetVReg(m, 4, kIntVReg, &value)); in VisitFrame() 60 CHECK(GetVReg(m, 0, kIntVReg, &value)); in VisitFrame() 63 CHECK(GetVReg(m, 1, kIntVReg, &value)); in VisitFrame() 66 bool success = GetVReg(m, 2, kIntVReg, &value); in VisitFrame() 71 CHECK(GetVReg(m, 3, kIntVReg, &value)); in VisitFrame() 74 CHECK(GetVReg(m, 4, kFloatVReg, &value)); in VisitFrame() [all …]
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 321 int32_t index = GetVReg(C()); in HandleAGet() 337 int32_t index = GetVReg(C()); in HandleAPut() 378 SetVReg(A(), GetVReg(B())); in MOVE() 383 SetVReg(A(), GetVReg(B())); in MOVE_FROM16() 388 SetVReg(A(), GetVReg(B())); in MOVE_16() 454 result.SetI(GetVReg(A())); in RETURN() 698 int32_t length = GetVReg(B()); in NEW_ARRAY() 796 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ() 800 return HandleIf(GetVReg(A()) != GetVReg(B()), C()); in IF_NE() 804 return HandleIf(GetVReg(A()) < GetVReg(B()), C()); in IF_LT() [all …]
|
D | interpreter_intrinsics.cc | 40 BINARY_INTRINSIC(name, op, GetVReg(arg[0]), GetVReg(arg[1]), set) 46 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVReg(arg[2]), set) 62 UNARY_INTRINSIC(MterpIntegerReverse, ReverseBits32, GetVReg, SetI); 65 UNARY_INTRINSIC(MterpIntegerReverseBytes, BSWAP, GetVReg, SetI); 68 UNARY_INTRINSIC(MterpIntegerBitCount, POPCOUNT, GetVReg, SetI); 74 UNARY_INTRINSIC(MterpIntegerHighestOneBit, HighestOneBitValue, GetVReg, SetI); 77 UNARY_INTRINSIC(MterpIntegerLowestOneBit, LowestOneBitValue, GetVReg, SetI); 80 UNARY_INTRINSIC(MterpIntegerNumberOfLeadingZeros, JAVASTYLE_CLZ, GetVReg, SetI); 83 UNARY_INTRINSIC(MterpIntegerNumberOfTrailingZeros, JAVASTYLE_CTZ, GetVReg, SetI); 92 UNARY_INTRINSIC(MterpIntegerSignum, Signum, GetVReg, SetI); [all …]
|
D | interpreter_common.h | 456 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 459 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 462 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 465 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg))); in GetFieldValue() 468 field_value.SetI(shadow_frame.GetVReg(vreg)); in GetFieldValue() 739 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoPackedSwitch() 767 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoSparseSwitch() 824 uint32_t raw_value = shadow_frame.GetVReg(i); in TraceExecution()
|
D | shadow_frame.h | 138 int32_t GetVReg(size_t i) const { in GetVReg() function 146 return static_cast<int16_t>(GetVReg(i)); in GetVRegShort() 382 CHECK((GetVReg(i) == reference_value) || (reference_value == 0)); in CheckConsistentVRegs()
|
D | unstarted_runtime.cc | 99 uint32_t int_value = static_cast<uint32_t>(shadow_frame->GetVReg(arg_offset)); in CharacterLowerUpper() 224 initialize_class = shadow_frame->GetVReg(arg_offset + 1) != 0; in UnstartedClassForNameCommon() 452 const int32_t default_value = shadow_frame->GetVReg(arg_offset + 1); in UnstartedClassGetInnerClassFlags() 780 jint src_pos = shadow_frame->GetVReg(arg_offset + 1); in UnstartedSystemArraycopy() 781 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); in UnstartedSystemArraycopy() 782 jint length = shadow_frame->GetVReg(arg_offset + 4); in UnstartedSystemArraycopy() 1234 int offset = shadow_frame->GetVReg(arg_offset + 3); in UnstartedMemoryPeekArray() 1235 int count = shadow_frame->GetVReg(arg_offset + 4); in UnstartedMemoryPeekArray() 1280 jint start = shadow_frame->GetVReg(arg_offset + 1); in UnstartedStringGetCharsNoCheck() 1281 jint end = shadow_frame->GetVReg(arg_offset + 2); in UnstartedStringGetCharsNoCheck() [all …]
|
D | interpreter_common.cc | 315 reinterpret_cast32<mirror::Object*>(shadow_frame->GetVReg(i))); in SetStringInitValueToAllAliases() 318 reinterpret_cast32<mirror::Object*>(shadow_frame->GetVReg(i))); in SetStringInitValueToAllAliases() 1168 uint32_t src_value = shadow_frame.GetVReg(src_reg); in AssignRegister() 1371 (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << BitSizeOf<uint32_t>()) | in DoCallCommon() 1372 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg)); in DoCallCommon() 1381 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg)); in DoCallCommon() 1498 i, shadow_frame.GetVReg(src_reg)); in DoFilledNewArray()
|
/art/test/454-get-vreg/ |
D | get_vreg_jni.cc | 45 CHECK(GetVReg(m, 0, kIntVReg, &value)); in VisitFrame() 48 bool success = GetVReg(m, 1, kIntVReg, &value); in VisitFrame() 53 success = GetVReg(m, 2, kIntVReg, &value); in VisitFrame() 58 CHECK(GetVReg(m, 3, kReferenceVReg, &value)); in VisitFrame() 61 CHECK(GetVReg(m, 4, kIntVReg, &value)); in VisitFrame() 64 CHECK(GetVReg(m, 5, kFloatVReg, &value)); in VisitFrame() 68 CHECK(GetVReg(m, 6, kIntVReg, &value)); in VisitFrame() 71 CHECK(GetVReg(m, 7, kIntVReg, &value)); in VisitFrame() 74 CHECK(GetVReg(m, 8, kIntVReg, &value)); in VisitFrame() 77 CHECK(GetVReg(m, 9, kIntVReg, &value)); in VisitFrame() [all …]
|
/art/test/461-get-reference-vreg/ |
D | get_reference_vreg_jni.cc | 43 CHECK_EQ(sv->GetVReg(m, dex_reg, vreg_kind, &value), false); in CheckOptimizedOutRegLiveness() 45 CHECK(sv->GetVReg(m, dex_reg, vreg_kind, &value)); in CheckOptimizedOutRegLiveness() 68 CHECK(stack_visitor->GetVReg(m, 1, kReferenceVReg, &value)); in FindMethodIndex()
|
/art/test/466-get-live-vreg/ |
D | get_live_vreg_jni.cc | 67 CHECK_EQ(GetVReg(m, dex_reg, vreg_kind, &value), false); in CheckOptimizedOutRegLiveness() 69 CHECK(GetVReg(m, dex_reg, vreg_kind, &value)); in CheckOptimizedOutRegLiveness()
|
/art/test/543-env-long-ref/ |
D | env_long_ref.cc | 43 CHECK(stack_visitor->GetVReg(m, 1, kReferenceVReg, &stack_value)); in Java_Main_lookForMyRegisters()
|
/art/runtime/ |
D | java_frame_root_info.h | 55 size_t GetVReg() const { in GetVReg() function
|
D | method_handles.cc | 322 uint32_t src_value = caller_frame.GetVReg(src_reg); in CopyArgumentsFromCallerFrame() 870 field_value.SetZ(static_cast<uint8_t>(shadow_frame.GetVReg(vreg))); in GetValueFromShadowFrame() 873 field_value.SetB(static_cast<int8_t>(shadow_frame.GetVReg(vreg))); in GetValueFromShadowFrame() 876 field_value.SetC(static_cast<uint16_t>(shadow_frame.GetVReg(vreg))); in GetValueFromShadowFrame() 879 field_value.SetS(static_cast<int16_t>(shadow_frame.GetVReg(vreg))); in GetValueFromShadowFrame() 883 field_value.SetI(shadow_frame.GetVReg(vreg)); in GetValueFromShadowFrame()
|
D | stack.cc | 176 if (!GetVReg(m, reg, kReferenceVReg, &value)) { in GetThisObject() 203 *val = shadow_frame->GetVReg(vreg); in GetVRegFromDebuggerShadowFrame() 212 bool StackVisitor::GetVReg(ArtMethod* m, in GetVReg() function in art::StackVisitor 258 *val = cur_shadow_frame_->GetVReg(vreg); in GetVReg()
|
D | method_handles-inl.h | 46 return shadow_frame_.GetVReg(Next()); in Get()
|
D | stack.h | 227 bool GetVReg(ArtMethod* m,
|
D | reflection.cc | 188 Append(shadow_frame->GetVReg(cur_arg)); in BuildArgArrayFromFrame() 200 Append(shadow_frame->GetVReg(cur_arg)); in BuildArgArrayFromFrame()
|
D | quick_exception_handler.cc | 281 stack_visitor->GetVReg(stack_visitor->GetMethod(), in SetCatchEnvironmentForOptimizedHandler()
|
D | monitor.cc | 1520 success = stack_visitor->GetVReg(m, dex_reg, kReferenceVReg, &value); in VisitLocks()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 390 int32_t index = shadow_frame->GetVReg(inst->VRegC_23x()); in MterpAputObject() 455 int32_t length = shadow_frame->GetVReg(inst->VRegB_22c(inst_data)); in MterpNewArray() 635 : shadow_frame->GetVReg(vRegA); in MterpFieldAccess()
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 1040 size_t vreg = java_info.GetVReg(); in GetReferenceKind() 1718 if (jfri.GetVReg() == art::JavaFrameRootInfo::kMethodDeclaringClass) { in ReplaceStrongRoots() 1745 if (jfri.GetVReg() == art::JavaFrameRootInfo::kMethodDeclaringClass) { in ReplaceStrongRoots()
|
D | ti_method.cc | 891 if (!visitor.GetVReg(method, in Execute() 903 if (!visitor.GetVReg(method, in Execute()
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 630 if (jrfi.GetVReg() == JavaFrameRootInfo::kNativeReferenceArgument) { in VisitRoots()
|