Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp32 auto &Seg = Segments[{Sec.getMemProt(), Sec.getMemLifetime()}]; in BasicLayout()
174 AGSectionNames[static_cast<unsigned>(AG.getMemProt()) | in Create()
177 auto &Sec = G->createSection(AGSectionName, AG.getMemProt()); in Create()
321 auto Prot = toSysMemoryProtectionFlags(AG.getMemProt()); in applyProtections()
H A DELFLinkGraphBuilder.h378 if (GraphSec->getMemProt() != Prot) { in graphifySections()
383 << GraphSec->getMemProt() << " vs " << Prot; in graphifySections()
H A DELF_loongarch.cpp80 return (S.getMemProt() & orc::MemProt::Exec) != orc::MemProt::None; in shouldRelax()
H A DCOFFLinkGraphBuilder.cpp161 if (GraphSec->getMemProt() != Prot) in graphifySections()
H A DELF_riscv.cpp513 return (S.getMemProt() & orc::MemProt::Exec) != orc::MemProt::None; in shouldRelax()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h136 MemProt getMemProt() const {
206 return OS << '(' << AG.getMemProt() << ", " << AG.getMemLifetime() << ')';
H A DTargetProcessControlTypes.h39 RemoteAllocGroup(const AllocGroup &AG) : Prot(AG.getMemProt()) { in RemoteAllocGroup()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMemoryMapper.cpp86 toSysMemoryProtectionFlags(Segment.AG.getMemProt()))) { in initialize()
89 if ((Segment.AG.getMemProt() & MemProt::Exec) == MemProt::Exec) in initialize()
357 SegReq.RAG = {Segment.AG.getMemProt(), in initialize()
H A DUnwindInfoRegistrationPlugin.cpp64 if ((TargetSection.getMemProt() & MemProt::Exec) == MemProt::Exec) in addUnwindInfoRegistrationActions()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h747 orc::MemProt getMemProt() const { return Prot; } in getMemProt() function