├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benches ├── benches.rs └── wat │ ├── fac_iter.wat │ ├── fac_rec.wat │ ├── fib_iter.wat │ ├── fib_rec.wat │ ├── fill.wat │ └── sum.wat ├── coremark ├── Cargo.lock ├── Cargo.toml └── src │ ├── coremark-minimal.wasm │ └── main.rs ├── fuzz ├── .gitignore ├── Cargo.toml └── fuzz_targets │ └── differential.rs ├── src ├── aliasable │ ├── boxed.rs │ └── mod.rs ├── cast.rs ├── code.rs ├── compiler │ ├── memory.rs │ ├── mod.rs │ ├── numeric.rs │ ├── table.rs │ └── variable.rs ├── config.rs ├── const_expr.rs ├── data.rs ├── decode.rs ├── downcast.rs ├── elem.rs ├── engine.rs ├── error.rs ├── executor │ ├── memory.rs │ ├── mod.rs │ ├── numeric.rs │ ├── table.rs │ └── variable.rs ├── extern_.rs ├── extern_val.rs ├── func.rs ├── guarded.rs ├── instance.rs ├── instr.rs ├── into_func.rs ├── lib.rs ├── linker.rs ├── main.rs ├── module.rs ├── ops.rs ├── ref_.rs ├── runtime │ ├── global.rs │ ├── memory.rs │ ├── mod.rs │ └── table.rs ├── stack.rs ├── store.rs ├── trap.rs ├── val.rs └── validator │ ├── global.rs │ ├── memory.rs │ ├── mod.rs │ ├── numeric.rs │ └── table.rs └── tests ├── testsuite.rs ├── testsuite ├── Contributing.md ├── LICENSE ├── README.md ├── address.wast ├── align.wast ├── binary-leb128.wast ├── binary.wast ├── block.wast ├── br.wast ├── br_if.wast ├── br_table.wast ├── bulk.wast ├── call.wast ├── call_indirect.wast ├── comments.wast ├── const.wast ├── conversions.wast ├── custom.wast ├── data.wast ├── elem.wast ├── endianness.wast ├── exports.wast ├── extract-parts.sh ├── f32.wast ├── f32_bitwise.wast ├── f32_cmp.wast ├── f64.wast ├── f64_bitwise.wast ├── f64_cmp.wast ├── fac.wast ├── float_exprs.wast ├── float_literals.wast ├── float_memory.wast ├── float_misc.wast ├── forward.wast ├── func.wast ├── func_ptrs.wast ├── global.wast ├── i32.wast ├── i64.wast ├── if.wast ├── imports.wast ├── inline-module.wast ├── int_exprs.wast ├── int_literals.wast ├── labels.wast ├── left-to-right.wast ├── linking.wast ├── load.wast ├── local_get.wast ├── local_set.wast ├── local_tee.wast ├── loop.wast ├── memory.wast ├── memory_copy.wast ├── memory_fill.wast ├── memory_grow.wast ├── memory_init.wast ├── memory_redundancy.wast ├── memory_size.wast ├── memory_trap.wast ├── names.wast ├── nop.wast ├── obsolete-keywords.wast ├── proposals │ ├── annotations │ │ └── annotations.wast │ ├── exception-handling │ │ ├── binary.wast │ │ ├── exports.wast │ │ ├── imports.wast │ │ ├── ref_null.wast │ │ ├── tag.wast │ │ ├── throw.wast │ │ ├── throw_ref.wast │ │ └── try_table.wast │ ├── extended-const │ │ ├── data.wast │ │ ├── elem.wast │ │ └── global.wast │ ├── function-references │ │ ├── binary.wast │ │ ├── br_on_non_null.wast │ │ ├── br_on_null.wast │ │ ├── br_table.wast │ │ ├── call_ref.wast │ │ ├── custom.wast │ │ ├── data.wast │ │ ├── elem.wast │ │ ├── func.wast │ │ ├── global.wast │ │ ├── if.wast │ │ ├── linking.wast │ │ ├── local_get.wast │ │ ├── local_init.wast │ │ ├── ref.wast │ │ ├── ref_as_non_null.wast │ │ ├── ref_func.wast │ │ ├── ref_is_null.wast │ │ ├── ref_null.wast │ │ ├── return_call.wast │ │ ├── return_call_indirect.wast │ │ ├── return_call_ref.wast │ │ ├── select.wast │ │ ├── table-sub.wast │ │ ├── table.wast │ │ ├── type-equivalence.wast │ │ ├── unreached-invalid.wast │ │ └── unreached-valid.wast │ ├── gc │ │ ├── array.wast │ │ ├── array_copy.wast │ │ ├── array_fill.wast │ │ ├── array_init_data.wast │ │ ├── array_init_elem.wast │ │ ├── binary-gc.wast │ │ ├── binary.wast │ │ ├── br_on_cast.wast │ │ ├── br_on_cast_fail.wast │ │ ├── br_on_non_null.wast │ │ ├── br_on_null.wast │ │ ├── br_table.wast │ │ ├── call_ref.wast │ │ ├── data.wast │ │ ├── elem.wast │ │ ├── extern.wast │ │ ├── func.wast │ │ ├── global.wast │ │ ├── i31.wast │ │ ├── if.wast │ │ ├── linking.wast │ │ ├── local_get.wast │ │ ├── local_init.wast │ │ ├── ref.wast │ │ ├── ref_as_non_null.wast │ │ ├── ref_cast.wast │ │ ├── ref_eq.wast │ │ ├── ref_is_null.wast │ │ ├── ref_null.wast │ │ ├── ref_test.wast │ │ ├── return_call.wast │ │ ├── return_call_indirect.wast │ │ ├── return_call_ref.wast │ │ ├── select.wast │ │ ├── struct.wast │ │ ├── table-sub.wast │ │ ├── table.wast │ │ ├── type-canon.wast │ │ ├── type-equivalence.wast │ │ ├── type-rec.wast │ │ ├── type-subtyping.wast │ │ ├── unreached-invalid.wast │ │ └── unreached-valid.wast │ ├── memory64 │ │ ├── address.wast │ │ ├── address64.wast │ │ ├── align64.wast │ │ ├── binary-leb128.wast │ │ ├── binary.wast │ │ ├── endianness64.wast │ │ ├── float_memory64.wast │ │ ├── load64.wast │ │ ├── memory.wast │ │ ├── memory64.wast │ │ ├── memory_grow64.wast │ │ ├── memory_redundancy64.wast │ │ ├── memory_trap64.wast │ │ └── simd_address.wast │ ├── multi-memory │ │ ├── address0.wast │ │ ├── address1.wast │ │ ├── align0.wast │ │ ├── binary.wast │ │ ├── binary0.wast │ │ ├── data.wast │ │ ├── data0.wast │ │ ├── data1.wast │ │ ├── data_drop0.wast │ │ ├── exports0.wast │ │ ├── float_exprs0.wast │ │ ├── float_exprs1.wast │ │ ├── float_memory0.wast │ │ ├── imports.wast │ │ ├── imports0.wast │ │ ├── imports1.wast │ │ ├── imports2.wast │ │ ├── imports3.wast │ │ ├── imports4.wast │ │ ├── linking0.wast │ │ ├── linking1.wast │ │ ├── linking2.wast │ │ ├── linking3.wast │ │ ├── load.wast │ │ ├── load0.wast │ │ ├── load1.wast │ │ ├── load2.wast │ │ ├── memory-multi.wast │ │ ├── memory.wast │ │ ├── memory_copy0.wast │ │ ├── memory_copy1.wast │ │ ├── memory_fill0.wast │ │ ├── memory_grow.wast │ │ ├── memory_init0.wast │ │ ├── memory_size.wast │ │ ├── memory_size0.wast │ │ ├── memory_size1.wast │ │ ├── memory_size2.wast │ │ ├── memory_size3.wast │ │ ├── memory_trap0.wast │ │ ├── memory_trap1.wast │ │ ├── simd_memory-multi.wast │ │ ├── start0.wast │ │ ├── store.wast │ │ ├── store0.wast │ │ ├── store1.wast │ │ └── traps0.wast │ ├── relaxed-simd │ │ ├── i16x8_relaxed_q15mulr_s.wast │ │ ├── i32x4_relaxed_trunc.wast │ │ ├── i8x16_relaxed_swizzle.wast │ │ ├── relaxed_dot_product.wast │ │ ├── relaxed_laneselect.wast │ │ ├── relaxed_madd_nmadd.wast │ │ └── relaxed_min_max.wast │ ├── tail-call │ │ ├── return_call.wast │ │ └── return_call_indirect.wast │ └── threads │ │ ├── atomic.wast │ │ ├── exports.wast │ │ ├── imports.wast │ │ └── memory.wast ├── ref_func.wast ├── ref_is_null.wast ├── ref_null.wast ├── repos │ └── README.md ├── return.wast ├── select.wast ├── simd_address.wast ├── simd_align.wast ├── simd_bit_shift.wast ├── simd_bitwise.wast ├── simd_boolean.wast ├── simd_const.wast ├── simd_conversions.wast ├── simd_f32x4.wast ├── simd_f32x4_arith.wast ├── simd_f32x4_cmp.wast ├── simd_f32x4_pmin_pmax.wast ├── simd_f32x4_rounding.wast ├── simd_f64x2.wast ├── simd_f64x2_arith.wast ├── simd_f64x2_cmp.wast ├── simd_f64x2_pmin_pmax.wast ├── simd_f64x2_rounding.wast ├── simd_i16x8_arith.wast ├── simd_i16x8_arith2.wast ├── simd_i16x8_cmp.wast ├── simd_i16x8_extadd_pairwise_i8x16.wast ├── simd_i16x8_extmul_i8x16.wast ├── simd_i16x8_q15mulr_sat_s.wast ├── simd_i16x8_sat_arith.wast ├── simd_i32x4_arith.wast ├── simd_i32x4_arith2.wast ├── simd_i32x4_cmp.wast ├── simd_i32x4_dot_i16x8.wast ├── simd_i32x4_extadd_pairwise_i16x8.wast ├── simd_i32x4_extmul_i16x8.wast ├── simd_i32x4_trunc_sat_f32x4.wast ├── simd_i32x4_trunc_sat_f64x2.wast ├── simd_i64x2_arith.wast ├── simd_i64x2_arith2.wast ├── simd_i64x2_cmp.wast ├── simd_i64x2_extmul_i32x4.wast ├── simd_i8x16_arith.wast ├── simd_i8x16_arith2.wast ├── simd_i8x16_cmp.wast ├── simd_i8x16_sat_arith.wast ├── simd_int_to_int_extend.wast ├── simd_lane.wast ├── simd_linking.wast ├── simd_load.wast ├── simd_load16_lane.wast ├── simd_load32_lane.wast ├── simd_load64_lane.wast ├── simd_load8_lane.wast ├── simd_load_extend.wast ├── simd_load_splat.wast ├── simd_load_zero.wast ├── simd_splat.wast ├── simd_store.wast ├── simd_store16_lane.wast ├── simd_store32_lane.wast ├── simd_store64_lane.wast ├── simd_store8_lane.wast ├── skip-stack-guard-page.wast ├── stack.wast ├── start.wast ├── store.wast ├── switch.wast ├── table-sub.wast ├── table.wast ├── table_copy.wast ├── table_fill.wast ├── table_get.wast ├── table_grow.wast ├── table_init.wast ├── table_set.wast ├── table_size.wast ├── token.wast ├── traps.wast ├── type.wast ├── unreachable.wast ├── unreached-invalid.wast ├── unreached-valid.wast ├── unwind.wast ├── update-testsuite.sh ├── utf8-custom-section-id.wast ├── utf8-import-field.wast ├── utf8-import-module.wast └── utf8-invalid-encoding.wast └── wast_runner.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/README.md -------------------------------------------------------------------------------- /benches/benches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/benches.rs -------------------------------------------------------------------------------- /benches/wat/fac_iter.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/fac_iter.wat -------------------------------------------------------------------------------- /benches/wat/fac_rec.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/fac_rec.wat -------------------------------------------------------------------------------- /benches/wat/fib_iter.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/fib_iter.wat -------------------------------------------------------------------------------- /benches/wat/fib_rec.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/fib_rec.wat -------------------------------------------------------------------------------- /benches/wat/fill.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/fill.wat -------------------------------------------------------------------------------- /benches/wat/sum.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/benches/wat/sum.wat -------------------------------------------------------------------------------- /coremark/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/coremark/Cargo.lock -------------------------------------------------------------------------------- /coremark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/coremark/Cargo.toml -------------------------------------------------------------------------------- /coremark/src/coremark-minimal.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/coremark/src/coremark-minimal.wasm -------------------------------------------------------------------------------- /coremark/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/coremark/src/main.rs -------------------------------------------------------------------------------- /fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/fuzz_targets/differential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/fuzz/fuzz_targets/differential.rs -------------------------------------------------------------------------------- /src/aliasable/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/aliasable/boxed.rs -------------------------------------------------------------------------------- /src/aliasable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/aliasable/mod.rs -------------------------------------------------------------------------------- /src/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/cast.rs -------------------------------------------------------------------------------- /src/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/code.rs -------------------------------------------------------------------------------- /src/compiler/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/compiler/memory.rs -------------------------------------------------------------------------------- /src/compiler/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/compiler/mod.rs -------------------------------------------------------------------------------- /src/compiler/numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/compiler/numeric.rs -------------------------------------------------------------------------------- /src/compiler/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/compiler/table.rs -------------------------------------------------------------------------------- /src/compiler/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/compiler/variable.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/const_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/const_expr.rs -------------------------------------------------------------------------------- /src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/data.rs -------------------------------------------------------------------------------- /src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/decode.rs -------------------------------------------------------------------------------- /src/downcast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/downcast.rs -------------------------------------------------------------------------------- /src/elem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/elem.rs -------------------------------------------------------------------------------- /src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/engine.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/executor/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/executor/memory.rs -------------------------------------------------------------------------------- /src/executor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/executor/mod.rs -------------------------------------------------------------------------------- /src/executor/numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/executor/numeric.rs -------------------------------------------------------------------------------- /src/executor/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/executor/table.rs -------------------------------------------------------------------------------- /src/executor/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/executor/variable.rs -------------------------------------------------------------------------------- /src/extern_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/extern_.rs -------------------------------------------------------------------------------- /src/extern_val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/extern_val.rs -------------------------------------------------------------------------------- /src/func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/func.rs -------------------------------------------------------------------------------- /src/guarded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/guarded.rs -------------------------------------------------------------------------------- /src/instance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/instance.rs -------------------------------------------------------------------------------- /src/instr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/instr.rs -------------------------------------------------------------------------------- /src/into_func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/into_func.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/linker.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/module.rs -------------------------------------------------------------------------------- /src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/ops.rs -------------------------------------------------------------------------------- /src/ref_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/ref_.rs -------------------------------------------------------------------------------- /src/runtime/global.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/runtime/global.rs -------------------------------------------------------------------------------- /src/runtime/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/runtime/memory.rs -------------------------------------------------------------------------------- /src/runtime/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/runtime/mod.rs -------------------------------------------------------------------------------- /src/runtime/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/runtime/table.rs -------------------------------------------------------------------------------- /src/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/stack.rs -------------------------------------------------------------------------------- /src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/store.rs -------------------------------------------------------------------------------- /src/trap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/trap.rs -------------------------------------------------------------------------------- /src/val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/val.rs -------------------------------------------------------------------------------- /src/validator/global.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/validator/global.rs -------------------------------------------------------------------------------- /src/validator/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/validator/memory.rs -------------------------------------------------------------------------------- /src/validator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/validator/mod.rs -------------------------------------------------------------------------------- /src/validator/numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/validator/numeric.rs -------------------------------------------------------------------------------- /src/validator/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/src/validator/table.rs -------------------------------------------------------------------------------- /tests/testsuite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite.rs -------------------------------------------------------------------------------- /tests/testsuite/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/Contributing.md -------------------------------------------------------------------------------- /tests/testsuite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/LICENSE -------------------------------------------------------------------------------- /tests/testsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/README.md -------------------------------------------------------------------------------- /tests/testsuite/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/address.wast -------------------------------------------------------------------------------- /tests/testsuite/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/align.wast -------------------------------------------------------------------------------- /tests/testsuite/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/binary-leb128.wast -------------------------------------------------------------------------------- /tests/testsuite/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/block.wast -------------------------------------------------------------------------------- /tests/testsuite/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/br.wast -------------------------------------------------------------------------------- /tests/testsuite/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/br_if.wast -------------------------------------------------------------------------------- /tests/testsuite/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/br_table.wast -------------------------------------------------------------------------------- /tests/testsuite/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/bulk.wast -------------------------------------------------------------------------------- /tests/testsuite/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/call.wast -------------------------------------------------------------------------------- /tests/testsuite/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/call_indirect.wast -------------------------------------------------------------------------------- /tests/testsuite/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/comments.wast -------------------------------------------------------------------------------- /tests/testsuite/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/const.wast -------------------------------------------------------------------------------- /tests/testsuite/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/conversions.wast -------------------------------------------------------------------------------- /tests/testsuite/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/custom.wast -------------------------------------------------------------------------------- /tests/testsuite/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/data.wast -------------------------------------------------------------------------------- /tests/testsuite/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/elem.wast -------------------------------------------------------------------------------- /tests/testsuite/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/endianness.wast -------------------------------------------------------------------------------- /tests/testsuite/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/exports.wast -------------------------------------------------------------------------------- /tests/testsuite/extract-parts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/extract-parts.sh -------------------------------------------------------------------------------- /tests/testsuite/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f32.wast -------------------------------------------------------------------------------- /tests/testsuite/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f32_bitwise.wast -------------------------------------------------------------------------------- /tests/testsuite/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f32_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f64.wast -------------------------------------------------------------------------------- /tests/testsuite/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f64_bitwise.wast -------------------------------------------------------------------------------- /tests/testsuite/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/f64_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/fac.wast -------------------------------------------------------------------------------- /tests/testsuite/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/float_exprs.wast -------------------------------------------------------------------------------- /tests/testsuite/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/float_literals.wast -------------------------------------------------------------------------------- /tests/testsuite/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/float_memory.wast -------------------------------------------------------------------------------- /tests/testsuite/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/float_misc.wast -------------------------------------------------------------------------------- /tests/testsuite/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/forward.wast -------------------------------------------------------------------------------- /tests/testsuite/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/func.wast -------------------------------------------------------------------------------- /tests/testsuite/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/func_ptrs.wast -------------------------------------------------------------------------------- /tests/testsuite/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/global.wast -------------------------------------------------------------------------------- /tests/testsuite/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/i32.wast -------------------------------------------------------------------------------- /tests/testsuite/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/i64.wast -------------------------------------------------------------------------------- /tests/testsuite/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/if.wast -------------------------------------------------------------------------------- /tests/testsuite/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/imports.wast -------------------------------------------------------------------------------- /tests/testsuite/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/inline-module.wast -------------------------------------------------------------------------------- /tests/testsuite/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/int_exprs.wast -------------------------------------------------------------------------------- /tests/testsuite/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/int_literals.wast -------------------------------------------------------------------------------- /tests/testsuite/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/labels.wast -------------------------------------------------------------------------------- /tests/testsuite/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/left-to-right.wast -------------------------------------------------------------------------------- /tests/testsuite/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/linking.wast -------------------------------------------------------------------------------- /tests/testsuite/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/load.wast -------------------------------------------------------------------------------- /tests/testsuite/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/local_get.wast -------------------------------------------------------------------------------- /tests/testsuite/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/local_set.wast -------------------------------------------------------------------------------- /tests/testsuite/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/local_tee.wast -------------------------------------------------------------------------------- /tests/testsuite/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/loop.wast -------------------------------------------------------------------------------- /tests/testsuite/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_copy.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_fill.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_grow.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_init.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_redundancy.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_size.wast -------------------------------------------------------------------------------- /tests/testsuite/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/memory_trap.wast -------------------------------------------------------------------------------- /tests/testsuite/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/names.wast -------------------------------------------------------------------------------- /tests/testsuite/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/nop.wast -------------------------------------------------------------------------------- /tests/testsuite/obsolete-keywords.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/obsolete-keywords.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/annotations/annotations.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/annotations/annotations.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/exports.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/imports.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/ref_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/tag.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/tag.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/throw.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/throw.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/throw_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/throw_ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/exception-handling/try_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/exception-handling/try_table.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/extended-const/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/extended-const/data.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/extended-const/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/extended-const/elem.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/extended-const/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/extended-const/global.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/br_on_non_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/br_on_non_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/br_on_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/br_on_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/br_table.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/call_ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/custom.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/data.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/elem.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/func.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/global.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/if.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/linking.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/local_get.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/local_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/local_init.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/ref_as_non_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/ref_as_non_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/ref_func.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/ref_is_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/ref_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/return_call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/return_call.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/return_call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/return_call_indirect.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/return_call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/return_call_ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/select.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/table-sub.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/table.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/type-equivalence.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/type-equivalence.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/unreached-invalid.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/function-references/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/function-references/unreached-valid.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/array.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/array.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/array_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/array_copy.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/array_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/array_fill.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/array_init_data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/array_init_data.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/array_init_elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/array_init_elem.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/binary-gc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/binary-gc.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/br_on_cast.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/br_on_cast.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/br_on_cast_fail.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/br_on_cast_fail.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/br_on_non_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/br_on_non_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/br_on_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/br_on_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/br_table.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/call_ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/data.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/elem.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/extern.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/extern.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/func.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/global.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/i31.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/i31.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/if.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/linking.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/local_get.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/local_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/local_init.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_as_non_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_as_non_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_cast.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_cast.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_eq.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_eq.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_is_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_null.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/ref_test.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/ref_test.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/return_call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/return_call.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/return_call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/return_call_indirect.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/return_call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/return_call_ref.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/select.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/struct.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/struct.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/table-sub.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/table.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/type-canon.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/type-canon.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/type-equivalence.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/type-equivalence.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/type-rec.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/type-rec.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/type-subtyping.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/type-subtyping.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/unreached-invalid.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/gc/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/gc/unreached-valid.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/address.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/address64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/address64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/align64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/align64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/binary-leb128.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/endianness64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/endianness64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/float_memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/float_memory64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/load64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/load64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/memory.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/memory64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/memory_grow64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/memory_grow64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/memory_redundancy64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/memory_redundancy64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/memory_trap64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/memory_trap64.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/memory64/simd_address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/memory64/simd_address.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/address0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/address0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/address1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/address1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/align0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/align0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/binary.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/binary0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/binary0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/data.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/data0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/data0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/data1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/data1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/data_drop0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/data_drop0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/exports0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/exports0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/float_exprs0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/float_exprs0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/float_exprs1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/float_exprs1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/float_memory0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/float_memory0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports2.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports3.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports3.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/imports4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/imports4.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/linking0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/linking0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/linking1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/linking1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/linking2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/linking2.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/linking3.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/linking3.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/load.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/load0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/load0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/load1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/load1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/load2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/load2.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory-multi.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory-multi.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_copy0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_copy0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_copy1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_copy1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_fill0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_fill0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_grow.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_init0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_init0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_size.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_size0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_size0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_size1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_size1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_size2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_size2.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_size3.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_size3.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_trap0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_trap0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/memory_trap1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/memory_trap1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/simd_memory-multi.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/simd_memory-multi.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/start0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/start0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/store.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/store0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/store0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/store1.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/store1.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/multi-memory/traps0.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/multi-memory/traps0.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/i16x8_relaxed_q15mulr_s.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/i16x8_relaxed_q15mulr_s.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/i32x4_relaxed_trunc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/i32x4_relaxed_trunc.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/i8x16_relaxed_swizzle.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/i8x16_relaxed_swizzle.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/relaxed_dot_product.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/relaxed_dot_product.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/relaxed_laneselect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/relaxed_laneselect.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/relaxed_madd_nmadd.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/relaxed_madd_nmadd.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/relaxed-simd/relaxed_min_max.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/relaxed-simd/relaxed_min_max.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/tail-call/return_call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/tail-call/return_call.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/tail-call/return_call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/tail-call/return_call_indirect.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/threads/atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/threads/atomic.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/threads/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/threads/exports.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/threads/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/threads/imports.wast -------------------------------------------------------------------------------- /tests/testsuite/proposals/threads/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/proposals/threads/memory.wast -------------------------------------------------------------------------------- /tests/testsuite/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/ref_func.wast -------------------------------------------------------------------------------- /tests/testsuite/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/ref_is_null.wast -------------------------------------------------------------------------------- /tests/testsuite/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/ref_null.wast -------------------------------------------------------------------------------- /tests/testsuite/repos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/repos/README.md -------------------------------------------------------------------------------- /tests/testsuite/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/return.wast -------------------------------------------------------------------------------- /tests/testsuite/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/select.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_address.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_align.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_bit_shift.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_bit_shift.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_bitwise.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_boolean.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_boolean.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_const.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_conversions.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f32x4.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f32x4_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f32x4_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f32x4_pmin_pmax.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f32x4_pmin_pmax.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f32x4_rounding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f32x4_rounding.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f64x2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f64x2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f64x2_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f64x2_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f64x2_pmin_pmax.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f64x2_pmin_pmax.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_f64x2_rounding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_f64x2_rounding.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_arith2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_extadd_pairwise_i8x16.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_extadd_pairwise_i8x16.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_extmul_i8x16.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_extmul_i8x16.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_q15mulr_sat_s.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_q15mulr_sat_s.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i16x8_sat_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i16x8_sat_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_arith2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_dot_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_dot_i16x8.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_extadd_pairwise_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_extadd_pairwise_i16x8.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_extmul_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_extmul_i16x8.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_trunc_sat_f32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_trunc_sat_f32x4.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i32x4_trunc_sat_f64x2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i32x4_trunc_sat_f64x2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i64x2_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i64x2_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i64x2_arith2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i64x2_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i64x2_extmul_i32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i64x2_extmul_i32x4.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i8x16_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i8x16_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i8x16_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i8x16_arith2.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i8x16_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i8x16_cmp.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_i8x16_sat_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_i8x16_sat_arith.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_int_to_int_extend.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_int_to_int_extend.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_linking.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load16_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load16_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load32_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load32_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load64_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load64_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load8_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load_extend.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load_extend.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load_splat.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_load_zero.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_load_zero.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_splat.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_store.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_store16_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_store16_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_store32_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_store32_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_store64_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_store64_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/simd_store8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/simd_store8_lane.wast -------------------------------------------------------------------------------- /tests/testsuite/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /tests/testsuite/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/stack.wast -------------------------------------------------------------------------------- /tests/testsuite/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/start.wast -------------------------------------------------------------------------------- /tests/testsuite/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/store.wast -------------------------------------------------------------------------------- /tests/testsuite/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/switch.wast -------------------------------------------------------------------------------- /tests/testsuite/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table-sub.wast -------------------------------------------------------------------------------- /tests/testsuite/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table.wast -------------------------------------------------------------------------------- /tests/testsuite/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_copy.wast -------------------------------------------------------------------------------- /tests/testsuite/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_fill.wast -------------------------------------------------------------------------------- /tests/testsuite/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_get.wast -------------------------------------------------------------------------------- /tests/testsuite/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_grow.wast -------------------------------------------------------------------------------- /tests/testsuite/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_init.wast -------------------------------------------------------------------------------- /tests/testsuite/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_set.wast -------------------------------------------------------------------------------- /tests/testsuite/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/table_size.wast -------------------------------------------------------------------------------- /tests/testsuite/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/token.wast -------------------------------------------------------------------------------- /tests/testsuite/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/traps.wast -------------------------------------------------------------------------------- /tests/testsuite/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/type.wast -------------------------------------------------------------------------------- /tests/testsuite/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/unreachable.wast -------------------------------------------------------------------------------- /tests/testsuite/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/unreached-invalid.wast -------------------------------------------------------------------------------- /tests/testsuite/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/unreached-valid.wast -------------------------------------------------------------------------------- /tests/testsuite/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/unwind.wast -------------------------------------------------------------------------------- /tests/testsuite/update-testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/update-testsuite.sh -------------------------------------------------------------------------------- /tests/testsuite/utf8-custom-section-id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/utf8-custom-section-id.wast -------------------------------------------------------------------------------- /tests/testsuite/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/utf8-import-field.wast -------------------------------------------------------------------------------- /tests/testsuite/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/utf8-import-module.wast -------------------------------------------------------------------------------- /tests/testsuite/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/testsuite/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /tests/wast_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makepad/stitch/HEAD/tests/wast_runner.rs --------------------------------------------------------------------------------