Home | History | Annotate | Download | only in MC

Lines Matching defs:SectionStack

69     /// SectionStack - This is stack of current and previous section
72 const MCSection *>, 4> SectionStack;
163 if (!SectionStack.empty())
164 return SectionStack.back().first;
171 if (!SectionStack.empty())
172 return SectionStack.back().second;
185 SectionStack.push_back(std::make_pair(getCurrentSection(),
194 if (SectionStack.size() <= 1)
196 const MCSection *oldSection = SectionStack.pop_back_val().first;
197 const MCSection *curSection = SectionStack.back().first;
210 const MCSection *curSection = SectionStack.back().first;
211 SectionStack.back().second = curSection;
213 SectionStack.back().first = Section;
223 const MCSection *curSection = SectionStack.back().first;
224 SectionStack.back().second = curSection;
226 SectionStack.back().first = Section;