Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Object/
DCOFFObjectFile.cpp77 if (addr < SectionTable in toSec()
78 || addr >= (SectionTable + Header->NumberOfSections)) in toSec()
81 uintptr_t offset = uintptr_t(addr) - uintptr_t(SectionTable); in toSec()
437 SectionTable = in COFFObjectFile()
442 if (!checkAddr(Data, ec, uintptr_t(SectionTable), in COFFObjectFile()
491 ret.p = reinterpret_cast<intptr_t>(SectionTable); in begin_sections()
498 ret.p = reinterpret_cast<intptr_t>(SectionTable + Header->NumberOfSections); in end_sections()
537 Result = SectionTable + (index - 1); in getSection()
/external/llvm/lib/MC/
DELFObjectWriter.cpp123 std::vector<const MCSectionELF *> SectionTable; member in __anon3fec7fdb0111::ELFObjectWriter
151 SectionTable.clear(); in reset()
245 SectionTable.push_back(Sec); in addToSectionTable()
247 return SectionTable.size(); in addToSectionTable()
944 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable()
1129 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1]; in createStringTable()
1186 const unsigned NumSections = SectionTable.size(); in writeSectionHeader()
1193 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader()
1320 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) in writeObject()
1322 : SectionTable.size() + 1; in writeObject()
/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()
319 uintptr_t(Sec.getRawDataRefImpl().p) - uintptr_t(SectionTable); in getSectionID()
631 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile()
722 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile()
814 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin()
822 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end()
925 Result = SectionTable + (Index - 1); in getSection()
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DCOFF.h79 const coff_section *SectionTable; variable
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp1546 std::vector<std::string> SectionTable; in ParseModule() local
1685 SectionTable.push_back(S); in ParseModule()
1713 if (Record[5]-1 >= SectionTable.size()) in ParseModule()
1715 Section = SectionTable[Record[5]-1]; in ParseModule()
1769 if (Record[6]-1 >= SectionTable.size()) in ParseModule()
1771 Func->setSection(SectionTable[Record[6]-1]); in ParseModule()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp3561 std::vector<std::string> SectionTable; in parseModule() local
3757 SectionTable.push_back(S); in parseModule()
3810 if (Record[5]-1 >= SectionTable.size()) in parseModule()
3812 Section = SectionTable[Record[5]-1]; in parseModule()
3896 if (Record[6]-1 >= SectionTable.size()) in parseModule()
3898 Func->setSection(SectionTable[Record[6]-1]); in parseModule()
/external/llvm/include/llvm/Object/
DCOFF.h631 const coff_section *SectionTable; variable