Home
last modified time | relevance | path

Searched refs:top_shadow_frame_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dstack.h305 : link_(NULL), top_shadow_frame_(NULL), top_quick_frame_(NULL), top_quick_frame_pc_(0) {} in ManagedStack()
331 DCHECK(top_shadow_frame_ == NULL); in SetTopQuickFrame()
340 DCHECK(top_shadow_frame_ == NULL); in SetTopQuickFramePc()
354 ShadowFrame* old_frame = top_shadow_frame_; in PushShadowFrame()
355 top_shadow_frame_ = new_top_frame; in PushShadowFrame()
362 CHECK(top_shadow_frame_ != NULL); in PopShadowFrame()
363 ShadowFrame* frame = top_shadow_frame_; in PopShadowFrame()
364 top_shadow_frame_ = frame->GetLink(); in PopShadowFrame()
369 return top_shadow_frame_; in GetTopShadowFrame()
374 top_shadow_frame_ = top; in SetTopShadowFrame()
[all …]
Dstack.cc62 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; in NumJniShadowFrameReferences()
76 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL; in ShadowFramesContain()
Dthread.cc1755 instrumentation_frames_to_pop_(0), top_shadow_frame_(NULL), prev_shadow_frame_(NULL) { in CatchBlockStackVisitor()
1843 top_shadow_frame_ = new_frame; in HandleDeoptimization()
1885 self_->SetDeoptimizationShadowFrame(top_shadow_frame_); in DoLongJump()
1920 ShadowFrame* top_shadow_frame_; member in art::CatchBlockStackVisitor