Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCStreamer.h216 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; variable
358 if (!SectionStack.empty()) in getCurrentSection()
359 return SectionStack.back().first; in getCurrentSection()
366 if (!SectionStack.empty()) in getPreviousSection()
367 return SectionStack.back().second; in getPreviousSection()
385 SectionStack.push_back( in PushSection()
394 if (SectionStack.size() <= 1) in PopSection()
396 auto I = SectionStack.end(); in PopSection()
404 SectionStack.pop_back(); in PopSection()
409 if (SectionStack.empty()) in SubSection()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCStreamer.cpp94 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer()
104 SectionStack.clear(); in reset()
105 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset()
1105 MCSectionSubPair curSection = SectionStack.back().first; in SwitchSection()
1106 SectionStack.back().second = curSection; in SwitchSection()
1109 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in SwitchSection()