Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp121 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec()
124 uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); in toSec()
374 int32_t SecNumber = (Sec - SectionTable) + 1; in sectionContainsSymbol()
594 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
685 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile()
769 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
777 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
876 Result = SectionTable + (Index - 1); in getSection()
/minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1977 std::vector<std::string> SectionTable; in ParseModule() local
2116 SectionTable.push_back(S); in ParseModule()
2159 if (Record[5]-1 >= SectionTable.size()) in ParseModule()
2161 Section = SectionTable[Record[5]-1]; in ParseModule()
2234 if (Record[6]-1 >= SectionTable.size()) in ParseModule()
2236 Func->setSection(SectionTable[Record[6]-1]); in ParseModule()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Object/
H A DCOFF.h493 const coff_section *SectionTable; variable