Home
last modified time | relevance | path

Searched refs:ProtectionFlags (Results 1 – 18 of 18) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h35 using ProtectionFlags = sys::Memory::ProtectionFlags;
71 virtual MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) = 0;
75 virtual JITTargetAddress getTargetMemory(ProtectionFlags Seg) = 0;
H A DJITLink.h643 Section(StringRef Name, sys::Memory::ProtectionFlags Prot, in Section()
669 sys::Memory::ProtectionFlags getProtectionFlags() const { return Prot; } in getProtectionFlags()
672 void setProtectionFlags(sys::Memory::ProtectionFlags Prot) { in setProtectionFlags()
737 sys::Memory::ProtectionFlags Prot;
965 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { in createSection()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp29 MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) override { in allocate()
34 JITTargetAddress getTargetMemory(ProtectionFlags Seg) override { in allocate()
82 const sys::Memory::ProtectionFlags ReadWrite = in allocate()
83 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in allocate()
H A DJITLinkGeneric.cpp224 << static_cast<sys::Memory::ProtectionFlags>(KV.first) << ":\n"; in layOutBlocks()
272 << static_cast<sys::Memory::ProtectionFlags>(Prot) in allocateSegments()
289 auto Prot = static_cast<sys::Memory::ProtectionFlags>(KV.first); in allocateSegments()
302 Alloc->getTargetMemory(static_cast<sys::Memory::ProtectionFlags>(Prot)); in allocateSegments()
363 Alloc.getWorkingMemory(static_cast<sys::Memory::ProtectionFlags>(Prot)); in copyBlockContentToWorkingMemory()
369 << static_cast<sys::Memory::ProtectionFlags>(Prot) << " [ " in copyBlockContentToWorkingMemory()
H A DELFLinkGraphBuilder.h40 auto Prot = static_cast<sys::Memory::ProtectionFlags>( in getCommonSection()
268 sys::Memory::ProtectionFlags Prot; in graphifySections()
270 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in graphifySections()
273 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in graphifySections()
H A DMachOLinkGraphBuilder.cpp111 auto Prot = static_cast<sys::Memory::ProtectionFlags>( in getCommonSection()
179 sys::Memory::ProtectionFlags Prot; in createNormalizedSections()
181 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in createNormalizedSections()
184 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in createNormalizedSections()
H A DELF_x86_64.cpp122 auto StubsProt = static_cast<sys::Memory::ProtectionFlags>( in getStubsSection()
H A DMachO_x86_64.cpp485 auto StubsProt = static_cast<sys::Memory::ProtectionFlags>( in getStubsSection()
H A DMachO_arm64.cpp466 auto StubsProt = static_cast<sys::Memory::ProtectionFlags>( in getStubsSection()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemory.h54 enum ProtectionFlags { enum
164 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRPCExecutorProcessControl.h58 MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) override { in getWorkingMemory()
65 JITTargetAddress getTargetMemory(ProtectionFlags Seg) override { in getTargetMemory()
83 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in finalizeAsync()
135 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in deallocate()
161 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in allocate()
H A DOrcRemoteTargetClient.h337 using ProtectionFlags = sys::Memory::ProtectionFlags; variable
359 MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) override { in getWorkingMemory()
365 JITTargetAddress getTargetMemory(ProtectionFlags Seg) override { in getTargetMemory()
401 const sys::Memory::ProtectionFlags ReadWrite = in allocateHostBlocks()
402 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in allocateHostBlocks()
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c700 {ACPI_DMT_UINT32, ACPI_WSMT_OFFSET (ProtectionFlags), "Protection Flags", 0},
701 {ACPI_DMT_FLAG0, ACPI_WSMT_FLAG_OFFSET (ProtectionFlags,0), "FIXED_COMM_BUFFERS", 0},
702 …{ACPI_DMT_FLAG1, ACPI_WSMT_FLAG_OFFSET (ProtectionFlags,0), "COMM_BUFFER_NESTED_PTR_PROTECTION…
703 … {ACPI_DMT_FLAG2, ACPI_WSMT_FLAG_OFFSET (ProtectionFlags,0), "SYSTEM_RESOURCE_PROTECTION", 0},
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.cpp106 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in grow()
290 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in writeResolverBlock()
357 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in getIndirectStubs()
360 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in getIndirectStubs()
H A DDebugObjectManagerPlugin.cpp111 static constexpr sys::Memory::ProtectionFlags ReadOnly =
112 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DMemory.cpp35 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { in operator <<()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DOrcRPCTPCServer.h53 toWireProtectionFlags(sys::Memory::ProtectionFlags PF) { in toWireProtectionFlags()
64 inline sys::Memory::ProtectionFlags
73 return static_cast<sys::Memory::ProtectionFlags>(PF); in fromWireProtectionFlags()
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dactbl3.h918 UINT32 ProtectionFlags; member