├── LICENSE ├── Makefile ├── README.md ├── WAVM ├── .clang-format ├── .editorconfig ├── .travis.yml ├── Build │ ├── azure-windows-build-job-template.yml │ ├── notify-discord.sh │ └── travis-build.sh ├── CMakeLists.txt ├── Doc │ ├── SignalsAndExceptions.md │ ├── WavixObjectReachability.dot │ └── WavixObjectReachability.svg ├── Dockerfile ├── Examples │ ├── Benchmark │ │ ├── Benchmark.cpp │ │ └── Benchmark.wast │ ├── CMakeLists.txt │ ├── blake2b.wast │ ├── echo.wast │ ├── gas.cpp │ ├── gas.wast │ ├── helloworld.wast │ ├── tee.wast │ ├── trap.wast │ ├── zlib-wasi.wast │ └── zlib.wast ├── Gas.md ├── Include │ └── WAVM │ │ ├── Emscripten │ │ ├── Emscripten.h │ │ ├── Interface.h │ │ ├── gas-cost-table.h │ │ ├── gas-visit-context.h │ │ ├── insert-imported-context.h │ │ ├── xchain-service-client.h │ │ └── xchain-service.h │ │ ├── IR │ │ ├── IR.h │ │ ├── Module.h │ │ ├── OperatorPrinter.h │ │ ├── OperatorTable.h │ │ ├── Operators.h │ │ ├── Types.h │ │ ├── Types.natvis │ │ ├── Validate.h │ │ └── Value.h │ │ ├── Inline │ │ ├── Assert.h │ │ ├── BasicTypes.h │ │ ├── CLI.h │ │ ├── CMakeLists.txt │ │ ├── ConcurrentHashMap.h │ │ ├── Config.h.in │ │ ├── DenseStaticIntSet.h │ │ ├── Errors.h │ │ ├── FloatComponents.h │ │ ├── Hash.h │ │ ├── HashMap.h │ │ ├── HashMap.natvis │ │ ├── HashMapImpl.h │ │ ├── HashSet.h │ │ ├── HashSet.natvis │ │ ├── HashSetImpl.h │ │ ├── HashTable.h │ │ ├── HashTable.natvis │ │ ├── HashTableImpl.h │ │ ├── IndexMap.h │ │ ├── IntrusiveSharedPtr.h │ │ ├── IsNameChar.h │ │ ├── Lock.h │ │ ├── OptionalStorage.h │ │ ├── Serialization.h │ │ ├── Timing.h │ │ ├── Unicode.h │ │ └── xxhash │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── xxhash.c │ │ │ └── xxhash.h │ │ ├── LLVMJIT │ │ └── LLVMJIT.h │ │ ├── Logging │ │ └── Logging.h │ │ ├── NFA │ │ └── NFA.h │ │ ├── Platform │ │ ├── Clock.h │ │ ├── Defines.h │ │ ├── Diagnostics.h │ │ ├── Event.h │ │ ├── File.h │ │ ├── Intrinsic.h │ │ ├── Memory.h │ │ ├── Mutex.h │ │ ├── Signal.h │ │ └── Thread.h │ │ ├── RegExp │ │ └── RegExp.h │ │ ├── Runtime │ │ ├── Intrinsics.h │ │ ├── Linker.h │ │ ├── Runtime.h │ │ └── RuntimeData.h │ │ ├── ThreadTest │ │ └── ThreadTest.h │ │ ├── WASI │ │ └── WASI.h │ │ ├── WASM │ │ └── WASM.h │ │ ├── WASTParse │ │ ├── TestScript.h │ │ └── WASTParse.h │ │ ├── WASTPrint │ │ └── WASTPrint.h │ │ └── wavm-c │ │ └── wavm-c.h ├── LICENSE.md ├── Lib │ ├── Emscripten │ │ ├── CMakeLists.txt │ │ ├── Emscripten.cpp │ │ └── Interface.cpp │ ├── IR │ │ ├── CMakeLists.txt │ │ ├── DisassemblyNames.cpp │ │ ├── FloatPrinting.cpp │ │ ├── Operators.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 │ ├── Platform │ │ ├── CMakeLists.txt │ │ ├── POSIX │ │ │ ├── Clock.cpp │ │ │ ├── Diagnostics.cpp │ │ │ ├── Event.cpp │ │ │ ├── File.cpp │ │ │ ├── Memory.cpp │ │ │ ├── Mutex.cpp │ │ │ ├── POSIX.S │ │ │ ├── POSIXPrivate.h │ │ │ ├── Signal.cpp │ │ │ └── Thread.cpp │ │ └── Windows │ │ │ ├── Clock.cpp │ │ │ ├── Diagnostics.cpp │ │ │ ├── Event.cpp │ │ │ ├── File.cpp │ │ │ ├── Memory.cpp │ │ │ ├── Mutex.cpp │ │ │ ├── Signal.cpp │ │ │ ├── Thread.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 │ │ ├── Intrinsics.cpp │ │ ├── Invoke.cpp │ │ ├── Linker.cpp │ │ ├── Memory.cpp │ │ ├── Module.cpp │ │ ├── ObjectGC.cpp │ │ ├── Runtime.cpp │ │ ├── RuntimePrivate.h │ │ ├── Table.cpp │ │ └── WAVMIntrinsics.cpp │ ├── ThreadTest │ │ ├── CMakeLists.txt │ │ └── ThreadTest.cpp │ ├── WASI │ │ ├── CMakeLists.txt │ │ ├── WASI.cpp │ │ ├── WASIDefinitions.LICENSE │ │ └── WASIDefinitions.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-c │ │ ├── CMakeLists.txt │ │ └── wavm-c.cpp ├── Programs │ ├── wavm-as │ │ ├── CMakeLists.txt │ │ └── wavm-as.cpp │ ├── wavm-compile │ │ ├── CMakeLists.txt │ │ └── wavm-compile.cpp │ ├── wavm-disas │ │ ├── CMakeLists.txt │ │ └── wavm-disas.cpp │ ├── wavm-run-wasi │ │ ├── CMakeLists.txt │ │ └── wavm-run-wasi.cpp │ └── wavm-run │ │ ├── CMakeLists.txt │ │ └── wavm-run.cpp ├── README.md ├── Test │ ├── Benchmarks │ │ ├── CMakeLists.txt │ │ └── invoke-bench.cpp │ ├── CMakeLists.txt │ ├── Containers │ │ ├── CMakeLists.txt │ │ ├── HashMapTest.cpp │ │ └── HashSetTest.cpp │ ├── DumpTestModules │ │ ├── CMakeLists.txt │ │ └── DumpTestModules.cpp │ ├── RunTestScript │ │ ├── CMakeLists.txt │ │ └── RunTestScript.cpp │ ├── binaryen │ │ ├── LICENSE │ │ └── binaryen_simd.wast │ ├── bulk_memory_ops.wast │ ├── exceptions.wast │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── ModuleMatcher.h │ │ ├── configure-fuzzer-build.sh │ │ ├── fuzz-assemble.cpp │ │ ├── fuzz-compile-model.cpp │ │ ├── fuzz-compile.cpp │ │ ├── fuzz-disassemble.cpp │ │ ├── fuzz-instantiate.cpp │ │ ├── fuzz-wasm.cpp │ │ ├── fuzz-wast.cpp │ │ ├── generate-seed-corpus.sh │ │ ├── reduce-corpus.sh │ │ ├── run-all-fuzzers-continuous.sh │ │ ├── run-all-fuzzers.sh │ │ ├── run-fuzzer-and-reduce-corpus.sh │ │ ├── run-fuzzer.sh │ │ └── wastFuzzDictionary.txt │ ├── misc.wast │ ├── reference_types.wast │ ├── simd.wast │ ├── spec │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── address.wast │ │ ├── align.wast │ │ ├── atomic.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 │ │ ├── globals.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_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_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 │ │ ├── unwind.wast │ │ ├── utf8-custom-section-id.wast │ │ ├── utf8-import-field.wast │ │ ├── utf8-import-module.wast │ │ └── utf8-invalid-encoding.wast │ ├── threads.wast │ ├── trunc_sat.wast │ ├── wabt │ │ ├── LICENSE │ │ ├── wabt_simd_basic.wast │ │ ├── wabt_simd_binary.wast │ │ ├── wabt_simd_bitselect.wast │ │ ├── wabt_simd_compare.wast │ │ ├── wabt_simd_lane.wast │ │ ├── wabt_simd_load_store.wast │ │ ├── wabt_simd_shift.wast │ │ ├── wabt_simd_splat.wast │ │ └── wabt_simd_unary.wast │ ├── wavm-c │ │ ├── CMakeLists.txt │ │ └── wavm-c-test.c │ └── wavm_atomic.wast ├── ThirdParty │ ├── bridge │ │ ├── CMakeLists.txt │ │ ├── rpc_inproc.cpp │ │ └── rpc_inproc.h │ ├── dtoa │ │ ├── CMakeLists.txt │ │ └── dtoa.c │ └── 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 ├── WebAssembly.tmLanguage ├── azure-pipelines.yml ├── run-clang-format.sh └── tags ├── go.mod ├── main.go └── shim ├── api └── cgo_api.go ├── inproc ├── c_resolver.cpp ├── c_resolver.h └── go_resolver.go └── wavm_instance.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/README.md -------------------------------------------------------------------------------- /WAVM/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/.clang-format -------------------------------------------------------------------------------- /WAVM/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/.editorconfig -------------------------------------------------------------------------------- /WAVM/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/.travis.yml -------------------------------------------------------------------------------- /WAVM/Build/azure-windows-build-job-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Build/azure-windows-build-job-template.yml -------------------------------------------------------------------------------- /WAVM/Build/notify-discord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Build/notify-discord.sh -------------------------------------------------------------------------------- /WAVM/Build/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Build/travis-build.sh -------------------------------------------------------------------------------- /WAVM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Doc/SignalsAndExceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Doc/SignalsAndExceptions.md -------------------------------------------------------------------------------- /WAVM/Doc/WavixObjectReachability.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Doc/WavixObjectReachability.dot -------------------------------------------------------------------------------- /WAVM/Doc/WavixObjectReachability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Doc/WavixObjectReachability.svg -------------------------------------------------------------------------------- /WAVM/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Dockerfile -------------------------------------------------------------------------------- /WAVM/Examples/Benchmark/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/Benchmark/Benchmark.cpp -------------------------------------------------------------------------------- /WAVM/Examples/Benchmark/Benchmark.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/Benchmark/Benchmark.wast -------------------------------------------------------------------------------- /WAVM/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Examples/blake2b.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/blake2b.wast -------------------------------------------------------------------------------- /WAVM/Examples/echo.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/echo.wast -------------------------------------------------------------------------------- /WAVM/Examples/gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/gas.cpp -------------------------------------------------------------------------------- /WAVM/Examples/gas.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/gas.wast -------------------------------------------------------------------------------- /WAVM/Examples/helloworld.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/helloworld.wast -------------------------------------------------------------------------------- /WAVM/Examples/tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/tee.wast -------------------------------------------------------------------------------- /WAVM/Examples/trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/trap.wast -------------------------------------------------------------------------------- /WAVM/Examples/zlib-wasi.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/zlib-wasi.wast -------------------------------------------------------------------------------- /WAVM/Examples/zlib.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Examples/zlib.wast -------------------------------------------------------------------------------- /WAVM/Gas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Gas.md -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/Emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/Emscripten.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/Interface.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/gas-cost-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/gas-cost-table.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/gas-visit-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/gas-visit-context.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/insert-imported-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/insert-imported-context.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/xchain-service-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/xchain-service-client.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Emscripten/xchain-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Emscripten/xchain-service.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/IR.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Module.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/OperatorPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/OperatorPrinter.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/OperatorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/OperatorTable.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Operators.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Types.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Types.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Types.natvis -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Validate.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/IR/Value.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Assert.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/BasicTypes.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/CLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/CLI.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/ConcurrentHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/ConcurrentHashMap.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Config.h.in -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/DenseStaticIntSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/DenseStaticIntSet.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Errors.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/FloatComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/FloatComponents.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Hash.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashMap.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashMap.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashMap.natvis -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashMapImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashMapImpl.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashSet.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashSet.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashSet.natvis -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashSetImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashSetImpl.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashTable.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashTable.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashTable.natvis -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/HashTableImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/HashTableImpl.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/IndexMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/IndexMap.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/IntrusiveSharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/IntrusiveSharedPtr.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/IsNameChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/IsNameChar.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Lock.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/OptionalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/OptionalStorage.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Serialization.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Timing.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/Unicode.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/xxhash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/xxhash/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/xxhash/LICENSE -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/xxhash/xxhash.c -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Inline/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Inline/xxhash/xxhash.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/LLVMJIT/LLVMJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/LLVMJIT/LLVMJIT.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Logging/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Logging/Logging.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/NFA/NFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/NFA/NFA.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Clock.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Defines.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Diagnostics.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Event.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/File.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Intrinsic.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Memory.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Mutex.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Signal.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Platform/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Platform/Thread.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/RegExp/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/RegExp/RegExp.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Runtime/Intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Runtime/Intrinsics.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Runtime/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Runtime/Linker.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Runtime/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Runtime/Runtime.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/Runtime/RuntimeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/Runtime/RuntimeData.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/ThreadTest/ThreadTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/ThreadTest/ThreadTest.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/WASI/WASI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/WASI/WASI.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/WASM/WASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/WASM/WASM.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/WASTParse/TestScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/WASTParse/TestScript.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/WASTParse/WASTParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/WASTParse/WASTParse.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/WASTPrint/WASTPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/WASTPrint/WASTPrint.h -------------------------------------------------------------------------------- /WAVM/Include/WAVM/wavm-c/wavm-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Include/WAVM/wavm-c/wavm-c.h -------------------------------------------------------------------------------- /WAVM/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/LICENSE.md -------------------------------------------------------------------------------- /WAVM/Lib/Emscripten/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Emscripten/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/Emscripten/Emscripten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Emscripten/Emscripten.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Emscripten/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Emscripten/Interface.cpp -------------------------------------------------------------------------------- /WAVM/Lib/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/IR/DisassemblyNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/DisassemblyNames.cpp -------------------------------------------------------------------------------- /WAVM/Lib/IR/FloatPrinting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/FloatPrinting.cpp -------------------------------------------------------------------------------- /WAVM/Lib/IR/Operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/Operators.cpp -------------------------------------------------------------------------------- /WAVM/Lib/IR/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/Types.cpp -------------------------------------------------------------------------------- /WAVM/Lib/IR/Validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/IR/Validate.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitContext.h -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitConvert.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitCore.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitExceptions.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitFunction.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitFunctionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitFunctionContext.h -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitMem.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitModule.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitModuleContext.h -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitNumeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitNumeric.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitTable.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitVar.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/EmitWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/EmitWorkarounds.h -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/LLVMCompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/LLVMCompile.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/LLVMJIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/LLVMJIT.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/LLVMJITPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/LLVMJITPrivate.h -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/LLVMModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/LLVMModule.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/Thunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/Thunk.cpp -------------------------------------------------------------------------------- /WAVM/Lib/LLVMJIT/Win64EH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/LLVMJIT/Win64EH.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Logging/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/Logging/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Logging/Logging.cpp -------------------------------------------------------------------------------- /WAVM/Lib/NFA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/NFA/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/NFA/NFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/NFA/NFA.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Clock.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Diagnostics.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Event.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/File.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Memory.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Mutex.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/POSIX.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/POSIX.S -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/POSIXPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/POSIXPrivate.h -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Signal.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/POSIX/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/POSIX/Thread.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Clock.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Diagnostics.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Event.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/File.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Memory.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Mutex.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Signal.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Thread.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Win32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Win32.asm -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/Win64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/Win64.asm -------------------------------------------------------------------------------- /WAVM/Lib/Platform/Windows/WindowsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Platform/Windows/WindowsPrivate.h -------------------------------------------------------------------------------- /WAVM/Lib/RegExp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/RegExp/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/RegExp/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/RegExp/RegExp.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Atomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Atomics.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Compartment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Compartment.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Context.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Exception.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Global.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Intrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Intrinsics.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Invoke.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Linker.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Memory.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Module.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/ObjectGC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/ObjectGC.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Runtime.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/RuntimePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/RuntimePrivate.h -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/Table.cpp -------------------------------------------------------------------------------- /WAVM/Lib/Runtime/WAVMIntrinsics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/Runtime/WAVMIntrinsics.cpp -------------------------------------------------------------------------------- /WAVM/Lib/ThreadTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/ThreadTest/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/ThreadTest/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/ThreadTest/ThreadTest.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASI/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/WASI/WASI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASI/WASI.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASI/WASIDefinitions.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASI/WASIDefinitions.LICENSE -------------------------------------------------------------------------------- /WAVM/Lib/WASI/WASIDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASI/WASIDefinitions.h -------------------------------------------------------------------------------- /WAVM/Lib/WASM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASM/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/WASM/WASMSerialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASM/WASMSerialization.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/Lexer.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/Lexer.h -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/Parse.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/Parse.h -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/ParseFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/ParseFunction.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/ParseModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/ParseModule.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/ParseNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/ParseNumbers.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTParse/ParseTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTParse/ParseTests.cpp -------------------------------------------------------------------------------- /WAVM/Lib/WASTPrint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTPrint/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/WASTPrint/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/WASTPrint/Print.cpp -------------------------------------------------------------------------------- /WAVM/Lib/wavm-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/wavm-c/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Lib/wavm-c/wavm-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Lib/wavm-c/wavm-c.cpp -------------------------------------------------------------------------------- /WAVM/Programs/wavm-as/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-as/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Programs/wavm-as/wavm-as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-as/wavm-as.cpp -------------------------------------------------------------------------------- /WAVM/Programs/wavm-compile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-compile/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Programs/wavm-compile/wavm-compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-compile/wavm-compile.cpp -------------------------------------------------------------------------------- /WAVM/Programs/wavm-disas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-disas/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Programs/wavm-disas/wavm-disas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-disas/wavm-disas.cpp -------------------------------------------------------------------------------- /WAVM/Programs/wavm-run-wasi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-run-wasi/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Programs/wavm-run-wasi/wavm-run-wasi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-run-wasi/wavm-run-wasi.cpp -------------------------------------------------------------------------------- /WAVM/Programs/wavm-run/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-run/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Programs/wavm-run/wavm-run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Programs/wavm-run/wavm-run.cpp -------------------------------------------------------------------------------- /WAVM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/README.md -------------------------------------------------------------------------------- /WAVM/Test/Benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/Benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/Benchmarks/invoke-bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/Benchmarks/invoke-bench.cpp -------------------------------------------------------------------------------- /WAVM/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/Containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/Containers/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/Containers/HashMapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/Containers/HashMapTest.cpp -------------------------------------------------------------------------------- /WAVM/Test/Containers/HashSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/Containers/HashSetTest.cpp -------------------------------------------------------------------------------- /WAVM/Test/DumpTestModules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/DumpTestModules/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/DumpTestModules/DumpTestModules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/DumpTestModules/DumpTestModules.cpp -------------------------------------------------------------------------------- /WAVM/Test/RunTestScript/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/RunTestScript/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/RunTestScript/RunTestScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/RunTestScript/RunTestScript.cpp -------------------------------------------------------------------------------- /WAVM/Test/binaryen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/binaryen/LICENSE -------------------------------------------------------------------------------- /WAVM/Test/binaryen/binaryen_simd.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/binaryen/binaryen_simd.wast -------------------------------------------------------------------------------- /WAVM/Test/bulk_memory_ops.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/bulk_memory_ops.wast -------------------------------------------------------------------------------- /WAVM/Test/exceptions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/exceptions.wast -------------------------------------------------------------------------------- /WAVM/Test/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/fuzz/ModuleMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/ModuleMatcher.h -------------------------------------------------------------------------------- /WAVM/Test/fuzz/configure-fuzzer-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/configure-fuzzer-build.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-assemble.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-compile-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-compile-model.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-compile.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-disassemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-disassemble.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-instantiate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-instantiate.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-wasm.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/fuzz-wast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/fuzz-wast.cpp -------------------------------------------------------------------------------- /WAVM/Test/fuzz/generate-seed-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/generate-seed-corpus.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/reduce-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/reduce-corpus.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/run-all-fuzzers-continuous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/run-all-fuzzers-continuous.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/run-all-fuzzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/run-all-fuzzers.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/run-fuzzer-and-reduce-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/run-fuzzer-and-reduce-corpus.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/run-fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/run-fuzzer.sh -------------------------------------------------------------------------------- /WAVM/Test/fuzz/wastFuzzDictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/fuzz/wastFuzzDictionary.txt -------------------------------------------------------------------------------- /WAVM/Test/misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/misc.wast -------------------------------------------------------------------------------- /WAVM/Test/reference_types.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/reference_types.wast -------------------------------------------------------------------------------- /WAVM/Test/simd.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/simd.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/LICENSE -------------------------------------------------------------------------------- /WAVM/Test/spec/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/address.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/align.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/atomic.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/binary.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/block.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/br.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/br_if.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/br_table.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/bulk.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/call.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/call_indirect.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/comments.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/const.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/conversions.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/custom.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/data.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/elem.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/endianness.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/exports.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f32.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f32_bitwise.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f32_cmp.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f64.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f64_bitwise.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/f64_cmp.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/fac.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/float_exprs.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/float_literals.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/float_memory.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/float_misc.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/forward.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/func.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/func_ptrs.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/globals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/globals.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/i32.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/i64.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/if.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/imports.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/inline-module.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/int_exprs.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/int_literals.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/labels.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/left-to-right.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/linking.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/load.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/local_get.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/local_set.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/local_tee.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/loop.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_copy.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_fill.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_grow.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_init.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_redundancy.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/memory_trap.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/names.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/nop.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/ref_func.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/ref_is_null.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/ref_null.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/return.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/select.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/stack.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/start.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/store.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/switch.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_copy.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_fill.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_get.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_grow.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_init.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_set.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/table_size.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/token.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/traps.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/type.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/unreachable.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/unreached-invalid.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/unwind.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/utf8-custom-section-id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/utf8-custom-section-id.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/utf8-import-field.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/utf8-import-module.wast -------------------------------------------------------------------------------- /WAVM/Test/spec/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/spec/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /WAVM/Test/threads.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/threads.wast -------------------------------------------------------------------------------- /WAVM/Test/trunc_sat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/trunc_sat.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/LICENSE -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_basic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_basic.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_binary.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_bitselect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_bitselect.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_compare.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_compare.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_lane.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_load_store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_load_store.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_shift.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_shift.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_splat.wast -------------------------------------------------------------------------------- /WAVM/Test/wabt/wabt_simd_unary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wabt/wabt_simd_unary.wast -------------------------------------------------------------------------------- /WAVM/Test/wavm-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wavm-c/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/Test/wavm-c/wavm-c-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wavm-c/wavm-c-test.c -------------------------------------------------------------------------------- /WAVM/Test/wavm_atomic.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/Test/wavm_atomic.wast -------------------------------------------------------------------------------- /WAVM/ThirdParty/bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/bridge/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/bridge/rpc_inproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/bridge/rpc_inproc.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/bridge/rpc_inproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/bridge/rpc_inproc.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/dtoa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/dtoa/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/dtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/dtoa/dtoa.c -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/.arcconfig -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/LICENSE.TXT -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/cmake/Modules/HandleCompilerRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/cmake/Modules/HandleCompilerRT.cmake -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/cmake/config-ix.cmake -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/docs/BuildingLibunwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/docs/BuildingLibunwind.rst -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/docs/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/docs/README.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/docs/conf.py -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/docs/index.rst -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/include/__libunwind_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/include/__libunwind_config.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/include/libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/include/libunwind.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/include/mach-o/compact_unwind_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/include/mach-o/compact_unwind_encoding.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/include/unwind.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/AddressSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/AddressSpace.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/CompactUnwinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/CompactUnwinder.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/DwarfInstructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/DwarfInstructions.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/DwarfParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/DwarfParser.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/EHHeaderParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/EHHeaderParser.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/RWMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/RWMutex.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/Registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/Registers.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/Unwind-EHABI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/Unwind-EHABI.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/Unwind-EHABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/Unwind-EHABI.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/Unwind-sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/Unwind-sjlj.c -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/UnwindCursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/UnwindCursor.hpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/UnwindLevel1-gcc-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/UnwindLevel1-gcc-ext.c -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/UnwindLevel1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/UnwindLevel1.c -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/UnwindRegistersRestore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/UnwindRegistersRestore.S -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/UnwindRegistersSave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/UnwindRegistersSave.S -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/Unwind_AppleExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/Unwind_AppleExtras.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/assembly.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/config.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/dwarf2.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/libunwind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/libunwind.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/src/libunwind_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/src/libunwind_ext.h -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/CMakeLists.txt -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/alignment.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/alignment.pass.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/libunwind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/libunwind/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/libunwind/test/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/libunwind/test/config.py -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/libunwind_01.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/libunwind_01.pass.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/libunwind_02.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/libunwind_02.pass.cpp -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/lit.cfg -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/lit.site.cfg.in -------------------------------------------------------------------------------- /WAVM/ThirdParty/libunwind/test/unw_getcontext.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/ThirdParty/libunwind/test/unw_getcontext.pass.cpp -------------------------------------------------------------------------------- /WAVM/WebAssembly.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/WebAssembly.tmLanguage -------------------------------------------------------------------------------- /WAVM/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/azure-pipelines.yml -------------------------------------------------------------------------------- /WAVM/run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/run-clang-format.sh -------------------------------------------------------------------------------- /WAVM/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/WAVM/tags -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/go.mod -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/main.go -------------------------------------------------------------------------------- /shim/api/cgo_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/shim/api/cgo_api.go -------------------------------------------------------------------------------- /shim/inproc/c_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/shim/inproc/c_resolver.cpp -------------------------------------------------------------------------------- /shim/inproc/c_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/shim/inproc/c_resolver.h -------------------------------------------------------------------------------- /shim/inproc/go_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/shim/inproc/go_resolver.go -------------------------------------------------------------------------------- /shim/wavm_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuperchain/wavm/HEAD/shim/wavm_instance.go --------------------------------------------------------------------------------