Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Object/
H A DCOFFImportFile.cpp207 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local
234 append(Buffer, SectionTable); in createImportDescriptor()
343 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local
357 append(Buffer, SectionTable); in createNullImportDescriptor()
406 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local
435 append(Buffer, SectionTable); in createNullThunk()
513 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local
524 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()
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()
1081 return SectionTable + (Index - 1); in getSection()
/llvm-project-15.0.7/llvm/lib/MC/
H A DELFObjectWriter.cpp138 std::vector<const MCSectionELF *> SectionTable; member
327 SectionTable.push_back(Sec); in addToSectionTable()
329 return SectionTable.size(); in addToSectionTable()
780 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
1026 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1033 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1180 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1181 : SectionTable.size() + 1, in writeObject()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp574 std::vector<std::string> SectionTable; member in __anon27c3e5780411::BitcodeReader
3724 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
3726 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
3897 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
3899 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
4284 SectionTable.push_back(S); in parseModule()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DCOFF.h810 const coff_section *SectionTable; variable