Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFImportFile.cpp203 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local
230 append(Buffer, SectionTable); in createImportDescriptor()
339 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local
353 append(Buffer, SectionTable); in createNullImportDescriptor()
402 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local
431 append(Buffer, SectionTable); in createNullThunk()
509 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local
520 append(Buffer, SectionTable); in createWeakExternal()
H A DCOFFObjectFile.cpp124 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec()
128 reinterpret_cast<uintptr_t>(SectionTable); in toSec()
286 return toSec(Sec) - SectionTable; in getSectionIndex()
337 Sec.getRawDataRefImpl().p - reinterpret_cast<uintptr_t>(SectionTable); in getSectionID()
715 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
813 getObject(SectionTable, Data, base() + CurPtr, in initialize()
917 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
925 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
1015 return SectionTable + (Index - 1); in getSection()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DELFObjectWriter.cpp140 std::vector<const MCSectionELF *> SectionTable; member
336 SectionTable.push_back(Sec); in addToSectionTable()
338 return SectionTable.size(); in addToSectionTable()
770 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
1039 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1046 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1212 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1213 : SectionTable.size() + 1, in writeObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp492 std::vector<std::string> SectionTable; member in __anon8c0d27130411::BitcodeReader
3254 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
3256 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
3404 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
3406 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
3785 SectionTable.push_back(S); in parseModule()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DCOFF.h810 const coff_section *SectionTable; variable