mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-15 19:24:33 +00:00
For llvm-objdump, hook up existing options to work when using -macho (the Mach-O parser).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226612 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
7
test/tools/llvm-objdump/X86/macho-relocations.test
Normal file
7
test/tools/llvm-objdump/X86/macho-relocations.test
Normal file
@@ -0,0 +1,7 @@
|
||||
RUN: llvm-objdump -macho -r %p/Inputs/hello.obj.macho-x86_64 | FileCheck %s
|
||||
|
||||
CHECK: RELOCATION RECORDS FOR [__text]:
|
||||
CHECK: 0000000000000027 X86_64_RELOC_BRANCH _printf
|
||||
CHECK: 000000000000000b X86_64_RELOC_SIGNED L_.str
|
||||
CHECK: RELOCATION RECORDS FOR [__compact_unwind]:
|
||||
CHECK: 0000000000000000 X86_64_RELOC_UNSIGNED __text
|
17
test/tools/llvm-objdump/X86/macho-section-contents.test
Normal file
17
test/tools/llvm-objdump/X86/macho-section-contents.test
Normal file
@@ -0,0 +1,17 @@
|
||||
RUN: llvm-objdump -macho -s %p/Inputs/hello.obj.macho-x86_64 | FileCheck %s
|
||||
|
||||
CHECK: Contents of section __text:
|
||||
CHECK: 0000 554889e5 4883ec20 488d0500 000000c7 UH..H.. H.......
|
||||
CHECK: 0010 45fc0000 0000897d f8488975 f0488955 E......}.H.u.H.U
|
||||
CHECK: 0020 e84889c7 b000e800 000000b9 00000000 .H..............
|
||||
CHECK: 0030 8945e489 c84883c4 205dc3 .E...H.. ].
|
||||
CHECK: Contents of section __cstring:
|
||||
CHECK: 003b 48656c6c 6f20776f 726c640a 00 Hello world..
|
||||
CHECK: Contents of section __compact_unwind:
|
||||
CHECK: 0048 00000000 00000000 3b000000 00000001 ........;.......
|
||||
CHECK: 0058 00000000 00000000 00000000 00000000 ................
|
||||
CHECK: Contents of section __eh_frame:
|
||||
CHECK: 0068 14000000 00000000 017a5200 01781001 .........zR..x..
|
||||
CHECK: 0078 100c0708 90010000 24000000 1c000000 ........$.......
|
||||
CHECK: 0088 78ffffff ffffffff 3b000000 00000000 x.......;.......
|
||||
CHECK: 0098 00410e10 8602430d 06000000 00000000 .A....C.........
|
8
test/tools/llvm-objdump/X86/macho-section-headers.test
Normal file
8
test/tools/llvm-objdump/X86/macho-section-headers.test
Normal file
@@ -0,0 +1,8 @@
|
||||
RUN: llvm-objdump -macho -h %p/Inputs/hello.obj.macho-x86_64 | FileCheck %s
|
||||
|
||||
CHECK: Sections:
|
||||
CHECK: Idx Name Size Address Type
|
||||
CHECK: 0 __text 0000003b 0000000000000000 TEXT
|
||||
CHECK: 1 __cstring 0000000d 000000000000003b DATA
|
||||
CHECK: 2 __compact_unwind 00000020 0000000000000048 DATA
|
||||
CHECK: 3 __eh_frame 00000040 0000000000000068 DATA
|
8
test/tools/llvm-objdump/X86/macho-symbol-table.test
Normal file
8
test/tools/llvm-objdump/X86/macho-symbol-table.test
Normal file
@@ -0,0 +1,8 @@
|
||||
RUN: llvm-objdump -macho -t %p/Inputs/hello.obj.macho-x86_64 | FileCheck %s
|
||||
|
||||
CHECK: SYMBOL TABLE:
|
||||
CHECK: 000000000000003b l F __TEXT,__cstring 0000000d L_.str
|
||||
CHECK: 0000000000000068 l F __TEXT,__eh_frame 00000018 EH_frame0
|
||||
CHECK: 0000000000000000 g F __TEXT,__text 0000003b _main
|
||||
CHECK: 0000000000000080 g F __TEXT,__eh_frame 00000028 _main.eh
|
||||
CHECK: 0000000000000000 *UND* 00000000 _printf
|
7
test/tools/llvm-objdump/X86/macho-unwind-info.test
Normal file
7
test/tools/llvm-objdump/X86/macho-unwind-info.test
Normal file
@@ -0,0 +1,7 @@
|
||||
RUN: llvm-objdump -macho -u %p/Inputs/hello.obj.macho-x86_64 | FileCheck %s
|
||||
|
||||
CHECK: Contents of __compact_unwind section:
|
||||
CHECK: Entry at offset 0x0:
|
||||
CHECK: start: 0x0 _main
|
||||
CHECK: length: 0x3b
|
||||
CHECK: compact encoding: 0x01000000
|
Reference in New Issue
Block a user