Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCStreamer.h70 const MCSection *>, 4> SectionStack; variable
165 if (!SectionStack.empty()) in getCurrentSection()
166 return SectionStack.back().first; in getCurrentSection()
173 if (!SectionStack.empty()) in getPreviousSection()
174 return SectionStack.back().second; in getPreviousSection()
187 SectionStack.push_back(std::make_pair(getCurrentSection(), in PushSection()
196 if (SectionStack.size() <= 1) in PopSection()
198 const MCSection *oldSection = SectionStack.pop_back_val().first; in PopSection()
199 const MCSection *curSection = SectionStack.back().first; in PopSection()
212 const MCSection *curSection = SectionStack.back().first; in SwitchSection()
[all …]
/external/llvm/lib/MC/
DMCStreamer.cpp30 SectionStack.push_back(std::make_pair(section, section)); in MCStreamer()