Lines Matching refs:cur_quick_frame_

70       cur_quick_frame_(nullptr),  in StackVisitor()
85 DCHECK(!(*cur_quick_frame_)->IsNative()); in GetCurrentInlineInfo()
94 DCHECK(!(*cur_quick_frame_)->IsNative()); in GetCurrentStackMap()
107 } else if (cur_quick_frame_ != nullptr) { in GetMethod()
113 return *cur_quick_frame_; in GetMethod()
122 } else if (cur_quick_frame_ != nullptr) { in GetDexPc()
136 return NterpGetDexPC(cur_quick_frame_); in GetDexPc()
152 if (cur_quick_frame_ != nullptr) { in GetThisObject()
156 reinterpret_cast<char*>(cur_quick_frame_) + sizeof(ArtMethod*)); in GetThisObject()
163 hs = GetGenericJniHandleScope(cur_quick_frame_, num_handle_scope_references); in GetThisObject()
170 if (cur_quick_frame_ != nullptr) { in GetThisObject()
171 return artQuickGetProxyThisObject(cur_quick_frame_); in GetThisObject()
225 if (cur_quick_frame_ != nullptr) { in GetVReg()
236 ? NterpGetVRegReference(cur_quick_frame_, vreg) in GetVReg()
237 : NterpGetVReg(cur_quick_frame_, vreg); in GetVReg()
302 const uint8_t* addr = reinterpret_cast<const uint8_t*>(cur_quick_frame_) + offset; in GetVRegFromOptimizedCode()
346 const uint8_t* sp = reinterpret_cast<const uint8_t*>(cur_quick_frame_); in GetVRegFromOptimizedCode()
421 if (cur_quick_frame_ == nullptr) { in GetVRegPair()
427 uint64_t val_lo = NterpGetVReg(cur_quick_frame_, vreg); in GetVRegPair()
428 uint64_t val_hi = NterpGetVReg(cur_quick_frame_, vreg + 1); in GetVRegPair()
540 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; in GetGPRAddress()
546 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; in GetGPR()
557 DCHECK(cur_quick_frame_ != nullptr) << "This is a quick frame routine"; in GetFPR()
668 DCHECK(cur_quick_frame_ != nullptr); in SetMethod()
672 *cur_quick_frame_ = method; in SetMethod()
759 if (cur_quick_frame_ != nullptr) { in ValidateFrame()
784 return NterpFrameInfo(cur_quick_frame_); in GetCurrentQuickFrameInfo()
840 cur_quick_frame_ = current_fragment->GetTopQuickFrame(); in WalkStack()
843 if (cur_quick_frame_ != nullptr) { // Handle quick stack frames. in WalkStack()
846 ArtMethod* method = *cur_quick_frame_; in WalkStack()
921 context_->FillCalleeSaves(reinterpret_cast<uint8_t*>(cur_quick_frame_), frame_info); in WalkStack()
959 uint8_t* next_frame = reinterpret_cast<uint8_t*>(cur_quick_frame_) + frame_size; in WalkStack()
960 cur_quick_frame_ = reinterpret_cast<ArtMethod**>(next_frame); in WalkStack()
971 << " next=" << *cur_quick_frame_; in WalkStack()
977 method = *cur_quick_frame_; in WalkStack()