Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DWriter.cpp852 textSec = createSection(".text", code | r | x); in createSections()
853 createSection(".bss", bss | r | w); in createSections()
854 rdataSec = createSection(".rdata", data | r); in createSections()
855 buildidSec = createSection(".buildid", data | r); in createSections()
856 dataSec = createSection(".data", data | r | w); in createSections()
857 pdataSec = createSection(".pdata", data | r); in createSections()
858 idataSec = createSection(".idata", data | r); in createSections()
859 edataSec = createSection(".edata", data | r); in createSections()
860 didatSec = createSection(".didat", data | r); in createSections()
861 rsrcSec = createSection(".rsrc", data | r); in createSections()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h42 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection()
281 auto &GraphSec = G->createSection(*Name, Prot); in graphifySections()
H A DELF_x86_64.cpp116 GOTSection = &G.createSection(ELFGOTSectionName, sys::Memory::MF_READ); in getGOTSection()
124 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
H A DMachO_x86_64.cpp479 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection()
487 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
H A DMachO_arm64.cpp460 GOTSection = &G.createSection("$__GOT", sys::Memory::MF_READ); in getGOTSection()
468 StubsSection = &G.createSection("$__STUBS", StubsProt); in getStubsSection()
H A DMachOLinkGraphBuilder.cpp113 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection()
190 NSec.GraphSection = &G->createSection( in createNormalizedSections()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp663 static OutputSection *createSection(InputSectionBase *isec, in createSection() function
681 return createSection(isec, outsecName); in addInputSec()
699 out->relocationSection = createSection(isec, outsecName); in addInputSec()
770 OutputSection *sec = createSection(isec, outsecName); in addInputSec()
787 v.push_back(createSection(s, name)); in addOrphanSections()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp175 COFFSection *createSection(StringRef Name);
261 COFFSection *WinCOFFObjectWriter::createSection(StringRef Name) { in createSection() function in WinCOFFObjectWriter
303 COFFSection *Section = createSection(MCSec.getName()); in defineSection()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h751 InsertPointTy createSection(const LocationDescription &Loc,
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp55 auto &HeaderSection = G->createSection("__header", sys::Memory::MF_READ); in materialize()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h965 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { in createSection() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp991 OpenMPIRBuilder::createSection(const LocationDescription &Loc, in createSection() function in OpenMPIRBuilder
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp3915 Builder.restoreIP(OMPBuilder.createSection(Builder, BodyGenCB, FiniCB)); in EmitOMPSectionDirective()