Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions crates/typed-wasm-verify/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
<!-- Copyright (c) 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> -->
# typed-wasm-verify

Post-codegen verifier for typed-wasm **L7 (aliasing safety)** and **L10 (linearity)** constraints on emitted wasm modules.
Expand Down Expand Up @@ -38,7 +39,9 @@ The OCaml files remain the spec of record until behavioural parity is establishe
## Status

- [x] C1 — Scaffold (types, error enums, public entry stubs)
- [ ] C2 — Custom-section parser
- [ ] C3 — Per-path use-range analysis (L7+L10 intra-function)
- [ ] C4 — Cross-module boundary verifier
- [ ] C5 — Cross-compat test against affinescript-emitted wasm
- [x] C2 — Custom-section parser (`src/section.rs`)
- [x] C3 — Per-path use-range analysis (L7+L10 intra-function, `src/verify.rs`; includes L13 negative-form module isolation)
- [x] C4 — Cross-module boundary verifier (`src/cross.rs`)
- [x] C5 — Cross-compat test against affinescript-emitted wasm (`tests/cross_compat.rs` synthetic parity table + `tests/cross_compat_real.rs` real fixtures under `tests/fixtures/c5_real/`)

Still open: L13 positive-form region-imports agreement (typed-wasm#140, proposal 0003) and carrier-backed L2–L6/L15 passes graduating from the `unstable-l2`/`unstable-l15` features.
Loading