MachoSegment
Description
Decoded segment_command_64. Segments are spans of the file that map to contiguous virtual-address ranges at runtime.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
MachO.h:54:
u32 nsects;
u32 flags;
} MachoSegment;
///
- In
MachO.h:80:
} MachoSymbol;
typedef Vec(MachoSegment) MachoSegments;
typedef Vec(MachoSection) MachoSections;
typedef Vec(MachoSymbol) MachoSymbols;- In
MachO.c:179:
return false;
}
MachoSegment seg;
MemSet(&seg, 0, sizeof(seg));
// Must-precondition for the next two moves: `cmdsize >=
Last updated on