[lld][WebAssembly] Prefer objdump -d over obj2yaml for tests. NFC
authorSam Clegg <sbc@chromium.org>
Tue, 27 Jul 2021 18:06:03 +0000 (11:06 -0700)
committerSam Clegg <sbc@chromium.org>
Tue, 10 Aug 2021 22:17:58 +0000 (18:17 -0400)
Now that we have https://reviews.llvm.org/D105539 we can
use objdump -d to actually check for instruction sequences
rather than binary blobs.

This is just an example of how to do that we should followup
with a wider ranging conversion of existing tests.

Differential Revision: https://reviews.llvm.org/D106897

lld/test/wasm/startstop.ll

index 6339460..364d06e 100644 (file)
@@ -2,6 +2,7 @@
 ; RUN: llc -filetype=obj %p/Inputs/explicit-section.ll -o %t2.o
 ; RUN: wasm-ld --export=get_start --export=get_end --export=foo --export=var1 %t.o %t2.o -o %t.wasm
 ; RUN: obj2yaml %t.wasm | FileCheck %s
+; RUN: llvm-objdump -d --no-show-raw-insn %t.wasm | FileCheck %s --check-prefix=ASM
 
 target triple = "wasm32-unknown-unknown"
 
@@ -23,18 +24,8 @@ define void @_start()  {
 entry:
   ret void
 }
-; CHECK:        - Type:            CODE
-; CHECK-NEXT:     Functions:
-; CHECK-NEXT:       - Index:           0
-; CHECK-NEXT:         Locals:          []
-; CHECK-NEXT:         Body:            4180888080000B
-; CHECK-NEXT:       - Index:           1
-; CHECK-NEXT:         Locals:          []
-; CHECK-NEXT:         Body:            4190888080000B
-; CHECK-NEXT:       - Index:           2
-; CHECK-NEXT:         Locals:          []
-; CHECK-NEXT:         Body:            0B
-; CHECK-NEXT:   - Type:            DATA
+
+;      CHECK:   - Type:            DATA
 ; CHECK-NEXT:     Segments:
 ; CHECK-NEXT:       - SectionOffset:   7
 ; CHECK-NEXT:         InitFlags:       0
@@ -42,12 +33,13 @@ entry:
 ; CHECK-NEXT:           Opcode:          I32_CONST
 ; CHECK-NEXT:           Value:           1024
 ; CHECK-NEXT:         Content:         03000000040000002A0000002B000000
-; CHECK-NEXT:   - Type:            CUSTOM
-; CHECK-NEXT:     Name:            name
-; CHECK-NEXT:     FunctionNames:
-; CHECK-NEXT:       - Index:           0
-; CHECK-NEXT:         Name:            get_start
-; CHECK-NEXT:       - Index:           1
-; CHECK-NEXT:         Name:            get_end
-; CHECK-NEXT:       - Index:           2
-; CHECK-NEXT:         Name:            _start
+
+;       ASM: 00000001 <get_start>:
+; ASM-EMPTY:
+;  ASM-NEXT:        3:     i32.const 1024
+;  ASM-NEXT:        9:     end
+
+;       ASM: 0000000a <get_end>:
+; ASM-EMPTY:
+;  ASM-NEXT:        c:     i32.const 1040
+;  ASM-NEXT:       12:     end