Lines Matching refs:ArtMethod

104 ArtMethod* StackVisitor::GetMethod() const {  in GetMethod()
143 extern "C" mirror::Object* artQuickGetProxyThisObject(ArtMethod** sp)
148 ArtMethod* m = GetMethod(); in GetThisObject()
156 reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*)); in GetThisObject()
179 << ArtMethod::PrettyMethod(m); in GetThisObject()
220 bool StackVisitor::GetVReg(ArtMethod* m, in GetVReg()
272 bool StackVisitor::GetVRegFromOptimizedCode(ArtMethod* m, uint16_t vreg, VRegKind kind, in GetVRegFromOptimizedCode()
407 bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, in GetVRegPair()
439 bool StackVisitor::GetVRegPairFromOptimizedCode(ArtMethod* m, uint16_t vreg, in GetVRegPairFromOptimizedCode()
471 ShadowFrame* StackVisitor::PrepareSetVReg(ArtMethod* m, uint16_t vreg, bool wide) { in PrepareSetVReg()
494 bool StackVisitor::SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind) { in SetVReg()
504 bool StackVisitor::SetVRegReference(ArtMethod* m, uint16_t vreg, ObjPtr<mirror::Object> new_value) { in SetVRegReference()
513 bool StackVisitor::SetVRegPair(ArtMethod* m, in SetVRegPair()
593 bool StackVisitor::GetNextMethodAndDexPc(ArtMethod** next_method, uint32_t* next_dex_pc) { in GetNextMethodAndDexPc()
609 ArtMethod* method = GetMethod(); in GetNextMethodAndDexPc()
625 ArtMethod* next_method_; in GetNextMethodAndDexPc()
651 ArtMethod* m = GetMethod(); in DescribeLocation()
663 void StackVisitor::SetMethod(ArtMethod* method) { in SetMethod()
676 static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc) in AssertPcIsWithinQuickCode()
718 ArtMethod* method = GetMethod(); in ValidateFrame()
735 ArtMethod* canonical = method->GetCanonicalMethod(ptrSize); in ValidateFrame()
788 ArtMethod* method = GetMethod(); in GetCurrentQuickFrameInfo()
846 ArtMethod* method = *cur_quick_frame_; in WalkStack()
940 ArtMethod* callee = in WalkStack()
942 CHECK_EQ(GetMethod(), callee) << "Expected: " << ArtMethod::PrettyMethod(callee) in WalkStack()
943 << " Found: " << ArtMethod::PrettyMethod(GetMethod()); in WalkStack()
952 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
953 << " Found: " << ArtMethod::PrettyMethod(GetMethod()->GetNonObsoleteMethod()); in WalkStack()
960 cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame); in WalkStack()
963 LOG(INFO) << ArtMethod::PrettyMethod(method) << "@" << method << " size=" << frame_size in WalkStack()