diff options
Diffstat (limited to 'test/MC/MachO/jcc.s')
-rw-r--r-- | test/MC/MachO/jcc.s | 98 |
1 files changed, 58 insertions, 40 deletions
diff --git a/test/MC/MachO/jcc.s b/test/MC/MachO/jcc.s index 2288a20fa273..caff25714a0c 100644 --- a/test/MC/MachO/jcc.s +++ b/test/MC/MachO/jcc.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s +// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | llvm-readobj -file-headers -s -sd -r -macho-segment | FileCheck %s ja 1f 1: nop @@ -65,42 +65,60 @@ jz 1f 1: nop -// CHECK: ('cputype', 7) -// CHECK: ('cpusubtype', 3) -// CHECK: ('filetype', 1) -// CHECK: ('num_load_commands', 1) -// CHECK: ('load_commands_size', 124) -// CHECK: ('flag', 0) -// CHECK: ('load_commands', [ -// CHECK: # Load Command 0 -// CHECK: (('command', 1) -// CHECK: ('size', 124) -// CHECK: ('segment_name', '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') -// CHECK: ('vm_addr', 0) -// CHECK: ('vm_size', 96) -// CHECK: ('file_offset', 152) -// CHECK: ('file_size', 96) -// CHECK: ('maxprot', 7) -// CHECK: ('initprot', 7) -// CHECK: ('num_sections', 1) -// CHECK: ('flags', 0) -// CHECK: ('sections', [ -// CHECK: # Section 0 -// CHECK: (('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') -// CHECK: ('segment_name', '__TEXT\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') -// CHECK: ('address', 0) -// CHECK: ('size', 96) -// CHECK: ('offset', 152) -// CHECK: ('alignment', 0) -// CHECK: ('reloc_offset', 0) -// CHECK: ('num_reloc', 0) -// CHECK: ('flags', 0x80000400) -// CHECK: ('reserved1', 0) -// CHECK: ('reserved2', 0) -// CHECK: ), -// CHECK: ('_relocations', [ -// CHECK: ]) -// CHECK: ('_section_data', '77009073 00907200 90760090 720090e3 0090e300 90740090 7f00907d 00907c00 907e0090 76009072 00907300 90770090 73009075 00907e00 907c0090 7d00907f 00907100 907b0090 79009075 00907000 907a0090 7a00907b 00907800 90740090') -// CHECK: ]) -// CHECK: ), -// CHECK: ]) +// CHECK: File: <stdin> +// CHECK: Format: Mach-O 32-bit i386 +// CHECK: Arch: i386 +// CHECK: AddressSize: 32bit +// CHECK: MachHeader { +// CHECK: Magic: Magic (0xFEEDFACE) +// CHECK: CpuType: X86 (0x7) +// CHECK: CpuSubType: CPU_SUBTYPE_I386_ALL (0x3) +// CHECK: FileType: Relocatable (0x1) +// CHECK: NumOfLoadCommands: 2 +// CHECK: SizeOfLoadCommands: 140 +// CHECK: Flags [ (0x0) +// CHECK: ] +// CHECK: } +// CHECK: Sections [ +// CHECK: Section { +// CHECK: Index: 0 +// CHECK: Name: __text (5F 5F 74 65 78 74 00 00 00 00 00 00 00 00 00 00) +// CHECK: Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00) +// CHECK: Address: 0x0 +// CHECK: Size: 0x60 +// CHECK: Offset: 168 +// CHECK: Alignment: 0 +// CHECK: RelocationOffset: 0x0 +// CHECK: RelocationCount: 0 +// CHECK: Type: 0x0 +// CHECK: Attributes [ (0x800004) +// CHECK: PureInstructions (0x800000) +// CHECK: SomeInstructions (0x4) +// CHECK: ] +// CHECK: Reserved1: 0x0 +// CHECK: Reserved2: 0x0 +// CHECK: SectionData ( +// CHECK: 0000: 77009073 00907200 90760090 720090E3 |w..s..r..v..r...| +// CHECK: 0010: 0090E300 90740090 7F00907D 00907C00 |.....t.....}..|.| +// CHECK: 0020: 907E0090 76009072 00907300 90770090 |.~..v..r..s..w..| +// CHECK: 0030: 73009075 00907E00 907C0090 7D00907F |s..u..~..|..}...| +// CHECK: 0040: 00907100 907B0090 79009075 00907000 |..q..{..y..u..p.| +// CHECK: 0050: 907A0090 7A00907B 00907800 90740090 |.z..z..{..x..t..| +// CHECK: ) +// CHECK: } +// CHECK: ] +// CHECK: Relocations [ +// CHECK: ] +// CHECK: Segment { +// CHECK: Cmd: LC_SEGMENT +// CHECK: Name: +// CHECK: Size: 124 +// CHECK: vmaddr: 0x0 +// CHECK: vmsize: 0x60 +// CHECK: fileoff: 168 +// CHECK: filesize: 96 +// CHECK: maxprot: rwx +// CHECK: initprot: rwx +// CHECK: nsects: 1 +// CHECK: flags: 0x0 +// CHECK: } |