diff options
author | Thomas Lively <tlively@google.com> | 2024-09-16 14:12:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 14:12:42 -0700 |
commit | 106f84b4f2dc373b540ace29139f850576f22b8a (patch) | |
tree | bef25740c15e35f561da89fedc751eddb1648bcb /test/lit/help/wasm-split.test | |
parent | 2a4096512d514b2319ff1c9360f0fbc9ecc94e5d (diff) | |
download | binaryen-106f84b4f2dc373b540ace29139f850576f22b8a.tar.gz binaryen-106f84b4f2dc373b540ace29139f850576f22b8a.tar.bz2 binaryen-106f84b4f2dc373b540ace29139f850576f22b8a.zip |
[wasm-split] Add an option to skip importing placeholders (#6942)
Wasm-split generally assumes that calls to secondary functions made
before the secondary module has been loaded and instantiated should go
to imported placeholder functions that can be responsible for loading
the secondary module and forwarding the call to the loaded function.
That scheme makes the loading entirely transparent from the
application's point of view, which is not always a good thing. Other
schemes would make it impossible for a secondary function to be called
before the secondary module has been explicitly loaded, in which case
the placeholder functions would never be called. To improve code size
and simplify instantiation under these schemes, add a new
`--no-placeholders` option that skips adding imported placeholder
functions.
Diffstat (limited to 'test/lit/help/wasm-split.test')
-rw-r--r-- | test/lit/help/wasm-split.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lit/help/wasm-split.test b/test/lit/help/wasm-split.test index dc521a82f..4fa534e43 100644 --- a/test/lit/help/wasm-split.test +++ b/test/lit/help/wasm-split.test @@ -52,6 +52,11 @@ ;; CHECK-NEXT: --symbolmap [split] Write a symbol map file for each ;; CHECK-NEXT: of the output modules. ;; CHECK-NEXT: +;; CHECK-NEXT: --no-placeholders [split] Do not import placeholder +;; CHECK-NEXT: functions. Calls to secondary functions +;; CHECK-NEXT: will fail before the secondary module has +;; CHECK-NEXT: been instantiated. +;; CHECK-NEXT: ;; CHECK-NEXT: --placeholdermap [split] Write a file mapping placeholder ;; CHECK-NEXT: indices to the function names. ;; CHECK-NEXT: |