Home
last modified time | relevance | path

Searched refs:MOSection (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DMachODumper.cpp476 MachOSection MOSection; in printSectionHeaders() local
477 getSection(Obj, Section.getRawDataRefImpl(), MOSection); in printSectionHeaders()
488 W.printHex("Address", MOSection.Address); in printSectionHeaders()
489 W.printHex("Size", MOSection.Size); in printSectionHeaders()
490 W.printNumber("Offset", MOSection.Offset); in printSectionHeaders()
491 W.printNumber("Alignment", MOSection.Alignment); in printSectionHeaders()
494 W.printEnum("Type", MOSection.Flags & 0xFF, in printSectionHeaders()
496 W.printFlags("Attributes", MOSection.Flags >> 8, in printSectionHeaders()
498 W.printHex("Reserved1", MOSection.Reserved1); in printSectionHeaders()
499 W.printHex("Reserved2", MOSection.Reserved2); in printSectionHeaders()
[all …]
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCAsmStreamer.cpp1010 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section); in emitZerofill() local
1011 OS << MOSection->getSegmentName() << "," << MOSection->getName(); in emitZerofill()