2018-08-27 23:45:51 +08:00
|
|
|
; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s
|
2017-01-07 09:50:01 +08:00
|
|
|
|
2018-08-03 01:38:06 +08:00
|
|
|
; Test that function pointer casts that require conversions of arguments or
|
|
|
|
; return types are converted to unreachable.
|
2017-01-07 09:50:01 +08:00
|
|
|
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
2018-05-11 01:49:11 +08:00
|
|
|
target triple = "wasm32-unknown-unknown"
|
2017-01-07 09:50:01 +08:00
|
|
|
|
2018-08-03 01:38:06 +08:00
|
|
|
declare i32 @has_i64_arg(i64)
|
|
|
|
declare i32 @has_ptr_arg(i8*)
|
|
|
|
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-LABEL: test_invalid_rtn:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK: i32.const $push[[L0:[0-9]+]]=, 0{{$}}
|
[WebAssembly] Replace all calls with generalized multivalue calls
Summary:
Extends the multivalue call infrastructure to tail calls, removes all
legacy calls specialized for particular result types, and removes the
CallIndirectFixup pass, since all indirect call arguments are now
fixed up directly in the post-insertion hook.
In order to keep supporting pretty-printed defs and uses in test
expectations, MCInstLower now inserts an immediate containing the
number of defs for each call and call_indirect. The InstPrinter is
updated to query this immediate if it is present and determine which
MCOperands are defs and uses accordingly.
Depends on D72902.
Reviewers: aheejin
Subscribers: dschuff, mgorny, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74192
2020-02-07 08:29:59 +08:00
|
|
|
; CHECK-NEXT: call $push[[L1:[0-9]+]]=, .Lhas_i64_arg_bitcast_invalid.2, $pop[[L0]]{{$}}
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-NEXT: drop $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: i64.const $push[[L0:[0-9]+]]=, 0{{$}}
|
[WebAssembly] Replace all calls with generalized multivalue calls
Summary:
Extends the multivalue call infrastructure to tail calls, removes all
legacy calls specialized for particular result types, and removes the
CallIndirectFixup pass, since all indirect call arguments are now
fixed up directly in the post-insertion hook.
In order to keep supporting pretty-printed defs and uses in test
expectations, MCInstLower now inserts an immediate containing the
number of defs for each call and call_indirect. The InstPrinter is
updated to query this immediate if it is present and determine which
MCOperands are defs and uses accordingly.
Depends on D72902.
Reviewers: aheejin
Subscribers: dschuff, mgorny, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74192
2020-02-07 08:29:59 +08:00
|
|
|
; CHECK-NEXT: call $push[[L1:[0-9]+]]=, .Lhas_i64_arg_bitcast_invalid, $pop[[L0]]{{$}}
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-NEXT: drop $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: end_function
|
2018-08-03 01:38:06 +08:00
|
|
|
define void @test_invalid_rtn() {
|
|
|
|
entry:
|
|
|
|
call i32 bitcast (i32 (i64)* @has_i64_arg to i32 (i32)*)(i32 0)
|
2018-08-30 09:01:30 +08:00
|
|
|
call [1 x i64] bitcast (i32 (i64)* @has_i64_arg to [1 x i64] (i64)*)(i64 0)
|
2018-08-03 01:38:06 +08:00
|
|
|
ret void
|
|
|
|
}
|
2017-01-07 09:50:01 +08:00
|
|
|
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-LABEL: test_struct_rtn:
|
2019-02-23 08:07:39 +08:00
|
|
|
; CHECK: call has_i64_arg, $pop6, $pop0
|
2018-08-30 09:01:30 +08:00
|
|
|
define void @test_struct_rtn() {
|
|
|
|
call {i32, i32} bitcast (i32 (i64)* @has_i64_arg to {i32, i32} (i64)*)(i64 0)
|
2017-01-07 09:50:01 +08:00
|
|
|
ret void
|
|
|
|
}
|
2018-08-03 01:38:06 +08:00
|
|
|
|
|
|
|
; CHECK-LABEL: test_invalid_arg:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK: i32.const $push[[L0:[0-9]+]]=, 2{{$}}
|
[WebAssembly] Replace all calls with generalized multivalue calls
Summary:
Extends the multivalue call infrastructure to tail calls, removes all
legacy calls specialized for particular result types, and removes the
CallIndirectFixup pass, since all indirect call arguments are now
fixed up directly in the post-insertion hook.
In order to keep supporting pretty-printed defs and uses in test
expectations, MCInstLower now inserts an immediate containing the
number of defs for each call and call_indirect. The InstPrinter is
updated to query this immediate if it is present and determine which
MCOperands are defs and uses accordingly.
Depends on D72902.
Reviewers: aheejin
Subscribers: dschuff, mgorny, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74192
2020-02-07 08:29:59 +08:00
|
|
|
; CHECK-NEXT: call $push[[L1:[0-9]+]]=, .Lhas_ptr_arg_bitcast_invalid.4, $pop[[L0]]{{$}}
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: drop $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 2{{$}}
|
[WebAssembly] Replace all calls with generalized multivalue calls
Summary:
Extends the multivalue call infrastructure to tail calls, removes all
legacy calls specialized for particular result types, and removes the
CallIndirectFixup pass, since all indirect call arguments are now
fixed up directly in the post-insertion hook.
In order to keep supporting pretty-printed defs and uses in test
expectations, MCInstLower now inserts an immediate containing the
number of defs for each call and call_indirect. The InstPrinter is
updated to query this immediate if it is present and determine which
MCOperands are defs and uses accordingly.
Depends on D72902.
Reviewers: aheejin
Subscribers: dschuff, mgorny, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74192
2020-02-07 08:29:59 +08:00
|
|
|
; CHECK-NEXT: call $push[[L1:[0-9]+]]=, has_ptr_arg, $pop[[L0]]{{$}}
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: drop $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: i64.const $push[[L0:[0-9]+]]=, 3{{$}}
|
[WebAssembly] Replace all calls with generalized multivalue calls
Summary:
Extends the multivalue call infrastructure to tail calls, removes all
legacy calls specialized for particular result types, and removes the
CallIndirectFixup pass, since all indirect call arguments are now
fixed up directly in the post-insertion hook.
In order to keep supporting pretty-printed defs and uses in test
expectations, MCInstLower now inserts an immediate containing the
number of defs for each call and call_indirect. The InstPrinter is
updated to query this immediate if it is present and determine which
MCOperands are defs and uses accordingly.
Depends on D72902.
Reviewers: aheejin
Subscribers: dschuff, mgorny, sbc100, jgravelle-google, hiraditya, sunfish, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74192
2020-02-07 08:29:59 +08:00
|
|
|
; CHECK-NEXT: call $push[[L1:[0-9]+]]=, .Lhas_ptr_arg_bitcast_invalid, $pop[[L0]]{{$}}
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: drop $pop[[L1]]{{$}}
|
|
|
|
; CHECK-NEXT: end_function
|
2018-08-30 09:01:30 +08:00
|
|
|
define void @test_invalid_arg() {
|
|
|
|
entry:
|
|
|
|
call i32 bitcast (i32 (i8*)* @has_ptr_arg to i32 (i8)*)(i8 2)
|
|
|
|
call i32 bitcast (i32 (i8*)* @has_ptr_arg to i32 (i32)*)(i32 2)
|
|
|
|
call i32 bitcast (i32 (i8*)* @has_ptr_arg to i32 (i64)*)(i64 3)
|
|
|
|
ret void
|
|
|
|
}
|
2018-08-03 01:38:06 +08:00
|
|
|
|
|
|
|
; CHECK-LABEL: .Lhas_i64_arg_bitcast_invalid:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK-NEXT: .functype .Lhas_i64_arg_bitcast_invalid (i64) -> (i64)
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-NEXT: unreachable
|
|
|
|
; CHECK-NEXT: end_function
|
|
|
|
|
|
|
|
; CHECK-LABEL: .Lhas_i64_arg_bitcast_invalid.2:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK-NEXT: .functype .Lhas_i64_arg_bitcast_invalid.2 (i32) -> (i32)
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: unreachable
|
|
|
|
; CHECK-NEXT: end_function
|
|
|
|
|
|
|
|
; CHECK-LABEL: .Lhas_ptr_arg_bitcast_invalid:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK-NEXT: .functype .Lhas_ptr_arg_bitcast_invalid (i64) -> (i32)
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: unreachable
|
|
|
|
; CHECK-NEXT: end_function
|
|
|
|
|
2018-08-30 09:01:30 +08:00
|
|
|
; CHECK-LABEL: .Lhas_ptr_arg_bitcast_invalid.4:
|
2018-11-20 01:10:36 +08:00
|
|
|
; CHECK-NEXT: .functype .Lhas_ptr_arg_bitcast_invalid.4 (i32) -> (i32)
|
2018-08-03 01:38:06 +08:00
|
|
|
; CHECK-NEXT: unreachable
|
|
|
|
; CHECK-NEXT: end_function
|