Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
344 Sec.getRawDataRefImpl().p - reinterpret_cast<uintptr_t>(SectionTable); in getSectionID()
722 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
820 getObject(SectionTable, Data, base() + CurPtr, in initialize()
924 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
932 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
1022 return SectionTable + (Index - 1); in getSection()
/freebsd-13.1/contrib/llvm-project/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()
771 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
1042 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1049 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1196 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1197 : SectionTable.size() + 1, in writeObject()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp492 std::vector<std::string> SectionTable; member in __anonba06ddfc0411::BitcodeReader
3220 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
3222 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
3369 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
3371 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
3744 SectionTable.push_back(S); in parseModule()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h810 const coff_section *SectionTable; variable