Lines Matching refs:cur_quick_frame_
88 cur_quick_frame_(NULL), cur_quick_frame_pc_(0), num_frames_(0), cur_depth_(0), in StackVisitor()
96 } else if (cur_quick_frame_ != NULL) { in GetDexPc()
108 if (cur_quick_frame_ != NULL) { in GetThisObject()
111 reinterpret_cast<char*>(cur_quick_frame_) + in GetThisObject()
136 if (cur_quick_frame_ != NULL) { in GetVReg()
151 return GetVReg(cur_quick_frame_, code_item, m->GetCoreSpillMask(), m->GetFpSpillMask(), in GetVReg()
161 if (cur_quick_frame_ != NULL) { in SetVReg()
188 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; in GetGPR()
193 DCHECK(cur_quick_frame_ != NULL) << "This is a quick frame routine"; in SetGPR()
264 if (cur_quick_frame_ != NULL) { in SanityCheckFrame()
288 cur_quick_frame_ = current_fragment->GetTopQuickFrame(); in WalkStack()
290 if (cur_quick_frame_ != NULL) { // Handle quick stack frames. in WalkStack()
293 mirror::ArtMethod* method = *cur_quick_frame_; in WalkStack()
306 byte* return_pc_addr = reinterpret_cast<byte*>(cur_quick_frame_) + return_pc_offset; in WalkStack()
336 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size; in WalkStack()
337 cur_quick_frame_ = reinterpret_cast<mirror::ArtMethod**>(next_frame); in WalkStack()
339 method = *cur_quick_frame_; in WalkStack()