Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:CPSections

1305   SmallVector<SectionCPs, 4> CPSections;
1322 unsigned SecIdx = CPSections.size();
1324 if (CPSections[--SecIdx].S == S) {
1330 SecIdx = CPSections.size();
1331 CPSections.push_back(SectionCPs(S, Align));
1334 if (Align > CPSections[SecIdx].Alignment)
1335 CPSections[SecIdx].Alignment = Align;
1336 CPSections[SecIdx].CPEs.push_back(i);
1342 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
1343 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
1344 unsigned CPI = CPSections[i].CPEs[j];
1349 if (CurSection != CPSections[i].S) {
1350 OutStreamer->SwitchSection(CPSections[i].S);
1351 EmitAlignment(Log2_32(CPSections[i].Alignment));
1352 CurSection = CPSections[i].S;