This updates the list of features in 'generic' and 'bleeding-edge' CPUs
in the backend to match
4e0a0eae58/clang/lib/Basic/Targets/WebAssembly.cpp (L150-L178)
This updates existing CodeGen tests in a way that, if a test has
separate RUN lines for a reference-types test and a non-reference-types
test, I added -mattr=-reference-types to the no-reftype test's RUN
command line. I didn't delete existing -mattr=+reference-types lines in
reftype tests because having it helps readability.
Also, when tests is not really about reference-types but they have to
updated because they happen to contain call_indirect lines because now
call_indirect will take __indirect_function_table as an argument, I just
added the table argument to the expected output.
`target-features-cpus.ll` has been updated reflecting the newly added
features.
86 lines
2.3 KiB
LLVM
86 lines
2.3 KiB
LLVM
; RUN: llc -filetype=obj %s -mattr=-reference-types -o - | llvm-readobj --symbols - | FileCheck %s
|
|
; RUN: llc -filetype=obj %s -mattr=+reference-types -o - | llvm-readobj --symbols - | FileCheck --check-prefix=REF %s
|
|
|
|
target triple = "wasm32-unknown-unknown-wasm"
|
|
|
|
@foo = alias i8, ptr @func
|
|
@bar = alias ptr (), ptr @func
|
|
@bar2 = alias ptr (), ptr @bar
|
|
|
|
define ptr @func() {
|
|
call ptr @bar2();
|
|
ret ptr @foo;
|
|
}
|
|
|
|
; CHECK: Symbols [
|
|
; CHECK-NEXT: Symbol {
|
|
; CHECK-NEXT: Name: func
|
|
; CHECK-NEXT: Type: FUNCTION (0x0)
|
|
; CHECK-NEXT: Flags [ (0x0)
|
|
; CHECK-NEXT: ]
|
|
; CHECK-NEXT: ElementIndex: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Symbol {
|
|
; CHECK-NEXT: Name: bar2
|
|
; CHECK-NEXT: Type: FUNCTION (0x0)
|
|
; CHECK-NEXT: Flags [ (0x0)
|
|
; CHECK-NEXT: ]
|
|
; CHECK-NEXT: ElementIndex: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Symbol {
|
|
; CHECK-NEXT: Name: foo
|
|
; CHECK-NEXT: Type: FUNCTION (0x0)
|
|
; CHECK-NEXT: Flags [ (0x0)
|
|
; CHECK-NEXT: ]
|
|
; CHECK-NEXT: ElementIndex: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: Symbol {
|
|
; CHECK-NEXT: Name: bar
|
|
; CHECK-NEXT: Type: FUNCTION (0x0)
|
|
; CHECK-NEXT: Flags [ (0x0)
|
|
; CHECK-NEXT: ]
|
|
; CHECK-NEXT: ElementIndex: 0x0
|
|
; CHECK-NEXT: }
|
|
; CHECK-NEXT: ]
|
|
|
|
; REF: Symbols [
|
|
; REF-NEXT: Symbol {
|
|
; REF-NEXT: Name: func
|
|
; REF-NEXT: Type: FUNCTION (0x0)
|
|
; REF-NEXT: Flags [ (0x0)
|
|
; REF-NEXT: ]
|
|
; REF-NEXT: ElementIndex: 0x0
|
|
; REF-NEXT: }
|
|
; REF-NEXT: Symbol {
|
|
; REF-NEXT: Name: bar2
|
|
; REF-NEXT: Type: FUNCTION (0x0)
|
|
; REF-NEXT: Flags [ (0x0)
|
|
; REF-NEXT: ]
|
|
; REF-NEXT: ElementIndex: 0x0
|
|
; REF-NEXT: }
|
|
; REF-NEXT: Symbol {
|
|
; REF-NEXT: Name: foo
|
|
; REF-NEXT: Type: FUNCTION (0x0)
|
|
; REF-NEXT: Flags [ (0x0)
|
|
; REF-NEXT: ]
|
|
; REF-NEXT: ElementIndex: 0x0
|
|
; REF-NEXT: }
|
|
; REF-NEXT: Symbol {
|
|
; REF-NEXT: Name: bar
|
|
; REF-NEXT: Type: FUNCTION (0x0)
|
|
; REF-NEXT: Flags [ (0x0)
|
|
; REF-NEXT: ]
|
|
; REF-NEXT: ElementIndex: 0x0
|
|
; REF-NEXT: }
|
|
; REF-NEXT: Symbol {
|
|
; REF-NEXT: Name: __indirect_function_table
|
|
; REF-NEXT: Type: TABLE (0x5)
|
|
; REF-NEXT: Flags [ (0x90)
|
|
; REF-NEXT: NO_STRIP (0x80)
|
|
; REF-NEXT: UNDEFINED (0x10)
|
|
; REF-NEXT: ]
|
|
; REF-NEXT: ImportModule: env
|
|
; REF-NEXT: ElementIndex: 0x0
|
|
; REF-NEXT: }
|
|
; REF-NEXT: ]
|