Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp96 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer()
105 SectionStack.clear(); in reset()
106 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset()
1342 if (SectionStack.size() <= 1) in popSection()
1344 auto I = SectionStack.end(); in popSection()
1352 SectionStack.pop_back(); in popSection()
1358 MCSectionSubPair curSection = SectionStack.back().first; in switchSection()
1359 SectionStack.back().second = curSection; in switchSection()
1362 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in switchSection()
1390 SectionStack.back().second = SectionStack.back().first; in switchSectionNoPrint()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCStreamer.h240 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; variable
412 if (!SectionStack.empty()) in getCurrentSection()
413 return SectionStack.back().first; in getCurrentSection()
422 if (!SectionStack.empty()) in getPreviousSection()
423 return SectionStack.back().second; in getPreviousSection()
435 SectionStack.push_back( in pushSection()