Home
last modified time | relevance | path

Searched refs:getMemProt (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp135 if ((Segment.AG.getMemProt() & MemProt::Read) == MemProt::Read) in initialize()
137 if ((Segment.AG.getMemProt() & MemProt::Write) == MemProt::Write) in initialize()
139 if ((Segment.AG.getMemProt() & MemProt::Exec) == MemProt::Exec) in initialize()
148 getWindowsProtectionFlags(Segment.AG.getMemProt()); in initialize()
156 if ((Segment.AG.getMemProt() & MemProt::Exec) == MemProt::Exec) in initialize()
H A DSimpleExecutorMemoryManager.cpp135 toSysMemoryProtectionFlags(Seg.AG.getMemProt()))) in finalize()
137 if ((Seg.AG.getMemProt() & MemProt::Exec) == MemProt::Exec) in finalize()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DTargetProcessControlTypes.h137 if ((AG.getMemProt() & MemProt::Read) != MemProt::None) in serialize()
139 if ((AG.getMemProt() & MemProt::Write) != MemProt::None) in serialize()
141 if ((AG.getMemProt() & MemProt::Exec) != MemProt::None) in serialize()
H A DMemoryFlags.h119 MemProt getMemProt() const {
189 return OS << '(' << AG.getMemProt() << ", " << AG.getMemDeallocPolicy()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp31 auto &Seg = Segments[{Sec.getMemProt(), Sec.getMemDeallocPolicy()}]; in BasicLayout()
167 AGSectionNames[static_cast<unsigned>(AG.getMemProt()) | in Create()
170 auto &Sec = G->createSection(AGSectionName, AG.getMemProt()); in Create()
284 auto Prot = toSysMemoryProtectionFlags(AG.getMemProt()); in applyProtections()
H A DELFLinkGraphBuilder.h348 assert(GraphSec->getMemProt() == Prot && "MemProt should match"); in graphifySections()
H A DCOFFLinkGraphBuilder.cpp157 if (GraphSec->getMemProt() != Prot) in graphifySections()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DMemoryMapper.cpp83 toSysMemoryProtectionFlags(Segment.AG.getMemProt()))) { in initialize()
86 if ((Segment.AG.getMemProt() & MemProt::Exec) == MemProt::Exec) in initialize()
H A DMachOPlatform.cpp1095 if ((TargetSection.getMemProt() & MemProt::Exec) == MemProt::Exec) in findUnwindSectionInfo()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h697 orc::MemProt getMemProt() const { return Prot; } in getMemProt() function