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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp229 auto &Prot = KV.first; local
251 Segments[Prot] = {SegAlign, SegContentSize,
256 << static_cast<sys::Memory::ProtectionFlags>(Prot)
272 auto Prot = static_cast<sys::Memory::ProtectionFlags>(KV.first);
273 dbgs() << " " << Prot << ": "
274 << (const void *)Alloc->getWorkingMemory(Prot).data() << " -> "
275 << formatv("{0:x16}", Alloc->getTargetMemory(Prot)) << "\n";
281 auto &Prot = KV.first; local
285 Alloc->getTargetMemory(static_cast<sys::Memory::ProtectionFlags>(Prot));
348 auto &Prot local
[all...]
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 DELF_x86_64.cpp42 auto Prot = static_cast<sys::Memory::ProtectionFlags>( local
44 CommonSection = &G->createSection(CommonSectionName, Prot);
137 sys::Memory::ProtectionFlags Prot;
139 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
142 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
174 auto &section = G->createSection(*Name, Prot);
H A DMachOLinkGraphBuilder.cpp99 auto Prot = static_cast<sys::Memory::ProtectionFlags>( local
101 CommonSection = &G->createSection(CommonSectionName, Prot);
175 sys::Memory::ProtectionFlags Prot; local
177 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
180 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ |
184 NSec.GraphSection = &G->createSection(*Name, Prot);
/freebsd-13-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-13-stable/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h57 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS,
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h541 Section(StringRef Name, sys::Memory::ProtectionFlags Prot, argument
543 : Name(Name), Prot(Prot), SecOrdinal(SecOrdinal) {}
561 sys::Memory::ProtectionFlags getProtectionFlags() const { return Prot; }
611 sys::Memory::ProtectionFlags Prot; member in class:llvm::jitlink::Section
801 Section &createSection(StringRef Name, sys::Memory::ProtectionFlags Prot) { argument
802 std::unique_ptr<Section> Sec(new Section(Name, Prot, Sections.size()));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp839 for (auto *Prot : OIT->getProtocols())
840 VisitObjCProtocolDecl(Prot);
1056 void clang::index::generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS, argument
1060 OS << "objc(pl)" << Prot; local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp844 uint32_t Prot = local
847 SectionDataSize, Prot, Prot);

Completed in 117 milliseconds