module: cache compiled WebAssembly modules in the compile cache - #66191
Open
guybedford wants to merge 2 commits into
Open
guybedford wants to merge 2 commits into
guybedford wants to merge 2 commits into
Conversation
Original commit messages:
[wasm] Add WasmModuleObject::Compile overload with compile-time imports
Expose a public API to compile a Wasm module with compile-time imports
with a flag type for the builtins and a specifier name for imported
string constants.
The existing single-argument WasmModuleObject::Compile is refactored to
delegate to a shared helper, and a new overload accepts a CompileTimeImports
struct mirroring the `{ builtins, importedStringConstants }` constructor
options.
Bug: v8:14179
Change-Id: I9877e8ea4d620152e98954c948ff9dc5eeb6577c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/7970437
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/main@{#108394}
[wasm] Generalize WasmModuleObject::Compile options with source URL
Replaces the recently-added WasmModuleObject::CompileTimeImports struct
with a CompileOptions struct carrying the compile-time import options
plus a new source_url option, threading through to the existing
source_url handling of SyncCompile for the script URL. This allows
embedders compiling modules synchronously from bytes to attach a
meaningful URL, as already possible for streaming compilation via
WasmStreaming::SetUrl, for use in stack traces and developer tooling.
Refactoring now to a single options struct mirrors the JS
`WebAssembly.Module(bytes, compileOptions)` API, while enabling
future compatibility.
Change-Id: I4052f4a97e072467c00082df388e2eb4cb504cf6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/8127096
Commit-Queue: Dan Carney <dcarney@chromium.org>
Reviewed-by: Dan Carney <dcarney@chromium.org>
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/main@{#109045}
The two commits are squashed since the second replaces the struct
introduced by the first. Adapted to MemorySpan (pre-std::span API) and
includes the optional source_url parameter of WasmEngine::SyncCompile
from c0f790f1379 that the second commit depends on.
Refs: v8/v8@5f8109f
Refs: v8/v8@7bd6db9
Collaborator
|
Review requested:
|
Extends the module compile cache to WebAssembly modules loaded through the ES module integration. A new kWasm entry type is keyed on the module URL with the wire bytes as the hashed source, and stores the serialized CompiledWasmModule. On load, cached code is deserialized through v8::WasmModuleCompilation with the same compile options the translator uses (js-string builtins and imported string constants), falling back to compilation when V8 rejects it. As for JavaScript, the cache entry is generated right after compilation. V8 only serializes optimized tier code, so with the default lazy baseline compilation there is nothing to cache and no entry is written; a complete cache requires --no-liftoff --no-wasm-lazy-compilation, which is documented as the way to use the compile cache for WebAssembly.
guybedford
force-pushed
the
wasm-compile-cache
branch
from
September 22, 2026 01:19
8f2675e to
f0680e2
Compare
jasnell
approved these changes
Sep 22, 2026
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #66191 +/- ##
==========================================
- Coverage 90.30% 90.28% -0.02%
==========================================
Files 790 790
Lines 272044 272204 +160
Branches 51934 51966 +32
==========================================
+ Hits 245671 245771 +100
- Misses 16875 16917 +42
- Partials 9498 9516 +18
🚀 New features to boost your workflow:
|
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This extends the module compile cache (
module.enableCompileCache()/NODE_COMPILE_CACHE) to WebAssembly modules loaded through the ES module integration.kWasmcache entry type, keyed on the module URL with the wire bytes as the hashed source, stores V8'sCompiledWasmModuleserialization.v8::WasmModuleCompilationwith the same compile options the wasm translator uses (js-stringbuiltins and imported string constants), falling back tonew WebAssembly.Module()when V8 rejects it.CompileCacheHandler::GetOrInsertgains a raw-bytes overload used by the new entry type; the string overload delegates to it.As for JavaScript, the entry is captured right after compilation. V8 only serializes optimized-tier code, so with the default lazy baseline compilation there is nothing to cache and no entry is written. A complete cache requires
--no-liftoff --no-wasm-lazy-compilation, which compiles everything with the optimizing tier at module creation; since V8 flags are part of the cache key, all processes sharing the cache must use the same flags. This is documented in a new section ofmodule.md.The test covers both the eager-compilation case (entry written, then deserialized and accepted on the second run) and the default case (nothing serialized, no entry written).