Searched refs:SectionTable (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 209 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local 236 append(Buffer, SectionTable); in createImportDescriptor() 345 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local 359 append(Buffer, SectionTable); in createNullImportDescriptor() 408 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local 437 append(Buffer, SectionTable); in createNullThunk() 515 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local 526 append(Buffer, SectionTable); in createWeakExternal()
|
H A D | COFFObjectFile.cpp | 124 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec() 128 reinterpret_cast<uintptr_t>(SectionTable); in toSec() 286 return toSec(Sec) - SectionTable; in getSectionIndex() 344 Sec.getRawDataRefImpl().p - reinterpret_cast<uintptr_t>(SectionTable); in getSectionID() 770 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile() 878 getObject(SectionTable, Data, base() + CurPtr, in initialize() 983 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin() 991 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end() 1084 return SectionTable + (Index - 1); in getSection()
|
/openbsd/gnu/llvm/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 138 std::vector<const MCSectionELF *> SectionTable; member 330 SectionTable.push_back(Sec); in addToSectionTable() 332 return SectionTable.size(); in addToSectionTable() 800 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable() 1054 const unsigned NumSections = SectionTable.size(); in writeSectionHeader() 1061 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader() 1210 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject() 1211 : SectionTable.size() + 1, in writeObject()
|
/openbsd/gnu/llvm/llvm/include/llvm/Object/ |
H A D | COFF.h | 799 const coff_section *SectionTable; variable
|
/openbsd/gnu/llvm/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 575 std::vector<std::string> SectionTable; member in __anonbda00ad50411::BitcodeReader 3846 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord() 3848 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord() 4032 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord() 4034 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord() 4441 SectionTable.push_back(S); in parseModule()
|