blob: bcfeb1ecbba4edc0b2f95c8a674c91cdcab2af1d (
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
72
73
74
75
76
77
78
79
80
81
82
83
|
;; 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-exports@foo --pass-arg=jspi-split-module -all -S -o %t.jspi.wast
;; RUN: wasm-split %t.jspi.wast --export-prefix='%' -g -o1 %t.1.wasm -o2 %t.2.wasm --jspi --enable-reference-types
;; RUN: wasm-dis %t.1.wasm | filecheck %s --check-prefix PRIMARY
;; RUN: wasm-dis %t.2.wasm | filecheck %s --check-prefix SECONDARY
;; Ensure exported functions are not moved to secondary module when JSPI is
;; enabled.
(module
;; PRIMARY: (type $i32_=>_i32 (func (param i32) (result i32)))
;; PRIMARY: (type $externref_=>_none (func (param externref)))
;; PRIMARY: (type $externref_i32_=>_i32 (func (param externref i32) (result i32)))
;; PRIMARY: (type $none_=>_none (func))
;; PRIMARY: (import "env" "__load_secondary_module" (func $import$__load_secondary_module (param externref)))
;; PRIMARY: (import "placeholder" "0" (func $placeholder_0 (param i32) (result i32)))
;; PRIMARY: (global $suspender (mut externref) (ref.null noextern))
;; PRIMARY: (global $global$1 (mut i32) (i32.const 0))
;; PRIMARY: (table $0 1 funcref)
;; PRIMARY: (elem $0 (i32.const 0) $placeholder_0)
;; PRIMARY: (export "foo" (func $export$foo))
(export "foo" (func $foo))
;; SECONDARY: (type $i32_=>_i32 (func (param i32) (result i32)))
;; SECONDARY: (import "primary" "%table" (table $timport$0 1 funcref))
;; SECONDARY: (import "primary" "%global" (global $suspender (mut externref)))
;; SECONDARY: (import "primary" "load_secondary_module_status" (global $gimport$1 (mut i32)))
;; SECONDARY: (elem $0 (i32.const 0) $foo)
;; SECONDARY: (func $foo (param $0 i32) (result i32)
;; SECONDARY-NEXT: (i32.const 0)
;; SECONDARY-NEXT: )
(func $foo (param i32) (result i32)
(i32.const 0)
)
)
;; PRIMARY: (export "load_secondary_module_status" (global $global$1))
;; PRIMARY: (export "%table" (table $0))
;; PRIMARY: (export "%global" (global $suspender))
;; PRIMARY: (func $export$foo (param $susp externref) (param $0 i32) (result i32)
;; PRIMARY-NEXT: (global.set $suspender
;; PRIMARY-NEXT: (local.get $susp)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: (if
;; PRIMARY-NEXT: (i32.eqz
;; PRIMARY-NEXT: (global.get $global$1)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: (call $__load_secondary_module)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: (call_indirect (type $i32_=>_i32)
;; PRIMARY-NEXT: (local.get $0)
;; PRIMARY-NEXT: (i32.const 0)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: )
;; PRIMARY: (func $__load_secondary_module
;; PRIMARY-NEXT: (local $0 externref)
;; PRIMARY-NEXT: (local.set $0
;; PRIMARY-NEXT: (global.get $suspender)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: (call $import$__load_secondary_module
;; PRIMARY-NEXT: (global.get $suspender)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: (global.set $suspender
;; PRIMARY-NEXT: (local.get $0)
;; PRIMARY-NEXT: )
;; PRIMARY-NEXT: )
|