Searched refs:SectionTable (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 286 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local 313 append(Buffer, SectionTable); in createImportDescriptor() 422 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local 436 append(Buffer, SectionTable); in createNullImportDescriptor() 485 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local 512 append(Buffer, SectionTable); in createNullThunk() 597 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local 608 append(Buffer, SectionTable); in createWeakExternal()
|
H A D | COFFObjectFile.cpp | 123 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec() 127 reinterpret_cast<uintptr_t>(SectionTable); in toSec() 285 return toSec(Sec) - SectionTable; in getSectionIndex() 343 Sec.getRawDataRefImpl().p - reinterpret_cast<uintptr_t>(SectionTable); in getSectionID() 817 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile() 925 getObject(SectionTable, Data, base() + CurPtr, in initialize() 1030 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin() 1038 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end() 1121 return SectionTable + (Index - 1); in getSection()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 137 std::vector<MCSectionELF *> SectionTable; member 211 SectionTable.push_back(Sec); in addToSectionTable() 213 return SectionTable.size(); in addToSectionTable() 663 MCSectionELF *SymtabShndxSection = SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable() 932 const unsigned NumSections = SectionTable.size(); in writeSectionHeader() 939 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader() 1082 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject() 1083 : SectionTable.size() + 1, in writeObject()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | COFF.h | 846 const coff_section *SectionTable; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 597 std::vector<std::string> SectionTable; member in __anondf6e26480411::BitcodeReader 4033 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord() 4035 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord() 4228 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord() 4230 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord() 4648 SectionTable.push_back(S); in parseModule()
|