|
2 | 2 |
|
3 | 3 | ## 0.38.0
|
4 | 4 |
|
5 |
| -Unreleased. |
| 5 | +Released 2022-06-21. |
6 | 6 |
|
7 | 7 | ### Added
|
8 | 8 |
|
| 9 | +* Enabling or disabling NaN canonicalization in generated code is now exposed |
| 10 | + through the C API. |
| 11 | + [#4154](https://github.com/bytecodealliance/wasmtime/pull/4154) |
| 12 | + |
| 13 | +* A user-defined callback can now be invoked when an epoch interruption happens |
| 14 | + via the `Store::epoch_deadline_callback` API. |
| 15 | + [#4152](https://github.com/bytecodealliance/wasmtime/pull/4152) |
| 16 | + |
| 17 | +* Basic alias analysis with redundant-load elimintation and store-to-load |
| 18 | + forwarding optimizations has been added to Cranelift. |
| 19 | + [#4163](https://github.com/bytecodealliance/wasmtime/pull/4163) |
| 20 | + |
9 | 21 | ### Changed
|
10 | 22 |
|
| 23 | +* Traps originating from epoch-based interruption are now exposed as |
| 24 | + `TrapCode::Interrupt`. |
| 25 | + [#4105](https://github.com/bytecodealliance/wasmtime/pull/4105) |
| 26 | + |
| 27 | +* Binary builds for AArch64 now require glibc 2.17 and for s390x require glibc |
| 28 | + 2.16. Previously glibc 2.28 was required. |
| 29 | + [#4171](https://github.com/bytecodealliance/wasmtime/pull/4171) |
| 30 | + |
| 31 | +* The `wasmtime::ValRaw` now has all of its fields listed as private and instead |
| 32 | + constructors/accessors are provided for getting at the internal data. |
| 33 | + [#4186](https://github.com/bytecodealliance/wasmtime/pull/4186) |
| 34 | + |
| 35 | +* The `wasm-backtrace` Cargo feature has been removed in favor of a |
| 36 | + `Config::wasm_backtrace` runtime configuration option. Additionally backtraces |
| 37 | + are now only captured when an embedder-generated trap actually reaches a |
| 38 | + WebAssembly call stack. |
| 39 | + [#4183](https://github.com/bytecodealliance/wasmtime/pull/4183) |
| 40 | + |
| 41 | +* Usage of `*_unchecked` APIs for `Func` in the `wasmtime` crate and C API now |
| 42 | + take a `usize` parameter indicating the number of `ValRaw` values behind |
| 43 | + the associated pointer. |
| 44 | + [#4192](https://github.com/bytecodealliance/wasmtime/pull/4192) |
| 45 | + |
| 46 | +### Fixed |
| 47 | + |
| 48 | +* An improvement was made to the spill-slot allocation in code generation to fix |
| 49 | + an issue where some stack slots accidentally weren't reused. This issue was |
| 50 | + introduced with the landing of regalloc2 in 0.37.0 and may have resulted in |
| 51 | + larger-than-intended increases in stack frame sizes. |
| 52 | + [#4222](https://github.com/bytecodealliance/wasmtime/pull/4222) |
| 53 | + |
11 | 54 | --------------------------------------------------------------------------------
|
12 | 55 |
|
13 | 56 | ## 0.37.0
|
|
0 commit comments