Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp462 MachOSection MOSection; in printSectionHeaders() local
463 getSection(Obj, Section.getRawDataRefImpl(), MOSection); in printSectionHeaders()
474 W.printHex("Address", MOSection.Address); in printSectionHeaders()
475 W.printHex("Size", MOSection.Size); in printSectionHeaders()
476 W.printNumber("Offset", MOSection.Offset); in printSectionHeaders()
477 W.printNumber("Alignment", MOSection.Alignment); in printSectionHeaders()
480 W.printEnum("Type", MOSection.Flags & 0xFF, in printSectionHeaders()
482 W.printFlags("Attributes", MOSection.Flags >> 8, in printSectionHeaders()
484 W.printHex("Reserved1", MOSection.Reserved1); in printSectionHeaders()
485 W.printHex("Reserved2", MOSection.Reserved2); in printSectionHeaders()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp978 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section); in emitZerofill() local
979 OS << MOSection->getSegmentName() << "," << MOSection->getName(); in emitZerofill()