Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp302 uint32_t initprot; member
370 Segment.initprot = SC.initprot; in getSegment()
384 Segment.initprot = SC.initprot; in getSegment()
853 W.printString("initprot", getMask(MOSegment.initprot)); in printMachOSegment()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.cpp146 Seg.initprot |= in constructSegment()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp222 segment->protection = sc->initprot; in NextSegmentLoad()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h544 uint32_t initprot; member
558 uint32_t initprot; member
1070 sys::swapByteOrder(seg.initprot); in swapStruct()
1083 sys::swapByteOrder(seg.initprot); in swapStruct()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp495 IO.mapRequired("initprot", LoadCommand.initprot); in mapping()
508 IO.mapRequired("initprot", LoadCommand.initprot); in mapping()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp633 seg->initprot = VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE; in writeSingleSegmentLoadCommand()
687 cmd->initprot = seg.init_access; in writeSegmentLoadCommands()
707 cmd->initprot = seg.init_access; in writeSegmentLoadCommands()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp8552 uint32_t initprot, uint32_t nsects, in PrintSegmentCommand() argument
8601 if ((initprot & in PrintSegmentCommand()
8604 outs() << " initprot ?" << format("0x%08" PRIx32, initprot) << "\n"; in PrintSegmentCommand()
8607 outs() << ((initprot & MachO::VM_PROT_READ) ? "r" : "-"); in PrintSegmentCommand()
8608 outs() << ((initprot & MachO::VM_PROT_WRITE) ? "w" : "-"); in PrintSegmentCommand()
8609 outs() << ((initprot & MachO::VM_PROT_EXECUTE) ? "x\n" : "-\n"); in PrintSegmentCommand()
8613 outs() << " initprot " << format("0x%08" PRIx32, initprot) << "\n"; in PrintSegmentCommand()
10088 SLC.initprot, SLC.nsects, SLC.flags, Buf.size(), in PrintLoadCommands()
10101 SLC_64.filesize, SLC_64.maxprot, SLC_64.initprot, in PrintLoadCommands()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DWriter.cpp240 c->initprot = seg->initProt; in writeTo()