├── .clang-format ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Build ├── azure-pipelines │ ├── cmake-configure-step-template.yml │ ├── download-llvm-step-template.yml │ ├── posix-build-job-template.yml │ ├── publish-step-template.yml │ ├── release-job-template.yml │ ├── test-package-job-template.yml │ ├── test-step-template.yml │ └── windows-build-job-template.yml ├── notify-discord.sh ├── nsis-3.04-strlen_8192.zip └── travis-build.sh ├── CMakeLists.txt ├── Doc ├── Building.md ├── CodeOrganization.md ├── GettingStarted.md ├── PortabilityMatrix.md ├── SignalsAndExceptions.md ├── WAVMObjectReachability.dot └── WAVMObjectReachability.svg ├── Dockerfile ├── Examples ├── CMakeLists.txt ├── blake2b-memory64.wast ├── blake2b.wast ├── echo.wast ├── embedder │ ├── c │ │ ├── CMakeLists.txt │ │ └── embedder-example.c │ ├── cpp-wasi │ │ ├── CMakeLists.txt │ │ └── embedder-example.cpp │ └── cpp │ │ ├── CMakeLists.txt │ │ └── embedder-example.cpp ├── helloworld.wast ├── tee.wast ├── trap.wast └── zlib.wasm ├── Include └── WAVM │ ├── Emscripten │ └── Emscripten.h │ ├── IR │ ├── FeatureSpec.h │ ├── IR.h │ ├── Module.h │ ├── OperatorPrinter.h │ ├── OperatorSignatures.h │ ├── OperatorTable.h │ ├── Operators.h │ ├── RandomModule.h │ ├── Types.h │ ├── Types.natvis │ ├── Validate.h │ └── Value.h │ ├── Inline │ ├── Assert.h │ ├── BasicTypes.h │ ├── CLI.h │ ├── CMakeLists.txt │ ├── Config.h.in │ ├── DenseStaticIntSet.h │ ├── Errors.h │ ├── FloatComponents.h │ ├── Hash.h │ ├── HashMap.h │ ├── HashSet.h │ ├── HashTable.h │ ├── I128.h │ ├── Impl │ │ ├── HashMap.natvis │ │ ├── HashMapImpl.h │ │ ├── HashSet.natvis │ │ ├── HashSetImpl.h │ │ ├── HashTable.natvis │ │ ├── HashTableImpl.h │ │ ├── I128Impl.LICENSE │ │ ├── I128Impl.h │ │ ├── OptionalStorage.h │ │ └── OptionalStorage.natvis │ ├── IndexMap.h │ ├── InlineArray.h │ ├── IntrusiveSharedPtr.h │ ├── IsNameChar.h │ ├── LEB128.h │ ├── RandomStream.h │ ├── Serialization.h │ ├── Time.h │ ├── Timing.h │ ├── Unicode.h │ ├── Version.h.in │ └── xxhash │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── xxh3.h │ │ ├── xxhash.c │ │ └── xxhash.h │ ├── LLVMJIT │ └── LLVMJIT.h │ ├── Logging │ └── Logging.h │ ├── NFA │ └── NFA.h │ ├── ObjectCache │ └── ObjectCache.h │ ├── Platform │ ├── Clock.h │ ├── Defines.h │ ├── Diagnostics.h │ ├── Error.h │ ├── Event.h │ ├── File.h │ ├── Intrinsic.h │ ├── Memory.h │ ├── Mutex.h │ ├── RWMutex.h │ ├── Random.h │ ├── Signal.h │ └── Thread.h │ ├── RegExp │ └── RegExp.h │ ├── Runtime │ ├── Intrinsics.h │ ├── Linker.h │ └── Runtime.h │ ├── RuntimeABI │ ├── CMakeLists.txt │ └── RuntimeABI.h │ ├── ThreadTest │ └── ThreadTest.h │ ├── VFS │ ├── SandboxFS.h │ └── VFS.h │ ├── WASI │ ├── WASI.h │ ├── WASIABI.LICENSE │ └── WASIABI.h │ ├── WASM │ └── WASM.h │ ├── WASTParse │ ├── TestScript.h │ └── WASTParse.h │ ├── WASTPrint │ └── WASTPrint.h │ ├── wavm-afl │ └── wavm-afl.h │ └── wavm-c │ ├── wasm-c-api.LICENSE │ └── wavm-c.h ├── LICENSE.txt ├── Lib ├── Emscripten │ ├── CMakeLists.txt │ ├── Emscripten.cpp │ ├── EmscriptenABI.h │ ├── EmscriptenPrivate.h │ └── EmscriptenThreads.cpp ├── IR │ ├── CMakeLists.txt │ ├── DisassemblyNames.cpp │ ├── FeatureSpec.cpp │ ├── FloatPrinting.cpp │ ├── Module.cpp │ ├── Operators.cpp │ ├── RandomModule.cpp │ ├── Types.cpp │ └── Validate.cpp ├── LLVMJIT │ ├── CMakeLists.txt │ ├── EmitContext.h │ ├── EmitConvert.cpp │ ├── EmitCore.cpp │ ├── EmitExceptions.cpp │ ├── EmitFunction.cpp │ ├── EmitFunctionContext.h │ ├── EmitMem.cpp │ ├── EmitModule.cpp │ ├── EmitModuleContext.h │ ├── EmitNumeric.cpp │ ├── EmitTable.cpp │ ├── EmitVar.cpp │ ├── EmitWorkarounds.h │ ├── LLVMCompile.cpp │ ├── LLVMJIT.cpp │ ├── LLVMJITPrivate.h │ ├── LLVMModule.cpp │ ├── Thunk.cpp │ └── Win64EH.cpp ├── Logging │ ├── CMakeLists.txt │ └── Logging.cpp ├── NFA │ ├── CMakeLists.txt │ └── NFA.cpp ├── ObjectCache │ ├── CMakeLists.txt │ └── ObjectCache.cpp ├── Platform │ ├── CMakeLists.txt │ ├── POSIX │ │ ├── ClockPOSIX.cpp │ │ ├── DiagnosticsPOSIX.cpp │ │ ├── ErrorPOSIX.cpp │ │ ├── EventPOSIX.cpp │ │ ├── FilePOSIX.cpp │ │ ├── MemoryPOSIX.cpp │ │ ├── MutexPOSIX.cpp │ │ ├── POSIX-AArch64.S │ │ ├── POSIX-X86_64.S │ │ ├── POSIXPrivate.h │ │ ├── RWMutexPOSIX.cpp │ │ ├── RandomPOSIX.cpp │ │ ├── SignalPOSIX.cpp │ │ └── ThreadPOSIX.cpp │ └── Windows │ │ ├── ClockWindows.cpp │ │ ├── DiagnosticsWindows.cpp │ │ ├── ErrorWindows.cpp │ │ ├── EventWindows.cpp │ │ ├── FileWindows.cpp │ │ ├── MemoryWindows.cpp │ │ ├── MutexWindows.cpp │ │ ├── RWMutexWindows.cpp │ │ ├── RandomWindows.cpp │ │ ├── SignalWindows.cpp │ │ ├── ThreadWindows.cpp │ │ ├── Win32.asm │ │ ├── Win64.asm │ │ └── WindowsPrivate.h ├── RegExp │ ├── CMakeLists.txt │ └── RegExp.cpp ├── Runtime │ ├── Atomics.cpp │ ├── CMakeLists.txt │ ├── Compartment.cpp │ ├── Context.cpp │ ├── Exception.cpp │ ├── Global.cpp │ ├── Instance.cpp │ ├── Intrinsics.cpp │ ├── Invoke.cpp │ ├── Linker.cpp │ ├── Memory.cpp │ ├── Module.cpp │ ├── ObjectGC.cpp │ ├── ResourceQuota.cpp │ ├── Runtime.cpp │ ├── RuntimePrivate.h │ ├── Table.cpp │ └── WAVMIntrinsics.cpp ├── ThreadTest │ ├── CMakeLists.txt │ └── ThreadTest.cpp ├── VFS │ ├── CMakeLists.txt │ ├── SandboxFS.cpp │ └── VFS.cpp ├── WASI │ ├── CMakeLists.txt │ ├── WASI.cpp │ ├── WASIArgsEnvs.cpp │ ├── WASIClocks.cpp │ ├── WASIDiagnostics.cpp │ ├── WASIFile.cpp │ └── WASIPrivate.h ├── WASM │ ├── CMakeLists.txt │ └── WASMSerialization.cpp ├── WASTParse │ ├── CMakeLists.txt │ ├── Lexer.cpp │ ├── Lexer.h │ ├── Parse.cpp │ ├── Parse.h │ ├── ParseFunction.cpp │ ├── ParseModule.cpp │ ├── ParseNumbers.cpp │ └── ParseTests.cpp ├── WASTPrint │ ├── CMakeLists.txt │ └── Print.cpp ├── wavm-afl │ ├── CMakeLists.txt │ └── wavm-afl.c └── wavm-c │ ├── CMakeLists.txt │ └── wavm-c.cpp ├── Programs └── wavm │ ├── CMakeLists.txt │ ├── Testing │ ├── Benchmark.cpp │ ├── DumpTestModules.cpp │ ├── RunTestScript.cpp │ ├── TestCAPI.c │ ├── TestHashMap.cpp │ ├── TestHashSet.cpp │ ├── TestI128.cpp │ ├── wavm-test.cpp │ └── wavm-test.h │ ├── wavm-assemble.cpp │ ├── wavm-compile.cpp │ ├── wavm-disassemble.cpp │ ├── wavm-run.cpp │ ├── wavm.cpp │ └── wavm.h ├── README.md ├── README.wavm.md ├── THIRD-PARTY.md ├── Test ├── CMakeLists.txt ├── WebAssembly │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── memory64 │ │ ├── CMakeLists.txt │ │ ├── address.wast │ │ ├── address64.wast │ │ ├── align.wast │ │ ├── align64.wast │ │ ├── binary-leb128.wast │ │ ├── binary.wast │ │ ├── block.wast │ │ ├── br.wast │ │ ├── br_if.wast │ │ ├── br_table.wast │ │ ├── bulk64._wast │ │ ├── call.wast │ │ ├── call_indirect.wast │ │ ├── comments.wast │ │ ├── const.wast │ │ ├── conversions.wast │ │ ├── custom.wast │ │ ├── data.wast │ │ ├── elem.wast │ │ ├── endianness.wast │ │ ├── endianness64.wast │ │ ├── exports.wast │ │ ├── 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_memory64.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 │ │ ├── load64.wast │ │ ├── local_get.wast │ │ ├── local_set.wast │ │ ├── local_tee.wast │ │ ├── loop.wast │ │ ├── memory.wast │ │ ├── memory64.wast │ │ ├── memory_grow.wast │ │ ├── memory_grow64.wast │ │ ├── memory_redundancy.wast │ │ ├── memory_redundancy64.wast │ │ ├── memory_size.wast │ │ ├── memory_trap.wast │ │ ├── memory_trap64.wast │ │ ├── names.wast │ │ ├── nop.wast │ │ ├── return.wast │ │ ├── select.wast │ │ ├── skip-stack-guard-page.wast │ │ ├── stack.wast │ │ ├── start.wast │ │ ├── store.wast │ │ ├── switch.wast │ │ ├── table.wast │ │ ├── token.wast │ │ ├── traps.wast │ │ ├── type.wast │ │ ├── unreachable.wast │ │ ├── unreached-invalid.wast │ │ ├── unwind.wast │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast │ ├── multi-memory │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ ├── 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-multi.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 │ │ ├── ref_func.wast │ │ ├── ref_is_null.wast │ │ ├── ref_null.wast │ │ ├── return.wast │ │ ├── select.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 │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast │ ├── spec │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ ├── 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 │ │ ├── ref_func.wast │ │ ├── ref_is_null.wast │ │ ├── ref_null.wast │ │ ├── return.wast │ │ ├── select.wast │ │ ├── simd │ │ │ ├── CMakeLists.txt │ │ │ ├── meta │ │ │ │ ├── README.md │ │ │ │ ├── gen_tests.py │ │ │ │ ├── simd.py │ │ │ │ ├── simd_arithmetic.py │ │ │ │ ├── simd_bitwise.py │ │ │ │ ├── simd_compare.py │ │ │ │ ├── simd_ext_mul.py │ │ │ │ ├── simd_extadd_pairwise.py │ │ │ │ ├── simd_f32x4.py │ │ │ │ ├── simd_f32x4_arith.py │ │ │ │ ├── simd_f32x4_cmp.py │ │ │ │ ├── simd_f32x4_pmin_pmax.py │ │ │ │ ├── simd_f32x4_rounding.py │ │ │ │ ├── simd_f64x2.py │ │ │ │ ├── simd_f64x2_arith.py │ │ │ │ ├── simd_f64x2_cmp.py │ │ │ │ ├── simd_f64x2_pmin_pmax.py │ │ │ │ ├── simd_f64x2_rounding.py │ │ │ │ ├── simd_float_op.py │ │ │ │ ├── simd_i16x8_arith.py │ │ │ │ ├── simd_i16x8_cmp.py │ │ │ │ ├── simd_i16x8_q15mulr_sat_s.py │ │ │ │ ├── simd_i32x4_arith.py │ │ │ │ ├── simd_i32x4_cmp.py │ │ │ │ ├── simd_i32x4_dot_i16x8.py │ │ │ │ ├── simd_i64x2_arith.py │ │ │ │ ├── simd_i64x2_cmp.py │ │ │ │ ├── simd_i8x16_arith.py │ │ │ │ ├── simd_i8x16_cmp.py │ │ │ │ ├── simd_int_arith2.py │ │ │ │ ├── simd_int_to_int_extend.py │ │ │ │ ├── simd_int_trunc_sat_float.py │ │ │ │ ├── simd_integer_op.py │ │ │ │ ├── simd_lane_value.py │ │ │ │ ├── simd_load_lane.py │ │ │ │ ├── simd_sat_arith.py │ │ │ │ ├── simd_store_lane.py │ │ │ │ └── test_assert.py │ │ │ ├── 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_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 │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast │ └── threads │ │ ├── CMakeLists.txt │ │ ├── address.wast │ │ ├── align.wast │ │ ├── atomic.wast │ │ ├── binary-leb128.wast │ │ ├── binary.wast │ │ ├── block.wast │ │ ├── br.wast │ │ ├── br_if.wast │ │ ├── br_table.wast │ │ ├── call.wast │ │ ├── call_indirect.wast │ │ ├── comments.wast │ │ ├── const.wast │ │ ├── conversions.wast │ │ ├── custom.wast │ │ ├── data.wast │ │ ├── elem.wast │ │ ├── endianness.wast │ │ ├── exports.wast │ │ ├── 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_grow.wast │ │ ├── memory_redundancy.wast │ │ ├── memory_size.wast │ │ ├── memory_trap.wast │ │ ├── names.wast │ │ ├── nop.wast │ │ ├── return.wast │ │ ├── select.wast │ │ ├── skip-stack-guard-page.wast │ │ ├── stack.wast │ │ ├── start.wast │ │ ├── store.wast │ │ ├── switch.wast │ │ ├── table.wast │ │ ├── thread.wast │ │ ├── token.wast │ │ ├── traps.wast │ │ ├── type.wast │ │ ├── unreachable.wast │ │ ├── unreached-invalid.wast │ │ ├── unwind.wast │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast ├── benchmark │ ├── CMakeLists.txt │ ├── bitmask.wast │ ├── interleaved_load_store_benchmark.wast │ ├── memory64.wast │ └── memory_copy_benchmark.wast ├── emscripten │ ├── CMakeLists.txt │ ├── args.cpp │ ├── args.wasm │ ├── clock.cpp │ ├── clock.wasm │ ├── compile-all.sh │ ├── compile.sh │ ├── exit.cpp │ ├── exit.wasm │ ├── stdout.cpp │ └── stdout.wasm ├── fuzz │ ├── CMakeLists.txt │ ├── FuzzTargetCommonMain.h │ ├── ModuleMatcher.h │ ├── configure-fuzzer-build.sh │ ├── fuzz-assemble.cpp │ ├── fuzz-compile-model.cpp │ ├── fuzz-disassemble.cpp │ ├── fuzz-instantiate.cpp │ ├── generate-seed-corpus.sh │ ├── reduce-corpus.sh │ ├── run-all-fuzzers-continuous.sh │ ├── run-all-fuzzers.sh │ ├── run-fuzz-assemble.sh │ ├── run-fuzz-compile-model.sh │ ├── run-fuzz-disassemble.sh │ ├── run-fuzz-instantiate.sh │ ├── run-fuzzer-and-reduce-corpus.sh │ ├── run-fuzzer.sh │ ├── translate-compile-model-corpus.cpp │ └── wastFuzzDictionary.txt ├── wasi │ ├── CMakeLists.txt │ ├── append.cpp │ ├── append.wasm │ ├── args.cpp │ ├── args.wasm │ ├── cat.cpp │ ├── cat.wasm │ ├── clock.cpp │ ├── clock.wasm │ ├── compile-all.sh │ ├── compile.sh │ ├── exit.cpp │ ├── exit.wasm │ ├── fd_filestat_set_size.cpp │ ├── fd_filestat_set_size.wasm │ ├── fd_filestat_set_times.cpp │ ├── fd_filestat_set_times.wasm │ ├── fd_renumber.cpp │ ├── fd_renumber.wasm │ ├── largefile.cpp │ ├── largefile.wasm │ ├── ls.cpp │ ├── ls.wasm │ ├── mkdir.cpp │ ├── mkdir.wasm │ ├── mmap.cpp │ ├── mmap.wasm │ ├── mv.cpp │ ├── mv.wasm │ ├── path_filestat_set_times.cpp │ ├── path_filestat_set_times.wasm │ ├── preadwrite.cpp │ ├── preadwrite.wasm │ ├── random.cpp │ ├── random.wasm │ ├── rm.cpp │ ├── rm.wasm │ ├── rmdir.cpp │ ├── rmdir.wasm │ ├── stat.cpp │ ├── stat.wasm │ ├── stdout.cpp │ ├── stdout.wasm │ ├── write.cpp │ └── write.wasm └── wavm │ ├── CMakeLists.txt │ ├── bulk_memory_ops.wast │ ├── exceptions.wast │ ├── misc.wast │ ├── multi_memory.wast │ ├── reference_types.wast │ ├── simd.wast │ ├── syntax_recursion.wast │ ├── threads.wast │ ├── trunc_sat.wast │ ├── wat_custom_section.wast │ └── wavm_atomic.wast ├── ThirdParty ├── BLAKE2 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.md │ ├── include │ │ └── blake2.h │ ├── neon │ │ ├── blake2-impl.h │ │ ├── blake2b-load-neon.h │ │ ├── blake2b-neon.c │ │ ├── blake2b-round.h │ │ ├── blake2b.c │ │ ├── blake2bp.c │ │ ├── blake2s-load-neon.h │ │ ├── blake2s-neon.c │ │ ├── blake2s-round.h │ │ ├── blake2s.c │ │ ├── blake2sp.c │ │ ├── blake2xb.c │ │ └── blake2xs.c │ ├── ref │ │ ├── blake2-impl.h │ │ ├── blake2b-ref.c │ │ ├── blake2bp-ref.c │ │ ├── blake2s-ref.c │ │ ├── blake2sp-ref.c │ │ ├── blake2xb-ref.c │ │ └── blake2xs-ref.c │ └── sse │ │ ├── blake2-config.h │ │ ├── blake2-impl.h │ │ ├── blake2b-load-sse2.h │ │ ├── blake2b-load-sse41.h │ │ ├── blake2b-round.h │ │ ├── blake2b.c │ │ ├── blake2bp.c │ │ ├── blake2s-load-sse2.h │ │ ├── blake2s-load-sse41.h │ │ ├── blake2s-load-xop.h │ │ ├── blake2s-round.h │ │ ├── blake2s.c │ │ ├── blake2sp.c │ │ ├── blake2xb.c │ │ └── blake2xs.c ├── liblmdb │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── Doxyfile │ ├── LICENSE │ ├── Makefile │ ├── intro.doc │ ├── lmdb.h │ ├── mdb.c │ ├── mdb_copy.1 │ ├── mdb_copy.c │ ├── mdb_drop.1 │ ├── mdb_drop.c │ ├── mdb_dump.1 │ ├── mdb_dump.c │ ├── mdb_load.1 │ ├── mdb_load.c │ ├── mdb_stat.1 │ ├── mdb_stat.c │ ├── midl.c │ ├── midl.h │ ├── mtest.c │ ├── mtest2.c │ ├── mtest3.c │ ├── mtest4.c │ ├── mtest5.c │ ├── mtest6.c │ ├── sample-bdb.txt │ ├── sample-mdb.txt │ └── tooltag └── libunwind │ ├── .arcconfig │ ├── .clang-format │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── cmake │ ├── Modules │ │ └── HandleCompilerRT.cmake │ └── config-ix.cmake │ ├── docs │ ├── BuildingLibunwind.rst │ ├── CMakeLists.txt │ ├── README.txt │ ├── conf.py │ └── index.rst │ ├── include │ ├── __libunwind_config.h │ ├── libunwind.h │ ├── mach-o │ │ └── compact_unwind_encoding.h │ └── unwind.h │ ├── src │ ├── AddressSpace.hpp │ ├── CMakeLists.txt │ ├── CompactUnwinder.hpp │ ├── DwarfInstructions.hpp │ ├── DwarfParser.hpp │ ├── EHHeaderParser.hpp │ ├── RWMutex.hpp │ ├── Registers.hpp │ ├── Unwind-EHABI.cpp │ ├── Unwind-EHABI.h │ ├── Unwind-sjlj.c │ ├── UnwindCursor.hpp │ ├── UnwindLevel1-gcc-ext.c │ ├── UnwindLevel1.c │ ├── UnwindRegistersRestore.S │ ├── UnwindRegistersSave.S │ ├── Unwind_AppleExtras.cpp │ ├── assembly.h │ ├── config.h │ ├── dwarf2.h │ ├── libunwind.cpp │ └── libunwind_ext.h │ └── test │ ├── CMakeLists.txt │ ├── alignment.pass.cpp │ ├── libunwind │ ├── __init__.py │ └── test │ │ ├── __init__.py │ │ └── config.py │ ├── libunwind_01.pass.cpp │ ├── libunwind_02.pass.cpp │ ├── lit.cfg │ ├── lit.site.cfg.in │ └── unw_getcontext.pass.cpp ├── VERSION ├── WAFL@ROOTS21.pdf ├── WebAssembly.tmLanguage ├── azure-pipelines.yml ├── roots21-3.pdf ├── run-clang-format.sh ├── standalone.c ├── vs-chromium-project.txt ├── wafl.png └── wasi-blocklist.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.wast linguist-vendored=true -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode 3 | *.so 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build/azure-pipelines/posix-build-job-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/azure-pipelines/posix-build-job-template.yml -------------------------------------------------------------------------------- /Build/azure-pipelines/publish-step-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/azure-pipelines/publish-step-template.yml -------------------------------------------------------------------------------- /Build/azure-pipelines/release-job-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/azure-pipelines/release-job-template.yml -------------------------------------------------------------------------------- /Build/azure-pipelines/test-step-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/azure-pipelines/test-step-template.yml -------------------------------------------------------------------------------- /Build/notify-discord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/notify-discord.sh -------------------------------------------------------------------------------- /Build/nsis-3.04-strlen_8192.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/nsis-3.04-strlen_8192.zip -------------------------------------------------------------------------------- /Build/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Build/travis-build.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doc/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/Building.md -------------------------------------------------------------------------------- /Doc/CodeOrganization.md: -------------------------------------------------------------------------------- 1 | # Exploring the WAVM source 2 | 3 | TODO -------------------------------------------------------------------------------- /Doc/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/GettingStarted.md -------------------------------------------------------------------------------- /Doc/PortabilityMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/PortabilityMatrix.md -------------------------------------------------------------------------------- /Doc/SignalsAndExceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/SignalsAndExceptions.md -------------------------------------------------------------------------------- /Doc/WAVMObjectReachability.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/WAVMObjectReachability.dot -------------------------------------------------------------------------------- /Doc/WAVMObjectReachability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Doc/WAVMObjectReachability.svg -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Dockerfile -------------------------------------------------------------------------------- /Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/blake2b-memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/blake2b-memory64.wast -------------------------------------------------------------------------------- /Examples/blake2b.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/blake2b.wast -------------------------------------------------------------------------------- /Examples/echo.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/echo.wast -------------------------------------------------------------------------------- /Examples/embedder/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/c/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/embedder/c/embedder-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/c/embedder-example.c -------------------------------------------------------------------------------- /Examples/embedder/cpp-wasi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/cpp-wasi/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/embedder/cpp-wasi/embedder-example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/cpp-wasi/embedder-example.cpp -------------------------------------------------------------------------------- /Examples/embedder/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/embedder/cpp/embedder-example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/embedder/cpp/embedder-example.cpp -------------------------------------------------------------------------------- /Examples/helloworld.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/helloworld.wast -------------------------------------------------------------------------------- /Examples/tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/tee.wast -------------------------------------------------------------------------------- /Examples/trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/trap.wast -------------------------------------------------------------------------------- /Examples/zlib.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Examples/zlib.wasm -------------------------------------------------------------------------------- /Include/WAVM/Emscripten/Emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Emscripten/Emscripten.h -------------------------------------------------------------------------------- /Include/WAVM/IR/FeatureSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/FeatureSpec.h -------------------------------------------------------------------------------- /Include/WAVM/IR/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/IR.h -------------------------------------------------------------------------------- /Include/WAVM/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Module.h -------------------------------------------------------------------------------- /Include/WAVM/IR/OperatorPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/OperatorPrinter.h -------------------------------------------------------------------------------- /Include/WAVM/IR/OperatorSignatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/OperatorSignatures.h -------------------------------------------------------------------------------- /Include/WAVM/IR/OperatorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/OperatorTable.h -------------------------------------------------------------------------------- /Include/WAVM/IR/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Operators.h -------------------------------------------------------------------------------- /Include/WAVM/IR/RandomModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/RandomModule.h -------------------------------------------------------------------------------- /Include/WAVM/IR/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Types.h -------------------------------------------------------------------------------- /Include/WAVM/IR/Types.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Types.natvis -------------------------------------------------------------------------------- /Include/WAVM/IR/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Validate.h -------------------------------------------------------------------------------- /Include/WAVM/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/IR/Value.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Assert.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/BasicTypes.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/CLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/CLI.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/CMakeLists.txt -------------------------------------------------------------------------------- /Include/WAVM/Inline/Config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Config.h.in -------------------------------------------------------------------------------- /Include/WAVM/Inline/DenseStaticIntSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/DenseStaticIntSet.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Errors.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/FloatComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/FloatComponents.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Hash.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/HashMap.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/HashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/HashSet.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/HashTable.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/I128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/I128.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashMap.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashMap.natvis -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashMapImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashMapImpl.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashSet.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashSet.natvis -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashSetImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashSetImpl.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashTable.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashTable.natvis -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/HashTableImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/HashTableImpl.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/I128Impl.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/I128Impl.LICENSE -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/I128Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/I128Impl.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/OptionalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/OptionalStorage.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Impl/OptionalStorage.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Impl/OptionalStorage.natvis -------------------------------------------------------------------------------- /Include/WAVM/Inline/IndexMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/IndexMap.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/InlineArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/InlineArray.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/IntrusiveSharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/IntrusiveSharedPtr.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/IsNameChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/IsNameChar.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/LEB128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/LEB128.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/RandomStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/RandomStream.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Serialization.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Time.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Timing.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Unicode.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/Version.h.in -------------------------------------------------------------------------------- /Include/WAVM/Inline/xxhash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/xxhash/CMakeLists.txt -------------------------------------------------------------------------------- /Include/WAVM/Inline/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/xxhash/LICENSE -------------------------------------------------------------------------------- /Include/WAVM/Inline/xxhash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/xxhash/xxh3.h -------------------------------------------------------------------------------- /Include/WAVM/Inline/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/xxhash/xxhash.c -------------------------------------------------------------------------------- /Include/WAVM/Inline/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Inline/xxhash/xxhash.h -------------------------------------------------------------------------------- /Include/WAVM/LLVMJIT/LLVMJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/LLVMJIT/LLVMJIT.h -------------------------------------------------------------------------------- /Include/WAVM/Logging/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Logging/Logging.h -------------------------------------------------------------------------------- /Include/WAVM/NFA/NFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/NFA/NFA.h -------------------------------------------------------------------------------- /Include/WAVM/ObjectCache/ObjectCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/ObjectCache/ObjectCache.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Clock.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Defines.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Diagnostics.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Error.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Event.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/File.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Intrinsic.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Memory.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Mutex.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/RWMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/RWMutex.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Random.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Signal.h -------------------------------------------------------------------------------- /Include/WAVM/Platform/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Platform/Thread.h -------------------------------------------------------------------------------- /Include/WAVM/RegExp/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/RegExp/RegExp.h -------------------------------------------------------------------------------- /Include/WAVM/Runtime/Intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Runtime/Intrinsics.h -------------------------------------------------------------------------------- /Include/WAVM/Runtime/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Runtime/Linker.h -------------------------------------------------------------------------------- /Include/WAVM/Runtime/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/Runtime/Runtime.h -------------------------------------------------------------------------------- /Include/WAVM/RuntimeABI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/RuntimeABI/CMakeLists.txt -------------------------------------------------------------------------------- /Include/WAVM/RuntimeABI/RuntimeABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/RuntimeABI/RuntimeABI.h -------------------------------------------------------------------------------- /Include/WAVM/ThreadTest/ThreadTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/ThreadTest/ThreadTest.h -------------------------------------------------------------------------------- /Include/WAVM/VFS/SandboxFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/VFS/SandboxFS.h -------------------------------------------------------------------------------- /Include/WAVM/VFS/VFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/VFS/VFS.h -------------------------------------------------------------------------------- /Include/WAVM/WASI/WASI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASI/WASI.h -------------------------------------------------------------------------------- /Include/WAVM/WASI/WASIABI.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASI/WASIABI.LICENSE -------------------------------------------------------------------------------- /Include/WAVM/WASI/WASIABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASI/WASIABI.h -------------------------------------------------------------------------------- /Include/WAVM/WASM/WASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASM/WASM.h -------------------------------------------------------------------------------- /Include/WAVM/WASTParse/TestScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASTParse/TestScript.h -------------------------------------------------------------------------------- /Include/WAVM/WASTParse/WASTParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASTParse/WASTParse.h -------------------------------------------------------------------------------- /Include/WAVM/WASTPrint/WASTPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/WASTPrint/WASTPrint.h -------------------------------------------------------------------------------- /Include/WAVM/wavm-afl/wavm-afl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/wavm-afl/wavm-afl.h -------------------------------------------------------------------------------- /Include/WAVM/wavm-c/wasm-c-api.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/wavm-c/wasm-c-api.LICENSE -------------------------------------------------------------------------------- /Include/WAVM/wavm-c/wavm-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Include/WAVM/wavm-c/wavm-c.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lib/Emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/Emscripten/Emscripten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Emscripten/Emscripten.cpp -------------------------------------------------------------------------------- /Lib/Emscripten/EmscriptenABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Emscripten/EmscriptenABI.h -------------------------------------------------------------------------------- /Lib/Emscripten/EmscriptenPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Emscripten/EmscriptenPrivate.h -------------------------------------------------------------------------------- /Lib/Emscripten/EmscriptenThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Emscripten/EmscriptenThreads.cpp -------------------------------------------------------------------------------- /Lib/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/IR/DisassemblyNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/DisassemblyNames.cpp -------------------------------------------------------------------------------- /Lib/IR/FeatureSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/FeatureSpec.cpp -------------------------------------------------------------------------------- /Lib/IR/FloatPrinting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/FloatPrinting.cpp -------------------------------------------------------------------------------- /Lib/IR/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/Module.cpp -------------------------------------------------------------------------------- /Lib/IR/Operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/Operators.cpp -------------------------------------------------------------------------------- /Lib/IR/RandomModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/RandomModule.cpp -------------------------------------------------------------------------------- /Lib/IR/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/Types.cpp -------------------------------------------------------------------------------- /Lib/IR/Validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/IR/Validate.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitContext.h -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitConvert.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitCore.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitExceptions.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitFunction.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitFunctionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitFunctionContext.h -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitMem.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitModule.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitModuleContext.h -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitNumeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitNumeric.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitTable.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitVar.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/EmitWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/EmitWorkarounds.h -------------------------------------------------------------------------------- /Lib/LLVMJIT/LLVMCompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/LLVMCompile.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/LLVMJIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/LLVMJIT.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/LLVMJITPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/LLVMJITPrivate.h -------------------------------------------------------------------------------- /Lib/LLVMJIT/LLVMModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/LLVMModule.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/Thunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/Thunk.cpp -------------------------------------------------------------------------------- /Lib/LLVMJIT/Win64EH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/LLVMJIT/Win64EH.cpp -------------------------------------------------------------------------------- /Lib/Logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Logging/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/Logging/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Logging/Logging.cpp -------------------------------------------------------------------------------- /Lib/NFA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/NFA/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/NFA/NFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/NFA/NFA.cpp -------------------------------------------------------------------------------- /Lib/ObjectCache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/ObjectCache/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/ObjectCache/ObjectCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/ObjectCache/ObjectCache.cpp -------------------------------------------------------------------------------- /Lib/Platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/Platform/POSIX/ClockPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/ClockPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/DiagnosticsPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/DiagnosticsPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/ErrorPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/ErrorPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/EventPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/EventPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/FilePOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/FilePOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/MemoryPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/MemoryPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/MutexPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/MutexPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/POSIX-AArch64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/POSIX-AArch64.S -------------------------------------------------------------------------------- /Lib/Platform/POSIX/POSIX-X86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/POSIX-X86_64.S -------------------------------------------------------------------------------- /Lib/Platform/POSIX/POSIXPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/POSIXPrivate.h -------------------------------------------------------------------------------- /Lib/Platform/POSIX/RWMutexPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/RWMutexPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/RandomPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/RandomPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/SignalPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/SignalPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/POSIX/ThreadPOSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/POSIX/ThreadPOSIX.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/ClockWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/ClockWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/DiagnosticsWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/DiagnosticsWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/ErrorWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/ErrorWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/EventWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/EventWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/FileWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/FileWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/MemoryWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/MemoryWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/MutexWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/MutexWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/RWMutexWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/RWMutexWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/RandomWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/RandomWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/SignalWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/SignalWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/ThreadWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/ThreadWindows.cpp -------------------------------------------------------------------------------- /Lib/Platform/Windows/Win32.asm: -------------------------------------------------------------------------------- 1 | .model flat 2 | .code 3 | 4 | End 5 | -------------------------------------------------------------------------------- /Lib/Platform/Windows/Win64.asm: -------------------------------------------------------------------------------- 1 | .code 2 | 3 | End 4 | -------------------------------------------------------------------------------- /Lib/Platform/Windows/WindowsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Platform/Windows/WindowsPrivate.h -------------------------------------------------------------------------------- /Lib/RegExp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/RegExp/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/RegExp/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/RegExp/RegExp.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Atomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Atomics.cpp -------------------------------------------------------------------------------- /Lib/Runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/Runtime/Compartment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Compartment.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Context.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Exception.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Global.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Instance.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Intrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Intrinsics.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Invoke.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Linker.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Memory.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Module.cpp -------------------------------------------------------------------------------- /Lib/Runtime/ObjectGC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/ObjectGC.cpp -------------------------------------------------------------------------------- /Lib/Runtime/ResourceQuota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/ResourceQuota.cpp -------------------------------------------------------------------------------- /Lib/Runtime/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Runtime.cpp -------------------------------------------------------------------------------- /Lib/Runtime/RuntimePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/RuntimePrivate.h -------------------------------------------------------------------------------- /Lib/Runtime/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/Table.cpp -------------------------------------------------------------------------------- /Lib/Runtime/WAVMIntrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/Runtime/WAVMIntrinsics.cpp -------------------------------------------------------------------------------- /Lib/ThreadTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/ThreadTest/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/ThreadTest/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/ThreadTest/ThreadTest.cpp -------------------------------------------------------------------------------- /Lib/VFS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/VFS/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/VFS/SandboxFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/VFS/SandboxFS.cpp -------------------------------------------------------------------------------- /Lib/VFS/VFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/VFS/VFS.cpp -------------------------------------------------------------------------------- /Lib/WASI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/WASI/WASI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASI.cpp -------------------------------------------------------------------------------- /Lib/WASI/WASIArgsEnvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASIArgsEnvs.cpp -------------------------------------------------------------------------------- /Lib/WASI/WASIClocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASIClocks.cpp -------------------------------------------------------------------------------- /Lib/WASI/WASIDiagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASIDiagnostics.cpp -------------------------------------------------------------------------------- /Lib/WASI/WASIFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASIFile.cpp -------------------------------------------------------------------------------- /Lib/WASI/WASIPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASI/WASIPrivate.h -------------------------------------------------------------------------------- /Lib/WASM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASM/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/WASM/WASMSerialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASM/WASMSerialization.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/WASTParse/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/Lexer.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/Lexer.h -------------------------------------------------------------------------------- /Lib/WASTParse/Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/Parse.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/Parse.h -------------------------------------------------------------------------------- /Lib/WASTParse/ParseFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/ParseFunction.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/ParseModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/ParseModule.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/ParseNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/ParseNumbers.cpp -------------------------------------------------------------------------------- /Lib/WASTParse/ParseTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTParse/ParseTests.cpp -------------------------------------------------------------------------------- /Lib/WASTPrint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTPrint/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/WASTPrint/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/WASTPrint/Print.cpp -------------------------------------------------------------------------------- /Lib/wavm-afl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/wavm-afl/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/wavm-afl/wavm-afl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/wavm-afl/wavm-afl.c -------------------------------------------------------------------------------- /Lib/wavm-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/wavm-c/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/wavm-c/wavm-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Lib/wavm-c/wavm-c.cpp -------------------------------------------------------------------------------- /Programs/wavm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/CMakeLists.txt -------------------------------------------------------------------------------- /Programs/wavm/Testing/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/Benchmark.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/DumpTestModules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/DumpTestModules.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/RunTestScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/RunTestScript.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/TestCAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/TestCAPI.c -------------------------------------------------------------------------------- /Programs/wavm/Testing/TestHashMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/TestHashMap.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/TestHashSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/TestHashSet.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/TestI128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/TestI128.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/wavm-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/wavm-test.cpp -------------------------------------------------------------------------------- /Programs/wavm/Testing/wavm-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/Testing/wavm-test.h -------------------------------------------------------------------------------- /Programs/wavm/wavm-assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm-assemble.cpp -------------------------------------------------------------------------------- /Programs/wavm/wavm-compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm-compile.cpp -------------------------------------------------------------------------------- /Programs/wavm/wavm-disassemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm-disassemble.cpp -------------------------------------------------------------------------------- /Programs/wavm/wavm-run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm-run.cpp -------------------------------------------------------------------------------- /Programs/wavm/wavm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm.cpp -------------------------------------------------------------------------------- /Programs/wavm/wavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Programs/wavm/wavm.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/README.md -------------------------------------------------------------------------------- /README.wavm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/README.wavm.md -------------------------------------------------------------------------------- /THIRD-PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/THIRD-PARTY.md -------------------------------------------------------------------------------- /Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/LICENSE.txt -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/address.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/address64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/address64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/align.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/align64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/align64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/binary-leb128.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/binary.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/block.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/br.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/br_if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/br_table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/bulk64._wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/bulk64._wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/call.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/call_indirect.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/comments.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/const.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/conversions.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/custom.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/data.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/elem.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/endianness.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/endianness64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/endianness64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/exports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f32_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f32_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f64_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/f64_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/fac.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/float_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/float_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/float_memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/float_memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/float_memory64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/float_misc.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/forward.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/func_ptrs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/global.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/i32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/i64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/imports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/inline-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/int_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/int_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/labels.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/left-to-right.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/linking.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/load.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/load64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/load64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/local_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/local_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/local_tee.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/loop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_grow64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_grow64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_redundancy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_redundancy64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_redundancy64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_trap.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/memory_trap64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/memory_trap64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/names.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/nop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/return.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/select.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/stack.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/start.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/store.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/switch.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/token.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/traps.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/type.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/unreachable.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/unreached-invalid.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/unwind.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/utf8-import-field.wast -------------------------------------------------------------------------------- /Test/WebAssembly/memory64/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/memory64/utf8-import-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/address.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/align.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/binary-leb128.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/binary.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/block.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/br.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/br_if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/br_table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/bulk.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/call.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/call_indirect.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/comments.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/const.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/conversions.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/custom.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/data.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/elem.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/endianness.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/exports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f32_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f32_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f64_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/f64_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/fac.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/float_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/float_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/float_memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/float_misc.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/forward.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/func_ptrs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/global.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/i32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/i64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/imports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/inline-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/int_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/int_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/labels.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/left-to-right.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/linking.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/load.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/local_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/local_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/local_tee.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/loop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory-multi.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory-multi.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_copy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_fill.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_init.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/memory_trap.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/names.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/nop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/ref_func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/ref_is_null.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/ref_null.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/return.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/select.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/stack.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/start.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/store.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/switch.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table-sub.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_copy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_fill.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_init.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/table_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/token.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/traps.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/type.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/unreachable.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/unreached-valid.wast -------------------------------------------------------------------------------- /Test/WebAssembly/multi-memory/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/multi-memory/unwind.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/spec/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/address.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/align.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/binary-leb128.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/binary.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/block.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/br.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/br_if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/br_table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/bulk.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/call.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/call_indirect.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/comments.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/const.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/conversions.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/custom.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/data.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/elem.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/endianness.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/exports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f32_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f32_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f64_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/f64_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/fac.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/float_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/float_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/float_memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/float_misc.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/forward.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/func_ptrs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/global.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/i32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/i64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/imports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/inline-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/int_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/int_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/labels.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/left-to-right.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/linking.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/load.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/local_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/local_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/local_tee.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/loop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_copy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_fill.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_init.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_redundancy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/memory_trap.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/names.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/nop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/ref_func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/ref_is_null.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/ref_null.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/return.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/select.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/README.md -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/gen_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/gen_tests.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_arithmetic.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_bitwise.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_compare.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_ext_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_ext_mul.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_f32x4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_f32x4.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_f32x4_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_f32x4_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_f64x2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_f64x2.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_f64x2_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_f64x2_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_float_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_float_op.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_i16x8_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_i16x8_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_i32x4_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_i32x4_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_i64x2_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_i64x2_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_i8x16_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_i8x16_cmp.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_int_arith2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_int_arith2.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_integer_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_integer_op.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_lane_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_lane_value.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_load_lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_load_lane.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_sat_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_sat_arith.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/simd_store_lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/simd_store_lane.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/meta/test_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/meta/test_assert.py -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_address.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_align.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_bit_shift.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_bit_shift.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_boolean.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_boolean.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_const.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_conversions.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f32x4.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f32x4_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f32x4_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f64x2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f64x2.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f64x2_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_f64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_f64x2_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i16x8_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i16x8_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i16x8_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i16x8_arith2.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i16x8_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i16x8_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i32x4_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i32x4_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i32x4_arith2.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i32x4_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i64x2_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i64x2_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i64x2_arith2.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i64x2_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i8x16_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i8x16_arith.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i8x16_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i8x16_arith2.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_i8x16_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_i8x16_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load16_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load16_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load32_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load32_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load64_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load64_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load8_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load_extend.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load_extend.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load_splat.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_load_zero.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_load_zero.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_splat.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_store.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/simd/simd_store8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/simd/simd_store8_lane.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/stack.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/start.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/store.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/switch.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table-sub.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_copy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_fill.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_init.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/table_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/token.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/traps.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/type.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/unreachable.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/unreached-invalid.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/unreached-valid.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/unwind.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/utf8-import-field.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/utf8-import-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/spec/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/spec/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/CMakeLists.txt -------------------------------------------------------------------------------- /Test/WebAssembly/threads/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/address.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/align.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/atomic.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/binary-leb128.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/binary.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/block.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/br.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/br_if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/br_table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/call.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/call_indirect.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/comments.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/const.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/conversions.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/custom.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/data.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/elem.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/endianness.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/exports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f32_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f32_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f64_bitwise.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/f64_cmp.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/fac.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/float_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/float_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/float_memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/float_misc.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/forward.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/func.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/func_ptrs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/global.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/i32.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/i64.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/if.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/imports.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/inline-module.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/int_exprs.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/int_literals.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/labels.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/left-to-right.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/linking.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/load.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/local_get.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/local_set.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/local_tee.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/loop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/memory.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/memory_grow.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/memory_redundancy.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/memory_size.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/memory_trap.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/names.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/nop.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/return.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/select.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/stack.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/start.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/store.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/switch.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/table.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/thread.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/thread.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/token.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/traps.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/type.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/unreachable.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/unreached-invalid.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/unwind.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/utf8-import-field.wast -------------------------------------------------------------------------------- /Test/WebAssembly/threads/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/WebAssembly/threads/utf8-import-module.wast -------------------------------------------------------------------------------- /Test/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /Test/benchmark/bitmask.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/benchmark/bitmask.wast -------------------------------------------------------------------------------- /Test/benchmark/memory64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/benchmark/memory64.wast -------------------------------------------------------------------------------- /Test/benchmark/memory_copy_benchmark.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/benchmark/memory_copy_benchmark.wast -------------------------------------------------------------------------------- /Test/emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /Test/emscripten/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/args.cpp -------------------------------------------------------------------------------- /Test/emscripten/args.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/args.wasm -------------------------------------------------------------------------------- /Test/emscripten/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/clock.cpp -------------------------------------------------------------------------------- /Test/emscripten/clock.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/clock.wasm -------------------------------------------------------------------------------- /Test/emscripten/compile-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/compile-all.sh -------------------------------------------------------------------------------- /Test/emscripten/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/compile.sh -------------------------------------------------------------------------------- /Test/emscripten/exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/exit.cpp -------------------------------------------------------------------------------- /Test/emscripten/exit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/exit.wasm -------------------------------------------------------------------------------- /Test/emscripten/stdout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/stdout.cpp -------------------------------------------------------------------------------- /Test/emscripten/stdout.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/emscripten/stdout.wasm -------------------------------------------------------------------------------- /Test/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /Test/fuzz/FuzzTargetCommonMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/FuzzTargetCommonMain.h -------------------------------------------------------------------------------- /Test/fuzz/ModuleMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/ModuleMatcher.h -------------------------------------------------------------------------------- /Test/fuzz/configure-fuzzer-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/configure-fuzzer-build.sh -------------------------------------------------------------------------------- /Test/fuzz/fuzz-assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/fuzz-assemble.cpp -------------------------------------------------------------------------------- /Test/fuzz/fuzz-compile-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/fuzz-compile-model.cpp -------------------------------------------------------------------------------- /Test/fuzz/fuzz-disassemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/fuzz-disassemble.cpp -------------------------------------------------------------------------------- /Test/fuzz/fuzz-instantiate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/fuzz-instantiate.cpp -------------------------------------------------------------------------------- /Test/fuzz/generate-seed-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/generate-seed-corpus.sh -------------------------------------------------------------------------------- /Test/fuzz/reduce-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/reduce-corpus.sh -------------------------------------------------------------------------------- /Test/fuzz/run-all-fuzzers-continuous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-all-fuzzers-continuous.sh -------------------------------------------------------------------------------- /Test/fuzz/run-all-fuzzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-all-fuzzers.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzz-assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzz-assemble.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzz-compile-model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzz-compile-model.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzz-disassemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzz-disassemble.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzz-instantiate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzz-instantiate.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzzer-and-reduce-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzzer-and-reduce-corpus.sh -------------------------------------------------------------------------------- /Test/fuzz/run-fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/run-fuzzer.sh -------------------------------------------------------------------------------- /Test/fuzz/translate-compile-model-corpus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/translate-compile-model-corpus.cpp -------------------------------------------------------------------------------- /Test/fuzz/wastFuzzDictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/fuzz/wastFuzzDictionary.txt -------------------------------------------------------------------------------- /Test/wasi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/CMakeLists.txt -------------------------------------------------------------------------------- /Test/wasi/append.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/append.cpp -------------------------------------------------------------------------------- /Test/wasi/append.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/append.wasm -------------------------------------------------------------------------------- /Test/wasi/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/args.cpp -------------------------------------------------------------------------------- /Test/wasi/args.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/args.wasm -------------------------------------------------------------------------------- /Test/wasi/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/cat.cpp -------------------------------------------------------------------------------- /Test/wasi/cat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/cat.wasm -------------------------------------------------------------------------------- /Test/wasi/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/clock.cpp -------------------------------------------------------------------------------- /Test/wasi/clock.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/clock.wasm -------------------------------------------------------------------------------- /Test/wasi/compile-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/compile-all.sh -------------------------------------------------------------------------------- /Test/wasi/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/compile.sh -------------------------------------------------------------------------------- /Test/wasi/exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/exit.cpp -------------------------------------------------------------------------------- /Test/wasi/exit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/exit.wasm -------------------------------------------------------------------------------- /Test/wasi/fd_filestat_set_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_filestat_set_size.cpp -------------------------------------------------------------------------------- /Test/wasi/fd_filestat_set_size.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_filestat_set_size.wasm -------------------------------------------------------------------------------- /Test/wasi/fd_filestat_set_times.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_filestat_set_times.cpp -------------------------------------------------------------------------------- /Test/wasi/fd_filestat_set_times.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_filestat_set_times.wasm -------------------------------------------------------------------------------- /Test/wasi/fd_renumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_renumber.cpp -------------------------------------------------------------------------------- /Test/wasi/fd_renumber.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/fd_renumber.wasm -------------------------------------------------------------------------------- /Test/wasi/largefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/largefile.cpp -------------------------------------------------------------------------------- /Test/wasi/largefile.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/largefile.wasm -------------------------------------------------------------------------------- /Test/wasi/ls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/ls.cpp -------------------------------------------------------------------------------- /Test/wasi/ls.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/ls.wasm -------------------------------------------------------------------------------- /Test/wasi/mkdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mkdir.cpp -------------------------------------------------------------------------------- /Test/wasi/mkdir.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mkdir.wasm -------------------------------------------------------------------------------- /Test/wasi/mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mmap.cpp -------------------------------------------------------------------------------- /Test/wasi/mmap.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mmap.wasm -------------------------------------------------------------------------------- /Test/wasi/mv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mv.cpp -------------------------------------------------------------------------------- /Test/wasi/mv.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/mv.wasm -------------------------------------------------------------------------------- /Test/wasi/path_filestat_set_times.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/path_filestat_set_times.cpp -------------------------------------------------------------------------------- /Test/wasi/path_filestat_set_times.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/path_filestat_set_times.wasm -------------------------------------------------------------------------------- /Test/wasi/preadwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/preadwrite.cpp -------------------------------------------------------------------------------- /Test/wasi/preadwrite.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/preadwrite.wasm -------------------------------------------------------------------------------- /Test/wasi/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/random.cpp -------------------------------------------------------------------------------- /Test/wasi/random.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/random.wasm -------------------------------------------------------------------------------- /Test/wasi/rm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/rm.cpp -------------------------------------------------------------------------------- /Test/wasi/rm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/rm.wasm -------------------------------------------------------------------------------- /Test/wasi/rmdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/rmdir.cpp -------------------------------------------------------------------------------- /Test/wasi/rmdir.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/rmdir.wasm -------------------------------------------------------------------------------- /Test/wasi/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/stat.cpp -------------------------------------------------------------------------------- /Test/wasi/stat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/stat.wasm -------------------------------------------------------------------------------- /Test/wasi/stdout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/stdout.cpp -------------------------------------------------------------------------------- /Test/wasi/stdout.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/stdout.wasm -------------------------------------------------------------------------------- /Test/wasi/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/write.cpp -------------------------------------------------------------------------------- /Test/wasi/write.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wasi/write.wasm -------------------------------------------------------------------------------- /Test/wavm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/CMakeLists.txt -------------------------------------------------------------------------------- /Test/wavm/bulk_memory_ops.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/bulk_memory_ops.wast -------------------------------------------------------------------------------- /Test/wavm/exceptions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/exceptions.wast -------------------------------------------------------------------------------- /Test/wavm/misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/misc.wast -------------------------------------------------------------------------------- /Test/wavm/multi_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/multi_memory.wast -------------------------------------------------------------------------------- /Test/wavm/reference_types.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/reference_types.wast -------------------------------------------------------------------------------- /Test/wavm/simd.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/simd.wast -------------------------------------------------------------------------------- /Test/wavm/syntax_recursion.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/syntax_recursion.wast -------------------------------------------------------------------------------- /Test/wavm/threads.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/threads.wast -------------------------------------------------------------------------------- /Test/wavm/trunc_sat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/trunc_sat.wast -------------------------------------------------------------------------------- /Test/wavm/wat_custom_section.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/wat_custom_section.wast -------------------------------------------------------------------------------- /Test/wavm/wavm_atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/Test/wavm/wavm_atomic.wast -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/.gitignore -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/COPYING -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/README.md -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/include/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/include/blake2.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2-impl.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2b-load-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2b-load-neon.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2b-neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2b-neon.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2b-round.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2b.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2bp.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2s-load-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2s-load-neon.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2s-neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2s-neon.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2s-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2s-round.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2s.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2sp.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2xb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2xb.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/neon/blake2xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/neon/blake2xs.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2-impl.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2b-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2bp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2bp-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2s-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2sp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2sp-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2xb-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2xb-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/ref/blake2xs-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/ref/blake2xs-ref.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2-config.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2-impl.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2b-load-sse2.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2b-load-sse41.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2b-round.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2b.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2bp.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2s-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2s-load-sse2.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2s-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2s-load-sse41.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2s-load-xop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2s-load-xop.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2s-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2s-round.h -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2s.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2sp.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2xb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2xb.c -------------------------------------------------------------------------------- /ThirdParty/BLAKE2/sse/blake2xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/BLAKE2/sse/blake2xs.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/.gitignore -------------------------------------------------------------------------------- /ThirdParty/liblmdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/liblmdb/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/COPYRIGHT -------------------------------------------------------------------------------- /ThirdParty/liblmdb/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/Doxyfile -------------------------------------------------------------------------------- /ThirdParty/liblmdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/LICENSE -------------------------------------------------------------------------------- /ThirdParty/liblmdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/Makefile -------------------------------------------------------------------------------- /ThirdParty/liblmdb/intro.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/intro.doc -------------------------------------------------------------------------------- /ThirdParty/liblmdb/lmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/lmdb.h -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_copy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_copy.1 -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_copy.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_drop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_drop.1 -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_drop.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_dump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_dump.1 -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_dump.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_load.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_load.1 -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_load.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_stat.1 -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mdb_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mdb_stat.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/midl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/midl.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/midl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/midl.h -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest2.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest3.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest4.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest5.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/mtest6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/mtest6.c -------------------------------------------------------------------------------- /ThirdParty/liblmdb/sample-bdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/sample-bdb.txt -------------------------------------------------------------------------------- /ThirdParty/liblmdb/sample-mdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/sample-mdb.txt -------------------------------------------------------------------------------- /ThirdParty/liblmdb/tooltag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/liblmdb/tooltag -------------------------------------------------------------------------------- /ThirdParty/libunwind/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/.arcconfig -------------------------------------------------------------------------------- /ThirdParty/libunwind/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | -------------------------------------------------------------------------------- /ThirdParty/libunwind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/libunwind/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/LICENSE.TXT -------------------------------------------------------------------------------- /ThirdParty/libunwind/cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/cmake/config-ix.cmake -------------------------------------------------------------------------------- /ThirdParty/libunwind/docs/BuildingLibunwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/docs/BuildingLibunwind.rst -------------------------------------------------------------------------------- /ThirdParty/libunwind/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/docs/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/libunwind/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/docs/README.txt -------------------------------------------------------------------------------- /ThirdParty/libunwind/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/docs/conf.py -------------------------------------------------------------------------------- /ThirdParty/libunwind/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/docs/index.rst -------------------------------------------------------------------------------- /ThirdParty/libunwind/include/libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/include/libunwind.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/include/unwind.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/AddressSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/AddressSpace.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/CompactUnwinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/CompactUnwinder.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/DwarfInstructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/DwarfInstructions.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/DwarfParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/DwarfParser.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/EHHeaderParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/EHHeaderParser.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/RWMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/RWMutex.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/Registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/Registers.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/Unwind-EHABI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/Unwind-EHABI.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/Unwind-EHABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/Unwind-EHABI.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/Unwind-sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/Unwind-sjlj.c -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/UnwindCursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/UnwindCursor.hpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/UnwindLevel1-gcc-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/UnwindLevel1-gcc-ext.c -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/UnwindLevel1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/UnwindLevel1.c -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/UnwindRegistersSave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/UnwindRegistersSave.S -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/Unwind_AppleExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/Unwind_AppleExtras.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/assembly.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/config.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/dwarf2.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/libunwind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/libunwind.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/src/libunwind_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/src/libunwind_ext.h -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/alignment.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/alignment.pass.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/libunwind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/libunwind/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/libunwind_01.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/libunwind_01.pass.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/libunwind_02.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/libunwind_02.pass.cpp -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/lit.cfg -------------------------------------------------------------------------------- /ThirdParty/libunwind/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/ThirdParty/libunwind/test/lit.site.cfg.in -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0-prerelease -------------------------------------------------------------------------------- /WAFL@ROOTS21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/WAFL@ROOTS21.pdf -------------------------------------------------------------------------------- /WebAssembly.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/WebAssembly.tmLanguage -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /roots21-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/roots21-3.pdf -------------------------------------------------------------------------------- /run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/run-clang-format.sh -------------------------------------------------------------------------------- /standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/standalone.c -------------------------------------------------------------------------------- /vs-chromium-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/vs-chromium-project.txt -------------------------------------------------------------------------------- /wafl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/wafl.png -------------------------------------------------------------------------------- /wasi-blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsect/WAFL/HEAD/wasi-blocklist.txt --------------------------------------------------------------------------------