summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-08-17 16:18:06 -0700
committerGitHub <noreply@github.com>2020-08-17 16:18:06 -0700
commit8139c9d99d4639a2173e51828a6e7bbae397fc2c (patch)
tree23a903c6039a0e776a99d9d69f4419aa33e3b88c /test
parent825c6a8f218666e3c0dc190e4ef2c474ce34734c (diff)
downloadbinaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.tar.gz
binaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.tar.bz2
binaryen-8139c9d99d4639a2173e51828a6e7bbae397fc2c.zip
Add a C source for for test/lld/em_asm_O0 (#3045)
That had just a wat file, with no C. This adds a C file as best I can guess - looks pretty close - and updates all the lld tests with scripts/test/generate_lld_tests.py and ./auto_update_tests.py lld As the diff shows, the handwritten wat was very different than what emcc+lld emit now. I think we must have switches EM_ASMs to be variadic at some point? That is what they currently are, and would explain the diff. See the discussion that led to this in #3044
Diffstat (limited to 'test')
-rw-r--r--test/lld/em_asm.wat2
-rw-r--r--test/lld/em_asm_O0.c8
-rw-r--r--test/lld/em_asm_O0.wat108
-rw-r--r--test/lld/em_asm_O0.wat.out102
-rw-r--r--test/lld/em_asm_shared.wat2
-rw-r--r--test/lld/hello_world.wat2
-rw-r--r--test/lld/init.wat2
-rw-r--r--test/lld/longjmp.wat2
-rw-r--r--test/lld/recursive.wat2
-rw-r--r--test/lld/reserved_func_ptr.wat2
-rw-r--r--test/lld/shared.wat2
-rw-r--r--test/lld/shared_longjmp.wat2
12 files changed, 168 insertions, 68 deletions
diff --git a/test/lld/em_asm.wat b/test/lld/em_asm.wat
index f91f7321e..f09c25b06 100644
--- a/test/lld/em_asm.wat
+++ b/test/lld/em_asm.wat
@@ -65,6 +65,6 @@
(func $main (param $0 i32) (param $1 i32) (result i32)
(call $__original_main)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/em_asm_O0.c b/test/lld/em_asm_O0.c
new file mode 100644
index 000000000..b00c75be2
--- /dev/null
+++ b/test/lld/em_asm_O0.c
@@ -0,0 +1,8 @@
+#include <emscripten.h>
+
+int main(int argc, char **argv) {
+ EM_ASM({ Module.print("Hello world"); });
+ int ret = EM_ASM_INT({ return $0 + $1; }, 20, 30);
+ EM_ASM({ Module.print("Got " + $0); }, 42);
+ return ret;
+}
diff --git a/test/lld/em_asm_O0.wat b/test/lld/em_asm_O0.wat
index 10511ca67..4b509ffaf 100644
--- a/test/lld/em_asm_O0.wat
+++ b/test/lld/em_asm_O0.wat
@@ -1,47 +1,95 @@
(module
- (type $0 (func (param i32) (result i32)))
- (type $1 (func (param i32 i32 i32) (result i32)))
- (type $2 (func (param i32 i32) (result i32)))
- (type $3 (func (result i32)))
- (type $4 (func))
- (import "env" "_Z24emscripten_asm_const_intIJEEiPKcDpT_" (func $_Z24emscripten_asm_const_intIJEEiPKcDpT_ (param i32) (result i32)))
- (import "env" "_Z24emscripten_asm_const_intIJiiEEiPKcDpT_" (func $_Z24emscripten_asm_const_intIJiiEEiPKcDpT_ (param i32 i32 i32) (result i32)))
- (import "env" "_Z24emscripten_asm_const_intIJiEEiPKcDpT_" (func $_Z24emscripten_asm_const_intIJiEEiPKcDpT_ (param i32 i32) (result i32)))
- (global $global$0 (mut i32) (i32.const 66192))
- (global $global$1 i32 (i32.const 66192))
- (global $global$2 i32 (i32.const 652))
- (table 1 1 funcref)
+ (type $none_=>_none (func))
+ (type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
+ (type $i32_i32_i32_=>_i32 (func (param i32 i32 i32) (result i32)))
+ (import "env" "emscripten_asm_const_int" (func $emscripten_asm_const_int (param i32 i32 i32) (result i32)))
(memory $0 2)
(data (i32.const 568) "{ Module.print(\"Hello world\"); }\00{ return $0 + $1; }\00{ Module.print(\"Got \" + $0); }\00")
+ (table $0 1 1 funcref)
+ (global $global$0 (mut i32) (i32.const 66192))
+ (global $global$1 i32 (i32.const 652))
(export "memory" (memory $0))
(export "__wasm_call_ctors" (func $__wasm_call_ctors))
(export "main" (func $main))
- (export "__heap_base" (global $global$1))
- (export "__data_end" (global $global$2))
- (func $main (; 3 ;) (type $3) (result i32)
- (local $t1 i32)
- (local $t2 i32)
+ (export "__data_end" (global $global$1))
+ (func $__wasm_call_ctors
+ )
+ (func $main (param $0 i32) (param $1 i32) (result i32)
+ (local $2 i32)
+ (local $3 i32)
+ (global.set $global$0
+ (local.tee $2
+ (i32.sub
+ (global.get $global$0)
+ (i32.const 32)
+ )
+ )
+ )
+ (i32.store8 offset=31
+ (local.get $2)
+ (i32.const 0)
+ )
(drop
- (call $_Z24emscripten_asm_const_intIJEEiPKcDpT_
+ (call $emscripten_asm_const_int
(i32.const 568)
+ (i32.add
+ (local.get $2)
+ (i32.const 31)
+ )
+ (i32.const 0)
+ )
+ )
+ (i32.store8 offset=30
+ (local.get $2)
+ (i32.const 0)
+ )
+ (i32.store16 offset=28 align=1
+ (local.get $2)
+ (i32.const 26985)
+ )
+ (i64.store offset=16
+ (local.get $2)
+ (i64.const 128849018900)
+ )
+ (local.set $3
+ (call $emscripten_asm_const_int
+ (i32.const 601)
+ (i32.add
+ (local.get $2)
+ (i32.const 28)
+ )
+ (i32.add
+ (local.get $2)
+ (i32.const 16)
+ )
)
)
- (local.set $t1 (i32.const 621))
- (local.set $t2 (i32.const 601))
+ (i32.store16 offset=26 align=1
+ (local.get $2)
+ (i32.const 105)
+ )
+ (i32.store
+ (local.get $2)
+ (i32.const 42)
+ )
(drop
- (call $_Z24emscripten_asm_const_intIJiEEiPKcDpT_
- (local.get $t1)
- (call $_Z24emscripten_asm_const_intIJiiEEiPKcDpT_
- (local.get $t2)
- (i32.const 13)
- (i32.const 27)
+ (call $emscripten_asm_const_int
+ (i32.const 621)
+ (i32.add
+ (local.get $2)
+ (i32.const 26)
)
+ (local.get $2)
)
)
- (i32.const 0)
- )
- (func $__wasm_call_ctors (; 4 ;) (type $4)
+ (global.set $global$0
+ (i32.add
+ (local.get $2)
+ (i32.const 32)
+ )
+ )
+ (local.get $3)
)
- ;; custom section "linking", size 3
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/em_asm_O0.wat.out b/test/lld/em_asm_O0.wat.out
index f68965876..447a06e61 100644
--- a/test/lld/em_asm_O0.wat.out
+++ b/test/lld/em_asm_O0.wat.out
@@ -1,52 +1,97 @@
(module
- (type $i32_=>_i32 (func (param i32) (result i32)))
(type $none_=>_none (func))
- (type $none_=>_i32 (func (result i32)))
+ (type $i32_=>_i32 (func (param i32) (result i32)))
(type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
(type $i32_i32_i32_=>_i32 (func (param i32 i32 i32) (result i32)))
- (import "env" "emscripten_asm_const_i" (func $emscripten_asm_const_i (param i32) (result i32)))
(import "env" "emscripten_asm_const_iii" (func $emscripten_asm_const_iii (param i32 i32 i32) (result i32)))
- (import "env" "emscripten_asm_const_ii" (func $emscripten_asm_const_ii (param i32 i32) (result i32)))
(memory $0 2)
(data (i32.const 568) "{ Module.print(\"Hello world\"); }\00{ return $0 + $1; }\00{ Module.print(\"Got \" + $0); }\00")
(table $0 1 1 funcref)
(global $global$0 (mut i32) (i32.const 66192))
- (global $global$1 i32 (i32.const 66192))
- (global $global$2 i32 (i32.const 652))
+ (global $global$1 i32 (i32.const 652))
(export "memory" (memory $0))
(export "__wasm_call_ctors" (func $__wasm_call_ctors))
(export "main" (func $main))
- (export "__heap_base" (global $global$1))
- (export "__data_end" (global $global$2))
+ (export "__data_end" (global $global$1))
(export "__growWasmMemory" (func $__growWasmMemory))
- (func $main (result i32)
- (local $t1 i32)
- (local $t2 i32)
+ (func $__wasm_call_ctors
+ (nop)
+ )
+ (func $main (param $0 i32) (param $1 i32) (result i32)
+ (local $2 i32)
+ (local $3 i32)
+ (global.set $global$0
+ (local.tee $2
+ (i32.sub
+ (global.get $global$0)
+ (i32.const 32)
+ )
+ )
+ )
+ (i32.store8 offset=31
+ (local.get $2)
+ (i32.const 0)
+ )
(drop
- (call $emscripten_asm_const_i
+ (call $emscripten_asm_const_iii
(i32.const 568)
+ (i32.add
+ (local.get $2)
+ (i32.const 31)
+ )
+ (i32.const 0)
+ )
+ )
+ (i32.store8 offset=30
+ (local.get $2)
+ (i32.const 0)
+ )
+ (i32.store16 offset=28 align=1
+ (local.get $2)
+ (i32.const 26985)
+ )
+ (i64.store offset=16
+ (local.get $2)
+ (i64.const 128849018900)
+ )
+ (local.set $3
+ (call $emscripten_asm_const_iii
+ (i32.const 601)
+ (i32.add
+ (local.get $2)
+ (i32.const 28)
+ )
+ (i32.add
+ (local.get $2)
+ (i32.const 16)
+ )
)
)
- (local.set $t1
- (i32.const 621)
+ (i32.store16 offset=26 align=1
+ (local.get $2)
+ (i32.const 105)
)
- (local.set $t2
- (i32.const 601)
+ (i32.store
+ (local.get $2)
+ (i32.const 42)
)
(drop
- (call $emscripten_asm_const_ii
- (local.get $t1)
- (call $emscripten_asm_const_iii
- (local.get $t2)
- (i32.const 13)
- (i32.const 27)
+ (call $emscripten_asm_const_iii
+ (i32.const 621)
+ (i32.add
+ (local.get $2)
+ (i32.const 26)
)
+ (local.get $2)
)
)
- (i32.const 0)
- )
- (func $__wasm_call_ctors
- (nop)
+ (global.set $global$0
+ (i32.add
+ (local.get $2)
+ (i32.const 32)
+ )
+ )
+ (local.get $3)
)
(func $__growWasmMemory (param $newSize i32) (result i32)
(memory.grow
@@ -58,9 +103,9 @@
--BEGIN METADATA --
{
"asmConsts": {
- "568": ["{ Module.print(\"Hello world\"); }", ["i"], [""]],
+ "568": ["{ Module.print(\"Hello world\"); }", ["iii"], [""]],
"601": ["{ return $0 + $1; }", ["iii"], [""]],
- "621": ["{ Module.print(\"Got \" + $0); }", ["ii"], [""]]
+ "621": ["{ Module.print(\"Got \" + $0); }", ["iii"], [""]]
},
"staticBump": 84,
"tableSize": 1,
@@ -77,7 +122,6 @@
"__growWasmMemory"
],
"namedGlobals": {
- "__heap_base" : "66192",
"__data_end" : "652"
},
"invokeFuncs": [
diff --git a/test/lld/em_asm_shared.wat b/test/lld/em_asm_shared.wat
index 7d3ad8651..586118cb4 100644
--- a/test/lld/em_asm_shared.wat
+++ b/test/lld/em_asm_shared.wat
@@ -94,6 +94,6 @@
;; memoryalignment: 0
;; tablesize: 0
;; tablealignment: 0
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/hello_world.wat b/test/lld/hello_world.wat
index aa7f086ba..153c3ac12 100644
--- a/test/lld/hello_world.wat
+++ b/test/lld/hello_world.wat
@@ -26,6 +26,6 @@
(func $main (param $0 i32) (param $1 i32) (result i32)
(call $__original_main)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/init.wat b/test/lld/init.wat
index 89af36bd4..e4114108f 100644
--- a/test/lld/init.wat
+++ b/test/lld/init.wat
@@ -39,6 +39,6 @@
(func $main (param $0 i32) (param $1 i32) (result i32)
(call $__original_main)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/longjmp.wat b/test/lld/longjmp.wat
index 1e26f0dd5..ec9709165 100644
--- a/test/lld/longjmp.wat
+++ b/test/lld/longjmp.wat
@@ -131,6 +131,6 @@
(func $2 (param $0 i32) (param $1 i32) (result i32)
(call $1)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/recursive.wat b/test/lld/recursive.wat
index 767f3d82a..00138cceb 100644
--- a/test/lld/recursive.wat
+++ b/test/lld/recursive.wat
@@ -83,6 +83,6 @@
(func $main (param $0 i32) (param $1 i32) (result i32)
(call $__original_main)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/reserved_func_ptr.wat b/test/lld/reserved_func_ptr.wat
index b3cac4043..4b118a8d7 100644
--- a/test/lld/reserved_func_ptr.wat
+++ b/test/lld/reserved_func_ptr.wat
@@ -106,6 +106,6 @@
)
(i32.const 0)
)
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/shared.wat b/test/lld/shared.wat
index 1e4ced811..630b27516 100644
--- a/test/lld/shared.wat
+++ b/test/lld/shared.wat
@@ -54,6 +54,6 @@
;; memoryalignment: 2
;; tablesize: 0
;; tablealignment: 0
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)
diff --git a/test/lld/shared_longjmp.wat b/test/lld/shared_longjmp.wat
index d80e51623..753d628d9 100644
--- a/test/lld/shared_longjmp.wat
+++ b/test/lld/shared_longjmp.wat
@@ -143,6 +143,6 @@
;; memoryalignment: 2
;; tablesize: 0
;; tablealignment: 0
- ;; custom section "producers", size 112
+ ;; custom section "producers", size 157
)