Update a number of dependencies (#2594)
This commit goes through the dependencies that wasmtime has and updates versions where possible. This notably brings in a wasmparser/wast update which has some simd spec changes with new instructions. Otherwise most of these are just routine updates.
This commit is contained in:
@@ -30,7 +30,7 @@ peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, versi
|
||||
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.69.0" }
|
||||
regalloc = { version = "0.0.31" }
|
||||
souper-ir = { version = "2.1.0", optional = true }
|
||||
wast = { version = "31.0.0", optional = true }
|
||||
wast = { version = "32.0.0", optional = true }
|
||||
# It is a goal of the cranelift-codegen crate to have minimal external dependencies.
|
||||
# Please don't add any unless they are essential to the task of creating binary
|
||||
# machine code. Integration tests that need external dependencies can be
|
||||
|
||||
@@ -12,7 +12,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
cranelift-module = { path = "../module", version = "0.69.0" }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.69.0", default-features = false, features = ["std"] }
|
||||
object = { version = "0.22.0", default-features = false, features = ["write"] }
|
||||
object = { version = "0.23.0", default-features = false, features = ["write"] }
|
||||
target-lexicon = "0.11"
|
||||
anyhow = "1.0"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
|
||||
@@ -15,7 +15,7 @@ peepmatic-macro = { version = "0.69.0", path = "crates/macro" }
|
||||
peepmatic-runtime = { version = "0.69.0", path = "crates/runtime", features = ["construct"] }
|
||||
peepmatic-traits = { version = "0.69.0", path = "crates/traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
wast = "31.0.0"
|
||||
wast = "32.0.0"
|
||||
z3 = { version = "0.7.1", features = ["static-link-z3"] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -19,6 +19,6 @@ peepmatic-runtime = { path = "../runtime", features = ["construct"] }
|
||||
peepmatic-test = { path = "../test" }
|
||||
peepmatic-test-operator = { path = "../test-operator" }
|
||||
peepmatic-traits = { path = "../traits" }
|
||||
rand = { version = "0.7.3", features = ["small_rng"] }
|
||||
rand = { version = "0.8.2", features = ["small_rng"] }
|
||||
serde = "1.0.106"
|
||||
wast = "31.0.0"
|
||||
wast = "32.0.0"
|
||||
|
||||
@@ -16,7 +16,7 @@ peepmatic-automata = { version = "0.69.0", path = "../automata", features = ["se
|
||||
peepmatic-traits = { version = "0.69.0", path = "../traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
thiserror = "1.0.15"
|
||||
wast = { version = "31.0.0", optional = true }
|
||||
wast = { version = "32.0.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
peepmatic-test-operator = { version = "0.69.0", path = "../test-operator" }
|
||||
|
||||
@@ -16,4 +16,4 @@ log = "0.4.8"
|
||||
[dev-dependencies]
|
||||
peepmatic = { path = "../..", version = "0.69.0" }
|
||||
peepmatic-test-operator = { version = "0.69.0", path = "../test-operator" }
|
||||
wast = "31.0.0"
|
||||
wast = "32.0.0"
|
||||
|
||||
@@ -11,4 +11,4 @@ edition = "2018"
|
||||
[dependencies]
|
||||
peepmatic-traits = { version = "0.69.0", path = "../traits" }
|
||||
serde = { version = "1.0.105", features = ["derive"] }
|
||||
wast = "31.0.0"
|
||||
wast = "32.0.0"
|
||||
|
||||
@@ -12,12 +12,12 @@ keywords = ["webassembly", "wasm"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
wasmparser = { version = "0.72", default-features = false }
|
||||
wasmparser = { version = "0.73", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.69.0", default-features = false }
|
||||
cranelift-entity = { path = "../entity", version = "0.69.0" }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.69.0", default-features = false }
|
||||
hashbrown = { version = "0.9.1", optional = true }
|
||||
itertools = "0.9.0"
|
||||
itertools = "0.10.0"
|
||||
log = { version = "0.4.6", default-features = false }
|
||||
serde = { version = "1.0.94", features = ["derive"], optional = true }
|
||||
smallvec = "1.6.1"
|
||||
|
||||
@@ -1626,7 +1626,7 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
|
||||
// operands must match (hence the bitcast).
|
||||
state.push1(builder.ins().bitselect(bitcast_c, bitcast_a, bitcast_b))
|
||||
}
|
||||
Operator::I8x16AnyTrue | Operator::I16x8AnyTrue | Operator::I32x4AnyTrue => {
|
||||
Operator::V128AnyTrue => {
|
||||
let a = pop1_with_bitcast(state, type_of(op), builder);
|
||||
let bool_result = builder.ins().vany_true(a);
|
||||
state.push1(builder.ins().bint(I32, bool_result))
|
||||
@@ -1824,7 +1824,21 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
|
||||
let (a, b) = pop2_with_bitcast(state, I16X8, builder);
|
||||
state.push1(builder.ins().widening_pairwise_dot_product_s(a, b));
|
||||
}
|
||||
Operator::I16x8ExtMulLowI8x16S
|
||||
Operator::I64x2Bitmask
|
||||
| Operator::I64x2WidenLowI32x4S
|
||||
| Operator::I64x2WidenHighI32x4S
|
||||
| Operator::I64x2WidenLowI32x4U
|
||||
| Operator::I64x2WidenHighI32x4U
|
||||
| Operator::V128Load8Lane { .. }
|
||||
| Operator::V128Load16Lane { .. }
|
||||
| Operator::V128Load32Lane { .. }
|
||||
| Operator::V128Load64Lane { .. }
|
||||
| Operator::V128Store8Lane { .. }
|
||||
| Operator::V128Store16Lane { .. }
|
||||
| Operator::V128Store32Lane { .. }
|
||||
| Operator::V128Store64Lane { .. }
|
||||
| Operator::I16x8Q15MulrSatS
|
||||
| Operator::I16x8ExtMulLowI8x16S
|
||||
| Operator::I16x8ExtMulHighI8x16S
|
||||
| Operator::I16x8ExtMulLowI8x16U
|
||||
| Operator::I16x8ExtMulHighI8x16U
|
||||
@@ -2522,7 +2536,6 @@ fn type_of(operator: &Operator) -> Type {
|
||||
| Operator::I8x16GeU
|
||||
| Operator::I8x16Neg
|
||||
| Operator::I8x16Abs
|
||||
| Operator::I8x16AnyTrue
|
||||
| Operator::I8x16AllTrue
|
||||
| Operator::I8x16Shl
|
||||
| Operator::I8x16ShrS
|
||||
@@ -2557,7 +2570,6 @@ fn type_of(operator: &Operator) -> Type {
|
||||
| Operator::I16x8GeU
|
||||
| Operator::I16x8Neg
|
||||
| Operator::I16x8Abs
|
||||
| Operator::I16x8AnyTrue
|
||||
| Operator::I16x8AllTrue
|
||||
| Operator::I16x8Shl
|
||||
| Operator::I16x8ShrS
|
||||
@@ -2592,7 +2604,6 @@ fn type_of(operator: &Operator) -> Type {
|
||||
| Operator::I32x4GeU
|
||||
| Operator::I32x4Neg
|
||||
| Operator::I32x4Abs
|
||||
| Operator::I32x4AnyTrue
|
||||
| Operator::I32x4AllTrue
|
||||
| Operator::I32x4Shl
|
||||
| Operator::I32x4ShrS
|
||||
|
||||
Reference in New Issue
Block a user