Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DMachODumper.cpp315 uint32_t initprot; member
383 Segment.initprot = SC.initprot; in getSegment()
397 Segment.initprot = SC.initprot; in getSegment()
937 W.printString("initprot", getMask(MOSegment.initprot)); in printMachOSegment()
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.h86 uint32_t initprot = 0; variable
H A DDynamicLoaderDarwin.cpp484 segment.initprot = in JSONImageInformationIntoImageInfo()
487 segment.initprot = 0; in JSONImageInformationIntoImageInfo()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A DMachOUtils.cpp134 Seg64.initprot = Seg.initprot; in adaptFrom32bits()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOObject.cpp178 Seg.initprot |= in constructSegment()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp288 segment->protection = sc->initprot; in NextSegmentLoad()
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DMachO.h551 uint32_t initprot; member
565 uint32_t initprot; member
1204 sys::swapByteOrder(seg.initprot); in swapStruct()
1217 sys::swapByteOrder(seg.initprot); in swapStruct()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp534 IO.mapRequired("initprot", LoadCommand.initprot); in mapping()
547 IO.mapRequired("initprot", LoadCommand.initprot); in mapping()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h59 uint64_t initprot; member
H A DMachProcess.mm837 this_seg.initprot = seg.initprot;
860 this_seg.initprot = seg.initprot;
984 // segment_sp->AddIntegerItem ("initprot",
985 // image_infos[i].macho_info.segments[j].initprot);
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DDebuggerSupportPlugin.cpp259 SegLC.initprot = in startSynthesis()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dmach_o.py1536 self.initprot = 0
1549 self.maxprot, self.initprot, self.nsects, self.flags = data.get_n_uint32(
1567 self.initprot], self.nsects, self.flags)
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DMachODump.cpp8839 uint32_t initprot, uint32_t nsects, in PrintSegmentCommand() argument
8888 if ((initprot & in PrintSegmentCommand()
8891 outs() << " initprot ?" << format("0x%08" PRIx32, initprot) << "\n"; in PrintSegmentCommand()
8894 outs() << ((initprot & MachO::VM_PROT_READ) ? "r" : "-"); in PrintSegmentCommand()
8895 outs() << ((initprot & MachO::VM_PROT_WRITE) ? "w" : "-"); in PrintSegmentCommand()
8896 outs() << ((initprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n"); in PrintSegmentCommand()
8900 outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n"; in PrintSegmentCommand()
10397 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(), in PrintLoadCommands()
10410 SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot, in PrintLoadCommands()
/openbsd-src/gnu/llvm/lld/MachO/
H A DWriter.cpp243 c->initprot = seg->initProt; in writeTo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1433 if (seg_cmd.initprot & VM_PROT_READ) in GetSegmentPermissions()
1435 if (seg_cmd.initprot & VM_PROT_WRITE) in GetSegmentPermissions()
1437 if (seg_cmd.initprot & VM_PROT_EXECUTE) in GetSegmentPermissions()
6800 buffer.PutHex32(segment.initprot);