Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp251 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local
278 append(Buffer, SectionTable); in createImportDescriptor()
387 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local
401 append(Buffer, SectionTable); in createNullImportDescriptor()
450 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local
477 append(Buffer, SectionTable); in createNullThunk()
562 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local
573 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()
818 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
926 getObject(SectionTable, Data, base() + CurPtr, in initialize()
1031 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
1039 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
1135 return SectionTable + (Index - 1); in getSection()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp139 std::vector<const MCSectionELF *> SectionTable; member
338 SectionTable.push_back(Sec); in addToSectionTable()
340 return SectionTable.size(); in addToSectionTable()
810 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
1064 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1071 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1220 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject()
1221 : SectionTable.size() + 1, in writeObject()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp576 std::vector<std::string> SectionTable; member in __anoncc7157100411::BitcodeReader
3875 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord()
3877 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord()
4070 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord()
4072 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord()
4482 SectionTable.push_back(S); in parseModule()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h846 const coff_section *SectionTable; variable