├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Contributing.md ├── LICENSE ├── README.md ├── deploy_key.enc ├── document ├── Makefile ├── README.md ├── core │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appendix │ │ ├── algorithm.rst │ │ ├── custom.rst │ │ ├── embedding.rst │ │ ├── implementation.rst │ │ ├── index-instructions.rst │ │ ├── index-rules.rst │ │ ├── index-types.rst │ │ ├── index.rst │ │ └── properties.rst │ ├── binary │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── conf.py │ ├── exec │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── numerics.rst │ │ └── runtime.rst │ ├── index.bs │ ├── index.rst │ ├── intro │ │ ├── index.rst │ │ ├── introduction.rst │ │ └── overview.rst │ ├── make.bat │ ├── static │ │ ├── custom.css │ │ └── webassembly.png │ ├── syntax │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── text │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── lexical.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── util │ │ ├── README.htmldiff.pl │ │ ├── bikeshed │ │ │ └── conf.py │ │ ├── bikeshed_fixup.py │ │ ├── katex_fix.patch │ │ ├── macros.def │ │ ├── mathdef.py │ │ ├── mathdefbs.py │ │ ├── mathjax2katex.py │ │ └── pseudo-lexer.py │ └── valid │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ └── types.rst ├── deploy.sh ├── index.html ├── js-api │ ├── Makefile │ └── index.bs ├── travis-deploy.sh ├── util │ └── htmldiff.pl └── web-api │ ├── Makefile │ └── index.bs ├── interpreter ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── binary │ ├── decode.ml │ ├── decode.mli │ ├── encode.ml │ ├── encode.mli │ ├── utf8.ml │ └── utf8.mli ├── exec │ ├── eval.ml │ ├── eval.mli │ ├── eval_numeric.ml │ ├── eval_numeric.mli │ ├── f32.ml │ ├── f32_convert.ml │ ├── f32_convert.mli │ ├── f64.ml │ ├── f64_convert.ml │ ├── f64_convert.mli │ ├── float.ml │ ├── i32.ml │ ├── i32_convert.ml │ ├── i32_convert.mli │ ├── i64.ml │ ├── i64_convert.ml │ ├── i64_convert.mli │ ├── int.ml │ └── numeric_error.ml ├── host │ ├── env.ml │ └── spectest.ml ├── main │ ├── flags.ml │ └── main.ml ├── meta │ ├── findlib │ │ └── META │ ├── jslib │ │ ├── bsconfig.json │ │ ├── build.sh │ │ └── wasm.ml │ └── travis │ │ ├── build-test.sh │ │ └── install-ocaml.sh ├── runtime │ ├── func.ml │ ├── func.mli │ ├── global.ml │ ├── global.mli │ ├── instance.ml │ ├── memory.ml │ ├── memory.mli │ ├── table.ml │ └── table.mli ├── script │ ├── import.ml │ ├── import.mli │ ├── js.ml │ ├── js.mli │ ├── run.ml │ ├── run.mli │ └── script.ml ├── syntax │ ├── ast.ml │ ├── operators.ml │ ├── types.ml │ └── values.ml ├── text │ ├── arrange.ml │ ├── arrange.mli │ ├── lexer.mli │ ├── lexer.mll │ ├── parse.ml │ ├── parse.mli │ ├── parser.mly │ ├── print.ml │ └── print.mli ├── util │ ├── error.ml │ ├── error.mli │ ├── lib.ml │ ├── lib.mli │ ├── sexpr.ml │ ├── sexpr.mli │ ├── source.ml │ └── source.mli ├── valid │ ├── valid.ml │ └── valid.mli └── winmake.bat ├── papers ├── LICENSE └── pldi2017.pdf ├── proposals └── funclets │ └── Overview.md └── test ├── LICENSE ├── README.md ├── Todo.md ├── build.py ├── core ├── .gitignore ├── README.md ├── address.wast ├── align.wast ├── binary.wast ├── block.wast ├── br.wast ├── br_if.wast ├── br_table.wast ├── break-drop.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 ├── get_local.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 ├── loop.wast ├── memory.wast ├── memory_grow.wast ├── memory_redundancy.wast ├── memory_trap.wast ├── names.wast ├── nop.wast ├── return.wast ├── run.py ├── select.wast ├── set_local.wast ├── skip-stack-guard-page.wast ├── stack.wast ├── start.wast ├── store_retval.wast ├── switch.wast ├── tee_local.wast ├── token.wast ├── traps.wast ├── type.wast ├── typecheck.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 ├── harness ├── async_index.js ├── sync_index.js ├── testharness.css ├── testharness.js ├── testharnessreport.js ├── wasm-constants.js ├── wasm-module-builder.js └── wast.js ├── html └── indexeddb.js └── js-api ├── README.md └── jsapi.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/.travis.yml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/README.md -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /document/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/Makefile -------------------------------------------------------------------------------- /document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/README.md -------------------------------------------------------------------------------- /document/core/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _static 3 | document/*.pyc 4 | -------------------------------------------------------------------------------- /document/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/LICENSE -------------------------------------------------------------------------------- /document/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/Makefile -------------------------------------------------------------------------------- /document/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/README.md -------------------------------------------------------------------------------- /document/core/appendix/algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/algorithm.rst -------------------------------------------------------------------------------- /document/core/appendix/custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/custom.rst -------------------------------------------------------------------------------- /document/core/appendix/embedding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/embedding.rst -------------------------------------------------------------------------------- /document/core/appendix/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/implementation.rst -------------------------------------------------------------------------------- /document/core/appendix/index-instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/index-instructions.rst -------------------------------------------------------------------------------- /document/core/appendix/index-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/index-rules.rst -------------------------------------------------------------------------------- /document/core/appendix/index-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/index-types.rst -------------------------------------------------------------------------------- /document/core/appendix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/index.rst -------------------------------------------------------------------------------- /document/core/appendix/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/appendix/properties.rst -------------------------------------------------------------------------------- /document/core/binary/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/conventions.rst -------------------------------------------------------------------------------- /document/core/binary/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/index.rst -------------------------------------------------------------------------------- /document/core/binary/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/instructions.rst -------------------------------------------------------------------------------- /document/core/binary/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/modules.rst -------------------------------------------------------------------------------- /document/core/binary/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/types.rst -------------------------------------------------------------------------------- /document/core/binary/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/binary/values.rst -------------------------------------------------------------------------------- /document/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/conf.py -------------------------------------------------------------------------------- /document/core/exec/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/conventions.rst -------------------------------------------------------------------------------- /document/core/exec/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/index.rst -------------------------------------------------------------------------------- /document/core/exec/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/instructions.rst -------------------------------------------------------------------------------- /document/core/exec/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/modules.rst -------------------------------------------------------------------------------- /document/core/exec/numerics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/numerics.rst -------------------------------------------------------------------------------- /document/core/exec/runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/exec/runtime.rst -------------------------------------------------------------------------------- /document/core/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/index.bs -------------------------------------------------------------------------------- /document/core/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/index.rst -------------------------------------------------------------------------------- /document/core/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/intro/index.rst -------------------------------------------------------------------------------- /document/core/intro/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/intro/introduction.rst -------------------------------------------------------------------------------- /document/core/intro/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/intro/overview.rst -------------------------------------------------------------------------------- /document/core/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/make.bat -------------------------------------------------------------------------------- /document/core/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/static/custom.css -------------------------------------------------------------------------------- /document/core/static/webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/static/webassembly.png -------------------------------------------------------------------------------- /document/core/syntax/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/conventions.rst -------------------------------------------------------------------------------- /document/core/syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/index.rst -------------------------------------------------------------------------------- /document/core/syntax/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/instructions.rst -------------------------------------------------------------------------------- /document/core/syntax/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/modules.rst -------------------------------------------------------------------------------- /document/core/syntax/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/types.rst -------------------------------------------------------------------------------- /document/core/syntax/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/syntax/values.rst -------------------------------------------------------------------------------- /document/core/text/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/conventions.rst -------------------------------------------------------------------------------- /document/core/text/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/index.rst -------------------------------------------------------------------------------- /document/core/text/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/instructions.rst -------------------------------------------------------------------------------- /document/core/text/lexical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/lexical.rst -------------------------------------------------------------------------------- /document/core/text/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/modules.rst -------------------------------------------------------------------------------- /document/core/text/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/types.rst -------------------------------------------------------------------------------- /document/core/text/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/text/values.rst -------------------------------------------------------------------------------- /document/core/util/README.htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/README.htmldiff.pl -------------------------------------------------------------------------------- /document/core/util/bikeshed/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/bikeshed/conf.py -------------------------------------------------------------------------------- /document/core/util/bikeshed_fixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/bikeshed_fixup.py -------------------------------------------------------------------------------- /document/core/util/katex_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/katex_fix.patch -------------------------------------------------------------------------------- /document/core/util/macros.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/macros.def -------------------------------------------------------------------------------- /document/core/util/mathdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/mathdef.py -------------------------------------------------------------------------------- /document/core/util/mathdefbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/mathdefbs.py -------------------------------------------------------------------------------- /document/core/util/mathjax2katex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/mathjax2katex.py -------------------------------------------------------------------------------- /document/core/util/pseudo-lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/util/pseudo-lexer.py -------------------------------------------------------------------------------- /document/core/valid/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/valid/conventions.rst -------------------------------------------------------------------------------- /document/core/valid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/valid/index.rst -------------------------------------------------------------------------------- /document/core/valid/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/valid/instructions.rst -------------------------------------------------------------------------------- /document/core/valid/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/valid/modules.rst -------------------------------------------------------------------------------- /document/core/valid/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/core/valid/types.rst -------------------------------------------------------------------------------- /document/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/deploy.sh -------------------------------------------------------------------------------- /document/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/index.html -------------------------------------------------------------------------------- /document/js-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/js-api/Makefile -------------------------------------------------------------------------------- /document/js-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/js-api/index.bs -------------------------------------------------------------------------------- /document/travis-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/travis-deploy.sh -------------------------------------------------------------------------------- /document/util/htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/util/htmldiff.pl -------------------------------------------------------------------------------- /document/web-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/web-api/Makefile -------------------------------------------------------------------------------- /document/web-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/document/web-api/index.bs -------------------------------------------------------------------------------- /interpreter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/.gitignore -------------------------------------------------------------------------------- /interpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/LICENSE -------------------------------------------------------------------------------- /interpreter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/Makefile -------------------------------------------------------------------------------- /interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/README.md -------------------------------------------------------------------------------- /interpreter/binary/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/decode.ml -------------------------------------------------------------------------------- /interpreter/binary/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/decode.mli -------------------------------------------------------------------------------- /interpreter/binary/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/encode.ml -------------------------------------------------------------------------------- /interpreter/binary/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/encode.mli -------------------------------------------------------------------------------- /interpreter/binary/utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/utf8.ml -------------------------------------------------------------------------------- /interpreter/binary/utf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/binary/utf8.mli -------------------------------------------------------------------------------- /interpreter/exec/eval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/eval.ml -------------------------------------------------------------------------------- /interpreter/exec/eval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/eval.mli -------------------------------------------------------------------------------- /interpreter/exec/eval_numeric.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/eval_numeric.ml -------------------------------------------------------------------------------- /interpreter/exec/eval_numeric.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/eval_numeric.mli -------------------------------------------------------------------------------- /interpreter/exec/f32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f32.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/f64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f64.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/f64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/float.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/float.ml -------------------------------------------------------------------------------- /interpreter/exec/i32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i32.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/i64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i64.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/i64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/int.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/int.ml -------------------------------------------------------------------------------- /interpreter/exec/numeric_error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/exec/numeric_error.ml -------------------------------------------------------------------------------- /interpreter/host/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/host/env.ml -------------------------------------------------------------------------------- /interpreter/host/spectest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/host/spectest.ml -------------------------------------------------------------------------------- /interpreter/main/flags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/main/flags.ml -------------------------------------------------------------------------------- /interpreter/main/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/main/main.ml -------------------------------------------------------------------------------- /interpreter/meta/findlib/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/findlib/META -------------------------------------------------------------------------------- /interpreter/meta/jslib/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/jslib/bsconfig.json -------------------------------------------------------------------------------- /interpreter/meta/jslib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/jslib/build.sh -------------------------------------------------------------------------------- /interpreter/meta/jslib/wasm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/jslib/wasm.ml -------------------------------------------------------------------------------- /interpreter/meta/travis/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/travis/build-test.sh -------------------------------------------------------------------------------- /interpreter/meta/travis/install-ocaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/meta/travis/install-ocaml.sh -------------------------------------------------------------------------------- /interpreter/runtime/func.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/func.ml -------------------------------------------------------------------------------- /interpreter/runtime/func.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/func.mli -------------------------------------------------------------------------------- /interpreter/runtime/global.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/global.ml -------------------------------------------------------------------------------- /interpreter/runtime/global.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/global.mli -------------------------------------------------------------------------------- /interpreter/runtime/instance.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/instance.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/memory.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/memory.mli -------------------------------------------------------------------------------- /interpreter/runtime/table.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/table.ml -------------------------------------------------------------------------------- /interpreter/runtime/table.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/runtime/table.mli -------------------------------------------------------------------------------- /interpreter/script/import.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/import.ml -------------------------------------------------------------------------------- /interpreter/script/import.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/import.mli -------------------------------------------------------------------------------- /interpreter/script/js.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/js.ml -------------------------------------------------------------------------------- /interpreter/script/js.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/js.mli -------------------------------------------------------------------------------- /interpreter/script/run.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/run.ml -------------------------------------------------------------------------------- /interpreter/script/run.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/run.mli -------------------------------------------------------------------------------- /interpreter/script/script.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/script/script.ml -------------------------------------------------------------------------------- /interpreter/syntax/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/syntax/ast.ml -------------------------------------------------------------------------------- /interpreter/syntax/operators.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/syntax/operators.ml -------------------------------------------------------------------------------- /interpreter/syntax/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/syntax/types.ml -------------------------------------------------------------------------------- /interpreter/syntax/values.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/syntax/values.ml -------------------------------------------------------------------------------- /interpreter/text/arrange.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/arrange.ml -------------------------------------------------------------------------------- /interpreter/text/arrange.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/arrange.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/lexer.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/lexer.mll -------------------------------------------------------------------------------- /interpreter/text/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/parse.ml -------------------------------------------------------------------------------- /interpreter/text/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/parse.mli -------------------------------------------------------------------------------- /interpreter/text/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/parser.mly -------------------------------------------------------------------------------- /interpreter/text/print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/print.ml -------------------------------------------------------------------------------- /interpreter/text/print.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/text/print.mli -------------------------------------------------------------------------------- /interpreter/util/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/error.ml -------------------------------------------------------------------------------- /interpreter/util/error.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/error.mli -------------------------------------------------------------------------------- /interpreter/util/lib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/lib.ml -------------------------------------------------------------------------------- /interpreter/util/lib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/lib.mli -------------------------------------------------------------------------------- /interpreter/util/sexpr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/sexpr.ml -------------------------------------------------------------------------------- /interpreter/util/sexpr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/sexpr.mli -------------------------------------------------------------------------------- /interpreter/util/source.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/source.ml -------------------------------------------------------------------------------- /interpreter/util/source.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/util/source.mli -------------------------------------------------------------------------------- /interpreter/valid/valid.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/valid/valid.ml -------------------------------------------------------------------------------- /interpreter/valid/valid.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/valid/valid.mli -------------------------------------------------------------------------------- /interpreter/winmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/interpreter/winmake.bat -------------------------------------------------------------------------------- /papers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/papers/LICENSE -------------------------------------------------------------------------------- /papers/pldi2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/papers/pldi2017.pdf -------------------------------------------------------------------------------- /proposals/funclets/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/proposals/funclets/Overview.md -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/Todo.md -------------------------------------------------------------------------------- /test/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/build.py -------------------------------------------------------------------------------- /test/core/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /test/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/README.md -------------------------------------------------------------------------------- /test/core/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/address.wast -------------------------------------------------------------------------------- /test/core/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/align.wast -------------------------------------------------------------------------------- /test/core/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/binary.wast -------------------------------------------------------------------------------- /test/core/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/block.wast -------------------------------------------------------------------------------- /test/core/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/br.wast -------------------------------------------------------------------------------- /test/core/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/br_if.wast -------------------------------------------------------------------------------- /test/core/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/br_table.wast -------------------------------------------------------------------------------- /test/core/break-drop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/break-drop.wast -------------------------------------------------------------------------------- /test/core/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/call.wast -------------------------------------------------------------------------------- /test/core/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/call_indirect.wast -------------------------------------------------------------------------------- /test/core/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/comments.wast -------------------------------------------------------------------------------- /test/core/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/const.wast -------------------------------------------------------------------------------- /test/core/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/conversions.wast -------------------------------------------------------------------------------- /test/core/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/custom.wast -------------------------------------------------------------------------------- /test/core/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/data.wast -------------------------------------------------------------------------------- /test/core/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/elem.wast -------------------------------------------------------------------------------- /test/core/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/endianness.wast -------------------------------------------------------------------------------- /test/core/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/exports.wast -------------------------------------------------------------------------------- /test/core/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f32.wast -------------------------------------------------------------------------------- /test/core/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f32_bitwise.wast -------------------------------------------------------------------------------- /test/core/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f32_cmp.wast -------------------------------------------------------------------------------- /test/core/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f64.wast -------------------------------------------------------------------------------- /test/core/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f64_bitwise.wast -------------------------------------------------------------------------------- /test/core/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/f64_cmp.wast -------------------------------------------------------------------------------- /test/core/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/fac.wast -------------------------------------------------------------------------------- /test/core/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/float_exprs.wast -------------------------------------------------------------------------------- /test/core/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/float_literals.wast -------------------------------------------------------------------------------- /test/core/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/float_memory.wast -------------------------------------------------------------------------------- /test/core/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/float_misc.wast -------------------------------------------------------------------------------- /test/core/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/forward.wast -------------------------------------------------------------------------------- /test/core/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/func.wast -------------------------------------------------------------------------------- /test/core/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/func_ptrs.wast -------------------------------------------------------------------------------- /test/core/get_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/get_local.wast -------------------------------------------------------------------------------- /test/core/globals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/globals.wast -------------------------------------------------------------------------------- /test/core/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/i32.wast -------------------------------------------------------------------------------- /test/core/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/i64.wast -------------------------------------------------------------------------------- /test/core/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/if.wast -------------------------------------------------------------------------------- /test/core/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/imports.wast -------------------------------------------------------------------------------- /test/core/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/inline-module.wast -------------------------------------------------------------------------------- /test/core/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/int_exprs.wast -------------------------------------------------------------------------------- /test/core/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/int_literals.wast -------------------------------------------------------------------------------- /test/core/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/labels.wast -------------------------------------------------------------------------------- /test/core/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/left-to-right.wast -------------------------------------------------------------------------------- /test/core/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/linking.wast -------------------------------------------------------------------------------- /test/core/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/loop.wast -------------------------------------------------------------------------------- /test/core/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/memory.wast -------------------------------------------------------------------------------- /test/core/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/memory_grow.wast -------------------------------------------------------------------------------- /test/core/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/memory_redundancy.wast -------------------------------------------------------------------------------- /test/core/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/memory_trap.wast -------------------------------------------------------------------------------- /test/core/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/names.wast -------------------------------------------------------------------------------- /test/core/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/nop.wast -------------------------------------------------------------------------------- /test/core/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/return.wast -------------------------------------------------------------------------------- /test/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/run.py -------------------------------------------------------------------------------- /test/core/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/select.wast -------------------------------------------------------------------------------- /test/core/set_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/set_local.wast -------------------------------------------------------------------------------- /test/core/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /test/core/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/stack.wast -------------------------------------------------------------------------------- /test/core/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/start.wast -------------------------------------------------------------------------------- /test/core/store_retval.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/store_retval.wast -------------------------------------------------------------------------------- /test/core/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/switch.wast -------------------------------------------------------------------------------- /test/core/tee_local.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/tee_local.wast -------------------------------------------------------------------------------- /test/core/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/token.wast -------------------------------------------------------------------------------- /test/core/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/traps.wast -------------------------------------------------------------------------------- /test/core/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/type.wast -------------------------------------------------------------------------------- /test/core/typecheck.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/typecheck.wast -------------------------------------------------------------------------------- /test/core/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/unreachable.wast -------------------------------------------------------------------------------- /test/core/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/unreached-invalid.wast -------------------------------------------------------------------------------- /test/core/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/unwind.wast -------------------------------------------------------------------------------- /test/core/utf8-custom-section-id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/utf8-custom-section-id.wast -------------------------------------------------------------------------------- /test/core/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/utf8-import-field.wast -------------------------------------------------------------------------------- /test/core/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/utf8-import-module.wast -------------------------------------------------------------------------------- /test/core/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/core/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /test/harness/async_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/async_index.js -------------------------------------------------------------------------------- /test/harness/sync_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/sync_index.js -------------------------------------------------------------------------------- /test/harness/testharness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/testharness.css -------------------------------------------------------------------------------- /test/harness/testharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/testharness.js -------------------------------------------------------------------------------- /test/harness/testharnessreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/testharnessreport.js -------------------------------------------------------------------------------- /test/harness/wasm-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/wasm-constants.js -------------------------------------------------------------------------------- /test/harness/wasm-module-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/wasm-module-builder.js -------------------------------------------------------------------------------- /test/harness/wast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/harness/wast.js -------------------------------------------------------------------------------- /test/html/indexeddb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/html/indexeddb.js -------------------------------------------------------------------------------- /test/js-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/js-api/README.md -------------------------------------------------------------------------------- /test/js-api/jsapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/funclets/HEAD/test/js-api/jsapi.js --------------------------------------------------------------------------------