Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show wasm proposals status during compilation and execution #3989

Merged
merged 4 commits into from
Feb 5, 2025

Conversation

lum1n0us
Copy link
Collaborator

During compilation:

$ cmake -S . -B build --fresh
-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Build Configurations:
     Build as target X86_64
     CMAKE_BUILD_TYPE Release
     WAMR Interpreter enabled
     Fast interpreter enabled
     WAMR AOT enabled
     WAMR Fast JIT disabled
     WAMR LLVM ORC JIT disabled
     Libc builtin enabled
     Libc WASI enabled
     Multiple modules disabled
     Wakeup of blocking operations enabled
     GC performance profiling disabled
     Module instance context enabled
     Write linear memory base addr to x86 GS register enabled
     Quick AOT/JIT entries enabled
     AOT intrinsics enabled
------------------------------------------------------------
Phase4 Wasm Proposals:
  Always-on:
    Extended Constant Expressions
    Multi-value
    Non-trapping float-to-int conversions
    Sign-extension operators
    WebAssembly C and C++ API
  Configurable(0 is OFF. 1 is ON):
    Bulk Memory Operation: 1
    Fixed-width SIMD: 1
    Garbage collection: 0
    Legacy Exception handling: 0
    Memory64: 0
    Multiple memories: 0
    Reference Types: 1
    Reference-Typed Strings: 0
    Tail call: 0
    Thread: 0
    Typed Function References: 0
  Unsupported:
    Branch Hinting
    Custom Annotation Syntax in the Text Format
    Exception handling
    Import/Export of Mutable Globals
    JS String Builtins
    Relaxed SIMD
------------------------------------------------------------

-- The ASM compiler identification is GNU
-- Found assembler: /usr/bin/cc
-- Looking for mremap
-- Looking for mremap - found
-- Configuring done (0.5s)
-- Generating done (0.0s)
-- Build files have been written to: /workspaces/wasm-micro-runtime/product-mini/platforms/linux/build

During execution:

$ ./build/iwasm --version
iwasm 2.2.0
Phase4 Wasm Proposals Status:
  Always-on:
    - Extended Constant Expressions
    - Multi-value
    - Non-trapping float-to-int conversions
    - Sign-extension operators
    - WebAssembly C and C++ API
  Configurable:
    - Bulk Memory Operation: 1
    - Fixed-Width SIMD: 1
    - Garbage Collection: 0
    - Legacy Exception Handling: 0
    - Memory64: 0
    - Multiple Memory: 0

@yamt
Copy link
Collaborator

yamt commented Jan 6, 2025

i hope we had canonical names for each proposals and options.
it isn't always obvious to users how to correlate "multi-memory", "Multiple Memory", "Multiple memories", and "WASM_ENABLE_MULTI_MEMORY"/"WAMR_BUILD_MULTI_MEMORY".

my suggestion:

  • use wasm/llvm names as far as possible ("multi-memory")
  • keep build options ("WASM_ENABLE_MULTI_MEMORY"/"WAMR_BUILD_MULTI_MEMORY")
  • remove other names ("Multiple Memory", "Multiple memories")

how do you think?

@lum1n0us
Copy link
Collaborator Author

lum1n0us commented Jan 9, 2025

@yamt Let me provide an example to ensure I completely understand your feedback.

Regarding the garbage collection (GC) proposal, in the Proposals Tracking Sheet, its name is "Garbage Collection," and the corresponding compilation option is WAMR_BUILD_GC. If we change the display name to GC (to align with the compilation option name), it might become difficult to associate it with "Garbage Collection"(in the official proposal name). Therefore, the clear solution would be to rename the compilation option to WAMR_BUILD_GARBAGE_COLLECTION. Is that correct?

It may not be the most precise example since people generally recognize that GC is the abbreviation for Garbage Collection. However, it does illustrate the concept.

@lum1n0us lum1n0us force-pushed the feat/wasm_proposal_details branch from 067f1b9 to 7d8710c Compare January 20, 2025 05:55
@lum1n0us
Copy link
Collaborator Author

Updated output:

$ cmake -S . -B build --fresh

-- The C compiler identification is GNU 11.4.0
-- The CXX compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Build Configurations:
     Build as target X86_64
     CMAKE_BUILD_TYPE Release
     WAMR Interpreter enabled
     Fast interpreter enabled
     WAMR AOT enabled
     WAMR Fast JIT disabled
     WAMR LLVM ORC JIT disabled
     Libc builtin enabled
     Libc WASI enabled
     Multiple modules disabled
     Wakeup of blocking operations enabled
     GC performance profiling disabled
     Module instance context enabled
     Write linear memory base addr to x86 GS register enabled
     Quick AOT/JIT entries enabled
     AOT intrinsics enabled
     Shrunk memory enabled
-- About Wasm Proposals:
     Always-on:
       "Extended Constant Expressions"
       "Multi-value"
       "Non-trapping float-to-int conversions"
       "Sign-extension operators"
       "WebAssembly C and C++ API"
     Configurable. 0 is OFF. 1 is ON:
       "Bulk Memory Operation" via WAMR_BUILD_BULK_MEMORY: 1
       "Fixed-width SIMD" via WAMR_BUILD_SIMD: 1
       "Garbage collection" via WAMR_BUILD_GC: 0
       "Legacy Exception handling" via WAMR_BUILD_EXCE_HANDLING: 0
       "Memory64" via WAMR_BUILD_MEMORY64: 0
       "Multiple memories" via WAMR_BUILD_MULTI_MEMORY: 0
       "Reference Types" via WAMR_BUILD_REF_TYPES: 1
       "Reference-Typed Strings" via WAMR_BUILD_STRINGREF: 0
       "Tail call" via WAMR_BUILD_TAIL_CALL: 0
       "Threads" via WAMR_BUILD_SHARED_MEMORY: 0
       "Typed Function References" via WAMR_BUILD_GC: 0
     Unsupported (>= Phase4):
       "Branch Hinting"
       "Custom Annotation Syntax in the Text Format"
       "Exception handling"
       "Import/Export of Mutable Globals"
       "JS String Builtins"
       "Relaxed SIMD"

