Searched refs:Prot (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp192 auto &Prot = KV.first; local
214 Segments[Prot] = {SegAlign, SegContentSize,
219 << static_cast<sys::Memory::ProtectionFlags>(Prot)
235 auto Prot = static_cast<sys::Memory::ProtectionFlags>(KV.first);
236 dbgs() << " " << Prot << ": "
237 << (const void *)Alloc->getWorkingMemory(Prot).data() << "\n";
243 auto &Prot = KV.first; local
247 Alloc->getTargetMemory(static_cast<sys::Memory::ProtectionFlags>(Prot));
H A DJITLinkMemoryManager.cpp62 auto &Prot = KV.first; local
64 if (auto EC = sys::Memory::protectMappedMemory(Block, Prot))
66 if (Prot & sys::Memory::MF_EXEC)
H A DJITLinkGeneric.h152 auto &Prot = KV.first; variable
156 static_cast<sys::Memory::ProtectionFlags>(Prot));
162 << static_cast<sys::Memory::ProtectionFlags>(Prot) << " [ "
H A DMachOLinkGraphBuilder.cpp92 auto Prot = static_cast<sys::Memory::ProtectionFlags>( local
94 CommonSection = &G->createSection(CommonSectionName, Prot);
157 sys::Memory::ProtectionFlags Prot; local
159 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
162 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
165 NSec.GraphSection = &G->createSection(*Name, Prot);
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMmapWriteExecChecker.cpp52 int64_t Prot = ProtLoc->getValue().getSExtValue(); local
62 if ((Prot & (ProtWrite | ProtExec)) == (ProtWrite | ProtExec)) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h57 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS,
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp323 std::string Prot; local
324 Prot = "";
325 Prot += (prot & MachO::VM_PROT_READ) ? "r" : "-";
326 Prot += (prot & MachO::VM_PROT_WRITE) ? "w" : "-";
327 Prot += (prot & MachO::VM_PROT_EXECUTE) ? "x" : "-";
328 return Prot;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h536 Section(StringRef Name, sys::Memory::ProtectionFlags Prot, argument
538 : Name(Name), Prot(Prot), SecOrdinal(SecOrdinal) {}
556 sys::Memory::ProtectionFlags getProtectionFlags() const { return Prot; }
606 sys::Memory::ProtectionFlags Prot; member in class:llvm::jitlink::Section
796 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { argument
797 std::unique_ptr<Section> Sec(new Section(Name, Prot, Sections.size()));
/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp837 for (auto *Prot : OIT->getProtocols())
838 VisitObjCProtocolDecl(Prot);
1054 void clang::index::generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS, argument
1058 OS << "objc(pl)" << Prot; local
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp844 uint32_t Prot = local
847 SectionDataSize, Prot, Prot);

Completed in 189 milliseconds