Home
last modified time | relevance | path

Searched refs:Prot (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp245 auto &Prot = KV.first; in allocateSegments() local
267 Segments[Prot] = {SegAlign, SegContentSize, in allocateSegments()
272 << static_cast<sys::Memory::ProtectionFlags>(Prot) in allocateSegments()
289 auto Prot = static_cast<sys::Memory::ProtectionFlags>(KV.first); in allocateSegments()
290 dbgs() << " " << Prot << ": " in allocateSegments()
291 << (const void *)Alloc->getWorkingMemory(Prot).data() << " -> " in allocateSegments()
292 << formatv("{0:x16}", Alloc->getTargetMemory(Prot)) << "\n"; in allocateSegments()
298 auto &Prot = KV.first; in allocateSegments() local
302 Alloc->getTargetMemory(static_cast<sys::Memory::ProtectionFlags>(Prot)); in allocateSegments()
359 auto &Prot = KV.first; in copyBlockContentToWorkingMemory() local
[all …]
H A DELFLinkGraphBuilder.h40 auto Prot = static_cast<sys::Memory::ProtectionFlags>( in getCommonSection() local
42 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection()
268 sys::Memory::ProtectionFlags Prot; in graphifySections() local
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()
281 auto &GraphSec = G->createSection(*Name, Prot); in graphifySections()
H A DJITLinkMemoryManager.cpp63 auto &Prot = KV.first; in allocate() local
65 if (auto EC = sys::Memory::protectMappedMemory(Block, Prot)) in allocate()
67 if (Prot & sys::Memory::MF_EXEC) in allocate()
H A DMachOLinkGraphBuilder.cpp111 auto Prot = static_cast<sys::Memory::ProtectionFlags>( in getCommonSection() local
113 CommonSection = &G->createSection(CommonSectionName, Prot); in getCommonSection()
179 sys::Memory::ProtectionFlags Prot; in createNormalizedSections() local
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()
192 Prot); in createNormalizedSections()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DOrcRPCTPCServer.h77 WireProtectionFlags Prot = WPF_None; member
85 WireProtectionFlags Prot = WPF_None; member
93 WireProtectionFlags Prot = WPF_None; member
236 return serializeSeq(C, static_cast<uint8_t>(E.Prot), E.Size, E.Alignment); in serialize()
241 return deserializeSeq(C, *reinterpret_cast<uint8_t *>(&E.Prot), E.Size, in deserialize()
251 return serializeSeq(C, static_cast<uint8_t>(E.Prot), E.Address, in serialize()
256 return deserializeSeq(C, *reinterpret_cast<uint8_t *>(&E.Prot), E.Address, in deserialize()
268 return serializeSeq(C, static_cast<uint8_t>(E.Prot), E.Address, E.Size); in serialize()
273 return deserializeSeq(C, *reinterpret_cast<uint8_t *>(&E.Prot), E.Address, in deserialize()
545 Allocs.push_back({E.Prot, in reserveMemory()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMmapWriteExecChecker.cpp52 int64_t Prot = ProtLoc->getValue().getSExtValue(); in checkPreCall() local
62 if ((Prot & (ProtWrite | ProtExec)) == (ProtWrite | ProtExec)) { in checkPreCall()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRPCExecutorProcessControl.h91 auto Prot = FMRI->Prot; in finalizeAsync()
94 << " bytes to " << ((Prot & orcrpctpc::WPF_Read) ? 'R' : '-') in finalizeAsync()
95 << ((Prot & orcrpctpc::WPF_Write) ? 'W' : '-') in finalizeAsync()
96 << ((Prot & orcrpctpc::WPF_Exec) ? 'X' : '-') in finalizeAsync()
198 TargetAllocs[orcrpctpc::fromWireProtectionFlags(E.Prot)] = { in allocate()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp84 int Prot = (Flags & MAP_NOACCESS) ? PROT_NONE : (PROT_READ | PROT_WRITE); in setMemoryPermission() local
85 if (mprotect(reinterpret_cast<void *>(Addr), Size, Prot) != 0) in setMemoryPermission()
H A Dfuchsia.cpp141 const zx_vm_option_t Prot = in setMemoryPermission() local
145 if (_zx_vmar_protect(Data->Vmar, Prot, Addr, Size) != ZX_OK) in setMemoryPermission()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h643 Section(StringRef Name, sys::Memory::ProtectionFlags Prot, in Section() argument
645 : Name(Name), Prot(Prot), SecOrdinal(SecOrdinal) {} in Section()
669 sys::Memory::ProtectionFlags getProtectionFlags() const { return Prot; } in getProtectionFlags()
672 void setProtectionFlags(sys::Memory::ProtectionFlags Prot) { in setProtectionFlags() argument
673 this->Prot = Prot; in setProtectionFlags()
737 sys::Memory::ProtectionFlags Prot; variable
965 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { in createSection() argument
971 std::unique_ptr<Section> Sec(new Section(Name, Prot, Sections.size())); in createSection()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h57 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS,
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp320 std::string Prot; in getMask() local
321 Prot = ""; in getMask()
322 Prot += (prot & MachO::VM_PROT_READ) ? "r" : "-"; in getMask()
323 Prot += (prot & MachO::VM_PROT_WRITE) ? "w" : "-"; in getMask()
324 Prot += (prot & MachO::VM_PROT_EXECUTE) ? "x" : "-"; in getMask()
325 return Prot; in getMask()
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp844 for (auto *Prot : OIT->getProtocols()) in VisitType() local
845 VisitObjCProtocolDecl(Prot); in VisitType()
1061 void clang::index::generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS, in generateUSRForObjCProtocol() argument
1065 OS << "objc(pl)" << Prot; in generateUSRForObjCProtocol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp844 uint32_t Prot = in writeObject() local
847 SectionDataSize, Prot, Prot); in writeObject()
/freebsd-13.1/usr.sbin/services_mkdb/
H A Dservices1577 pdap-np 1526/tcp #Prospero Data Access Prot non-priv
1578 pdap-np 1526/udp #Prospero Data Access Prot non-priv