├── .atoum.php ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── doc.yaml │ ├── lint.yaml │ ├── main.yaml │ └── nightly.yaml ├── .gitignore ├── .php-cs-fixer.php ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── examples ├── errors.php ├── exports-function.php ├── exports-global.php ├── imports-function-early-exit.php └── instance.php ├── ext ├── Makefile.frag ├── config.m4 ├── examples │ ├── callback.php │ ├── callback.wat │ ├── global.php │ ├── global.wat │ ├── hello.php │ ├── hello.wasm │ ├── hello.wat │ ├── memory.php │ └── memory.wat ├── include │ ├── wasm.h │ └── wasmer_wasm.h ├── lib │ ├── libwasmer.dylib │ └── libwasmer.so ├── src │ ├── api │ │ ├── config.c │ │ ├── engine.c │ │ ├── macros.h │ │ ├── objects │ │ │ ├── extern.c │ │ │ ├── foreign.c │ │ │ ├── frame.c │ │ │ ├── func.c │ │ │ ├── global.c │ │ │ ├── instance.c │ │ │ ├── memory.c │ │ │ ├── module.c │ │ │ ├── table.c │ │ │ ├── trap.c │ │ │ └── val.c │ │ ├── store.c │ │ ├── types │ │ │ ├── exporttype.c │ │ │ ├── externtype.c │ │ │ ├── functype.c │ │ │ ├── globaltype.c │ │ │ ├── importtype.c │ │ │ ├── limits.c │ │ │ ├── memorytype.c │ │ │ ├── tabletype.c │ │ │ ├── valkind.c │ │ │ └── valtype.c │ │ ├── wasmer.c │ │ └── wat.c │ ├── macros.h │ ├── php_wasm.h │ ├── wasm.c │ ├── wasm.h │ ├── wasmer_class.stub.php │ ├── wasmer_class_arginfo.h │ ├── wasmer_exception.stub.php │ ├── wasmer_exception_arginfo.h │ ├── wasmer_root.stub.php │ ├── wasmer_root_arginfo.h │ ├── wasmer_vec.stub.php │ └── wasmer_vec_arginfo.h └── tests │ ├── api │ ├── config │ │ ├── 00-functions.phpt │ │ ├── 01-arginfo.phpt │ │ ├── 02-wasm_config_delete.phpt │ │ ├── 02-wasm_config_new.phpt │ │ ├── 02-wasm_config_set_compiler.phpt │ │ └── 02-wasm_config_set_engine.phpt │ ├── engine │ │ ├── 00-functions.phpt │ │ ├── 01-arginfo.phpt │ │ ├── 02-wasm_engine_delete.phpt │ │ ├── 02-wasm_engine_new.phpt │ │ ├── 02-wasm_engine_new_with_config.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_LLVM.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_cranelift.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_cranelift_JIT.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_cranelift_native.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_cranelift_object_file.phpt │ │ ├── 02-wasm_engine_new_with_config_compiler_singlepass.phpt │ │ ├── 02-wasm_engine_new_with_config_engine_JIT.phpt │ │ ├── 02-wasm_engine_new_with_config_engine_native.phpt │ │ └── 02-wasm_engine_new_with_config_engine_object_file.phpt │ ├── objects │ │ ├── extern │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_extern_as_func.phpt │ │ │ ├── 02-wasm_extern_as_global.phpt │ │ │ ├── 02-wasm_extern_delete.phpt │ │ │ ├── 02-wasm_extern_kind.phpt │ │ │ ├── 02-wasm_extern_type.phpt │ │ │ ├── 02-wasm_vec_extern___clone.phpt │ │ │ ├── 02-wasm_vec_extern___construct.phpt │ │ │ ├── 02-wasm_vec_extern_offsetExists.phpt │ │ │ ├── 02-wasm_vec_extern_offsetGet.phpt │ │ │ └── 02-wasm_vec_extern_offsetSet.phpt │ │ ├── func │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_func_as_extern.phpt │ │ │ ├── 02-wasm_func_call_guest.phpt │ │ │ ├── 02-wasm_func_call_host.phpt │ │ │ ├── 02-wasm_func_call_with_trap.phpt │ │ │ ├── 02-wasm_func_delete.phpt │ │ │ ├── 02-wasm_func_new.phpt │ │ │ └── 02-wasm_func_type.phpt │ │ ├── global │ │ │ ├── 02-wasm_global_as_extern.phpt │ │ │ ├── 02-wasm_global_copy.phpt │ │ │ ├── 02-wasm_global_delete.phpt │ │ │ ├── 02-wasm_global_get_guest.phpt │ │ │ ├── 02-wasm_global_get_host.phpt │ │ │ ├── 02-wasm_global_new.phpt │ │ │ ├── 02-wasm_global_same.phpt │ │ │ ├── 02-wasm_global_set_guest.phpt │ │ │ ├── 02-wasm_global_set_host.phpt │ │ │ └── 02-wasm_global_type.phpt │ │ ├── instance │ │ │ ├── 02-wasm_instance_copy.phpt │ │ │ ├── 02-wasm_instance_delete.phpt │ │ │ ├── 02-wasm_instance_exports.phpt │ │ │ ├── 02-wasm_instance_new.phpt │ │ │ └── 02-wasm_instance_new_with_trap.phpt │ │ ├── memory │ │ │ ├── 00-functions.phpt │ │ │ ├── 02-wasm_memory_as_extern.phpt │ │ │ ├── 02-wasm_memory_data.phpt │ │ │ ├── 02-wasm_memory_data_size.phpt │ │ │ ├── 02-wasm_memory_delete.phpt │ │ │ ├── 02-wasm_memory_grow.phpt │ │ │ ├── 02-wasm_memory_new.phpt │ │ │ ├── 02-wasm_memory_same.phpt │ │ │ ├── 02-wasm_memory_size.phpt │ │ │ └── 02-wasm_memory_type.phpt │ │ ├── module │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_module_copy.phpt │ │ │ ├── 02-wasm_module_delete.phpt │ │ │ ├── 02-wasm_module_exports.phpt │ │ │ ├── 02-wasm_module_imports.phpt │ │ │ ├── 02-wasm_module_name.phpt │ │ │ ├── 02-wasm_module_new.phpt │ │ │ ├── 02-wasm_module_new_cranelift_JIT.phpt │ │ │ ├── 02-wasm_module_new_cranelift_native.phpt │ │ │ ├── 02-wasm_module_new_cranelift_object_file.phpt │ │ │ ├── 02-wasm_module_ser_deser.phpt │ │ │ ├── 02-wasm_module_set_name.phpt │ │ │ └── 02-wasm_module_validate.phpt │ │ ├── trap │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_trap_copy.phpt │ │ │ ├── 02-wasm_trap_delete.phpt │ │ │ ├── 02-wasm_trap_message.phpt │ │ │ ├── 02-wasm_trap_new.phpt │ │ │ ├── 02-wasm_trap_origin.phpt │ │ │ └── 02-wasm_trap_trace.phpt │ │ └── val │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_val.phpt │ │ │ ├── 02-wasm_val_delete.phpt │ │ │ ├── 02-wasm_val_kind.phpt │ │ │ ├── 02-wasm_val_value.phpt │ │ │ ├── 02-wasm_vec_val___construct.phpt │ │ │ ├── 02-wasm_vec_val_offsetGet.phpt │ │ │ └── 02-wasm_vec_val_offsetSet.phpt │ ├── store │ │ ├── 00-functions.phpt │ │ ├── 01-arginfo.phpt │ │ ├── 02-wasm_store_delete.phpt │ │ └── 02-wasm_store_new.phpt │ ├── types │ │ ├── exporttype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_exporttype_copy.phpt │ │ │ ├── 02-wasm_exporttype_name.phpt │ │ │ ├── 02-wasm_exporttype_new.phpt │ │ │ └── 02-wasm_exporttype_type.phpt │ │ ├── externtype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ └── 02-wasm_externtype_delete.phpt │ │ ├── functype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_functype_copy.phpt │ │ │ ├── 02-wasm_functype_delete.phpt │ │ │ ├── 02-wasm_functype_new.phpt │ │ │ ├── 02-wasm_functype_params.phpt │ │ │ ├── 02-wasm_functype_results.phpt │ │ │ ├── 02-wasm_vec_functype___construct.phpt │ │ │ ├── 02-wasm_vec_functype_offsetGet.phpt │ │ │ └── 02-wasm_vec_functype_offsetSet.phpt │ │ ├── globaltype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_globaltype_as_externtype.phpt │ │ │ ├── 02-wasm_globaltype_content.phpt │ │ │ ├── 02-wasm_globaltype_copy.phpt │ │ │ ├── 02-wasm_globaltype_delete.phpt │ │ │ ├── 02-wasm_globaltype_mutability.phpt │ │ │ ├── 02-wasm_globaltype_new.phpt │ │ │ ├── 02-wasm_vec_globaltype___construct.phpt │ │ │ ├── 02-wasm_vec_globaltype_offsetGet.phpt │ │ │ └── 02-wasm_vec_globaltype_offsetSet.phpt │ │ ├── importtype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_importtype_copy.phpt │ │ │ ├── 02-wasm_importtype_module.phpt │ │ │ ├── 02-wasm_importtype_name.phpt │ │ │ ├── 02-wasm_importtype_new.phpt │ │ │ └── 02-wasm_importtype_type.phpt │ │ ├── limits │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_limits_max.phpt │ │ │ ├── 02-wasm_limits_min.phpt │ │ │ └── 02-wasm_limits_new.phpt │ │ ├── memorytype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_memorytype_as_externtype.phpt │ │ │ ├── 02-wasm_memorytype_copy.phpt │ │ │ ├── 02-wasm_memorytype_delete.phpt │ │ │ ├── 02-wasm_memorytype_limits.phpt │ │ │ └── 02-wasm_memorytype_new.phpt │ │ ├── tabletype │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_tabletype_as_externtype.phpt │ │ │ ├── 02-wasm_tabletype_copy.phpt │ │ │ ├── 02-wasm_tabletype_delete.phpt │ │ │ ├── 02-wasm_tabletype_element.phpt │ │ │ ├── 02-wasm_tabletype_limits.phpt │ │ │ ├── 02-wasm_tabletype_new.phpt │ │ │ ├── 02-wasm_vec_tabletype___construct.phpt │ │ │ ├── 02-wasm_vec_tabletype_offsetGet.phpt │ │ │ └── 02-wasm_vec_tabletype_offsetSet.phpt │ │ ├── valkind │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_valtype_is_num.phpt │ │ │ └── 02-wasm_valtype_is_ref.phpt │ │ └── valtype │ │ │ ├── 00-classes.phpt │ │ │ ├── 00-functions.phpt │ │ │ ├── 01-arginfo.phpt │ │ │ ├── 02-wasm_valtype_copy.phpt │ │ │ ├── 02-wasm_valtype_delete.phpt │ │ │ ├── 02-wasm_valtype_is_num.phpt │ │ │ ├── 02-wasm_valtype_is_ref.phpt │ │ │ ├── 02-wasm_valtype_kind.phpt │ │ │ ├── 02-wasm_valtype_new.phpt │ │ │ ├── 02-wasm_vec_valtype___construct.phpt │ │ │ ├── 02-wasm_vec_valtype_offsetGet.phpt │ │ │ └── 02-wasm_vec_valtype_offsetSet.phpt │ ├── wasmer │ │ ├── wasmer_version.phpt │ │ ├── wasmer_version_major.phpt │ │ ├── wasmer_version_minor.phpt │ │ ├── wasmer_version_patch.phpt │ │ └── wasmer_version_pre.phpt │ └── wat │ │ ├── 02-wat2wasm.phpt │ │ └── 02-wat2wasm_error.phpt │ ├── exceptions.phpt │ └── extension.phpt ├── phpdoc.dist.xml ├── phpunit.xml ├── src ├── Config.php ├── Engine.php ├── Exception │ └── InvalidArgumentException.php ├── Extern.php ├── Func.php ├── Globl.php ├── Instance.php ├── Module.php ├── Store.php ├── Type │ ├── ExternType.php │ ├── FuncType.php │ ├── GlobalType.php │ └── ValType.php ├── Val.php └── Wat.php └── tests ├── examples ├── Callback.php ├── Example.php ├── Globl.php ├── Hello.php ├── callback.wat ├── globl.wat ├── hello.wasm └── hello.wat └── unit ├── Config.php ├── Engine.php ├── Extern.php ├── Func.php ├── Globl.php ├── Instance.php ├── Module.php ├── Store.php ├── Type ├── ExternType.php ├── FuncType.php ├── GlobalType.php └── ValType.php ├── Val.php └── Wat.php /.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.atoum.php -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/workflows/doc.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.github/workflows/nightly.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/examples/errors.php -------------------------------------------------------------------------------- /examples/exports-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/examples/exports-function.php -------------------------------------------------------------------------------- /examples/exports-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/examples/exports-global.php -------------------------------------------------------------------------------- /examples/imports-function-early-exit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/examples/imports-function-early-exit.php -------------------------------------------------------------------------------- /examples/instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/examples/instance.php -------------------------------------------------------------------------------- /ext/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/Makefile.frag -------------------------------------------------------------------------------- /ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/config.m4 -------------------------------------------------------------------------------- /ext/examples/callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/callback.php -------------------------------------------------------------------------------- /ext/examples/callback.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/callback.wat -------------------------------------------------------------------------------- /ext/examples/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/global.php -------------------------------------------------------------------------------- /ext/examples/global.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/global.wat -------------------------------------------------------------------------------- /ext/examples/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/hello.php -------------------------------------------------------------------------------- /ext/examples/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/hello.wasm -------------------------------------------------------------------------------- /ext/examples/hello.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/hello.wat -------------------------------------------------------------------------------- /ext/examples/memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/memory.php -------------------------------------------------------------------------------- /ext/examples/memory.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/examples/memory.wat -------------------------------------------------------------------------------- /ext/include/wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/include/wasm.h -------------------------------------------------------------------------------- /ext/include/wasmer_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/include/wasmer_wasm.h -------------------------------------------------------------------------------- /ext/lib/libwasmer.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/lib/libwasmer.dylib -------------------------------------------------------------------------------- /ext/lib/libwasmer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/lib/libwasmer.so -------------------------------------------------------------------------------- /ext/src/api/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/config.c -------------------------------------------------------------------------------- /ext/src/api/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/engine.c -------------------------------------------------------------------------------- /ext/src/api/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/macros.h -------------------------------------------------------------------------------- /ext/src/api/objects/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/extern.c -------------------------------------------------------------------------------- /ext/src/api/objects/foreign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/foreign.c -------------------------------------------------------------------------------- /ext/src/api/objects/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/frame.c -------------------------------------------------------------------------------- /ext/src/api/objects/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/func.c -------------------------------------------------------------------------------- /ext/src/api/objects/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/global.c -------------------------------------------------------------------------------- /ext/src/api/objects/instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/instance.c -------------------------------------------------------------------------------- /ext/src/api/objects/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/memory.c -------------------------------------------------------------------------------- /ext/src/api/objects/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/module.c -------------------------------------------------------------------------------- /ext/src/api/objects/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/table.c -------------------------------------------------------------------------------- /ext/src/api/objects/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/trap.c -------------------------------------------------------------------------------- /ext/src/api/objects/val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/objects/val.c -------------------------------------------------------------------------------- /ext/src/api/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/store.c -------------------------------------------------------------------------------- /ext/src/api/types/exporttype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/exporttype.c -------------------------------------------------------------------------------- /ext/src/api/types/externtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/externtype.c -------------------------------------------------------------------------------- /ext/src/api/types/functype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/functype.c -------------------------------------------------------------------------------- /ext/src/api/types/globaltype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/globaltype.c -------------------------------------------------------------------------------- /ext/src/api/types/importtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/importtype.c -------------------------------------------------------------------------------- /ext/src/api/types/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/limits.c -------------------------------------------------------------------------------- /ext/src/api/types/memorytype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/memorytype.c -------------------------------------------------------------------------------- /ext/src/api/types/tabletype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/tabletype.c -------------------------------------------------------------------------------- /ext/src/api/types/valkind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/valkind.c -------------------------------------------------------------------------------- /ext/src/api/types/valtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/types/valtype.c -------------------------------------------------------------------------------- /ext/src/api/wasmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/wasmer.c -------------------------------------------------------------------------------- /ext/src/api/wat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/api/wat.c -------------------------------------------------------------------------------- /ext/src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/macros.h -------------------------------------------------------------------------------- /ext/src/php_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/php_wasm.h -------------------------------------------------------------------------------- /ext/src/wasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasm.c -------------------------------------------------------------------------------- /ext/src/wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasm.h -------------------------------------------------------------------------------- /ext/src/wasmer_class.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_class.stub.php -------------------------------------------------------------------------------- /ext/src/wasmer_class_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_class_arginfo.h -------------------------------------------------------------------------------- /ext/src/wasmer_exception.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_exception.stub.php -------------------------------------------------------------------------------- /ext/src/wasmer_exception_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_exception_arginfo.h -------------------------------------------------------------------------------- /ext/src/wasmer_root.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_root.stub.php -------------------------------------------------------------------------------- /ext/src/wasmer_root_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_root_arginfo.h -------------------------------------------------------------------------------- /ext/src/wasmer_vec.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_vec.stub.php -------------------------------------------------------------------------------- /ext/src/wasmer_vec_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/src/wasmer_vec_arginfo.h -------------------------------------------------------------------------------- /ext/tests/api/config/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/config/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/config/02-wasm_config_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/02-wasm_config_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/config/02-wasm_config_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/02-wasm_config_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/config/02-wasm_config_set_compiler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/02-wasm_config_set_compiler.phpt -------------------------------------------------------------------------------- /ext/tests/api/config/02-wasm_config_set_engine.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/config/02-wasm_config_set_engine.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_LLVM.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_LLVM.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_JIT.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_JIT.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_native.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_native.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_object_file.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_cranelift_object_file.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_singlepass.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_compiler_singlepass.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_engine_JIT.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_engine_JIT.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_engine_native.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_engine_native.phpt -------------------------------------------------------------------------------- /ext/tests/api/engine/02-wasm_engine_new_with_config_engine_object_file.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/engine/02-wasm_engine_new_with_config_engine_object_file.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_extern_as_func.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_extern_as_func.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_extern_as_global.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_extern_as_global.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_extern_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_extern_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_extern_kind.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_extern_kind.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_extern_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_extern_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_vec_extern___clone.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_vec_extern___clone.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_vec_extern___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_vec_extern___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_vec_extern_offsetExists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_vec_extern_offsetExists.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_vec_extern_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_vec_extern_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/extern/02-wasm_vec_extern_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/extern/02-wasm_vec_extern_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_as_extern.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_as_extern.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_call_guest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_call_guest.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_call_host.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_call_host.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_call_with_trap.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_call_with_trap.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/func/02-wasm_func_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/func/02-wasm_func_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_as_extern.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_as_extern.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_get_guest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_get_guest.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_get_host.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_get_host.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_same.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_same.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_set_guest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_set_guest.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_set_host.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_set_host.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/global/02-wasm_global_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/global/02-wasm_global_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/instance/02-wasm_instance_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/instance/02-wasm_instance_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/instance/02-wasm_instance_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/instance/02-wasm_instance_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/instance/02-wasm_instance_exports.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/instance/02-wasm_instance_exports.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/instance/02-wasm_instance_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/instance/02-wasm_instance_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/instance/02-wasm_instance_new_with_trap.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/instance/02-wasm_instance_new_with_trap.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_as_extern.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_as_extern.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_data.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_data.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_data_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_data_size.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_grow.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_grow.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_same.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_same.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_size.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/memory/02-wasm_memory_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/memory/02-wasm_memory_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_exports.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_exports.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_imports.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_imports.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_name.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_new_cranelift_JIT.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_new_cranelift_JIT.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_new_cranelift_native.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_new_cranelift_native.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_new_cranelift_object_file.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_new_cranelift_object_file.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_ser_deser.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_ser_deser.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_set_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_set_name.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/module/02-wasm_module_validate.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/module/02-wasm_module_validate.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_message.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_message.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_origin.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_origin.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/trap/02-wasm_trap_trace.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/trap/02-wasm_trap_trace.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_val.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_val.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_val_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_val_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_val_kind.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_val_kind.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_val_value.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_val_value.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_vec_val___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_vec_val___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_vec_val_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_vec_val_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/objects/val/02-wasm_vec_val_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/objects/val/02-wasm_vec_val_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/store/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/store/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/store/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/store/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/store/02-wasm_store_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/store/02-wasm_store_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/store/02-wasm_store_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/store/02-wasm_store_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/02-wasm_exporttype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/02-wasm_exporttype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/02-wasm_exporttype_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/02-wasm_exporttype_name.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/02-wasm_exporttype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/02-wasm_exporttype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/exporttype/02-wasm_exporttype_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/exporttype/02-wasm_exporttype_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/externtype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/externtype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/externtype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/externtype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/externtype/02-wasm_externtype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/externtype/02-wasm_externtype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_functype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_functype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_functype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_functype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_functype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_functype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_functype_params.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_functype_params.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_functype_results.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_functype_results.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_vec_functype___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_vec_functype___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_vec_functype_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_vec_functype_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/functype/02-wasm_vec_functype_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/functype/02-wasm_vec_functype_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_as_externtype.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_as_externtype.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_content.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_content.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_mutability.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_mutability.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_globaltype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_globaltype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_vec_globaltype___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_vec_globaltype___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_vec_globaltype_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_vec_globaltype_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/globaltype/02-wasm_vec_globaltype_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/globaltype/02-wasm_vec_globaltype_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/02-wasm_importtype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/02-wasm_importtype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/02-wasm_importtype_module.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/02-wasm_importtype_module.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/02-wasm_importtype_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/02-wasm_importtype_name.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/02-wasm_importtype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/02-wasm_importtype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/importtype/02-wasm_importtype_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/importtype/02-wasm_importtype_type.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/limits/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/limits/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/limits/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/limits/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/limits/02-wasm_limits_max.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/limits/02-wasm_limits_max.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/limits/02-wasm_limits_min.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/limits/02-wasm_limits_min.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/limits/02-wasm_limits_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/limits/02-wasm_limits_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/02-wasm_memorytype_as_externtype.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/02-wasm_memorytype_as_externtype.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/02-wasm_memorytype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/02-wasm_memorytype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/02-wasm_memorytype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/02-wasm_memorytype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/02-wasm_memorytype_limits.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/02-wasm_memorytype_limits.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/memorytype/02-wasm_memorytype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/memorytype/02-wasm_memorytype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_as_externtype.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_as_externtype.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_element.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_element.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_limits.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_limits.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_tabletype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_tabletype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_vec_tabletype___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_vec_tabletype___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_vec_tabletype_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_vec_tabletype_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/tabletype/02-wasm_vec_tabletype_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/tabletype/02-wasm_vec_tabletype_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valkind/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valkind/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valkind/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valkind/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valkind/02-wasm_valtype_is_num.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valkind/02-wasm_valtype_is_num.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valkind/02-wasm_valtype_is_ref.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valkind/02-wasm_valtype_is_ref.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/00-classes.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/00-classes.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/00-functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/00-functions.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/01-arginfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/01-arginfo.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_copy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_copy.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_delete.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_is_num.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_is_num.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_is_ref.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_is_ref.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_kind.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_kind.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_valtype_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_valtype_new.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_vec_valtype___construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_vec_valtype___construct.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_vec_valtype_offsetGet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_vec_valtype_offsetGet.phpt -------------------------------------------------------------------------------- /ext/tests/api/types/valtype/02-wasm_vec_valtype_offsetSet.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/types/valtype/02-wasm_vec_valtype_offsetSet.phpt -------------------------------------------------------------------------------- /ext/tests/api/wasmer/wasmer_version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wasmer/wasmer_version.phpt -------------------------------------------------------------------------------- /ext/tests/api/wasmer/wasmer_version_major.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wasmer/wasmer_version_major.phpt -------------------------------------------------------------------------------- /ext/tests/api/wasmer/wasmer_version_minor.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wasmer/wasmer_version_minor.phpt -------------------------------------------------------------------------------- /ext/tests/api/wasmer/wasmer_version_patch.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wasmer/wasmer_version_patch.phpt -------------------------------------------------------------------------------- /ext/tests/api/wasmer/wasmer_version_pre.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wasmer/wasmer_version_pre.phpt -------------------------------------------------------------------------------- /ext/tests/api/wat/02-wat2wasm.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wat/02-wat2wasm.phpt -------------------------------------------------------------------------------- /ext/tests/api/wat/02-wat2wasm_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/api/wat/02-wat2wasm_error.phpt -------------------------------------------------------------------------------- /ext/tests/exceptions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/exceptions.phpt -------------------------------------------------------------------------------- /ext/tests/extension.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/ext/tests/extension.phpt -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Engine.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Extern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Extern.php -------------------------------------------------------------------------------- /src/Func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Func.php -------------------------------------------------------------------------------- /src/Globl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Globl.php -------------------------------------------------------------------------------- /src/Instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Instance.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Store.php -------------------------------------------------------------------------------- /src/Type/ExternType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Type/ExternType.php -------------------------------------------------------------------------------- /src/Type/FuncType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Type/FuncType.php -------------------------------------------------------------------------------- /src/Type/GlobalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Type/GlobalType.php -------------------------------------------------------------------------------- /src/Type/ValType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Type/ValType.php -------------------------------------------------------------------------------- /src/Val.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Val.php -------------------------------------------------------------------------------- /src/Wat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/src/Wat.php -------------------------------------------------------------------------------- /tests/examples/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/Callback.php -------------------------------------------------------------------------------- /tests/examples/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/Example.php -------------------------------------------------------------------------------- /tests/examples/Globl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/Globl.php -------------------------------------------------------------------------------- /tests/examples/Hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/Hello.php -------------------------------------------------------------------------------- /tests/examples/callback.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/callback.wat -------------------------------------------------------------------------------- /tests/examples/globl.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/globl.wat -------------------------------------------------------------------------------- /tests/examples/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/hello.wasm -------------------------------------------------------------------------------- /tests/examples/hello.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/examples/hello.wat -------------------------------------------------------------------------------- /tests/unit/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Config.php -------------------------------------------------------------------------------- /tests/unit/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Engine.php -------------------------------------------------------------------------------- /tests/unit/Extern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Extern.php -------------------------------------------------------------------------------- /tests/unit/Func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Func.php -------------------------------------------------------------------------------- /tests/unit/Globl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Globl.php -------------------------------------------------------------------------------- /tests/unit/Instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Instance.php -------------------------------------------------------------------------------- /tests/unit/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Module.php -------------------------------------------------------------------------------- /tests/unit/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Store.php -------------------------------------------------------------------------------- /tests/unit/Type/ExternType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Type/ExternType.php -------------------------------------------------------------------------------- /tests/unit/Type/FuncType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Type/FuncType.php -------------------------------------------------------------------------------- /tests/unit/Type/GlobalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Type/GlobalType.php -------------------------------------------------------------------------------- /tests/unit/Type/ValType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Type/ValType.php -------------------------------------------------------------------------------- /tests/unit/Val.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Val.php -------------------------------------------------------------------------------- /tests/unit/Wat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/wasmer-php/HEAD/tests/unit/Wat.php --------------------------------------------------------------------------------