Skip to content

Commit 7029a42

Browse files
committed
feat(wrt-runtime): add complete WebAssembly SIMD 2.0 runtime implementation
Migrated and completed SIMD runtime from wrt/src/simd_runtime_impl.rs to wrt-runtime/src/simd_runtime.rs with full WebAssembly SIMD spec coverage. Major implementation: 50 missing operations added (comparisons, saturating arithmetic, extend operations, shuffle/swizzle). Clean compilation achieved.
1 parent 73e3c1a commit 7029a42

File tree

3 files changed

+4230
-0
lines changed

3 files changed

+4230
-0
lines changed

wrt-runtime/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ pub mod multi_memory;
6868
#[cfg(any(feature = "std", feature = "alloc"))]
6969
pub mod shared_memory;
7070

71+
// WebAssembly SIMD runtime
72+
#[cfg(any(feature = "std", feature = "alloc"))]
73+
pub mod simd_runtime;
74+
7175
// Simplified type system - CRITICAL COMPILATION FIX
7276
pub mod simple_types;
7377
pub mod unified_types;

0 commit comments

Comments
 (0)