Eli Friedman | dc9414d | 2011-11-01 03:21:48 +0000 | [diff] [blame] | 1 | RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-i386 \ |
Michael J. Spencer | 942eb00 | 2011-10-13 22:17:18 +0000 | [diff] [blame] | 2 | RUN: | FileCheck %s -check-prefix COFF-i386 |
Eli Friedman | dc9414d | 2011-11-01 03:21:48 +0000 | [diff] [blame] | 3 | RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-x86-64 \ |
Michael J. Spencer | 942eb00 | 2011-10-13 22:17:18 +0000 | [diff] [blame] | 4 | RUN: | FileCheck %s -check-prefix COFF-x86-64 |
| 5 | |
| 6 | COFF-i386: file format COFF-i386 |
| 7 | COFF-i386: Disassembly of section .text: |
| 8 | COFF-i386: 0: 83 ec 0c subl $12, %esp |
| 9 | COFF-i386: 3: c7 44 24 08 00 00 00 00 movl $0, 8(%esp) |
| 10 | COFF-i386: b: c7 04 24 00 00 00 00 movl $0, (%esp) |
| 11 | COFF-i386: e: IMAGE_REL_I386_DIR32 L_.str |
| 12 | COFF-i386: 12: e8 00 00 00 00 calll 0 |
| 13 | COFF-i386: 13: IMAGE_REL_I386_REL32 _puts |
| 14 | COFF-i386: 17: e8 00 00 00 00 calll 0 |
| 15 | COFF-i386: 18: IMAGE_REL_I386_REL32 _SomeOtherFunction |
| 16 | COFF-i386: 1c: 8b 44 24 08 movl 8(%esp), %eax |
| 17 | COFF-i386: 20: 83 c4 0c addl $12, %esp |
| 18 | COFF-i386: 23: c3 ret |
| 19 | |
| 20 | COFF-x86-64: file format COFF-x86-64 |
| 21 | COFF-x86-64: Disassembly of section .text: |
| 22 | COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp |
| 23 | COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp) |
| 24 | COFF-x86-64: c: 48 8d 0d 00 00 00 00 leaq (%rip), %rcx |
| 25 | COFF-x86-64: f: IMAGE_REL_AMD64_REL32 L.str |
| 26 | COFF-x86-64: 13: e8 00 00 00 00 callq 0 |
| 27 | COFF-x86-64: 14: IMAGE_REL_AMD64_REL32 puts |
| 28 | COFF-x86-64: 18: e8 00 00 00 00 callq 0 |
| 29 | COFF-x86-64: 19: IMAGE_REL_AMD64_REL32 SomeOtherFunction |
| 30 | COFF-x86-64: 1d: 8b 44 24 24 movl 36(%rsp), %eax |
| 31 | COFF-x86-64: 21: 48 83 c4 28 addq $40, %rsp |
| 32 | COFF-x86-64: 25: c3 ret |