-- The ASM compiler identification is GNU
-- Found assembler: /usr/bin/cc
-- Looking for mremap
-- Looking for mremap - found
-- Configuring done (0.5s)
-- Generating done (0.0s)
-- Build files have been written to: /workspaces/wasm-micro-runtime/product-mini/platforms/linux/build

@lum1n0us
Copy link
Collaborator Author

$ ./build/iwasm --version

iwasm 2.2.0

About Wasm Proposals:
  Always-on:
    - Extended Constant Expressions
    - Multi-value
    - Non-trapping float-to-int conversions
    - Sign-extension operators
    - WebAssembly C and C++ API
  Compilation Configurable. 0 is OFF. 1 is ON:
    - Bulk Memory Operation via WASM_ENABLE_BULK_MEMORY: 1
    - Fixed-Width SIMD via WASM_ENABLE_SIMD: 1
    - Garbage Collection via WASM_ENABLE_GC: 0
    - Legacy Exception Handling via WASM_ENABLE_EXCE_HANDLING: 0
    - Memory64 via WASM_ENABLE_MEMORY64: 0
    - Multiple Memory via WASM_ENABLE_MULTI_MEMORY: 0
    - Reference Types via WASM_ENABLE_REF_TYPES: 1
    - Reference-Typed Strings via WASM_ENABLE_REF_TYPES: 1
    - Tail Call via WASM_ENABLE_TAIL_CALL: 0
    - Threads via WASM_ENABLE_SHARED_MEMORY: 0
    - Typed Function References via WASM_ENABLE_GC: 0
  Unsupported (>= Phase4):
    - Branch Hinting
    - Custom Annotation Syntax in the Text Format
    - Exception handling
    - Import/Export of Mutable Globals
    - JS String Builtins
    - Relaxed SIMD

Copy link
Collaborator

@loganek loganek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Collaborator

