Home
last modified time | relevance | path

Searched refs:createSection (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/lld/COFF/
H A DWriter.cpp892 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local
902 textSec = createSection(".text", code | r | x); in createSections()
903 createSection(".bss", bss | r | w); in createSections()
904 rdataSec = createSection(".rdata", data | r); in createSections()
905 buildidSec = createSection(".buildid", data | r); in createSections()
906 dataSec = createSection(".data", data | r | w); in createSections()
907 pdataSec = createSection(".pdata", data | r); in createSections()
908 idataSec = createSection(".idata", data | r); in createSections()
909 edataSec = createSection(".edata", data | r); in createSections()
910 didatSec = createSection(".didat", data | r); in createSections()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dloongarch.h350 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
386 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Dx86_64.h610 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
648 PLTSection = &G.createSection(getSectionName(), in getStubsSection()
H A Daarch64.h593 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
629 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Di386.h279 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
H A DJITLink.h1008 Section &createSection(StringRef Name, orc::MemProt Prot) { in createSection() function
/openbsd-src/gnu/llvm/lld/ELF/
H A DLinkerScript.cpp713 static OutputDesc *createSection(InputSectionBase *isec, StringRef outsecName) { in createSection() function
729 return createSection(isec, outsecName); in addInputSec()
747 OutputDesc *osd = createSection(isec, outsecName); in addInputSec()
818 OutputDesc *osd = createSection(isec, outsecName); in addInputSec()
834 v.push_back(createSection(s, name)); in addOrphanSections()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DELF_aarch64.cpp413 TLSInfoTable = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSInfoSection()
481 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSDescSection()
H A DELFLinkGraphBuilder.h40 CommonSection = &G->createSection( in getCommonSection()
347 GraphSec = &G->createSection(*Name, Prot); in graphifySections()
H A DCOFFLinkGraphBuilder.cpp74 CommonSection = &G->createSection(CommonSectionName, in getCommonSection()
156 GraphSec = &G->createSection(SectionName, Prot); in graphifySections()
H A DELF_riscv.cpp85 GOTSection = &G.createSection("$__GOT", orc::MemProt::Read); in getGOTSection()
92 &G.createSection("$__STUBS", orc::MemProt::Read | orc::MemProt::Exec); in getStubsSection()
H A DMachOLinkGraphBuilder.cpp115 CommonSection = &G->createSection(CommonSectionName, in getCommonSection()
189 NSec.GraphSection = &G->createSection( in createNormalizedSections()
H A DELF_x86_64.cpp72 &G.createSection(ELFTLSInfoSectionName, orc::MemProt::Read); in getTLSInfoSection()
H A DJITLinkMemoryManager.cpp170 auto &Sec = G->createSection(AGSectionName, AG.getMemProt()); in Create()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp178 COFFSection *createSection(StringRef Name);
264 COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) { in createSection() function in WinCOFFObjectWriter
307 COFFSection *Section = createSection(MCSec.getName()); in defineSection()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DDebuggerSupportPlugin.cpp126 auto &SDOSec = G.createSection(SynthDebugSectionName, MemProt::Read); in startSynthesis()
H A DMachOPlatform.cpp103 auto &HeaderSection = G.createSection("__header", MemProt::Read); in addMachOHeader()
205 G->createSection("__orc_rt_cplt_bs", MemProt::Read); in materialize()
H A DExecutionUtils.cpp521 G->createSection(getSectionName(), MemProt::Read | MemProt::Exec); in createStubsGraph()
H A DELFNixPlatform.cpp66 G->createSection(".data.__dso_handle", MemProt::Read); in materialize()
H A DCOFFPlatform.cpp72 auto &HeaderSection = G->createSection("__header", MemProt::Read); in materialize()
/openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1343 InsertPointTy createSection(const LocationDescription &Loc,
/openbsd-src/gnu/llvm/llvm/docs/
H A DJITLink.rst353 * ``createSection`` creates a section with a given name and protection flags.
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1674 OpenMPIRBuilder::createSection(const LocationDescription &Loc, in createSection() function in OpenMPIRBuilder
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp4209 Builder.restoreIP(OMPBuilder.createSection(Builder, BodyGenCB, FiniCB)); in EmitOMPSectionDirective()