├── .gitattributes ├── .github └── workflows │ ├── ci-interpreter.yml │ ├── ci-spec.yml │ └── w3c-publish.yml ├── .gitignore ├── .gitmodules ├── Contributing.md ├── LICENSE ├── README.md ├── document ├── Makefile ├── README.md ├── core │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appendix │ │ ├── algorithm.rst │ │ ├── changes.rst │ │ ├── custom.rst │ │ ├── embedding.rst │ │ ├── implementation.rst │ │ ├── index-instructions.py │ │ ├── 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 │ │ ├── check_macros.sh │ │ ├── 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 ├── 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 ├── custom │ ├── custom.ml │ ├── handler_custom.ml │ ├── handler_custom.mli │ ├── handler_name.ml │ └── handler_name.mli ├── dune ├── dune-project ├── exec │ ├── eval.ml │ ├── eval.mli │ ├── eval_num.ml │ ├── eval_num.mli │ ├── eval_vec.ml │ ├── eval_vec.mli │ ├── f32.ml │ ├── f32_convert.ml │ ├── f32_convert.mli │ ├── f64.ml │ ├── f64_convert.ml │ ├── f64_convert.mli │ ├── fxx.ml │ ├── i16.ml │ ├── i32.ml │ ├── i32_convert.ml │ ├── i32_convert.mli │ ├── i64.ml │ ├── i64_convert.ml │ ├── i64_convert.mli │ ├── i8.ml │ ├── ixx.ml │ ├── v128.ml │ └── v128.mli ├── host │ ├── env.ml │ └── spectest.ml ├── jslib │ └── wast.ml ├── main │ ├── flags.ml │ └── main.ml ├── runtime │ ├── data.ml │ ├── data.mli │ ├── elem.ml │ ├── elem.mli │ ├── 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 │ ├── free.ml │ ├── free.mli │ ├── operators.ml │ ├── types.ml │ └── values.ml ├── text │ ├── annot.ml │ ├── annot.mli │ ├── arrange.ml │ ├── arrange.mli │ ├── lexer.mli │ ├── lexer.mll │ ├── parse.ml │ ├── parse.mli │ ├── parse_error.ml │ ├── parser.mly │ ├── print.ml │ └── print.mli ├── unittest │ └── smallint.ml ├── util │ ├── error.ml │ ├── error.mli │ ├── lib.ml │ ├── lib.mli │ ├── sexpr.ml │ ├── sexpr.mli │ ├── source.ml │ └── source.mli ├── valid │ ├── valid.ml │ └── valid.mli └── wasm.opam ├── papers ├── LICENSE ├── README.md ├── oopsla2019.pdf └── pldi2017.pdf ├── proposals ├── README.md ├── annotations │ └── Overview.md ├── bulk-memory-operations │ └── Overview.md ├── multi-value │ └── Overview.md ├── nontrapping-float-to-int-conversion │ └── Overview.md ├── reference-types │ └── Overview.md ├── sign-extension-ops │ └── Overview.md └── simd │ ├── BinarySIMD.md │ ├── ImplementationStatus.md │ ├── NewOpcodes.md │ ├── SIMD.md │ ├── TextSIMD.md │ ├── W3CTAG-SIMDExplainer.md │ └── WebAssembly-SIMD-May-2017.pdf ├── test ├── LICENSE ├── README.md ├── Todo.md ├── build.py ├── core │ ├── .gitignore │ ├── README.md │ ├── address.wast │ ├── align.wast │ ├── annotations.wast │ ├── binary-leb128.wast │ ├── binary.wast │ ├── block.wast │ ├── br.wast │ ├── br_if.wast │ ├── br_table.wast │ ├── bulk.wast │ ├── call.wast │ ├── call_indirect.wast │ ├── comments.wast │ ├── const.wast │ ├── conversions.wast │ ├── custom.wast │ ├── data.wast │ ├── elem.wast │ ├── endianness.wast │ ├── exports.wast │ ├── f32.wast │ ├── f32_bitwise.wast │ ├── f32_cmp.wast │ ├── f64.wast │ ├── f64_bitwise.wast │ ├── f64_cmp.wast │ ├── fac.wast │ ├── float_exprs.wast │ ├── float_literals.wast │ ├── float_memory.wast │ ├── float_misc.wast │ ├── forward.wast │ ├── func.wast │ ├── func_ptrs.wast │ ├── global.wast │ ├── i32.wast │ ├── i64.wast │ ├── id.wast │ ├── if.wast │ ├── imports.wast │ ├── inline-module.wast │ ├── int_exprs.wast │ ├── int_literals.wast │ ├── labels.wast │ ├── left-to-right.wast │ ├── linking.wast │ ├── load.wast │ ├── local_get.wast │ ├── local_set.wast │ ├── local_tee.wast │ ├── loop.wast │ ├── memory.wast │ ├── memory_copy.wast │ ├── memory_fill.wast │ ├── memory_grow.wast │ ├── memory_init.wast │ ├── memory_redundancy.wast │ ├── memory_size.wast │ ├── memory_trap.wast │ ├── names.wast │ ├── nop.wast │ ├── obsolete-keywords.wast │ ├── ref_func.wast │ ├── ref_is_null.wast │ ├── ref_null.wast │ ├── return.wast │ ├── run.py │ ├── select.wast │ ├── simd │ │ ├── meta │ │ │ ├── README.md │ │ │ ├── gen_tests.py │ │ │ ├── simd.py │ │ │ ├── simd_arithmetic.py │ │ │ ├── simd_bitwise.py │ │ │ ├── simd_compare.py │ │ │ ├── simd_ext_mul.py │ │ │ ├── simd_extadd_pairwise.py │ │ │ ├── simd_f32x4.py │ │ │ ├── simd_f32x4_arith.py │ │ │ ├── simd_f32x4_cmp.py │ │ │ ├── simd_f32x4_pmin_pmax.py │ │ │ ├── simd_f32x4_rounding.py │ │ │ ├── simd_f64x2.py │ │ │ ├── simd_f64x2_arith.py │ │ │ ├── simd_f64x2_cmp.py │ │ │ ├── simd_f64x2_pmin_pmax.py │ │ │ ├── simd_f64x2_rounding.py │ │ │ ├── simd_float_op.py │ │ │ ├── simd_i16x8_arith.py │ │ │ ├── simd_i16x8_cmp.py │ │ │ ├── simd_i16x8_q15mulr_sat_s.py │ │ │ ├── simd_i32x4_arith.py │ │ │ ├── simd_i32x4_cmp.py │ │ │ ├── simd_i32x4_dot_i16x8.py │ │ │ ├── simd_i64x2_arith.py │ │ │ ├── simd_i64x2_cmp.py │ │ │ ├── simd_i8x16_arith.py │ │ │ ├── simd_i8x16_cmp.py │ │ │ ├── simd_int_arith2.py │ │ │ ├── simd_int_to_int_extend.py │ │ │ ├── simd_int_trunc_sat_float.py │ │ │ ├── simd_integer_op.py │ │ │ ├── simd_lane_value.py │ │ │ ├── simd_load_lane.py │ │ │ ├── simd_sat_arith.py │ │ │ ├── simd_store_lane.py │ │ │ └── test_assert.py │ │ ├── simd_address.wast │ │ ├── simd_align.wast │ │ ├── simd_bit_shift.wast │ │ ├── simd_bitwise.wast │ │ ├── simd_boolean.wast │ │ ├── simd_const.wast │ │ ├── simd_conversions.wast │ │ ├── simd_f32x4.wast │ │ ├── simd_f32x4_arith.wast │ │ ├── simd_f32x4_cmp.wast │ │ ├── simd_f32x4_pmin_pmax.wast │ │ ├── simd_f32x4_rounding.wast │ │ ├── simd_f64x2.wast │ │ ├── simd_f64x2_arith.wast │ │ ├── simd_f64x2_cmp.wast │ │ ├── simd_f64x2_pmin_pmax.wast │ │ ├── simd_f64x2_rounding.wast │ │ ├── simd_i16x8_arith.wast │ │ ├── simd_i16x8_arith2.wast │ │ ├── simd_i16x8_cmp.wast │ │ ├── simd_i16x8_extadd_pairwise_i8x16.wast │ │ ├── simd_i16x8_extmul_i8x16.wast │ │ ├── simd_i16x8_q15mulr_sat_s.wast │ │ ├── simd_i16x8_sat_arith.wast │ │ ├── simd_i32x4_arith.wast │ │ ├── simd_i32x4_arith2.wast │ │ ├── simd_i32x4_cmp.wast │ │ ├── simd_i32x4_dot_i16x8.wast │ │ ├── simd_i32x4_extadd_pairwise_i16x8.wast │ │ ├── simd_i32x4_extmul_i16x8.wast │ │ ├── simd_i32x4_trunc_sat_f32x4.wast │ │ ├── simd_i32x4_trunc_sat_f64x2.wast │ │ ├── simd_i64x2_arith.wast │ │ ├── simd_i64x2_arith2.wast │ │ ├── simd_i64x2_cmp.wast │ │ ├── simd_i64x2_extmul_i32x4.wast │ │ ├── simd_i8x16_arith.wast │ │ ├── simd_i8x16_arith2.wast │ │ ├── simd_i8x16_cmp.wast │ │ ├── simd_i8x16_sat_arith.wast │ │ ├── simd_int_to_int_extend.wast │ │ ├── simd_lane.wast │ │ ├── simd_linking.wast │ │ ├── simd_load.wast │ │ ├── simd_load16_lane.wast │ │ ├── simd_load32_lane.wast │ │ ├── simd_load64_lane.wast │ │ ├── simd_load8_lane.wast │ │ ├── simd_load_extend.wast │ │ ├── simd_load_splat.wast │ │ ├── simd_load_zero.wast │ │ ├── simd_splat.wast │ │ ├── simd_store.wast │ │ ├── simd_store16_lane.wast │ │ ├── simd_store32_lane.wast │ │ ├── simd_store64_lane.wast │ │ └── simd_store8_lane.wast │ ├── skip-stack-guard-page.wast │ ├── stack.wast │ ├── start.wast │ ├── store.wast │ ├── switch.wast │ ├── table-sub.wast │ ├── table.wast │ ├── table_copy.wast │ ├── table_fill.wast │ ├── table_get.wast │ ├── table_grow.wast │ ├── table_init.wast │ ├── table_set.wast │ ├── table_size.wast │ ├── token.wast │ ├── traps.wast │ ├── type.wast │ ├── unreachable.wast │ ├── unreached-invalid.wast │ ├── unreached-valid.wast │ ├── unwind.wast │ ├── utf8-custom-section-id.wast │ ├── utf8-import-field.wast │ ├── utf8-import-module.wast │ └── utf8-invalid-encoding.wast ├── custom │ ├── custom │ │ └── custom_annot.wast │ └── name │ │ └── name_annot.wast ├── harness │ ├── async_index.js │ ├── sync_index.js │ ├── testharness.css │ ├── testharness.js │ └── testharnessreport.js ├── js-api │ ├── LICENSE.md │ ├── README.md │ ├── assertions.js │ ├── bad-imports.js │ ├── constructor │ ├── error-interfaces-no-symbol-tostringtag.js │ ├── functions │ │ └── helper.js │ ├── global │ │ ├── constructor.any.js │ │ ├── toString.any.js │ │ ├── value-get-set.any.js │ │ └── valueOf.any.js │ ├── instance │ │ ├── constructor-bad-imports.any.js │ │ ├── constructor-caching.any.js │ │ ├── constructor.any.js │ │ ├── exports.any.js │ │ └── toString.any.js │ ├── instanceTestFactory.js │ ├── interface.any.js │ ├── limits.any.js │ ├── memory │ │ ├── assertions.js │ │ ├── buffer.any.js │ │ ├── constructor.any.js │ │ ├── grow.any.js │ │ └── toString.any.js │ ├── module │ │ ├── constructor.any.js │ │ ├── customSections.any.js │ │ ├── exports.any.js │ │ ├── imports.any.js │ │ └── toString.any.js │ ├── prototypes.any.js │ ├── table │ │ ├── assertions.js │ │ ├── constructor.any.js │ │ ├── get-set.any.js │ │ ├── grow.any.js │ │ ├── length.any.js │ │ └── toString.any.js │ └── wasm-module-builder.js ├── meta │ ├── Makefile │ ├── README.md │ ├── common.js │ ├── generate_memory_copy.js │ ├── generate_memory_fill.js │ ├── generate_memory_init.js │ ├── generate_table_copy.js │ ├── generate_table_init.js │ └── noderun.sh └── sync-js-api.py ├── w3c.json └── wasm-specs.bib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci-interpreter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.github/workflows/ci-interpreter.yml -------------------------------------------------------------------------------- /.github/workflows/ci-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.github/workflows/ci-spec.yml -------------------------------------------------------------------------------- /.github/workflows/w3c-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.github/workflows/w3c-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/README.md -------------------------------------------------------------------------------- /document/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/Makefile -------------------------------------------------------------------------------- /document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/README.md -------------------------------------------------------------------------------- /document/core/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _static 3 | document/*.pyc 4 | -------------------------------------------------------------------------------- /document/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/LICENSE -------------------------------------------------------------------------------- /document/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/Makefile -------------------------------------------------------------------------------- /document/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/README.md -------------------------------------------------------------------------------- /document/core/appendix/algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/algorithm.rst -------------------------------------------------------------------------------- /document/core/appendix/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/changes.rst -------------------------------------------------------------------------------- /document/core/appendix/custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/custom.rst -------------------------------------------------------------------------------- /document/core/appendix/embedding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/embedding.rst -------------------------------------------------------------------------------- /document/core/appendix/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/implementation.rst -------------------------------------------------------------------------------- /document/core/appendix/index-instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/index-instructions.py -------------------------------------------------------------------------------- /document/core/appendix/index-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/index-rules.rst -------------------------------------------------------------------------------- /document/core/appendix/index-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/index-types.rst -------------------------------------------------------------------------------- /document/core/appendix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/index.rst -------------------------------------------------------------------------------- /document/core/appendix/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/appendix/properties.rst -------------------------------------------------------------------------------- /document/core/binary/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/conventions.rst -------------------------------------------------------------------------------- /document/core/binary/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/index.rst -------------------------------------------------------------------------------- /document/core/binary/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/instructions.rst -------------------------------------------------------------------------------- /document/core/binary/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/modules.rst -------------------------------------------------------------------------------- /document/core/binary/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/types.rst -------------------------------------------------------------------------------- /document/core/binary/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/binary/values.rst -------------------------------------------------------------------------------- /document/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/conf.py -------------------------------------------------------------------------------- /document/core/exec/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/conventions.rst -------------------------------------------------------------------------------- /document/core/exec/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/index.rst -------------------------------------------------------------------------------- /document/core/exec/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/instructions.rst -------------------------------------------------------------------------------- /document/core/exec/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/modules.rst -------------------------------------------------------------------------------- /document/core/exec/numerics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/numerics.rst -------------------------------------------------------------------------------- /document/core/exec/runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/exec/runtime.rst -------------------------------------------------------------------------------- /document/core/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/index.bs -------------------------------------------------------------------------------- /document/core/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/index.rst -------------------------------------------------------------------------------- /document/core/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/intro/index.rst -------------------------------------------------------------------------------- /document/core/intro/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/intro/introduction.rst -------------------------------------------------------------------------------- /document/core/intro/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/intro/overview.rst -------------------------------------------------------------------------------- /document/core/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/make.bat -------------------------------------------------------------------------------- /document/core/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/static/custom.css -------------------------------------------------------------------------------- /document/core/static/webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/static/webassembly.png -------------------------------------------------------------------------------- /document/core/syntax/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/conventions.rst -------------------------------------------------------------------------------- /document/core/syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/index.rst -------------------------------------------------------------------------------- /document/core/syntax/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/instructions.rst -------------------------------------------------------------------------------- /document/core/syntax/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/modules.rst -------------------------------------------------------------------------------- /document/core/syntax/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/types.rst -------------------------------------------------------------------------------- /document/core/syntax/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/syntax/values.rst -------------------------------------------------------------------------------- /document/core/text/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/conventions.rst -------------------------------------------------------------------------------- /document/core/text/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/index.rst -------------------------------------------------------------------------------- /document/core/text/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/instructions.rst -------------------------------------------------------------------------------- /document/core/text/lexical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/lexical.rst -------------------------------------------------------------------------------- /document/core/text/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/modules.rst -------------------------------------------------------------------------------- /document/core/text/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/types.rst -------------------------------------------------------------------------------- /document/core/text/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/text/values.rst -------------------------------------------------------------------------------- /document/core/util/README.htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/README.htmldiff.pl -------------------------------------------------------------------------------- /document/core/util/bikeshed/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/bikeshed/conf.py -------------------------------------------------------------------------------- /document/core/util/bikeshed_fixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/bikeshed_fixup.py -------------------------------------------------------------------------------- /document/core/util/check_macros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/check_macros.sh -------------------------------------------------------------------------------- /document/core/util/katex_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/katex_fix.patch -------------------------------------------------------------------------------- /document/core/util/macros.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/macros.def -------------------------------------------------------------------------------- /document/core/util/mathdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/mathdef.py -------------------------------------------------------------------------------- /document/core/util/mathdefbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/mathdefbs.py -------------------------------------------------------------------------------- /document/core/util/mathjax2katex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/mathjax2katex.py -------------------------------------------------------------------------------- /document/core/util/pseudo-lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/util/pseudo-lexer.py -------------------------------------------------------------------------------- /document/core/valid/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/valid/conventions.rst -------------------------------------------------------------------------------- /document/core/valid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/valid/index.rst -------------------------------------------------------------------------------- /document/core/valid/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/valid/instructions.rst -------------------------------------------------------------------------------- /document/core/valid/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/valid/modules.rst -------------------------------------------------------------------------------- /document/core/valid/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/core/valid/types.rst -------------------------------------------------------------------------------- /document/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/deploy.sh -------------------------------------------------------------------------------- /document/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/index.html -------------------------------------------------------------------------------- /document/js-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/js-api/Makefile -------------------------------------------------------------------------------- /document/js-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/js-api/index.bs -------------------------------------------------------------------------------- /document/util/htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/util/htmldiff.pl -------------------------------------------------------------------------------- /document/web-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/web-api/Makefile -------------------------------------------------------------------------------- /document/web-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/document/web-api/index.bs -------------------------------------------------------------------------------- /interpreter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/.gitignore -------------------------------------------------------------------------------- /interpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/LICENSE -------------------------------------------------------------------------------- /interpreter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/Makefile -------------------------------------------------------------------------------- /interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/README.md -------------------------------------------------------------------------------- /interpreter/binary/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/decode.ml -------------------------------------------------------------------------------- /interpreter/binary/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/decode.mli -------------------------------------------------------------------------------- /interpreter/binary/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/encode.ml -------------------------------------------------------------------------------- /interpreter/binary/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/encode.mli -------------------------------------------------------------------------------- /interpreter/binary/utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/utf8.ml -------------------------------------------------------------------------------- /interpreter/binary/utf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/binary/utf8.mli -------------------------------------------------------------------------------- /interpreter/custom/custom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/custom/custom.ml -------------------------------------------------------------------------------- /interpreter/custom/handler_custom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/custom/handler_custom.ml -------------------------------------------------------------------------------- /interpreter/custom/handler_custom.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/custom/handler_custom.mli -------------------------------------------------------------------------------- /interpreter/custom/handler_name.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/custom/handler_name.ml -------------------------------------------------------------------------------- /interpreter/custom/handler_name.mli: -------------------------------------------------------------------------------- 1 | include Custom.Handler 2 | -------------------------------------------------------------------------------- /interpreter/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/dune -------------------------------------------------------------------------------- /interpreter/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/dune-project -------------------------------------------------------------------------------- /interpreter/exec/eval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval.ml -------------------------------------------------------------------------------- /interpreter/exec/eval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval.mli -------------------------------------------------------------------------------- /interpreter/exec/eval_num.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval_num.ml -------------------------------------------------------------------------------- /interpreter/exec/eval_num.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval_num.mli -------------------------------------------------------------------------------- /interpreter/exec/eval_vec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval_vec.ml -------------------------------------------------------------------------------- /interpreter/exec/eval_vec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/eval_vec.mli -------------------------------------------------------------------------------- /interpreter/exec/f32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f32.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/f64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f64.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/f64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/fxx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/fxx.ml -------------------------------------------------------------------------------- /interpreter/exec/i16.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i16.ml -------------------------------------------------------------------------------- /interpreter/exec/i32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i32.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/i64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i64.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/i8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/i8.ml -------------------------------------------------------------------------------- /interpreter/exec/ixx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/ixx.ml -------------------------------------------------------------------------------- /interpreter/exec/v128.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/v128.ml -------------------------------------------------------------------------------- /interpreter/exec/v128.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/exec/v128.mli -------------------------------------------------------------------------------- /interpreter/host/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/host/env.ml -------------------------------------------------------------------------------- /interpreter/host/spectest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/host/spectest.ml -------------------------------------------------------------------------------- /interpreter/jslib/wast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/jslib/wast.ml -------------------------------------------------------------------------------- /interpreter/main/flags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/main/flags.ml -------------------------------------------------------------------------------- /interpreter/main/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/main/main.ml -------------------------------------------------------------------------------- /interpreter/runtime/data.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/data.ml -------------------------------------------------------------------------------- /interpreter/runtime/data.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/data.mli -------------------------------------------------------------------------------- /interpreter/runtime/elem.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/elem.ml -------------------------------------------------------------------------------- /interpreter/runtime/elem.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/elem.mli -------------------------------------------------------------------------------- /interpreter/runtime/func.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/func.ml -------------------------------------------------------------------------------- /interpreter/runtime/func.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/func.mli -------------------------------------------------------------------------------- /interpreter/runtime/global.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/global.ml -------------------------------------------------------------------------------- /interpreter/runtime/global.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/global.mli -------------------------------------------------------------------------------- /interpreter/runtime/instance.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/instance.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/memory.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/memory.mli -------------------------------------------------------------------------------- /interpreter/runtime/table.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/table.ml -------------------------------------------------------------------------------- /interpreter/runtime/table.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/runtime/table.mli -------------------------------------------------------------------------------- /interpreter/script/import.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/import.ml -------------------------------------------------------------------------------- /interpreter/script/import.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/import.mli -------------------------------------------------------------------------------- /interpreter/script/js.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/js.ml -------------------------------------------------------------------------------- /interpreter/script/js.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/js.mli -------------------------------------------------------------------------------- /interpreter/script/run.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/run.ml -------------------------------------------------------------------------------- /interpreter/script/run.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/run.mli -------------------------------------------------------------------------------- /interpreter/script/script.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/script/script.ml -------------------------------------------------------------------------------- /interpreter/syntax/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/ast.ml -------------------------------------------------------------------------------- /interpreter/syntax/free.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/free.ml -------------------------------------------------------------------------------- /interpreter/syntax/free.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/free.mli -------------------------------------------------------------------------------- /interpreter/syntax/operators.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/operators.ml -------------------------------------------------------------------------------- /interpreter/syntax/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/types.ml -------------------------------------------------------------------------------- /interpreter/syntax/values.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/syntax/values.ml -------------------------------------------------------------------------------- /interpreter/text/annot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/annot.ml -------------------------------------------------------------------------------- /interpreter/text/annot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/annot.mli -------------------------------------------------------------------------------- /interpreter/text/arrange.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/arrange.ml -------------------------------------------------------------------------------- /interpreter/text/arrange.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/arrange.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/lexer.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/lexer.mll -------------------------------------------------------------------------------- /interpreter/text/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/parse.ml -------------------------------------------------------------------------------- /interpreter/text/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/parse.mli -------------------------------------------------------------------------------- /interpreter/text/parse_error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/parse_error.ml -------------------------------------------------------------------------------- /interpreter/text/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/parser.mly -------------------------------------------------------------------------------- /interpreter/text/print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/print.ml -------------------------------------------------------------------------------- /interpreter/text/print.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/text/print.mli -------------------------------------------------------------------------------- /interpreter/unittest/smallint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/unittest/smallint.ml -------------------------------------------------------------------------------- /interpreter/util/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/error.ml -------------------------------------------------------------------------------- /interpreter/util/error.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/error.mli -------------------------------------------------------------------------------- /interpreter/util/lib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/lib.ml -------------------------------------------------------------------------------- /interpreter/util/lib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/lib.mli -------------------------------------------------------------------------------- /interpreter/util/sexpr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/sexpr.ml -------------------------------------------------------------------------------- /interpreter/util/sexpr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/sexpr.mli -------------------------------------------------------------------------------- /interpreter/util/source.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/source.ml -------------------------------------------------------------------------------- /interpreter/util/source.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/util/source.mli -------------------------------------------------------------------------------- /interpreter/valid/valid.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/valid/valid.ml -------------------------------------------------------------------------------- /interpreter/valid/valid.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/valid/valid.mli -------------------------------------------------------------------------------- /interpreter/wasm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/interpreter/wasm.opam -------------------------------------------------------------------------------- /papers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/papers/LICENSE -------------------------------------------------------------------------------- /papers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/papers/README.md -------------------------------------------------------------------------------- /papers/oopsla2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/papers/oopsla2019.pdf -------------------------------------------------------------------------------- /papers/pldi2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/papers/pldi2017.pdf -------------------------------------------------------------------------------- /proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/README.md -------------------------------------------------------------------------------- /proposals/annotations/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/annotations/Overview.md -------------------------------------------------------------------------------- /proposals/bulk-memory-operations/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/bulk-memory-operations/Overview.md -------------------------------------------------------------------------------- /proposals/multi-value/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/multi-value/Overview.md -------------------------------------------------------------------------------- /proposals/nontrapping-float-to-int-conversion/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/nontrapping-float-to-int-conversion/Overview.md -------------------------------------------------------------------------------- /proposals/reference-types/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/reference-types/Overview.md -------------------------------------------------------------------------------- /proposals/sign-extension-ops/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/sign-extension-ops/Overview.md -------------------------------------------------------------------------------- /proposals/simd/BinarySIMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/BinarySIMD.md -------------------------------------------------------------------------------- /proposals/simd/ImplementationStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/ImplementationStatus.md -------------------------------------------------------------------------------- /proposals/simd/NewOpcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/NewOpcodes.md -------------------------------------------------------------------------------- /proposals/simd/SIMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/SIMD.md -------------------------------------------------------------------------------- /proposals/simd/TextSIMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/TextSIMD.md -------------------------------------------------------------------------------- /proposals/simd/W3CTAG-SIMDExplainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/W3CTAG-SIMDExplainer.md -------------------------------------------------------------------------------- /proposals/simd/WebAssembly-SIMD-May-2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/proposals/simd/WebAssembly-SIMD-May-2017.pdf -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/Todo.md -------------------------------------------------------------------------------- /test/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/build.py -------------------------------------------------------------------------------- /test/core/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /test/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/README.md -------------------------------------------------------------------------------- /test/core/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/address.wast -------------------------------------------------------------------------------- /test/core/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/align.wast -------------------------------------------------------------------------------- /test/core/annotations.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/annotations.wast -------------------------------------------------------------------------------- /test/core/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/binary-leb128.wast -------------------------------------------------------------------------------- /test/core/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/binary.wast -------------------------------------------------------------------------------- /test/core/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/block.wast -------------------------------------------------------------------------------- /test/core/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/br.wast -------------------------------------------------------------------------------- /test/core/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/br_if.wast -------------------------------------------------------------------------------- /test/core/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/br_table.wast -------------------------------------------------------------------------------- /test/core/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/bulk.wast -------------------------------------------------------------------------------- /test/core/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/call.wast -------------------------------------------------------------------------------- /test/core/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/call_indirect.wast -------------------------------------------------------------------------------- /test/core/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/comments.wast -------------------------------------------------------------------------------- /test/core/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/const.wast -------------------------------------------------------------------------------- /test/core/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/conversions.wast -------------------------------------------------------------------------------- /test/core/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/custom.wast -------------------------------------------------------------------------------- /test/core/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/data.wast -------------------------------------------------------------------------------- /test/core/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/elem.wast -------------------------------------------------------------------------------- /test/core/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/endianness.wast -------------------------------------------------------------------------------- /test/core/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/exports.wast -------------------------------------------------------------------------------- /test/core/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f32.wast -------------------------------------------------------------------------------- /test/core/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f32_bitwise.wast -------------------------------------------------------------------------------- /test/core/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f32_cmp.wast -------------------------------------------------------------------------------- /test/core/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f64.wast -------------------------------------------------------------------------------- /test/core/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f64_bitwise.wast -------------------------------------------------------------------------------- /test/core/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/f64_cmp.wast -------------------------------------------------------------------------------- /test/core/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/fac.wast -------------------------------------------------------------------------------- /test/core/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/float_exprs.wast -------------------------------------------------------------------------------- /test/core/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/float_literals.wast -------------------------------------------------------------------------------- /test/core/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/float_memory.wast -------------------------------------------------------------------------------- /test/core/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/float_misc.wast -------------------------------------------------------------------------------- /test/core/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/forward.wast -------------------------------------------------------------------------------- /test/core/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/func.wast -------------------------------------------------------------------------------- /test/core/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/func_ptrs.wast -------------------------------------------------------------------------------- /test/core/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/global.wast -------------------------------------------------------------------------------- /test/core/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/i32.wast -------------------------------------------------------------------------------- /test/core/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/i64.wast -------------------------------------------------------------------------------- /test/core/id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/id.wast -------------------------------------------------------------------------------- /test/core/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/if.wast -------------------------------------------------------------------------------- /test/core/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/imports.wast -------------------------------------------------------------------------------- /test/core/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/inline-module.wast -------------------------------------------------------------------------------- /test/core/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/int_exprs.wast -------------------------------------------------------------------------------- /test/core/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/int_literals.wast -------------------------------------------------------------------------------- /test/core/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/labels.wast -------------------------------------------------------------------------------- /test/core/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/left-to-right.wast -------------------------------------------------------------------------------- /test/core/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/linking.wast -------------------------------------------------------------------------------- /test/core/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/load.wast -------------------------------------------------------------------------------- /test/core/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/local_get.wast -------------------------------------------------------------------------------- /test/core/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/local_set.wast -------------------------------------------------------------------------------- /test/core/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/local_tee.wast -------------------------------------------------------------------------------- /test/core/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/loop.wast -------------------------------------------------------------------------------- /test/core/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory.wast -------------------------------------------------------------------------------- /test/core/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_copy.wast -------------------------------------------------------------------------------- /test/core/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_fill.wast -------------------------------------------------------------------------------- /test/core/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_grow.wast -------------------------------------------------------------------------------- /test/core/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_init.wast -------------------------------------------------------------------------------- /test/core/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_redundancy.wast -------------------------------------------------------------------------------- /test/core/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_size.wast -------------------------------------------------------------------------------- /test/core/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/memory_trap.wast -------------------------------------------------------------------------------- /test/core/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/names.wast -------------------------------------------------------------------------------- /test/core/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/nop.wast -------------------------------------------------------------------------------- /test/core/obsolete-keywords.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/obsolete-keywords.wast -------------------------------------------------------------------------------- /test/core/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/ref_func.wast -------------------------------------------------------------------------------- /test/core/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/ref_is_null.wast -------------------------------------------------------------------------------- /test/core/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/ref_null.wast -------------------------------------------------------------------------------- /test/core/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/return.wast -------------------------------------------------------------------------------- /test/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/run.py -------------------------------------------------------------------------------- /test/core/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/select.wast -------------------------------------------------------------------------------- /test/core/simd/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/README.md -------------------------------------------------------------------------------- /test/core/simd/meta/gen_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/gen_tests.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_arithmetic.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_bitwise.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_compare.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_ext_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_ext_mul.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_extadd_pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_extadd_pairwise.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f32x4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f32x4.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f32x4_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f32x4_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f32x4_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f32x4_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f32x4_pmin_pmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f32x4_pmin_pmax.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f32x4_rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f32x4_rounding.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f64x2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f64x2.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f64x2_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f64x2_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f64x2_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f64x2_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f64x2_pmin_pmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f64x2_pmin_pmax.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_f64x2_rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_f64x2_rounding.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_float_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_float_op.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i16x8_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i16x8_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i16x8_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i16x8_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i16x8_q15mulr_sat_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i16x8_q15mulr_sat_s.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i32x4_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i32x4_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i32x4_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i32x4_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i32x4_dot_i16x8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i32x4_dot_i16x8.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i64x2_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i64x2_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i64x2_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i64x2_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i8x16_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i8x16_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_i8x16_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_i8x16_cmp.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_int_arith2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_int_arith2.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_int_to_int_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_int_to_int_extend.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_int_trunc_sat_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_int_trunc_sat_float.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_integer_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_integer_op.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_lane_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_lane_value.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_load_lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_load_lane.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_sat_arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_sat_arith.py -------------------------------------------------------------------------------- /test/core/simd/meta/simd_store_lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/simd_store_lane.py -------------------------------------------------------------------------------- /test/core/simd/meta/test_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/meta/test_assert.py -------------------------------------------------------------------------------- /test/core/simd/simd_address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_address.wast -------------------------------------------------------------------------------- /test/core/simd/simd_align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_align.wast -------------------------------------------------------------------------------- /test/core/simd/simd_bit_shift.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_bit_shift.wast -------------------------------------------------------------------------------- /test/core/simd/simd_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_bitwise.wast -------------------------------------------------------------------------------- /test/core/simd/simd_boolean.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_boolean.wast -------------------------------------------------------------------------------- /test/core/simd/simd_const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_const.wast -------------------------------------------------------------------------------- /test/core/simd/simd_conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_conversions.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f32x4.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f32x4_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f32x4_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f32x4_pmin_pmax.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f32x4_pmin_pmax.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f32x4_rounding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f32x4_rounding.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f64x2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f64x2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f64x2_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f64x2_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f64x2_pmin_pmax.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f64x2_pmin_pmax.wast -------------------------------------------------------------------------------- /test/core/simd/simd_f64x2_rounding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_f64x2_rounding.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_arith2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_extadd_pairwise_i8x16.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_extadd_pairwise_i8x16.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_extmul_i8x16.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_extmul_i8x16.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_q15mulr_sat_s.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_q15mulr_sat_s.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i16x8_sat_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i16x8_sat_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_arith2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_dot_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_dot_i16x8.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_extadd_pairwise_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_extadd_pairwise_i16x8.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_extmul_i16x8.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_extmul_i16x8.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_trunc_sat_f32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_trunc_sat_f32x4.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i32x4_trunc_sat_f64x2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i32x4_trunc_sat_f64x2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i64x2_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i64x2_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i64x2_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i64x2_arith2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i64x2_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i64x2_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i64x2_extmul_i32x4.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i64x2_extmul_i32x4.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i8x16_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i8x16_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i8x16_arith2.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i8x16_arith2.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i8x16_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i8x16_cmp.wast -------------------------------------------------------------------------------- /test/core/simd/simd_i8x16_sat_arith.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_i8x16_sat_arith.wast -------------------------------------------------------------------------------- /test/core/simd/simd_int_to_int_extend.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_int_to_int_extend.wast -------------------------------------------------------------------------------- /test/core/simd/simd_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_linking.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load16_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load16_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load32_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load32_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load64_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load64_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load8_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load_extend.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load_extend.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load_splat.wast -------------------------------------------------------------------------------- /test/core/simd/simd_load_zero.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_load_zero.wast -------------------------------------------------------------------------------- /test/core/simd/simd_splat.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_splat.wast -------------------------------------------------------------------------------- /test/core/simd/simd_store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_store.wast -------------------------------------------------------------------------------- /test/core/simd/simd_store16_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_store16_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_store32_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_store32_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_store64_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_store64_lane.wast -------------------------------------------------------------------------------- /test/core/simd/simd_store8_lane.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/simd/simd_store8_lane.wast -------------------------------------------------------------------------------- /test/core/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /test/core/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/stack.wast -------------------------------------------------------------------------------- /test/core/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/start.wast -------------------------------------------------------------------------------- /test/core/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/store.wast -------------------------------------------------------------------------------- /test/core/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/switch.wast -------------------------------------------------------------------------------- /test/core/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table-sub.wast -------------------------------------------------------------------------------- /test/core/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table.wast -------------------------------------------------------------------------------- /test/core/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_copy.wast -------------------------------------------------------------------------------- /test/core/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_fill.wast -------------------------------------------------------------------------------- /test/core/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_get.wast -------------------------------------------------------------------------------- /test/core/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_grow.wast -------------------------------------------------------------------------------- /test/core/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_init.wast -------------------------------------------------------------------------------- /test/core/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_set.wast -------------------------------------------------------------------------------- /test/core/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/table_size.wast -------------------------------------------------------------------------------- /test/core/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/token.wast -------------------------------------------------------------------------------- /test/core/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/traps.wast -------------------------------------------------------------------------------- /test/core/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/type.wast -------------------------------------------------------------------------------- /test/core/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/unreachable.wast -------------------------------------------------------------------------------- /test/core/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/unreached-invalid.wast -------------------------------------------------------------------------------- /test/core/unreached-valid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/unreached-valid.wast -------------------------------------------------------------------------------- /test/core/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/unwind.wast -------------------------------------------------------------------------------- /test/core/utf8-custom-section-id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/utf8-custom-section-id.wast -------------------------------------------------------------------------------- /test/core/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/utf8-import-field.wast -------------------------------------------------------------------------------- /test/core/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/utf8-import-module.wast -------------------------------------------------------------------------------- /test/core/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/core/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /test/custom/custom/custom_annot.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/custom/custom/custom_annot.wast -------------------------------------------------------------------------------- /test/custom/name/name_annot.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/custom/name/name_annot.wast -------------------------------------------------------------------------------- /test/harness/async_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/harness/async_index.js -------------------------------------------------------------------------------- /test/harness/sync_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/harness/sync_index.js -------------------------------------------------------------------------------- /test/harness/testharness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/harness/testharness.css -------------------------------------------------------------------------------- /test/harness/testharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/harness/testharness.js -------------------------------------------------------------------------------- /test/harness/testharnessreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/harness/testharnessreport.js -------------------------------------------------------------------------------- /test/js-api/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/LICENSE.md -------------------------------------------------------------------------------- /test/js-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/README.md -------------------------------------------------------------------------------- /test/js-api/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/assertions.js -------------------------------------------------------------------------------- /test/js-api/bad-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/bad-imports.js -------------------------------------------------------------------------------- /test/js-api/constructor/compile.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/compile.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/instantiate-bad-imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/instantiate-bad-imports.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/instantiate.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/instantiate.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/multi-value.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/multi-value.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/toStringTag.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/toStringTag.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/validate.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/constructor/validate.any.js -------------------------------------------------------------------------------- /test/js-api/error-interfaces-no-symbol-tostringtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/error-interfaces-no-symbol-tostringtag.js -------------------------------------------------------------------------------- /test/js-api/functions/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/functions/helper.js -------------------------------------------------------------------------------- /test/js-api/global/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/global/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/global/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/global/toString.any.js -------------------------------------------------------------------------------- /test/js-api/global/value-get-set.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/global/value-get-set.any.js -------------------------------------------------------------------------------- /test/js-api/global/valueOf.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/global/valueOf.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor-bad-imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instance/constructor-bad-imports.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor-caching.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instance/constructor-caching.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instance/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/instance/exports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instance/exports.any.js -------------------------------------------------------------------------------- /test/js-api/instance/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instance/toString.any.js -------------------------------------------------------------------------------- /test/js-api/instanceTestFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/instanceTestFactory.js -------------------------------------------------------------------------------- /test/js-api/interface.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/interface.any.js -------------------------------------------------------------------------------- /test/js-api/limits.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/limits.any.js -------------------------------------------------------------------------------- /test/js-api/memory/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/memory/assertions.js -------------------------------------------------------------------------------- /test/js-api/memory/buffer.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/memory/buffer.any.js -------------------------------------------------------------------------------- /test/js-api/memory/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/memory/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/memory/grow.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/memory/grow.any.js -------------------------------------------------------------------------------- /test/js-api/memory/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/memory/toString.any.js -------------------------------------------------------------------------------- /test/js-api/module/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/module/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/module/customSections.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/module/customSections.any.js -------------------------------------------------------------------------------- /test/js-api/module/exports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/module/exports.any.js -------------------------------------------------------------------------------- /test/js-api/module/imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/module/imports.any.js -------------------------------------------------------------------------------- /test/js-api/module/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/module/toString.any.js -------------------------------------------------------------------------------- /test/js-api/prototypes.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/prototypes.any.js -------------------------------------------------------------------------------- /test/js-api/table/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/assertions.js -------------------------------------------------------------------------------- /test/js-api/table/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/table/get-set.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/get-set.any.js -------------------------------------------------------------------------------- /test/js-api/table/grow.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/grow.any.js -------------------------------------------------------------------------------- /test/js-api/table/length.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/length.any.js -------------------------------------------------------------------------------- /test/js-api/table/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/table/toString.any.js -------------------------------------------------------------------------------- /test/js-api/wasm-module-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/js-api/wasm-module-builder.js -------------------------------------------------------------------------------- /test/meta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/Makefile -------------------------------------------------------------------------------- /test/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/README.md -------------------------------------------------------------------------------- /test/meta/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/common.js -------------------------------------------------------------------------------- /test/meta/generate_memory_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/generate_memory_copy.js -------------------------------------------------------------------------------- /test/meta/generate_memory_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/generate_memory_fill.js -------------------------------------------------------------------------------- /test/meta/generate_memory_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/generate_memory_init.js -------------------------------------------------------------------------------- /test/meta/generate_table_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/generate_table_copy.js -------------------------------------------------------------------------------- /test/meta/generate_table_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/generate_table_init.js -------------------------------------------------------------------------------- /test/meta/noderun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/meta/noderun.sh -------------------------------------------------------------------------------- /test/sync-js-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/test/sync-js-api.py -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/w3c.json -------------------------------------------------------------------------------- /wasm-specs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/annotations/HEAD/wasm-specs.bib --------------------------------------------------------------------------------