Lines Matching refs:Subsection
59 MCSection::getSubsectionInsertionPoint(unsigned Subsection) { in getSubsectionInsertionPoint() argument
60 if (Subsection == 0 && SubsectionFragmentMap.empty()) in getSubsectionInsertionPoint()
66 std::make_pair(Subsection, (MCFragment *)nullptr)); in getSubsectionInsertionPoint()
69 ExactMatch = MI->first == Subsection; in getSubsectionInsertionPoint()
78 if (!ExactMatch && Subsection != 0) { in getSubsectionInsertionPoint()
82 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F)); in getSubsectionInsertionPoint()
85 F->setSubsectionNumber(Subsection); in getSubsectionInsertionPoint()
93 void MCSection::addPendingLabel(MCSymbol *label, unsigned Subsection) { in addPendingLabel() argument
94 PendingLabels.push_back(PendingLabel(label, Subsection)); in addPendingLabel()
98 unsigned Subsection) { in flushPendingLabels() argument
106 if (Label.Subsection == Subsection) { in flushPendingLabels()
120 this->getSubsectionInsertionPoint(Label.Subsection); in flushPendingLabels()
124 flushPendingLabels(F, 0, Label.Subsection); in flushPendingLabels()