OLD | NEW |
1 ; Tests that we generate an ELF container with fields that make sense, | 1 ; Tests that we generate an ELF container with fields that make sense, |
2 ; cross-validating against llvm-mc. | 2 ; cross-validating against llvm-mc. |
3 | 3 |
4 ; For the integrated ELF writer, we can't pipe the output because we need | 4 ; For the integrated ELF writer, we can't pipe the output because we need |
5 ; to seek backward and patch up the file headers. So, use a temporary file. | 5 ; to seek backward and patch up the file headers. So, use a temporary file. |
6 ; RUN: %p2i -i %s --filetype=obj --args -O2 --verbose none -o %t \ | 6 ; RUN: %p2i -i %s --filetype=obj --args -O2 --verbose none -o %t \ |
7 ; RUN: && llvm-readobj -file-headers -sections -section-data \ | 7 ; RUN: && llvm-readobj -file-headers -sections -section-data \ |
8 ; RUN: -relocations -symbols %t | FileCheck %s | 8 ; RUN: -relocations -symbols %t | FileCheck %s |
9 | 9 |
10 ; RUN: %if --need=allow_dump --command %p2i -i %s --args -O2 --verbose none \ | 10 ; RUN: %if --need=allow_dump --command %p2i -i %s --args -O2 --verbose none \ |
11 ; RUN: | %if --need=allow_dump --command llvm-mc -triple=i686-none-nacl \ | 11 ; RUN: | %if --need=allow_dump --command llvm-mc -triple=i686-nacl \ |
12 ; RUN: -filetype=obj -o - \ | 12 ; RUN: -filetype=obj -o - \ |
13 ; RUN: | %if --need=allow_dump --command llvm-readobj -file-headers \ | 13 ; RUN: | %if --need=allow_dump --command llvm-readobj -file-headers \ |
14 ; RUN: -sections -section-data -relocations -symbols - \ | 14 ; RUN: -sections -section-data -relocations -symbols - \ |
15 ; RUN: | %if --need=allow_dump --command FileCheck %s | 15 ; RUN: | %if --need=allow_dump --command FileCheck %s |
16 | 16 |
17 ; Add a run that shows relocations in code inline. | 17 ; Add a run that shows relocations in code inline. |
18 ; RUN: %p2i -i %s --filetype=obj --args -O2 --verbose none -o %t \ | 18 ; RUN: %p2i -i %s --filetype=obj --args -O2 --verbose none -o %t \ |
19 ; RUN: && objdump -w -d -r -Mintel %t \ | 19 ; RUN: && objdump -w -d -r -Mintel %t \ |
20 ; RUN: | FileCheck --check-prefix=TEXT-RELOCS %s | 20 ; RUN: | FileCheck --check-prefix=TEXT-RELOCS %s |
21 | 21 |
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 ; CHECK: Symbol { | 638 ; CHECK: Symbol { |
639 ; CHECK: Name: memset | 639 ; CHECK: Name: memset |
640 ; CHECK-NEXT: Value: 0x0 | 640 ; CHECK-NEXT: Value: 0x0 |
641 ; CHECK-NEXT: Size: 0 | 641 ; CHECK-NEXT: Size: 0 |
642 ; CHECK-NEXT: Binding: Global | 642 ; CHECK-NEXT: Binding: Global |
643 ; CHECK-NEXT: Type: None | 643 ; CHECK-NEXT: Type: None |
644 ; CHECK-NEXT: Other: 0 | 644 ; CHECK-NEXT: Other: 0 |
645 ; CHECK-NEXT: Section: Undefined | 645 ; CHECK-NEXT: Section: Undefined |
646 ; CHECK-NEXT: } | 646 ; CHECK-NEXT: } |
647 ; CHECK: ] | 647 ; CHECK: ] |
OLD | NEW |