Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DMachO.h45 return G.createSection(orc::MachODataDataSectionName, in getMachODefaultRWDataSection()
55 return G.createSection(orc::MachOTextTextSectionName, in getMachODefaultTextSection()
H A Dx86.h356 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
394 PLTSection = &G.createSection(getSectionName(), in getStubsSection()
H A Dx86_64.h726 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
769 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Dloongarch.h656 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
693 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Dppc64.h193 TOCSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getOrCreateTOCSection()
251 PLTSection = &G.createSection(getSectionName(), in getOrCreateStubsSection()
H A Daarch64.h852 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
893 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DJITLinkRedirectableSymbolManager.cpp32 G->createSection(StubPtrSectionName, MemProt::Write | MemProt::Read); in emitRedirectableSymbols()
34 G->createSection(JumpStubSectionName, MemProt::Exec | MemProt::Read); in emitRedirectableSymbols()
H A DSectCreate.cpp25 auto &Sect = G->createSection(SectName, MP); in materialize()
H A DJITLinkReentryTrampolines.cpp137 G->createSection(ReentrySectionName, MemProt::Exec | MemProt::Read); in emit()
H A DMachOPlatform.cpp139 G->createSection("__orc_rt_cplt_bs", MemProt::Read); in materialize()
1481 auto &Sec = G.createSection(ObjCRuntimeObjectSectionName, in createObjCRuntimeObject()
1661 CStringSec = &G.createSection(MachOCStringSectionName, in prepareSymbolTableRegistration()
1810 auto &HeaderSection = G.createSection("__header", MemProt::Read); in addMachOHeader()
H A DELFNixPlatform.cpp77 G->createSection("__orc_rt_cplt_bs", MemProt::Read); in materialize()
165 G->createSection(".data.__dso_handle", MemProt::Read); in materialize()
H A DDebuggerSupportPlugin.cpp
/freebsd/contrib/llvm-project/lld/COFF/
H A DWriter.cpp1068 auto createSection = [&](StringRef name, uint32_t outChars) { in createSections() local
1078 textSec = createSection(".text", code | r | x); in createSections()
1080 hexpthkSec = createSection(".hexpthk", code | r | x); in createSections()
1081 bssSec = createSection(".bss", bss | r | w); in createSections()
1082 rdataSec = createSection(".rdata", data | r); in createSections()
1083 buildidSec = createSection(".buildid", data | r); in createSections()
1084 dataSec = createSection(".data", data | r | w); in createSections()
1085 pdataSec = createSection(".pdata", data | r); in createSections()
1086 idataSec = createSection(".idata", data | r); in createSections()
1087 edataSec = createSection(".edata", data | r); in createSections()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DXCOFFLinkGraphBuilder.cpp154 UndefSection = &G->createSection("*UND*", orc::MemProt::None); in processSections()
179 jitlink::Section *GraphSec = &G->createSection(*SectionName, Prot); in processSections()
H A DMachO.cpp129 Sec = &G.createSection(LocalHeaderSectionName, orc::MemProt::Read); in getOrCreateLocalMachOHeader()
H A DELF_aarch64.cpp564 TLSInfoTable = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSInfoSection()
632 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSDescSection()
H A DCOFFLinkGraphBuilder.cpp68 CommonSection = &G->createSection(CommonSectionName, in getCommonSection()
157 GraphSec = &G->createSection(SectionName, Prot); in graphifySections()
H A DELFLinkGraphBuilder.h40 CommonSection = &G->createSection( in getCommonSection()
367 GraphSec = &G->createSection(*Name, Prot); in graphifySections()
H A Daarch32.cpp713 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in createEntry()
859 StubsSection = &G.createSection(getSectionName(), in visitEdge()
903 StubsSection = &G.createSection(getSectionName(), in visitEdge()
H A Daarch64.cpp271 G.createSection(getPointerSigningFunctionSectionName(), in createEmptyPointerSigningFunction()
H A DMachOLinkGraphBuilder.cpp109 CommonSection = &G->createSection(CommonSectionName, in getCommonSection()
183 NSec.GraphSection = &G->createSection( in createNormalizedSections()
H A DELF_x86_64.cpp71 &G.createSection(ELFTLSInfoSectionName, orc::MemProt::Read); in getTLSInfoSection()
/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp890 static OutputDesc *createSection(Ctx &ctx, InputSectionBase *isec, in createSection() function
908 return createSection(ctx, isec, outsecName); in addInputSec()
925 OutputDesc *osd = createSection(ctx, isec, outsecName); in addInputSec()
996 OutputDesc *osd = createSection(ctx, isec, outsecName); in addInputSec()
1012 v.push_back(createSection(ctx, s, name)); in addOrphanSections()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp172 COFFSection *createSection(StringRef Name);
254 COFFSection *WinCOFFWriter::createSection(StringRef Name) { in createSection() function in WinCOFFWriter
296 COFFSection *Section = createSection(MCSec.getName()); in defineSection()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp234 auto &SDOSec = G.createSection(SynthDebugSectionName, MemProt::Read); in startSynthesis()

12