Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp440 MachOSection MOSection; in printSectionHeaders() local
441 getSection(Obj, Section.getRawDataRefImpl(), MOSection); in printSectionHeaders()
455 W.printHex("Address", MOSection.Address); in printSectionHeaders()
456 W.printHex("Size", MOSection.Size); in printSectionHeaders()
457 W.printNumber("Offset", MOSection.Offset); in printSectionHeaders()
458 W.printNumber("Alignment", MOSection.Alignment); in printSectionHeaders()
461 W.printEnum("Type", MOSection.Flags & 0xFF, in printSectionHeaders()
463 W.printFlags("Attributes", MOSection.Flags >> 8, in printSectionHeaders()
465 W.printHex("Reserved1", MOSection.Reserved1); in printSectionHeaders()
466 W.printHex("Reserved2", MOSection.Reserved2); in printSectionHeaders()
[all …]
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp802 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section); in EmitZerofill() local
803 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName(); in EmitZerofill()