Searched refs:frame_id (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | quick_exception_handler.cc | 148 size_t frame_id = GetFrameId(); in HandleTryItems() local 149 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(frame_id); in HandleTryItems() 152 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); in HandleTryItems() 490 const size_t frame_id = GetFrameId(); in VisitFrame() local 491 ShadowFrame* new_frame = GetThread()->FindDebuggerShadowFrame(frame_id); in VisitFrame() 499 updated_vregs = GetThread()->GetUpdatedVRegFlags(frame_id); in VisitFrame() 524 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); in VisitFrame() 525 DCHECK(GetThread()->FindDebuggerShadowFrame(frame_id) == nullptr); in VisitFrame()
|
D | stack.cc | 216 size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId(); in GetVRegFromDebuggerShadowFrame() local 217 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); in GetVRegFromDebuggerShadowFrame() 219 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id); in GetVRegFromDebuggerShadowFrame() 488 const size_t frame_id = GetFrameId(); in PrepareSetVReg() local 490 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); in PrepareSetVReg() 494 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; in PrepareSetVReg() 496 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true; in PrepareSetVReg()
|
D | thread.cc | 457 static FrameIdToShadowFrame* Create(size_t frame_id, in Create() argument 463 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create() 480 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() argument 483 : frame_id_(frame_id), in FrameIdToShadowFrame() 496 size_t frame_id) { in FindFrameIdToShadowFrame() argument 499 if (record->GetFrameId() == frame_id) { in FindFrameIdToShadowFrame() 502 CHECK(found == nullptr) << "Multiple records for the frame " << frame_id; in FindFrameIdToShadowFrame() 512 ShadowFrame* Thread::FindDebuggerShadowFrame(size_t frame_id) { in FindDebuggerShadowFrame() argument 514 tlsPtr_.frame_id_to_shadow_frame, frame_id); in FindDebuggerShadowFrame() 522 bool* Thread::GetUpdatedVRegFlags(size_t frame_id) { in GetUpdatedVRegFlags() argument [all …]
|
D | thread.h | 1318 ShadowFrame* FindDebuggerShadowFrame(size_t frame_id) 1322 bool* GetUpdatedVRegFlags(size_t frame_id) REQUIRES_SHARED(Locks::mutator_lock_); 1325 ShadowFrame* FindOrCreateDebuggerShadowFrame(size_t frame_id, 1332 void RemoveDebuggerShadowFrameMapping(size_t frame_id)
|