blob: 8229e34e9715c1e541024cd304cd67b1d859b9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: wasm-opt %s --jspi --pass-arg=jspi-imports@js.sleep_async --pass-arg=jspi-exports@update_state_async -all -S -o - | filecheck %s
(module
;; sleep_async should have a wrapper function built.
(import "js" "sleep_async" (func $sleep_async (param f64) (result i32)))
;; CHECK: (type $0 (func (param f64) (result i32)))
;; CHECK: (type $1 (func (param externref f64) (result i32)))
;; CHECK: (import "js" "sleep_sync" (func $sleep_sync (type $0) (param f64) (result i32)))
(import "js" "sleep_sync" (func $sleep_sync (param f64) (result i32)))
(export "update_state_async" (func $update_state_async))
;; CHECK: (import "js" "sleep_async" (func $import$sleep_async (type $1) (param externref f64) (result i32)))
;; CHECK: (global $suspender (mut externref) (ref.null noextern))
;; CHECK: (export "update_state_async" (func $export$update_state_async))
;; CHECK: (export "update_state_sync" (func $update_state_sync))
(export "update_state_sync" (func $update_state_sync))
;; This function calls an async sleep so a wrapper should be created for it.
;; CHECK: (func $update_state_async (type $0) (param $param f64) (result i32)
;; CHECK-NEXT: (call $sleep_async
;; CHECK-NEXT: (f64.sub
;; CHECK-NEXT: (f64.const 1.1)
;; CHECK-NEXT: (local.get $param)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update_state_async (param $param f64) (result i32)
(call $sleep_async (f64.sub (f64.const 1.1) (local.get $param)))
)
;; CHECK: (func $update_state_sync (type $0) (param $param f64) (result i32)
;; CHECK-NEXT: (call $sleep_sync
;; CHECK-NEXT: (f64.sub
;; CHECK-NEXT: (f64.const 1.1)
;; CHECK-NEXT: (local.get $param)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $update_state_sync (param $param f64) (result i32)
(call $sleep_sync (f64.sub (f64.const 1.1) (local.get $param)))
)
)
;; CHECK: (func $export$update_state_async (type $1) (param $susp externref) (param $param f64) (result i32)
;; CHECK-NEXT: (global.set $suspender
;; CHECK-NEXT: (local.get $susp)
;; CHECK-NEXT: )
;; CHECK-NEXT: (call $update_state_async
;; CHECK-NEXT: (local.get $param)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK: (func $sleep_async (type $0) (param $0 f64) (result i32)
;; CHECK-NEXT: (local $1 externref)
;; CHECK-NEXT: (local $2 i32)
;; CHECK-NEXT: (local.set $1
;; CHECK-NEXT: (global.get $suspender)
;; CHECK-NEXT: )
;; CHECK-NEXT: (local.set $2
;; CHECK-NEXT: (call $import$sleep_async
;; CHECK-NEXT: (global.get $suspender)
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (global.set $suspender
;; CHECK-NEXT: (local.get $1)
;; CHECK-NEXT: )
;; CHECK-NEXT: (local.get $2)
;; CHECK-NEXT: )
|