Home
last modified time | relevance | path

Searched refs:GetLink (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dmanaged_stack-inl.h38 top_shadow_frame_ = frame->GetLink(); in PopShadowFrame()
Dhandle_scope-inl.h235 LocalScopeType* next = down_cast<LocalScopeType*>(current_scope_->GetLink()); in ~VariableSizedHandleScope()
246 cur = reinterpret_cast<const LocalScopeType*>(cur->GetLink()); in NumberOfReferences()
258 cur = reinterpret_cast<const LocalScopeType*>(cur->GetLink()); in Contains()
268 cur = reinterpret_cast<LocalScopeType*>(cur->GetLink()); in VisitRoots()
Dmanaged_stack.h66 ManagedStack* GetLink() const { in GetLink() function
Dreflective_handle_scope.h66 BaseReflectiveHandleScope* GetLink() { in GetLink() function
Dhandle_scope.h60 BaseHandleScope* GetLink() const { in GetLink() function
Dthread.h916 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope()
923 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope()
938 DCHECK_EQ(scope->GetLink(), tlsPtr_.top_reflective_handle_scope); in PushReflectiveHandleScope()
946 tlsPtr_.top_reflective_handle_scope = tlsPtr_.top_reflective_handle_scope->GetLink(); in PopReflectiveHandleScope()
Dthread.cc206 DeoptimizationContextRecord* GetLink() const { return link_; } in GetLink() function in art::DeoptimizationContextRecord
252 StackedShadowFrameRecord* GetLink() const { return link_; } in GetLink() function in art::StackedShadowFrameRecord
283 tlsPtr_.deoptimization_context_stack = record->GetLink(); in PopDeoptimizationContext()
437 tlsPtr_.stacked_shadow_frame_record = record->GetLink(); in PopStackedShadowFrame()
2625 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()
4122 brhs = brhs->GetLink()) { in VisitReflectiveTargets()
4149 record = record->GetLink()) { in VisitRoots()
4152 shadow_frame = shadow_frame->GetLink()) { in VisitRoots()
4159 record = record->GetLink()) { in VisitRoots()
Dstack.cc812 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) { in WalkStack()
963 cur_shadow_frame_ = cur_shadow_frame_->GetLink(); in WalkStack()
/art/runtime/interpreter/
Dshadow_frame.h129 ShadowFrame* GetLink() const { in GetLink() function
Dinterpreter.cc623 shadow_frame = shadow_frame->GetLink(); in EnterInterpreterFromDeoptimize()
703 ShadowFrame* prev_frame = frame.GetLink(); in PrevFrameWillRetry()
Dunstarted_runtime.cc997 if (shadow_frame->GetLink() == nullptr) { in GetImmediateCaller()
1000 return ArtMethod::PrettyMethod(shadow_frame->GetLink()->GetMethod()); in GetImmediateCaller()
1007 if (shadow_frame->GetLink() == nullptr) { in CheckCallers()
1011 std::string found_caller = ArtMethod::PrettyMethod(shadow_frame->GetLink()->GetMethod()); in CheckCallers()
1016 shadow_frame = shadow_frame->GetLink(); in CheckCallers()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc594 while (linked->GetLink() != nullptr) { in HandleDeoptimization()
595 linked = linked->GetLink(); in HandleDeoptimization()