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
150 if (!SectionStack.empty()) in getCurrentSection()
151 return SectionStack.back().first; in getCurrentSection()
158 if (!SectionStack.empty()) in getPreviousSection()
159 return SectionStack.back().second; in getPreviousSection()
172 SectionStack.push_back(std::make_pair(getCurrentSection(), in PushSection()
181 if (SectionStack.size() <= 1) in PopSection()
183 const MCSection *oldSection = SectionStack.pop_back_val().first; in PopSection()
184 const MCSection *curSection = SectionStack.back().first; in PopSection()
197 const MCSection *curSection = SectionStack.back().first; in SwitchSection()
[all …]
/external/llvm/lib/MC/
DMCStreamer.cpp28 SectionStack.push_back(std::make_pair(section, section)); in MCStreamer()