@TianlongLiang TianlongLiang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@lum1n0us lum1n0us merged commit 41b2c6d into bytecodealliance:main Feb 5, 2025
385 checks passed
@lum1n0us lum1n0us deleted the feat/wasm_proposal_details branch February 5, 2025 07:28
lum1n0us added a commit to lum1n0us/wasm-micro-runtime that referenced this pull request Feb 23, 2025
- fix: when load aot init expr,no type_idx set. (bytecodealliance#4094)
- Cmake improvements (bytecodealliance#4076)
- fix(aot_emit_aot_file): prevent buffer emission for zero byte_count (bytecodealliance#4095)
- fix(unit-test): libc_builtin_test issues (bytecodealliance#4073)
- feat: add support for EXTERNREF value type and enable AOT validator in fuzz tests (bytecodealliance#4083)
- [gc] Subtyping fix (bytecodealliance#4075)
- Add a conditional check for the macro __STDC_VERSION__ (bytecodealliance#4080)
- Unit test:type matching issue and code redundancy (bytecodealliance#4079)
- build(deps): Bump github/codeql-action from 3.28.8 to 3.28.9 (bytecodealliance#4074)
- fix(aot): ensure value_cmp does not exceed br_count in branch table compilation (bytecodealliance#4065)
- In wasm32, fix potential conversion overflow when enlarging 65536 pages (bytecodealliance#4064)
- [fuzzing] execute every exported function (bytecodealliance#3959)
- Update memory allocation functions to use allocator user data (bytecodealliance#4043)
- Show wasm proposals status during compilation and execution (bytecodealliance#3989)
- add a validator for aot module (bytecodealliance#3995)
- Use wasm32-wasip1 instead of wasm32-wasi target for rust code (bytecodealliance#4057)
- Update Rust target from 'wasm32-wasi' to 'wasm32-wasip1' in CI (bytecodealliance#4050)
- Fix wasm loader check data segment count (bytecodealliance#4039)
- Synchronize the GC spec tests to the commit from December 9. 2024. (bytecodealliance#4022)
- Refine getting const offsets in wasm loader of fast-interp (bytecodealliance#4012)
- fixes for compiling on windows (bytecodealliance#4026)
- .github: Add shared lib builds (bytecodealliance#3975)
- Refine read leb int wasm loader of fast interpreter (bytecodealliance#4017)
- build(deps): Bump github/codeql-action from 3.28.0 to 3.28.1 (bytecodealliance#4020)
- build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 (bytecodealliance#4021)
- Enable shrunk memory by default and add related configurations (bytecodealliance#4008)
- Add documentation regarding security issues and the status of Wasm proposals (bytecodealliance#3972)
- Improve stack consistency by ensuring sufficient space for dummy offsets (bytecodealliance#4011)
- Check whether related table has funcref elem in opcode call_indirect (bytecodealliance#3999)
- [fuzzing] Use software bound-check during fuzzing (bytecodealliance#4003)
- Add an example of how to embed WAMR in Zephyr user mode  (bytecodealliance#3998)
- Fix table index calculations in wasm_loader and wasm_mini_loader (bytecodealliance#4004)
- Ensure __heap_base and __data_end global indices are validated against import count (bytecodealliance#3996)
- Error message improvement (bytecodealliance#4000)
- Handle a new scenario where an item is both exported and imported. (bytecodealliance#3984)
- Optimize memory initialization handling in AOT loader (bytecodealliance#3983)
- build(deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 (bytecodealliance#3981)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 (bytecodealliance#3982)
- Add Tianlong into code owners (bytecodealliance#3970)
- Set thread information earlier in exec_env creation (bytecodealliance#3967)
- top-level cmake: link llvm libraries to our shared library (bytecodealliance#3973)
- add reference type support by default for darwin to support WASI-SDK-25 (bytecodealliance#3978)
- CMakeLists.txt: Do not require C++ (bytecodealliance#3956)
- [fuzzing] Enable instantiation (bytecodealliance#3958)
- use a random secret key (bytecodealliance#3971)
- top-level cmakefile: fix macOS build (bytecodealliance#3968)
- Only access Zephyr thread stats info when it's available (bytecodealliance#3962)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 (bytecodealliance#3960)
- wasm_export.h: Use "default" visibility for gcc and clang (bytecodealliance#3957)
- set alignment 4 when loading multi return value (bytecodealliance#3955)
- Fix aot table instantiate (bytecodealliance#3946)
- Consume the placeholders that were put when emitting table info (bytecodealliance#3940)
- Refactor SConscript and add file checks in iwasm.c (bytecodealliance#3945)
- Improvements for platform thread APIs on Windows and Zephyr (bytecodealliance#3941)
- Fix incorrect assignment in win_file.c (bytecodealliance#3939)
- don't return an uninitialized trap if argv_to_results fails (bytecodealliance#3935)
- support WASM_FUNCREF return type in argv_to_results (bytecodealliance#3936)
- add thread cpu time for zephyr (bytecodealliance#3937)
- build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (bytecodealliance#3931)
- Update README.md to clarify Windows toolchain support and ESP-IDF reference (bytecodealliance#3917)
- Enable ref types by default (bytecodealliance#3894)
- Fix loader small bug (bytecodealliance#3928)
- add testcases for shared heap and fix POP_MEM_OFFSET of memory64 (bytecodealliance#3916)
- Use plain assignment rather than bh_memcpy_s (bytecodealliance#3924)
- Fix WASI Path Mapping Processing (bytecodealliance#3923)
- Drop declarative elements on module instantiation (bytecodealliance#3922)
- Check possible integer overflow in aot memory boundary check (bytecodealliance#3920)
- Fix CI wamr-ide error (bytecodealliance#3913)
- Support external toolchain on Windows for aot compiler (bytecodealliance#3911)
- build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (bytecodealliance#3912)
- Correct the table index calculation in aot_instantiation (bytecodealliance#3903)
- Fix a leak in wasm_loader_emit_br_info (bytecodealliance#3900)
- GlobalValueSet was moved to IRPartitionLayer recently, but we have a local definition anyway (bytecodealliance#3899)
- build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (bytecodealliance#3902)
- Fix linked global initialization in multimodule (bytecodealliance#3905)
- Wasm loader enhancement: check code size in code entry  (bytecodealliance#3892)
- Refactor AOT loader to support compatible versions (bytecodealliance#3891)
- Fix out of bounds issue in is_native_addr_in_shared_heap function (bytecodealliance#3886)
- Fix mmap flags for AOT loader on non-Linux SGX platforms (bytecodealliance#3890)
- Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (bytecodealliance#3880)
- Refine looking up aot function with index (bytecodealliance#3882)
- build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (bytecodealliance#3888)
- fix(ios): Remove `float-abi` flag (bytecodealliance#3889)
- Fix out of bounds issues after memory.grow on non-aot non-threads builds (bytecodealliance#3872)
- Exclude fuzz test python and npm packages in scoreboard scan (bytecodealliance#3871)

Author: Chris Woods <[email protected]>
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Author: Dylan Johnston <[email protected]>
Author: edoardo <[email protected]>
Author: eric <[email protected]>
Author: Fadumina Barre <[email protected]>
Author: Huang Qi <[email protected]>
Author: James Ring <[email protected]>
Author: Jérôme Vouillon <[email protected]>
Author: kk <[email protected]>
Author: [email protected] <[email protected]>
Author: liang.he <[email protected]>
Author: Maks Litskevich <[email protected]>
Author: Marcin Kolny <[email protected]>
Author: peter-tatrai <[email protected]>
Author: TianlongLiang <[email protected]>
Author: Tomáš Malý <[email protected]>
Author: Viacheslav Palchikov <[email protected]>
Author: WenLY1 <[email protected]>
Author: Wenyong Huang <[email protected]>
Author: Xavier Del Campo <[email protected]>
Author: YAMAMOTO Takashi <[email protected]>
Author: yangkun27 <[email protected]>
lum1n0us added a commit to lum1n0us/wasm-micro-runtime that referenced this pull request Feb 23, 2025
- fix: when load aot init expr,no type_idx set. (bytecodealliance#4094)
- Cmake improvements (bytecodealliance#4076)
- fix(aot_emit_aot_file): prevent buffer emission for zero byte_count (bytecodealliance#4095)
- fix(unit-test): libc_builtin_test issues (bytecodealliance#4073)
- feat: add support for EXTERNREF value type and enable AOT validator in fuzz tests (bytecodealliance#4083)
- [gc] Subtyping fix (bytecodealliance#4075)
- Add a conditional check for the macro __STDC_VERSION__ (bytecodealliance#4080)
- Unit test:type matching issue and code redundancy (bytecodealliance#4079)
- build(deps): Bump github/codeql-action from 3.28.8 to 3.28.9 (bytecodealliance#4074)
- fix(aot): ensure value_cmp does not exceed br_count in branch table compilation (bytecodealliance#4065)
- In wasm32, fix potential conversion overflow when enlarging 65536 pages (bytecodealliance#4064)
- [fuzzing] execute every exported function (bytecodealliance#3959)
- Update memory allocation functions to use allocator user data (bytecodealliance#4043)
- Show wasm proposals status during compilation and execution (bytecodealliance#3989)
- add a validator for aot module (bytecodealliance#3995)
- Use wasm32-wasip1 instead of wasm32-wasi target for rust code (bytecodealliance#4057)
- Update Rust target from 'wasm32-wasi' to 'wasm32-wasip1' in CI (bytecodealliance#4050)
- Fix wasm loader check data segment count (bytecodealliance#4039)
- Synchronize the GC spec tests to the commit from December 9. 2024. (bytecodealliance#4022)
- Refine getting const offsets in wasm loader of fast-interp (bytecodealliance#4012)
- fixes for compiling on windows (bytecodealliance#4026)
- .github: Add shared lib builds (bytecodealliance#3975)
- Refine read leb int wasm loader of fast interpreter (bytecodealliance#4017)
- build(deps): Bump github/codeql-action from 3.28.0 to 3.28.1 (bytecodealliance#4020)
- build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 (bytecodealliance#4021)
- Enable shrunk memory by default and add related configurations (bytecodealliance#4008)
- Add documentation regarding security issues and the status of Wasm proposals (bytecodealliance#3972)
- Improve stack consistency by ensuring sufficient space for dummy offsets (bytecodealliance#4011)
- Check whether related table has funcref elem in opcode call_indirect (bytecodealliance#3999)
- [fuzzing] Use software bound-check during fuzzing (bytecodealliance#4003)
- Add an example of how to embed WAMR in Zephyr user mode  (bytecodealliance#3998)
- Fix table index calculations in wasm_loader and wasm_mini_loader (bytecodealliance#4004)
- Ensure __heap_base and __data_end global indices are validated against import count (bytecodealliance#3996)
- Error message improvement (bytecodealliance#4000)
- Handle a new scenario where an item is both exported and imported. (bytecodealliance#3984)
- Optimize memory initialization handling in AOT loader (bytecodealliance#3983)
- build(deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 (bytecodealliance#3981)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 (bytecodealliance#3982)
- Add Tianlong into code owners (bytecodealliance#3970)
- Set thread information earlier in exec_env creation (bytecodealliance#3967)
- top-level cmake: link llvm libraries to our shared library (bytecodealliance#3973)
- add reference type support by default for darwin to support WASI-SDK-25 (bytecodealliance#3978)
- CMakeLists.txt: Do not require C++ (bytecodealliance#3956)
- [fuzzing] Enable instantiation (bytecodealliance#3958)
- use a random secret key (bytecodealliance#3971)
- top-level cmakefile: fix macOS build (bytecodealliance#3968)
- Only access Zephyr thread stats info when it's available (bytecodealliance#3962)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 (bytecodealliance#3960)
- wasm_export.h: Use "default" visibility for gcc and clang (bytecodealliance#3957)
- set alignment 4 when loading multi return value (bytecodealliance#3955)
- Fix aot table instantiate (bytecodealliance#3946)
- Consume the placeholders that were put when emitting table info (bytecodealliance#3940)
- Refactor SConscript and add file checks in iwasm.c (bytecodealliance#3945)
- Improvements for platform thread APIs on Windows and Zephyr (bytecodealliance#3941)
- Fix incorrect assignment in win_file.c (bytecodealliance#3939)
- don't return an uninitialized trap if argv_to_results fails (bytecodealliance#3935)
- support WASM_FUNCREF return type in argv_to_results (bytecodealliance#3936)
- add thread cpu time for zephyr (bytecodealliance#3937)
- build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (bytecodealliance#3931)
- Update README.md to clarify Windows toolchain support and ESP-IDF reference (bytecodealliance#3917)
- Enable ref types by default (bytecodealliance#3894)
- Fix loader small bug (bytecodealliance#3928)
- add testcases for shared heap and fix POP_MEM_OFFSET of memory64 (bytecodealliance#3916)
- Use plain assignment rather than bh_memcpy_s (bytecodealliance#3924)
- Fix WASI Path Mapping Processing (bytecodealliance#3923)
- Drop declarative elements on module instantiation (bytecodealliance#3922)
- Check possible integer overflow in aot memory boundary check (bytecodealliance#3920)
- Fix CI wamr-ide error (bytecodealliance#3913)
- Support external toolchain on Windows for aot compiler (bytecodealliance#3911)
- build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (bytecodealliance#3912)
- Correct the table index calculation in aot_instantiation (bytecodealliance#3903)
- Fix a leak in wasm_loader_emit_br_info (bytecodealliance#3900)
- GlobalValueSet was moved to IRPartitionLayer recently, but we have a local definition anyway (bytecodealliance#3899)
- build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (bytecodealliance#3902)
- Fix linked global initialization in multimodule (bytecodealliance#3905)
- Wasm loader enhancement: check code size in code entry  (bytecodealliance#3892)
- Refactor AOT loader to support compatible versions (bytecodealliance#3891)
- Fix out of bounds issue in is_native_addr_in_shared_heap function (bytecodealliance#3886)
- Fix mmap flags for AOT loader on non-Linux SGX platforms (bytecodealliance#3890)
- Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (bytecodealliance#3880)
- Refine looking up aot function with index (bytecodealliance#3882)
- build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (bytecodealliance#3888)
- fix(ios): Remove `float-abi` flag (bytecodealliance#3889)
- Fix out of bounds issues after memory.grow on non-aot non-threads builds (bytecodealliance#3872)
- Exclude fuzz test python and npm packages in scoreboard scan (bytecodealliance#3871)

Author: Chris Woods <[email protected]>
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Author: Dylan Johnston <[email protected]>
Author: edoardo <[email protected]>
Author: eric <[email protected]>
Author: Fadumina Barre <[email protected]>
Author: Huang Qi <[email protected]>
Author: James Ring <[email protected]>
Author: Jérôme Vouillon <[email protected]>
Author: kk <[email protected]>
Author: [email protected] <[email protected]>
Author: liang.he <[email protected]>
Author: Maks Litskevich <[email protected]>
Author: Marcin Kolny <[email protected]>
Author: peter-tatrai <[email protected]>
Author: TianlongLiang <[email protected]>
Author: Tomáš Malý <[email protected]>
Author: Viacheslav Palchikov <[email protected]>
Author: WenLY1 <[email protected]>
Author: Wenyong Huang <[email protected]>
Author: Xavier Del Campo <[email protected]>
Author: YAMAMOTO Takashi <[email protected]>
Author: yangkun27 <[email protected]>
lum1n0us added a commit to lum1n0us/wasm-micro-runtime that referenced this pull request Feb 23, 2025
- fix: when load aot init expr,no type_idx set. (bytecodealliance#4094)
- Cmake improvements (bytecodealliance#4076)
- fix(aot_emit_aot_file): prevent buffer emission for zero byte_count (bytecodealliance#4095)
- fix(unit-test): libc_builtin_test issues (bytecodealliance#4073)
- feat: add support for EXTERNREF value type and enable AOT validator in fuzz tests (bytecodealliance#4083)
- [gc] Subtyping fix (bytecodealliance#4075)
- Add a conditional check for the macro __STDC_VERSION__ (bytecodealliance#4080)
- Unit test:type matching issue and code redundancy (bytecodealliance#4079)
- build(deps): Bump github/codeql-action from 3.28.8 to 3.28.9 (bytecodealliance#4074)
- fix(aot): ensure value_cmp does not exceed br_count in branch table compilation (bytecodealliance#4065)
- In wasm32, fix potential conversion overflow when enlarging 65536 pages (bytecodealliance#4064)
- [fuzzing] execute every exported function (bytecodealliance#3959)
- Update memory allocation functions to use allocator user data (bytecodealliance#4043)
- Show wasm proposals status during compilation and execution (bytecodealliance#3989)
- add a validator for aot module (bytecodealliance#3995)
- Use wasm32-wasip1 instead of wasm32-wasi target for rust code (bytecodealliance#4057)
- Update Rust target from 'wasm32-wasi' to 'wasm32-wasip1' in CI (bytecodealliance#4050)
- Fix wasm loader check data segment count (bytecodealliance#4039)
- Synchronize the GC spec tests to the commit from December 9. 2024. (bytecodealliance#4022)
- Refine getting const offsets in wasm loader of fast-interp (bytecodealliance#4012)
- fixes for compiling on windows (bytecodealliance#4026)
- .github: Add shared lib builds (bytecodealliance#3975)
- Refine read leb int wasm loader of fast interpreter (bytecodealliance#4017)
- build(deps): Bump github/codeql-action from 3.28.0 to 3.28.1 (bytecodealliance#4020)
- build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 (bytecodealliance#4021)
- Enable shrunk memory by default and add related configurations (bytecodealliance#4008)
- Add documentation regarding security issues and the status of Wasm proposals (bytecodealliance#3972)
- Improve stack consistency by ensuring sufficient space for dummy offsets (bytecodealliance#4011)
- Check whether related table has funcref elem in opcode call_indirect (bytecodealliance#3999)
- [fuzzing] Use software bound-check during fuzzing (bytecodealliance#4003)
- Add an example of how to embed WAMR in Zephyr user mode  (bytecodealliance#3998)
- Fix table index calculations in wasm_loader and wasm_mini_loader (bytecodealliance#4004)
- Ensure __heap_base and __data_end global indices are validated against import count (bytecodealliance#3996)
- Error message improvement (bytecodealliance#4000)
- Handle a new scenario where an item is both exported and imported. (bytecodealliance#3984)
- Optimize memory initialization handling in AOT loader (bytecodealliance#3983)
- build(deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 (bytecodealliance#3981)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 (bytecodealliance#3982)
- Add Tianlong into code owners (bytecodealliance#3970)
- Set thread information earlier in exec_env creation (bytecodealliance#3967)
- top-level cmake: link llvm libraries to our shared library (bytecodealliance#3973)
- add reference type support by default for darwin to support WASI-SDK-25 (bytecodealliance#3978)
- CMakeLists.txt: Do not require C++ (bytecodealliance#3956)
- [fuzzing] Enable instantiation (bytecodealliance#3958)
- use a random secret key (bytecodealliance#3971)
- top-level cmakefile: fix macOS build (bytecodealliance#3968)
- Only access Zephyr thread stats info when it's available (bytecodealliance#3962)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 (bytecodealliance#3960)
- wasm_export.h: Use "default" visibility for gcc and clang (bytecodealliance#3957)
- set alignment 4 when loading multi return value (bytecodealliance#3955)
- Fix aot table instantiate (bytecodealliance#3946)
- Consume the placeholders that were put when emitting table info (bytecodealliance#3940)
- Refactor SConscript and add file checks in iwasm.c (bytecodealliance#3945)
- Improvements for platform thread APIs on Windows and Zephyr (bytecodealliance#3941)
- Fix incorrect assignment in win_file.c (bytecodealliance#3939)
- don't return an uninitialized trap if argv_to_results fails (bytecodealliance#3935)
- support WASM_FUNCREF return type in argv_to_results (bytecodealliance#3936)
- add thread cpu time for zephyr (bytecodealliance#3937)
- build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (bytecodealliance#3931)
- Update README.md to clarify Windows toolchain support and ESP-IDF reference (bytecodealliance#3917)
- Enable ref types by default (bytecodealliance#3894)
- Fix loader small bug (bytecodealliance#3928)
- add testcases for shared heap and fix POP_MEM_OFFSET of memory64 (bytecodealliance#3916)
- Use plain assignment rather than bh_memcpy_s (bytecodealliance#3924)
- Fix WASI Path Mapping Processing (bytecodealliance#3923)
- Drop declarative elements on module instantiation (bytecodealliance#3922)
- Check possible integer overflow in aot memory boundary check (bytecodealliance#3920)
- Fix CI wamr-ide error (bytecodealliance#3913)
- Support external toolchain on Windows for aot compiler (bytecodealliance#3911)
- build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (bytecodealliance#3912)
- Correct the table index calculation in aot_instantiation (bytecodealliance#3903)
- Fix a leak in wasm_loader_emit_br_info (bytecodealliance#3900)
- GlobalValueSet was moved to IRPartitionLayer recently, but we have a local definition anyway (bytecodealliance#3899)
- build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (bytecodealliance#3902)
- Fix linked global initialization in multimodule (bytecodealliance#3905)
- Wasm loader enhancement: check code size in code entry  (bytecodealliance#3892)
- Refactor AOT loader to support compatible versions (bytecodealliance#3891)
- Fix out of bounds issue in is_native_addr_in_shared_heap function (bytecodealliance#3886)
- Fix mmap flags for AOT loader on non-Linux SGX platforms (bytecodealliance#3890)
- Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (bytecodealliance#3880)
- Refine looking up aot function with index (bytecodealliance#3882)
- build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (bytecodealliance#3888)
- fix(ios): Remove `float-abi` flag (bytecodealliance#3889)
- Fix out of bounds issues after memory.grow on non-aot non-threads builds (bytecodealliance#3872)
- Exclude fuzz test python and npm packages in scoreboard scan (bytecodealliance#3871)

Author: Chris Woods <[email protected]>
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Author: Dylan Johnston <[email protected]>
Author: edoardo <[email protected]>
Author: eric <[email protected]>
Author: Fadumina Barre <[email protected]>
Author: Huang Qi <[email protected]>
Author: James Ring <[email protected]>
Author: Jérôme Vouillon <[email protected]>
Author: kk <[email protected]>
Author: [email protected] <[email protected]>
Author: liang.he <[email protected]>
Author: Maks Litskevich <[email protected]>
Author: Marcin Kolny <[email protected]>
Author: peter-tatrai <[email protected]>
Author: TianlongLiang <[email protected]>
Author: Tomáš Malý <[email protected]>
Author: Viacheslav Palchikov <[email protected]>
Author: WenLY1 <[email protected]>
Author: Wenyong Huang <[email protected]>
Author: Xavier Del Campo <[email protected]>
Author: YAMAMOTO Takashi <[email protected]>
Author: yangkun27 <[email protected]>
lum1n0us added a commit to lum1n0us/wasm-micro-runtime that referenced this pull request Feb 23, 2025
- fix: when load aot init expr,no type_idx set. (bytecodealliance#4094)
- Cmake improvements (bytecodealliance#4076)
- fix(aot_emit_aot_file): prevent buffer emission for zero byte_count (bytecodealliance#4095)
- fix(unit-test): libc_builtin_test issues (bytecodealliance#4073)
- feat: add support for EXTERNREF value type and enable AOT validator in fuzz tests (bytecodealliance#4083)
- [gc] Subtyping fix (bytecodealliance#4075)
- Add a conditional check for the macro __STDC_VERSION__ (bytecodealliance#4080)
- Unit test:type matching issue and code redundancy (bytecodealliance#4079)
- build(deps): Bump github/codeql-action from 3.28.8 to 3.28.9 (bytecodealliance#4074)
- fix(aot): ensure value_cmp does not exceed br_count in branch table compilation (bytecodealliance#4065)
- In wasm32, fix potential conversion overflow when enlarging 65536 pages (bytecodealliance#4064)
- [fuzzing] execute every exported function (bytecodealliance#3959)
- Update memory allocation functions to use allocator user data (bytecodealliance#4043)
- Show wasm proposals status during compilation and execution (bytecodealliance#3989)
- add a validator for aot module (bytecodealliance#3995)
- Use wasm32-wasip1 instead of wasm32-wasi target for rust code (bytecodealliance#4057)
- Update Rust target from 'wasm32-wasi' to 'wasm32-wasip1' in CI (bytecodealliance#4050)
- Fix wasm loader check data segment count (bytecodealliance#4039)
- Synchronize the GC spec tests to the commit from December 9. 2024. (bytecodealliance#4022)
- Refine getting const offsets in wasm loader of fast-interp (bytecodealliance#4012)
- fixes for compiling on windows (bytecodealliance#4026)
- .github: Add shared lib builds (bytecodealliance#3975)
- Refine read leb int wasm loader of fast interpreter (bytecodealliance#4017)
- build(deps): Bump github/codeql-action from 3.28.0 to 3.28.1 (bytecodealliance#4020)
- build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 (bytecodealliance#4021)
- Enable shrunk memory by default and add related configurations (bytecodealliance#4008)
- Add documentation regarding security issues and the status of Wasm proposals (bytecodealliance#3972)
- Improve stack consistency by ensuring sufficient space for dummy offsets (bytecodealliance#4011)
- Check whether related table has funcref elem in opcode call_indirect (bytecodealliance#3999)
- [fuzzing] Use software bound-check during fuzzing (bytecodealliance#4003)
- Add an example of how to embed WAMR in Zephyr user mode  (bytecodealliance#3998)
- Fix table index calculations in wasm_loader and wasm_mini_loader (bytecodealliance#4004)
- Ensure __heap_base and __data_end global indices are validated against import count (bytecodealliance#3996)
- Error message improvement (bytecodealliance#4000)
- Handle a new scenario where an item is both exported and imported. (bytecodealliance#3984)
- Optimize memory initialization handling in AOT loader (bytecodealliance#3983)
- build(deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 (bytecodealliance#3981)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 (bytecodealliance#3982)
- Add Tianlong into code owners (bytecodealliance#3970)
- Set thread information earlier in exec_env creation (bytecodealliance#3967)
- top-level cmake: link llvm libraries to our shared library (bytecodealliance#3973)
- add reference type support by default for darwin to support WASI-SDK-25 (bytecodealliance#3978)
- CMakeLists.txt: Do not require C++ (bytecodealliance#3956)
- [fuzzing] Enable instantiation (bytecodealliance#3958)
- use a random secret key (bytecodealliance#3971)
- top-level cmakefile: fix macOS build (bytecodealliance#3968)
- Only access Zephyr thread stats info when it's available (bytecodealliance#3962)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 (bytecodealliance#3960)
- wasm_export.h: Use "default" visibility for gcc and clang (bytecodealliance#3957)
- set alignment 4 when loading multi return value (bytecodealliance#3955)
- Fix aot table instantiate (bytecodealliance#3946)
- Consume the placeholders that were put when emitting table info (bytecodealliance#3940)
- Refactor SConscript and add file checks in iwasm.c (bytecodealliance#3945)
- Improvements for platform thread APIs on Windows and Zephyr (bytecodealliance#3941)
- Fix incorrect assignment in win_file.c (bytecodealliance#3939)
- don't return an uninitialized trap if argv_to_results fails (bytecodealliance#3935)
- support WASM_FUNCREF return type in argv_to_results (bytecodealliance#3936)
- add thread cpu time for zephyr (bytecodealliance#3937)
- build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (bytecodealliance#3931)
- Update README.md to clarify Windows toolchain support and ESP-IDF reference (bytecodealliance#3917)
- Enable ref types by default (bytecodealliance#3894)
- Fix loader small bug (bytecodealliance#3928)
- add testcases for shared heap and fix POP_MEM_OFFSET of memory64 (bytecodealliance#3916)
- Use plain assignment rather than bh_memcpy_s (bytecodealliance#3924)
- Fix WASI Path Mapping Processing (bytecodealliance#3923)
- Drop declarative elements on module instantiation (bytecodealliance#3922)
- Check possible integer overflow in aot memory boundary check (bytecodealliance#3920)
- Fix CI wamr-ide error (bytecodealliance#3913)
- Support external toolchain on Windows for aot compiler (bytecodealliance#3911)
- build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (bytecodealliance#3912)
- Correct the table index calculation in aot_instantiation (bytecodealliance#3903)
- Fix a leak in wasm_loader_emit_br_info (bytecodealliance#3900)
- GlobalValueSet was moved to IRPartitionLayer recently, but we have a local definition anyway (bytecodealliance#3899)
- build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (bytecodealliance#3902)
- Fix linked global initialization in multimodule (bytecodealliance#3905)
- Wasm loader enhancement: check code size in code entry  (bytecodealliance#3892)
- Refactor AOT loader to support compatible versions (bytecodealliance#3891)
- Fix out of bounds issue in is_native_addr_in_shared_heap function (bytecodealliance#3886)
- Fix mmap flags for AOT loader on non-Linux SGX platforms (bytecodealliance#3890)
- Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (bytecodealliance#3880)
- Refine looking up aot function with index (bytecodealliance#3882)
- build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (bytecodealliance#3888)
- fix(ios): Remove `float-abi` flag (bytecodealliance#3889)
- Fix out of bounds issues after memory.grow on non-aot non-threads builds (bytecodealliance#3872)
- Exclude fuzz test python and npm packages in scoreboard scan (bytecodealliance#3871)

Author: Chris Woods <[email protected]>
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Author: Dylan Johnston <[email protected]>
Author: edoardo <[email protected]>
Author: eric <[email protected]>
Author: Fadumina Barre <[email protected]>
Author: Huang Qi <[email protected]>
Author: James Ring <[email protected]>
Author: Jérôme Vouillon <[email protected]>
Author: kk <[email protected]>
Author: [email protected] <[email protected]>
Author: liang.he <[email protected]>
Author: Maks Litskevich <[email protected]>
Author: Marcin Kolny <[email protected]>
Author: peter-tatrai <[email protected]>
Author: TianlongLiang <[email protected]>
Author: Tomáš Malý <[email protected]>
Author: Viacheslav Palchikov <[email protected]>
Author: WenLY1 <[email protected]>
Author: Wenyong Huang <[email protected]>
Author: Xavier Del Campo <[email protected]>
Author: YAMAMOTO Takashi <[email protected]>
Author: yangkun27 <[email protected]>
lum1n0us added a commit that referenced this pull request Mar 3, 2025
- fix: when load aot init expr,no type_idx set. (#4094)
- Cmake improvements (#4076)
- fix(aot_emit_aot_file): prevent buffer emission for zero byte_count (#4095)
- fix(unit-test): libc_builtin_test issues (#4073)
- feat: add support for EXTERNREF value type and enable AOT validator in fuzz tests (#4083)
- [gc] Subtyping fix (#4075)
- Add a conditional check for the macro __STDC_VERSION__ (#4080)
- Unit test:type matching issue and code redundancy (#4079)
- build(deps): Bump github/codeql-action from 3.28.8 to 3.28.9 (#4074)
- fix(aot): ensure value_cmp does not exceed br_count in branch table compilation (#4065)
- In wasm32, fix potential conversion overflow when enlarging 65536 pages (#4064)
- [fuzzing] execute every exported function (#3959)
- Update memory allocation functions to use allocator user data (#4043)
- Show wasm proposals status during compilation and execution (#3989)
- add a validator for aot module (#3995)
- Use wasm32-wasip1 instead of wasm32-wasi target for rust code (#4057)
- Update Rust target from 'wasm32-wasi' to 'wasm32-wasip1' in CI (#4050)
- Fix wasm loader check data segment count (#4039)
- Synchronize the GC spec tests to the commit from December 9. 2024. (#4022)
- Refine getting const offsets in wasm loader of fast-interp (#4012)
- fixes for compiling on windows (#4026)
- .github: Add shared lib builds (#3975)
- Refine read leb int wasm loader of fast interpreter (#4017)
- build(deps): Bump github/codeql-action from 3.28.0 to 3.28.1 (#4020)
- build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 (#4021)
- Enable shrunk memory by default and add related configurations (#4008)
- Add documentation regarding security issues and the status of Wasm proposals (#3972)
- Improve stack consistency by ensuring sufficient space for dummy offsets (#4011)
- Check whether related table has funcref elem in opcode call_indirect (#3999)
- [fuzzing] Use software bound-check during fuzzing (#4003)
- Add an example of how to embed WAMR in Zephyr user mode  (#3998)
- Fix table index calculations in wasm_loader and wasm_mini_loader (#4004)
- Ensure __heap_base and __data_end global indices are validated against import count (#3996)
- Error message improvement (#4000)
- Handle a new scenario where an item is both exported and imported. (#3984)
- Optimize memory initialization handling in AOT loader (#3983)
- build(deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 (#3981)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 (#3982)
- Add Tianlong into code owners (#3970)
- Set thread information earlier in exec_env creation (#3967)
- top-level cmake: link llvm libraries to our shared library (#3973)
- add reference type support by default for darwin to support WASI-SDK-25 (#3978)
- CMakeLists.txt: Do not require C++ (#3956)
- [fuzzing] Enable instantiation (#3958)
- use a random secret key (#3971)
- top-level cmakefile: fix macOS build (#3968)
- Only access Zephyr thread stats info when it's available (#3962)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 (#3960)
- wasm_export.h: Use "default" visibility for gcc and clang (#3957)
- set alignment 4 when loading multi return value (#3955)
- Fix aot table instantiate (#3946)
- Consume the placeholders that were put when emitting table info (#3940)
- Refactor SConscript and add file checks in iwasm.c (#3945)
- Improvements for platform thread APIs on Windows and Zephyr (#3941)
- Fix incorrect assignment in win_file.c (#3939)
- don't return an uninitialized trap if argv_to_results fails (#3935)
- support WASM_FUNCREF return type in argv_to_results (#3936)
- add thread cpu time for zephyr (#3937)
- build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (#3931)
- Update README.md to clarify Windows toolchain support and ESP-IDF reference (#3917)
- Enable ref types by default (#3894)
- Fix loader small bug (#3928)
- add testcases for shared heap and fix POP_MEM_OFFSET of memory64 (#3916)
- Use plain assignment rather than bh_memcpy_s (#3924)
- Fix WASI Path Mapping Processing (#3923)
- Drop declarative elements on module instantiation (#3922)
- Check possible integer overflow in aot memory boundary check (#3920)
- Fix CI wamr-ide error (#3913)
- Support external toolchain on Windows for aot compiler (#3911)
- build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (#3912)
- Correct the table index calculation in aot_instantiation (#3903)
- Fix a leak in wasm_loader_emit_br_info (#3900)
- GlobalValueSet was moved to IRPartitionLayer recently, but we have a local definition anyway (#3899)
- build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (#3902)
- Fix linked global initialization in multimodule (#3905)
- Wasm loader enhancement: check code size in code entry  (#3892)
- Refactor AOT loader to support compatible versions (#3891)
- Fix out of bounds issue in is_native_addr_in_shared_heap function (#3886)
- Fix mmap flags for AOT loader on non-Linux SGX platforms (#3890)
- Bump AOT_CURRENT_VERSION for WAMR 2.x (gc, memory64) (#3880)
- Refine looking up aot function with index (#3882)
- build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (#3888)
- fix(ios): Remove `float-abi` flag (#3889)
- Fix out of bounds issues after memory.grow on non-aot non-threads builds (#3872)
- Exclude fuzz test python and npm packages in scoreboard scan (#3871)

Author: Chris Woods <[email protected]>
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Author: Dylan Johnston <[email protected]>
Author: edoardo <[email protected]>
Author: eric <[email protected]>
Author: Fadumina Barre <[email protected]>
Author: Huang Qi <[email protected]>
Author: James Ring <[email protected]>
Author: Jérôme Vouillon <[email protected]>
Author: kk <[email protected]>
Author: [email protected] <[email protected]>
Author: liang.he <[email protected]>
Author: Maks Litskevich <[email protected]>
Author: Marcin Kolny <[email protected]>
Author: peter-tatrai <[email protected]>
Author: TianlongLiang <[email protected]>
Author: Tomáš Malý <[email protected]>
Author: Viacheslav Palchikov <[email protected]>
Author: WenLY1 <[email protected]>
Author: Wenyong Huang <[email protected]>
Author: Xavier Del Campo <[email protected]>
Author: YAMAMOTO Takashi <[email protected]>
Author: yangkun27 <[email protected]>
karaxuna pushed a commit to karaxuna/wasm-micro-runtime that referenced this pull request Mar 19, 2025
…alliance#3989)

- add default build configuration options and enhance message output for WAMR features
- Add Wasm proposal status printing functionality
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants