/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | COFFImportFile.cpp | 204 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()
|
D | COFFObjectFile.cpp | 124 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() 667 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile() 760 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile() 859 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin() 867 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end() 976 Result = SectionTable + (Index - 1); in getSection()
|
/external/swiftshader/third_party/LLVM/lib/Object/ |
D | COFFObjectFile.cpp | 77 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/ |
D | ELFObjectWriter.cpp | 123 std::vector<const MCSectionELF *> SectionTable; member in __anon025039250111::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/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 151 std::vector<const MCSectionELF *> SectionTable; member 344 SectionTable.push_back(Sec); in addToSectionTable() 346 return SectionTable.size(); in addToSectionTable() 754 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable() 961 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1]; in createStringTable() 1021 const unsigned NumSections = SectionTable.size(); in writeSectionHeader() 1028 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader() 1202 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject() 1203 : SectionTable.size() + 1, in writeObject()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 121 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/ |
D | COFF.h | 79 const coff_section *SectionTable; variable
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1546 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/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 451 std::vector<std::string> SectionTable; member in __anonc13c2b0b0411::BitcodeReader 2873 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord() 2875 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord() 2974 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord() 2976 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord() 3299 SectionTable.push_back(S); in parseModule()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 3561 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/ |
D | COFF.h | 631 const coff_section *SectionTable; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | COFF.h | 770 const coff_section *SectionTable; variable
|