You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update StarlingMonkey submodule
* Sync package-lock.json
* Revert weval removal commit
* Update wasi to 0.2.10
* Update tests
* fix: do not relativize paths for weval
* fix: account for global offset in import calculations
* fix: apply clippy fixes
* fix: format code
* fix: bring back retry in CI
* chore: bump to StarlingMonkey to v0.3.0 tag
* feat: expose more programatic API via CLI
Copy file name to clipboardExpand all lines: README.md
+44-2Lines changed: 44 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,21 @@ Establishing this initial prototype as a singular flexible engine foundation tha
51
51
52
52
### Weval AOT Compilation
53
53
54
-
Note: unfortunately Weval AOT Compilation is disabled for the time being, due to incompatibilities with newer versions of the LLVM toolchain used to compile StarlingMonkey. See [this](https://bytecodealliance.zulipchat.com/#narrow/channel/459697-StarlingMonkey/topic/Updating.20Gecko.20version/near/527089464) and the following messages for details.
54
+
[Weval][weval] ahead-of-time (AOT) compilation can be enabled to improve runtime performance by pre-compiling JavaScript inline caches.
55
+
56
+
To enable AOT compilation, set the `enableAot: true` option or use the `--aot` CLI flag.
57
+
58
+
AOT compilation can also be configured with the following options:
|`aotMinStackSizeBytes`| `number | Number | bigint | BigInt` |`2_007_846_092`| The minimum stack size (via `RUST_MIN_STACK`) to set when running `weval`|
0 commit comments