Home
last modified time | relevance | path

Searched refs:frame_id (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dquick_exception_handler.cc136 size_t frame_id = GetFrameId(); in HandleTryItems() local
137 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(frame_id); in HandleTryItems()
140 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); in HandleTryItems()
424 const size_t frame_id = GetFrameId(); in VisitFrame() local
425 ShadowFrame* new_frame = GetThread()->FindDebuggerShadowFrame(frame_id); in VisitFrame()
433 updated_vregs = GetThread()->GetUpdatedVRegFlags(frame_id); in VisitFrame()
440 GetThread()->RemoveDebuggerShadowFrameMapping(frame_id); in VisitFrame()
441 DCHECK(GetThread()->FindDebuggerShadowFrame(frame_id) == nullptr); in VisitFrame()
Dstack.cc158 size_t frame_id = const_cast<StackVisitor*>(this)->GetFrameId(); in GetVRegFromDebuggerShadowFrame() local
159 ShadowFrame* shadow_frame = thread_->FindDebuggerShadowFrame(frame_id); in GetVRegFromDebuggerShadowFrame()
161 bool* updated_vreg_flags = thread_->GetUpdatedVRegFlags(frame_id); in GetVRegFromDebuggerShadowFrame()
387 const size_t frame_id = GetFrameId(); in SetVReg() local
389 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); in SetVReg()
393 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; in SetVReg()
423 const size_t frame_id = GetFrameId(); in SetVRegPair() local
425 shadow_frame = thread_->FindOrCreateDebuggerShadowFrame(frame_id, num_regs, m, GetDexPc()); in SetVRegPair()
429 thread_->GetUpdatedVRegFlags(frame_id)[vreg] = true; in SetVRegPair()
430 thread_->GetUpdatedVRegFlags(frame_id)[vreg + 1] = true; in SetVRegPair()
[all …]
Dthread.cc440 static FrameIdToShadowFrame* Create(size_t frame_id, in Create() argument
446 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
463 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() argument
466 : frame_id_(frame_id), in FrameIdToShadowFrame()
479 size_t frame_id) { in FindFrameIdToShadowFrame() argument
482 if (record->GetFrameId() == frame_id) { in FindFrameIdToShadowFrame()
485 CHECK(found == nullptr) << "Multiple records for the frame " << frame_id; in FindFrameIdToShadowFrame()
495 ShadowFrame* Thread::FindDebuggerShadowFrame(size_t frame_id) { in FindDebuggerShadowFrame() argument
497 tlsPtr_.frame_id_to_shadow_frame, frame_id); in FindDebuggerShadowFrame()
505 bool* Thread::GetUpdatedVRegFlags(size_t frame_id) { in GetUpdatedVRegFlags() argument
[all …]
Dinstrumentation.cc1330 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk) + delta; in CheckStackDepth() local
1331 if (frame_id != instrumentation_frame.frame_id_) { in CheckStackDepth()
1332 LOG(ERROR) << "Expected frame_id=" << frame_id << " but found " in CheckStackDepth()
1335 CHECK_EQ(frame_id, instrumentation_frame.frame_id_); in CheckStackDepth()
1363 size_t frame_id = StackVisitor::ComputeNumFrames(self, kInstrumentationStackWalk); in PushInstrumentationStackFrame() local
1366 frame_id, interpreter_entry); in PushInstrumentationStackFrame()
Dinstrumentation.h734 size_t frame_id, in InstrumentationStackFrame()
739 frame_id_(frame_id), in InstrumentationStackFrame()
Dthread.h1021 ShadowFrame* FindDebuggerShadowFrame(size_t frame_id)
1025 bool* GetUpdatedVRegFlags(size_t frame_id) REQUIRES_SHARED(Locks::mutator_lock_);
1028 ShadowFrame* FindOrCreateDebuggerShadowFrame(size_t frame_id,
1035 void RemoveDebuggerShadowFrameMapping(size_t frame_id)
Ddebugger.cc2426 JDWP::FrameId frame_id(visitor->GetFrameId()); in GetThreadFrames()
2430 << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth, frame_id) << location; in GetThreadFrames()
2431 expandBufAdd8BE(buf, frame_id); in GetThreadFrames()
2521 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, in GetThisObject() argument
2536 if (frame_id != stack_visitor->GetFrameId()) { in GetThisObject()
2552 JDWP::FrameId frame_id, in FindAndHandleNonNativeFrame() argument
2559 if (stack_visitor->GetFrameId() != frame_id) { in FindAndHandleNonNativeFrame()
2580 JDWP::FrameId frame_id = request->ReadFrameId(); in GetLocalValues() local
2594 frame_id, in GetLocalValues()
2749 JDWP::FrameId frame_id = request->ReadFrameId(); in SetLocalValues() local
[all …]
Ddebugger.h514 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
/art/runtime/jdwp/
Djdwp_handler.cc1387 FrameId frame_id = request->ReadFrameId(); in SF_ThisObject() local
1390 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id); in SF_ThisObject()