blob: bf65e587ccdf0c33d56563a9782d64895112a66e (
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
|
load(libdir + "wasm.js");
for (let type of ['i32', 'f32', 'f64']) {
assertEq(wasmEvalText(`
(module
(func $test (result ${type}) (param $p ${type}) (param $p2 ${type})
get_local $p
get_local $p2
(block)
drop
)
(export "test" $test)
)
`).exports.test(0x1337abc0, 0xffffffff), 0x1337abc0);
}
assertEq(wasmEvalText(`
(module
(func $test (result i32) (param $p i32) (param $p2 f32) (param $p3 f64) (param $p4 i32)
get_local $p
get_local $p2
get_local $p3
get_local $p4
(block)
drop
(block)
(block)
drop
drop
)
(export "test" $test)
)
`).exports.test(0x1337abc0, 0xffffffff), 0x1337abc0);
setJitCompilerOption('wasm.test-mode', 1);
assertEqI64(wasmEvalText(`
(module
(func $test (result i64) (param $p i64) (param $p2 i64)
get_local $p
get_local $p2
(block)
drop
)
(export "test" $test)
)
`).exports.test(createI64(0x1337abc0), createI64(0xffffffff | 0)), createI64(0x1337abc0));
|