Home
last modified time | relevance | path

Searched refs:CPSections (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1206 SmallVector<SectionCPs, 4> CPSections; in EmitConstantPool() local
1223 unsigned SecIdx = CPSections.size(); in EmitConstantPool()
1225 if (CPSections[--SecIdx].S == S) { in EmitConstantPool()
1231 SecIdx = CPSections.size(); in EmitConstantPool()
1232 CPSections.push_back(SectionCPs(S, Align)); in EmitConstantPool()
1235 if (Align > CPSections[SecIdx].Alignment) in EmitConstantPool()
1236 CPSections[SecIdx].Alignment = Align; in EmitConstantPool()
1237 CPSections[SecIdx].CPEs.push_back(i); in EmitConstantPool()
1243 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) { in EmitConstantPool()
1244 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) { in EmitConstantPool()
[all …]