Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCStreamer.h342 if (!SectionStack.empty()) in getCurrentSection()
343 return SectionStack.back().first; in getCurrentSection()
350 if (!SectionStack.empty()) in getPreviousSection()
351 return SectionStack.back().second; in getPreviousSection()
369 SectionStack.push_back( in PushSection()
378 if (SectionStack.size() <= 1) in PopSection()
380 auto I = SectionStack.end(); in PopSection()
388 SectionStack.pop_back(); in PopSection()
393 if (SectionStack.empty()) in SubSection()
413 MCSectionSubPair curSection = SectionStack.back().first;
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCStreamer.cpp92 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer()
102 SectionStack.clear(); in reset()
103 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset()
1042 MCSectionSubPair curSection = SectionStack.back().first; in SwitchSection()
1043 SectionStack.back().second = curSection; in SwitchSection()
1046 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in SwitchSection()