Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Object/
H A DCOFFImportFile.cpp204 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local
231 append(Buffer, SectionTable); in createImportDescriptor()
340 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local
354 append(Buffer, SectionTable); in createNullImportDescriptor()
403 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local
432 append(Buffer, SectionTable); in createNullThunk()
510 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local
521 append(Buffer, SectionTable); in createWeakExternal()
H A DCOFFObjectFile.cpp124 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec()
127 uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); in toSec()
290 return toSec(Sec) - SectionTable; in getSectionIndex()
335 uintptr_t(Sec.getRawDataRefImpl().p) - uintptr_t(SectionTable); in getSectionID()
669 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
762 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile()
861 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
869 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
990 Result = SectionTable + (Index - 1); in getSection()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.h30 llvm::ArrayRef<uint8_t> SectionTable,
H A DPDB.cpp165 ArrayRef<uint8_t> SectionTable);
1541 ArrayRef<uint8_t> SectionTable, in createPDB() argument
1548 PDB.addSections(OutputSections, SectionTable); in createPDB()
1588 ArrayRef<uint8_t> SectionTable) { in addSections() argument
1610 (const object::coff_section *)SectionTable.data(), in addSections()
1611 SectionTable.size() / sizeof(object::coff_section)}; in addSections()
1617 DbiBuilder.addDbgStream(pdb::DbgHeaderType::SectionHdr, SectionTable)); in addSections()
H A DWriter.cpp224 ArrayRef<uint8_t> SectionTable; member in __anon341a1c240111::Writer
553 createPDB(Symtab, OutputSections, SectionTable, BuildId->BuildId); in run()
1287 SectionTable = ArrayRef<uint8_t>( in writeHeader()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DELFObjectWriter.cpp152 std::vector<const MCSectionELF *> SectionTable; member
345 SectionTable.push_back(Sec); in addToSectionTable()
347 return SectionTable.size(); in addToSectionTable()
769 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
976 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1]; in createStringTable()
1036 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1043 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1219 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1220 : SectionTable.size() + 1, in writeObject()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp451 std::vector<std::string> SectionTable; member in __anond7564fed0411::BitcodeReader
2910 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
2912 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
3015 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
3017 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
3340 SectionTable.push_back(S); in parseModule()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DCOFF.h772 const coff_section *SectionTable; variable