Fix shuffle and enable tests. Add support for new load_splat instructions.

Updates to wasmparser 0.34.0 and picks up a newer wasmerio/wabt.
This commit is contained in:
Nick Lewycky
2019-07-19 15:19:58 -07:00
parent 3e009c5971
commit cd25356858
14 changed files with 278 additions and 151 deletions

View File

@@ -9,14 +9,14 @@ edition = "2018"
[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.6" }
cranelift-native = { version = "0.31" }
cranelift-codegen = { version = "0.31" }
cranelift-entity = { version = "0.31" }
cranelift-frontend = { package = "wasmer-clif-fork-frontend", version = "0.31" }
cranelift-wasm = { package = "wasmer-clif-fork-wasm", version = "0.31" }
cranelift-native = { git = "https://github.com/wasmerio/cranelift.git", rev = "f05f4044d42c54fc5841753030991afc026695fc" }
cranelift-codegen = { git = "https://github.com/wasmerio/cranelift.git", rev = "f05f4044d42c54fc5841753030991afc026695fc" }
cranelift-entity = { git = "https://github.com/wasmerio/cranelift.git", rev = "f05f4044d42c54fc5841753030991afc026695fc" }
cranelift-frontend = { git = "https://github.com/wasmerio/cranelift.git", rev = "f05f4044d42c54fc5841753030991afc026695fc" }
cranelift-wasm = { git = "https://github.com/wasmerio/cranelift.git", rev = "f05f4044d42c54fc5841753030991afc026695fc" }
hashbrown = "0.1"
target-lexicon = "0.4.0"
wasmparser = "0.32.1"
wasmparser = "0.34.0"
byteorder = "1"
nix = "0.14.0"
libc = "0.2.49"