/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.cpp | 94 SymTab = createSection<ELFSymbolTableSection>(SymTabName, SHT_SYMTAB, 0, in ELFObjectWriter() 100 createSection<ELFStringTableSection>(StrTabName, SHT_STRTAB, 0, 1, 0); in ELFObjectWriter() 104 T *ELFObjectWriter::createSection(const std::string &Name, Elf64_Word ShType, in createSection() function in Ice::ELFObjectWriter 127 ELFRelocationSection *RelSection = createSection<ELFRelocationSection>( in createRelocationSection() 233 Section = createSection<ELFTextSection>(SectionName, SHT_PROGBITS, ShFlags, in writeFunctionCode() 311 ELFDataSection *Section = createSection<ELFDataSection>( in writeTargetRODataSection() 365 Section = createSection<ELFDataSection>(SectionName, SHT_PROGBITS, ShFlags, in writeDataOfType() 376 Section = createSection<ELFDataSection>(SectionName, SHT_PROGBITS, ShFlags, in writeDataOfType() 387 Section = createSection<ELFDataSection>(SectionName, SHT_NOBITS, ShFlags, in writeDataOfType() 536 ELFDataSection *Section = createSection<ELFDataSection>( in writeConstantPool() [all …]
|
D | IceELFObjectWriter.h | 128 T *createSection(const std::string &Name, Elf64_Word ShType,
|
/external/llvm-project/llvm/unittests/ExecutionEngine/JITLink/ |
D | LinkGraphTests.cpp | 42 auto &Sec1 = G.createSection("__data.1", RWFlags); in TEST() 50 auto &Sec2 = G.createSection("__data.1", RWFlags); in TEST() 94 auto &Sec = G.createSection("__data", RWFlags); in TEST()
|
/external/llvm-project/lld/COFF/ |
D | Writer.cpp | 841 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local 851 textSec = createSection(".text", code | r | x); in createSections() 852 createSection(".bss", bss | r | w); in createSections() 853 rdataSec = createSection(".rdata", data | r); in createSections() 854 buildidSec = createSection(".buildid", data | r); in createSections() 855 dataSec = createSection(".data", data | r | w); in createSections() 856 pdataSec = createSection(".pdata", data | r); in createSections() 857 idataSec = createSection(".idata", data | r); in createSections() 858 edataSec = createSection(".edata", data | r); in createSections() 859 didatSec = createSection(".didat", data | r); in createSections() [all …]
|
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
D | ELF_x86_64.cpp | 87 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection() 95 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection() 214 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection() 349 auto §ion = G->createSection(*Name, Prot); in createNormalizedSections() 357 auto &Section = G->createSection(*Name, Prot); in createNormalizedSections()
|
D | MachOLinkGraphBuilder.cpp | 99 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection() 182 NSec.GraphSection = &G->createSection(*Name, Prot); in createNormalizedSections()
|
D | MachO_x86_64.cpp | 427 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection() 435 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
|
D | MachO_arm64.cpp | 458 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection() 466 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
|
/external/llvm-project/lld/ELF/ |
D | LinkerScript.cpp | 634 static OutputSection *createSection(InputSectionBase *isec, in createSection() function 652 return createSection(isec, outsecName); in addInputSec() 670 out->relocationSection = createSection(isec, outsecName); in addInputSec() 741 OutputSection *sec = createSection(isec, outsecName); in addInputSec() 758 v.push_back(createSection(s, name)); in addOrphanSections()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | MachOLinkGraphBuilder.cpp | 94 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection() 165 NSec.GraphSection = &G->createSection(*Name, Prot); in createNormalizedSections()
|
D | MachO_x86_64.cpp | 397 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection() 405 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
|
D | MachO_arm64.cpp | 434 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection() 442 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
|
/external/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 151 COFFSection *createSection(StringRef Name); 251 COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) { in createSection() function in WinCOFFObjectWriter 267 COFFSection *coff_section = createSection(Sec.getSectionName()); in defineSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 168 COFFSection *createSection(StringRef Name); 253 COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) { in createSection() function in WinCOFFObjectWriter 295 COFFSection *Section = createSection(MCSec.getSectionName()); in defineSection()
|
/external/llvm-project/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 175 COFFSection *createSection(StringRef Name); 261 COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) { in createSection() function in WinCOFFObjectWriter 303 COFFSection *Section = createSection(MCSec.getName()); in defineSection()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
D | JITLink.h | 816 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { in createSection() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
D | JITLink.h | 796 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { in createSection() function
|