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()
1245 if (SectionStack.size() <= 1) in popSection()
1247 auto I = SectionStack.end(); in popSection()
1255 SectionStack.pop_back(); in popSection()
1261 MCSectionSubPair curSection = SectionStack.back().first; in switchSection()
1262 SectionStack.back().second = curSection; in switchSection()
1265 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in switchSection()
1293 SectionStack.back().second = SectionStack.back().first; in switchSectionNoPrint()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCStreamer.h233 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; variable
394 if (!SectionStack.empty()) in getCurrentSection()
395 return SectionStack.back().first; in getCurrentSection()
404 if (!SectionStack.empty()) in getPreviousSection()
405 return SectionStack.back().second; in getPreviousSection()
417 SectionStack.push_back( in pushSection()