Home
last modified time | relevance | path

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

/external/llvm/lib/Object/
DCOFFObjectFile.cpp121 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec()
124 uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); in toSec()
381 int32_t SecNumber = (Sec - SectionTable) + 1; in sectionContainsSymbol()
601 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
692 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile()
776 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
784 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
883 Result = SectionTable + (Index - 1); in getSection()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2685 std::vector<std::string> SectionTable; in ParseModule() local
2830 SectionTable.push_back(S); in ParseModule()
2877 if (Record[5]-1 >= SectionTable.size()) in ParseModule()
2879 Section = SectionTable[Record[5]-1]; in ParseModule()
2959 if (Record[6]-1 >= SectionTable.size()) in ParseModule()
2961 Func->setSection(SectionTable[Record[6]-1]); in ParseModule()
/external/llvm/include/llvm/Object/
DCOFF.h493 const coff_section *SectionTable; variable