Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DXCOFFLinkGraphBuilder.cpp182 assert(!SectionTable.contains(Section.getIndex()) && in processSections()
184 SectionTable[Section.getIndex()] = {GraphSec, Section}; in processSections()
243 for ([[maybe_unused]] auto [K, V] : SectionTable) { in processCsectsAndSymbols()
282 bool IsUndefinedSection = !SectionTable.contains(ParentSectionNumber); in processCsectsAndSymbols()
284 ? SectionTable[ParentSectionNumber].Section in processCsectsAndSymbols()
291 SectionTable[ParentSectionNumber].SectionData; in processCsectsAndSymbols()
H A DXCOFFLinkGraphBuilder.h55 DenseMap<uint16_t, SectionEntry> SectionTable; variable
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp288 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local
315 append(Buffer, SectionTable); in createImportDescriptor()
424 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local
438 append(Buffer, SectionTable); in createNullImportDescriptor()
487 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local
514 append(Buffer, SectionTable); in createNullThunk()
599 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local
610 append(Buffer, SectionTable); in createWeakExternal()
H A DCOFFObjectFile.cpp123 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()
871 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
979 getObject(SectionTable, Data, base() + CurPtr, in initialize()
1084 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
1092 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
1194 return SectionTable + (Index - 1); in getSection()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp148 std::vector<MCSectionELF *> SectionTable; member
225 SectionTable.push_back(Sec); in addToSectionTable()
227 return SectionTable.size(); in addToSectionTable()
666 MCSectionELF *SymtabShndxSection = SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
937 const unsigned NumSections = SectionTable.size(); in writeSectionHeaders()
945 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeaders()
1129 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1130 : SectionTable.size() + 1, in writeObject()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp582 std::vector<std::string> SectionTable; member in __anondf6e26480411::BitcodeReader
4123 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
4125 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
4318 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
4320 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
4729 SectionTable.push_back(S); in parseModule()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h891 const coff_section *SectionTable; variable