Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dmanaged_stack.h47 : tagged_top_quick_frame_(TaggedTopQuickFrame::CreateNotTagged(nullptr)), in ManagedStack()
89 tagged_top_quick_frame_ = TaggedTopQuickFrame::CreateNotTagged(top); in SetTopQuickFrame()
95 tagged_top_quick_frame_ = TaggedTopQuickFrame::CreateTagged(top); in SetTopQuickFrameTagged()
125 class TaggedTopQuickFrame {
127 static TaggedTopQuickFrame CreateNotTagged(ArtMethod** sp) { in CreateNotTagged()
129 return TaggedTopQuickFrame(reinterpret_cast<uintptr_t>(sp)); in CreateNotTagged()
132 static TaggedTopQuickFrame CreateTagged(ArtMethod** sp) { in CreateTagged()
134 return TaggedTopQuickFrame(reinterpret_cast<uintptr_t>(sp) | 1u); in CreateTagged()
157 explicit TaggedTopQuickFrame(uintptr_t tagged_sp) : tagged_sp_(tagged_sp) { } in TaggedTopQuickFrame() function
161 static_assert(sizeof(TaggedTopQuickFrame) == sizeof(uintptr_t), "TaggedTopQuickFrame size check");
[all …]