
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.
30 lines
1.1 KiB
LLVM
30 lines
1.1 KiB
LLVM
; RUN: llc < %s -asm-verbose=false -mattr=-reference-types -O2 | FileCheck --check-prefixes=CHECK,NOREF %s
|
|
; RUN: llc < %s -asm-verbose=false -mattr=+reference-types -O2 | FileCheck --check-prefixes=CHECK,REF %s
|
|
; RUN: llc < %s -asm-verbose=false -O2 --filetype=obj | obj2yaml | FileCheck --check-prefix=OBJ %s
|
|
|
|
; Test that compilation units with call_indirect but without any
|
|
; function pointer declarations still get a table.
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; CHECK-LABEL: call_indirect_void:
|
|
; CHECK-NEXT: .functype call_indirect_void (i32) -> ()
|
|
; CHECK-NEXT: local.get 0
|
|
; REF: call_indirect __indirect_function_table, () -> ()
|
|
; NOREF: call_indirect () -> ()
|
|
; CHECK-NEXT: end_function
|
|
define void @call_indirect_void(ptr %callee) {
|
|
call void %callee()
|
|
ret void
|
|
}
|
|
|
|
; OBJ: Imports:
|
|
; OBJ-NEXT: - Module: env
|
|
; OBJ-NEXT: Field: __linear_memory
|
|
; OBJ-NEXT: Kind: MEMORY
|
|
; OBJ-NEXT: Memory:
|
|
; OBJ-NEXT: Minimum: 0x0
|
|
; OBJ-NEXT: - Module: env
|
|
; OBJ-NEXT: Field: __indirect_function_table
|
|
; OBJ-NEXT: Kind: TABLE
|