Lines Matching refs:Subsection
59 MCSection::getSubsectionInsertionPoint(unsigned Subsection) { in getSubsectionInsertionPoint() argument
60 if (Subsection == 0 && SubsectionFragmentMap.empty()) in getSubsectionInsertionPoint()
64 SubsectionFragmentMap, std::make_pair(Subsection, (MCFragment *)nullptr)); in getSubsectionInsertionPoint()
67 ExactMatch = MI->first == Subsection; in getSubsectionInsertionPoint()
76 if (!ExactMatch && Subsection != 0) { in getSubsectionInsertionPoint()
80 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F)); in getSubsectionInsertionPoint()
83 F->setSubsectionNumber(Subsection); in getSubsectionInsertionPoint()
91 void MCSection::addPendingLabel(MCSymbol *label, unsigned Subsection) { in addPendingLabel() argument
92 PendingLabels.push_back(PendingLabel(label, Subsection)); in addPendingLabel()
96 unsigned Subsection) { in flushPendingLabels() argument
101 if (Label.Subsection == Subsection) { in flushPendingLabels()
115 this->getSubsectionInsertionPoint(Label.Subsection); in flushPendingLabels()
123 flushPendingLabels(F, 0, Label.Subsection); in flushPendingLabels()