Searched refs:TaggedTopQuickFrame (Results 1 – 1 of 1) sorted by relevance
47 : 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()129 class TaggedTopQuickFrame {131 static TaggedTopQuickFrame CreateNotTagged(ArtMethod** sp) { in CreateNotTagged()133 return TaggedTopQuickFrame(reinterpret_cast<uintptr_t>(sp)); in CreateNotTagged()136 static TaggedTopQuickFrame CreateTagged(ArtMethod** sp) { in CreateTagged()138 return TaggedTopQuickFrame(reinterpret_cast<uintptr_t>(sp) | 1u); in CreateTagged()161 explicit TaggedTopQuickFrame(uintptr_t tagged_sp) : tagged_sp_(tagged_sp) { } in TaggedTopQuickFrame() function165 static_assert(sizeof(TaggedTopQuickFrame) == sizeof(uintptr_t), "TaggedTopQuickFrame size check");[all …]