diff options
author | Jérôme Vouillon <jerome.vouillon@gmail.com> | 2024-03-06 13:20:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 10:20:38 -0800 |
commit | f44912bf234d5e19a1adb34c770335f4b3190e2a (patch) | |
tree | 449996245f77e0996b76f0356fcf2d176e5a7af3 /test/lit/metadce | |
parent | 71bf4b3fa2716d5c54e04f7e76c2463b1adddeae (diff) | |
download | binaryen-f44912bf234d5e19a1adb34c770335f4b3190e2a.tar.gz binaryen-f44912bf234d5e19a1adb34c770335f4b3190e2a.tar.bz2 binaryen-f44912bf234d5e19a1adb34c770335f4b3190e2a.zip |
Add sourcemap support to wasm-metadce and wasm-merge (#6372)
Diffstat (limited to 'test/lit/metadce')
-rw-r--r-- | test/lit/metadce/sourcemap.wat | 26 | ||||
-rw-r--r-- | test/lit/metadce/sourcemap.wat.json | 13 |
2 files changed, 39 insertions, 0 deletions
diff --git a/test/lit/metadce/sourcemap.wat b/test/lit/metadce/sourcemap.wat new file mode 100644 index 000000000..bf695fd21 --- /dev/null +++ b/test/lit/metadce/sourcemap.wat @@ -0,0 +1,26 @@ +;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited. +;; RUN: wasm-metadce %s --graph-file %s.json -S -o - | filecheck %s +;; RUN: wasm-as %s -o %t.wasm --source-map %t.map +;; RUN: wasm-metadce %t.wasm --input-source-map %t.map --graph-file %s.json -o %t.out.wasm --output-source-map %t.out.map +;; RUN: wasm-dis %t.out.wasm --source-map %t.out.map -o - | filecheck %s + +;; Test that sourcemap information is preserved + +(module + ;;@ a:1:1 + (func (export "f") + ;;@ a:2:1 + (nop) + ;;@ a:3:1 + ) +) +;; CHECK: (type $0 (func)) + +;; CHECK: (export "f" (func $0)) + +;; CHECK: ;;@ a:1:1 +;; CHECK-NEXT: (func $0 +;; CHECK-NEXT: ;;@ a:2:1 +;; CHECK-NEXT: (nop) +;; CHECK-NEXT: ;;@ a:3:1 +;; CHECK-NEXT: ) diff --git a/test/lit/metadce/sourcemap.wat.json b/test/lit/metadce/sourcemap.wat.json new file mode 100644 index 000000000..4b2028140 --- /dev/null +++ b/test/lit/metadce/sourcemap.wat.json @@ -0,0 +1,13 @@ +[ + { + "name": "root", + "reaches": [ + "f" + ], + "root": true + }, + { + "name": "f", + "export": "f" + } +] |