HomeSort by relevance Sort by last modified time
    Searched refs:SectionList (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
ELFWriter.h 117 /// SectionList - This is the list of sections that we have emitted to the
120 std::vector<ELFSection*> SectionList;
121 unsigned NumSections; // Always = SectionList.size()
124 /// the SectionList. Used to quickly gather the Section Index from MAI names
159 SectionList.push_back(new ELFSection(Name, isLittleEndian, is64Bit));
160 SN = SectionList.back();
ELFWriter.cpp 101 while(!SectionList.empty()) {
102 delete SectionList.back();
103 SectionList.pop_back();
712 for (unsigned i = 1, e = SectionList.size(); i < e; ++i) {
713 ELFSection &ES = *SectionList[i];
758 for (unsigned i=0, e=SectionList.size(); i != e; ++i) {
759 ELFSection &S = *SectionList[i];
800 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
811 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
    [all...]

Completed in 33 milliseconds