diff options
Diffstat (limited to 'test/CodeGen/WebAssembly/function-bitcasts.ll')
| -rw-r--r-- | test/CodeGen/WebAssembly/function-bitcasts.ll | 166 |
1 files changed, 123 insertions, 43 deletions
diff --git a/test/CodeGen/WebAssembly/function-bitcasts.ll b/test/CodeGen/WebAssembly/function-bitcasts.ll index 3f20aef081159..ab03716ef74d9 100644 --- a/test/CodeGen/WebAssembly/function-bitcasts.ll +++ b/test/CodeGen/WebAssembly/function-bitcasts.ll @@ -1,64 +1,36 @@ -; RUN: llc < %s -asm-verbose=false -disable-wasm-explicit-locals | FileCheck %s +; RUN: llc < %s -asm-verbose=false -disable-wasm-explicit-locals -enable-emscripten-cxx-exceptions -wasm-temporary-workarounds=false | FileCheck %s ; Test that function pointer casts are replaced with wrappers. target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" target triple = "wasm32-unknown-unknown-wasm" +declare void @has_i32_arg(i32) +declare i32 @has_i32_ret() +declare void @vararg(...) +declare void @plain(i32) + +declare void @foo0() +declare void @foo1() +declare void @foo2() +declare void @foo3() + ; CHECK-LABEL: test: ; CHECK-NEXT: call .Lbitcast@FUNCTION{{$}} ; CHECK-NEXT: call .Lbitcast@FUNCTION{{$}} ; CHECK-NEXT: call .Lbitcast.1@FUNCTION{{$}} ; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 0 -; CHECK-NEXT: call .Lbitcast.2@FUNCTION, $pop[[L0]]{{$}} +; CHECK-NEXT: call .Lbitcast.4@FUNCTION, $pop[[L0]]{{$}} ; CHECK-NEXT: i32.const $push[[L1:[0-9]+]]=, 0 -; CHECK-NEXT: call .Lbitcast.2@FUNCTION, $pop[[L1]]{{$}} +; CHECK-NEXT: call .Lbitcast.4@FUNCTION, $pop[[L1]]{{$}} ; CHECK-NEXT: i32.const $push[[L2:[0-9]+]]=, 0 -; CHECK-NEXT: call .Lbitcast.2@FUNCTION, $pop[[L2]]{{$}} +; CHECK-NEXT: call .Lbitcast.4@FUNCTION, $pop[[L2]]{{$}} ; CHECK-NEXT: call foo0@FUNCTION -; CHECK-NEXT: i32.call $drop=, .Lbitcast.3@FUNCTION{{$}} +; CHECK-NEXT: i32.call $drop=, .Lbitcast.5@FUNCTION{{$}} ; CHECK-NEXT: call foo2@FUNCTION{{$}} ; CHECK-NEXT: call foo1@FUNCTION{{$}} ; CHECK-NEXT: call foo3@FUNCTION{{$}} ; CHECK-NEXT: end_function - -; CHECK-LABEL: test_varargs: -; CHECK: set_global -; CHECK: i32.const $push[[L3:[0-9]+]]=, 0{{$}} -; CHECK-NEXT: call vararg@FUNCTION, $pop[[L3]]{{$}} -; CHECK-NEXT: i32.const $push[[L4:[0-9]+]]=, 0{{$}} -; CHECK-NEXT: i32.store 0($[[L5:[0-9]+]]), $pop[[L4]]{{$}} -; CHECK-NEXT: call plain@FUNCTION, $[[L5]]{{$}} - -; CHECK-LABEL: .Lbitcast: -; CHECK-NEXT: call has_i32_arg@FUNCTION, $0{{$}} -; CHECK-NEXT: end_function - -; CHECK-LABEL: .Lbitcast.1: -; CHECK-NEXT: call $drop=, has_i32_ret@FUNCTION{{$}} -; CHECK-NEXT: end_function - -; CHECK-LABEL: .Lbitcast.2: -; CHECK-NEXT: .param i32 -; CHECK-NEXT: call foo0@FUNCTION{{$}} -; CHECK-NEXT: end_function - -; CHECK-LABEL: .Lbitcast.3: -; CHECK-NEXT: .result i32 -; CHECK-NEXT: call foo1@FUNCTION{{$}} -; CHECK-NEXT: copy_local $push0=, $0 -; CHECK-NEXT: end_function - -declare void @has_i32_arg(i32) -declare i32 @has_i32_ret() -declare void @vararg(...) -declare void @plain(i32) - -declare void @foo0() -declare void @foo1() -declare void @foo2() -declare void @foo3() - define void @test() { entry: call void bitcast (void (i32)* @has_i32_arg to void ()*)() @@ -79,8 +51,116 @@ entry: ret void } +; CHECK-LABEL: test_varargs: +; CHECK: set_global +; CHECK: i32.const $push[[L3:[0-9]+]]=, 0{{$}} +; CHECK-NEXT: call .Lbitcast.2@FUNCTION, $pop[[L3]]{{$}} +; CHECK-NEXT: i32.const $push[[L4:[0-9]+]]=, 0{{$}} +; CHECK-NEXT: i32.store 0($[[L5:[0-9]+]]), $pop[[L4]]{{$}} +; CHECK-NEXT: call .Lbitcast.3@FUNCTION, $[[L5]]{{$}} define void @test_varargs() { call void bitcast (void (...)* @vararg to void (i32)*)(i32 0) call void (...) bitcast (void (i32)* @plain to void (...)*)(i32 0) ret void } + +; Don't use wrappers when the value is stored in memory + +@global_func = hidden local_unnamed_addr global void ()* null + +; CHECK-LABEL: test_store: +; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 0{{$}} +; CHECK-NEXT: i32.const $push[[L1:[0-9]+]]=, has_i32_ret@FUNCTION{{$}} +; CHECK-NEXT: i32.store global_func($pop[[L0]]), $pop[[L1]]{{$}} +define void @test_store() { + %1 = bitcast i32 ()* @has_i32_ret to void ()* + store void ()* %1, void ()** @global_func + ret void +} + +; CHECK-LABEL: test_load: +; CHECK-NEXT: result i32{{$}} +; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 0{{$}} +; CHECK-NEXT: i32.load $push[[L1:[0-9]+]]=, global_func($pop[[L0]]){{$}} +; CHECK-NEXT: i32.call_indirect $push{{[0-9]+}}=, $pop[[L1]]{{$}} +define i32 @test_load() { + %1 = load i32 ()*, i32 ()** bitcast (void ()** @global_func to i32 ()**) + %2 = call i32 %1() + ret i32 %2 +} + +; Don't use wrappers when the value is passed to a function call + +declare void @call_func(i32 ()*) + +; CHECK-LABEL: test_argument: +; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, has_i32_ret@FUNCTION{{$}} +; CHECK-NEXT: call call_func@FUNCTION, $pop[[L0]]{{$}} +; CHECK-NEXT: i32.const $push[[L1:[0-9]+]]=, has_i32_arg@FUNCTION{{$}} +; CHECK-NEXT: call call_func@FUNCTION, $pop[[L1]]{{$}} +define void @test_argument() { + call void @call_func(i32 ()* @has_i32_ret) + call void @call_func(i32 ()* bitcast (void (i32)* @has_i32_arg to i32 ()*)) + ret void +} + +; Invokes should be treated like calls + +; CHECK-LABEL: test_invoke: +; CHECK: i32.const $push[[L1:[0-9]+]]=, call_func@FUNCTION{{$}} +; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, has_i32_ret@FUNCTION{{$}} +; CHECK-NEXT: call "__invoke_void_i32()*"@FUNCTION, $pop[[L1]], $pop[[L0]]{{$}} +; CHECK: i32.const $push[[L3:[0-9]+]]=, call_func@FUNCTION{{$}} +; CHECK-NEXT: i32.const $push[[L2:[0-9]+]]=, has_i32_arg@FUNCTION{{$}} +; CHECK-NEXT: call "__invoke_void_i32()*"@FUNCTION, $pop[[L3]], $pop[[L2]]{{$}} +; CHECK: i32.const $push[[L4:[0-9]+]]=, .Lbitcast@FUNCTION{{$}} +; CHECK-NEXT: call __invoke_void@FUNCTION, $pop[[L4]]{{$}} +declare i32 @personality(...) +define void @test_invoke() personality i32 (...)* @personality { +entry: + invoke void @call_func(i32 ()* @has_i32_ret) + to label %cont unwind label %lpad + +cont: + invoke void @call_func(i32 ()* bitcast (void (i32)* @has_i32_arg to i32 ()*)) + to label %cont2 unwind label %lpad + +cont2: + invoke void bitcast (void (i32)* @has_i32_arg to void ()*)() + to label %end unwind label %lpad + +lpad: + %0 = landingpad { i8*, i32 } + catch i8* null + br label %end + +end: + ret void +} + +; CHECK-LABEL: .Lbitcast: +; CHECK-NEXT: call has_i32_arg@FUNCTION, $0{{$}} +; CHECK-NEXT: end_function + +; CHECK-LABEL: .Lbitcast.1: +; CHECK-NEXT: call $drop=, has_i32_ret@FUNCTION{{$}} +; CHECK-NEXT: end_function + +; CHECK-LABEL: .Lbitcast.2: +; CHECK: call vararg@FUNCTION, $1{{$}} +; CHECK: end_function + +; CHECK-LABEL: .Lbitcast.3: +; CHECK: call plain@FUNCTION, $1{{$}} +; CHECK: end_function + +; CHECK-LABEL: .Lbitcast.4: +; CHECK-NEXT: .param i32 +; CHECK-NEXT: call foo0@FUNCTION{{$}} +; CHECK-NEXT: end_function + +; CHECK-LABEL: .Lbitcast.5: +; CHECK-NEXT: .result i32 +; CHECK-NEXT: call foo1@FUNCTION{{$}} +; CHECK-NEXT: copy_local $push0=, $0 +; CHECK-NEXT: end_function |
