Home | History | Annotate | Download | only in MC

Lines Matching refs:SectionStack

67     /// SectionStack - This is stack of current and previous section
70 const MCSection *>, 4> SectionStack;
165 if (!SectionStack.empty())
166 return SectionStack.back().first;
173 if (!SectionStack.empty())
174 return SectionStack.back().second;
187 SectionStack.push_back(std::make_pair(getCurrentSection(),
196 if (SectionStack.size() <= 1)
198 const MCSection *oldSection = SectionStack.pop_back_val().first;
199 const MCSection *curSection = SectionStack.back().first;
212 const MCSection *curSection = SectionStack.back().first;
213 SectionStack.back().second = curSection;
215 SectionStack.back().first = Section;
225 const MCSection *curSection = SectionStack.back().first;
226 SectionStack.back().second = curSection;
228 SectionStack.back().first = Section;