Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WebAssembly/binaryen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: WebAssembly/binaryen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: make-shared
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 11 files changed
  • 1 contributor

Commits on Jul 29, 2026

  1. Add a MakeSharedObjects pass

    This pass makes all functions unshared and all structs and arrays shared. It avoids validation errors from storing unshared function references in shared structs and arrays by replacing all function references with i31 references holding indices into a function table. Indirect calls and casts are updated to extract their function reference from the table.
    
    This new pass will make it easier to convert unshared Wasm GC programs to run on the shared heap for testing purposes. It will also lower shared functions emitted by toolchains to allow them to run on prototypes that do not support shared functions.
    tlively committed Jul 29, 2026
    Configuration menu
    Copy the full SHA
    e4377a6 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2026

  1. top level comment

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    9cf91e8 View commit details
    Browse the repository at this point in the history
  2. wasm-type.h improvements

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    a62890a View commit details
    Browse the repository at this point in the history
  3. determinism fix

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    1276a09 View commit details
    Browse the repository at this point in the history
  4. update tests

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    540f162 View commit details
    Browse the repository at this point in the history
  5. try fixing determinism again

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    9785244 View commit details
    Browse the repository at this point in the history
  6. comment on exactness

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    87bc57f View commit details
    Browse the repository at this point in the history
  7. test comments

    tlively committed Jul 30, 2026
    Configuration menu
    Copy the full SHA
    6967075 View commit details
    Browse the repository at this point in the history
Loading