Lines Matching refs:MCSectionSubPair
64 using MCSectionSubPair = std::pair<MCSection *, const MCExpr *>; variable
217 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack;
369 MCSectionSubPair getCurrentSection() const { in getCurrentSection()
372 return MCSectionSubPair(); in getCurrentSection()
377 MCSectionSubPair getPreviousSection() const { in getPreviousSection()
380 return MCSectionSubPair(); in getPreviousSection()
410 MCSectionSubPair OldSection = I->first; in PopSection()
412 MCSectionSubPair NewSection = I->first; in PopSection()
441 MCSectionSubPair curSection = SectionStack.back().first;
443 if (MCSectionSubPair(Section, Subsection) != curSection)
444 SectionStack.back().first = MCSectionSubPair(Section, Subsection);