Wasmtime 0.18.0 and Cranelift 0.65.0.

This commit is contained in:
Dan Gohman
2020-06-09 10:11:49 -07:00
parent 4d5fdfcbba
commit caa87048ab
58 changed files with 280 additions and 253 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "cranelift-tools"
authors = ["The Cranelift Project Developers"]
version = "0.64.0"
version = "0.65.0"
description = "Binaries for testing the Cranelift libraries"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md"
@@ -15,21 +15,21 @@ path = "src/clif-util.rs"
[dependencies]
cfg-if = "0.1"
cranelift-codegen = { path = "codegen", version = "0.64.0" }
cranelift-entity = { path = "entity", version = "0.64.0" }
cranelift-interpreter = { path = "interpreter", version = "0.64.0" }
cranelift-reader = { path = "reader", version = "0.64.0" }
cranelift-frontend = { path = "frontend", version = "0.64.0" }
cranelift-serde = { path = "serde", version = "0.64.0", optional = true }
cranelift-wasm = { path = "wasm", version = "0.64.0", optional = true }
cranelift-native = { path = "native", version = "0.64.0" }
cranelift-filetests = { path = "filetests", version = "0.64.0" }
cranelift-module = { path = "module", version = "0.64.0" }
cranelift-faerie = { path = "faerie", version = "0.64.0" }
cranelift-object = { path = "object", version = "0.64.0" }
cranelift-simplejit = { path = "simplejit", version = "0.64.0" }
cranelift-preopt = { path = "preopt", version = "0.64.0" }
cranelift = { path = "umbrella", version = "0.64.0" }
cranelift-codegen = { path = "codegen", version = "0.65.0" }
cranelift-entity = { path = "entity", version = "0.65.0" }
cranelift-interpreter = { path = "interpreter", version = "0.65.0" }
cranelift-reader = { path = "reader", version = "0.65.0" }
cranelift-frontend = { path = "frontend", version = "0.65.0" }
cranelift-serde = { path = "serde", version = "0.65.0", optional = true }
cranelift-wasm = { path = "wasm", version = "0.65.0", optional = true }
cranelift-native = { path = "native", version = "0.65.0" }
cranelift-filetests = { path = "filetests", version = "0.65.0" }
cranelift-module = { path = "module", version = "0.65.0" }
cranelift-faerie = { path = "faerie", version = "0.65.0" }
cranelift-object = { path = "object", version = "0.65.0" }
cranelift-simplejit = { path = "simplejit", version = "0.65.0" }
cranelift-preopt = { path = "preopt", version = "0.65.0" }
cranelift = { path = "umbrella", version = "0.65.0" }
filecheck = "0.5.0"
clap = "2.32.0"
log = "0.4.8"

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-bforest"
version = "0.64.0"
version = "0.65.0"
description = "A forest of B+-trees"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-bforest"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
edition = "2018"
[dependencies]
cranelift-entity = { path = "../entity", version = "0.64.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.65.0", default-features = false }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen"
version = "0.64.0"
version = "0.65.0"
description = "Low-level code generator library"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-codegen"
@@ -13,9 +13,9 @@ build = "build.rs"
edition = "2018"
[dependencies]
cranelift-codegen-shared = { path = "./shared", version = "0.64.0" }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift-bforest = { path = "../bforest", version = "0.64.0" }
cranelift-codegen-shared = { path = "./shared", version = "0.65.0" }
cranelift-entity = { path = "../entity", version = "0.65.0" }
cranelift-bforest = { path = "../bforest", version = "0.65.0" }
hashbrown = { version = "0.7", optional = true }
target-lexicon = "0.10"
log = { version = "0.4.6", default-features = false }
@@ -25,7 +25,7 @@ gimli = { version = "0.21.0", default-features = false, features = ["write"], op
smallvec = { version = "1.0.0" }
thiserror = "1.0.4"
byteorder = { version = "1.3.2", default-features = false }
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.1.0" }
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.2.0" }
regalloc = "0.0.26"
# 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
@@ -33,8 +33,8 @@ regalloc = "0.0.26"
# accomodated in `tests`.
[build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.64.0" }
peepmatic = { path = "../peepmatic", optional = true, version = "0.64.0" }
cranelift-codegen-meta = { path = "meta", version = "0.65.0" }
peepmatic = { path = "../peepmatic", optional = true, version = "0.65.0" }
[features]
default = ["std", "unwind"]

View File

@@ -1,7 +1,7 @@
[package]
name = "cranelift-codegen-meta"
authors = ["The Cranelift Project Developers"]
version = "0.64.0"
version = "0.65.0"
description = "Metaprogram for cranelift-codegen code generator library"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -12,8 +12,8 @@ edition = "2018"
rustdoc-args = [ "--document-private-items" ]
[dependencies]
cranelift-codegen-shared = { path = "../shared", version = "0.64.0" }
cranelift-entity = { path = "../../entity", version = "0.64.0" }
cranelift-codegen-shared = { path = "../shared", version = "0.65.0" }
cranelift-entity = { path = "../../entity", version = "0.65.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen-shared"
version = "0.64.0"
version = "0.65.0"
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-entity"
version = "0.64.0"
version = "0.65.0"
description = "Data structures using entity references as mapping keys"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-entity"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-faerie"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with Faerie"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,8 +10,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-module = { path = "../module", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false, features = ["std"] }
cranelift-module = { path = "../module", version = "0.65.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false, features = ["std"] }
faerie = "0.15.0"
goblin = "0.1.0"
anyhow = "1.0"

View File

@@ -1,7 +1,7 @@
[package]
name = "cranelift-filetests"
authors = ["The Cranelift Project Developers"]
version = "0.64.0"
version = "0.65.0"
description = "Test driver and implementations of the filetest commands"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-filetests"
@@ -10,12 +10,12 @@ publish = false
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", features = ["testing_hooks"] }
cranelift-frontend = { path = "../frontend", version = "0.64.0" }
cranelift-interpreter = { path = "../interpreter", version = "0.64.0" }
cranelift-native = { path = "../native", version = "0.64.0" }
cranelift-reader = { path = "../reader", version = "0.64.0" }
cranelift-preopt = { path = "../preopt", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", features = ["testing_hooks"] }
cranelift-frontend = { path = "../frontend", version = "0.65.0" }
cranelift-interpreter = { path = "../interpreter", version = "0.65.0" }
cranelift-native = { path = "../native", version = "0.65.0" }
cranelift-reader = { path = "../reader", version = "0.65.0" }
cranelift-preopt = { path = "../preopt", version = "0.65.0" }
byteorder = { version = "1.3.2", default-features = false }
file-per-thread-logger = "0.1.2"
filecheck = "0.5.0"

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-frontend"
version = "0.64.0"
version = "0.65.0"
description = "Cranelift IR builder helper"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-frontend"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
target-lexicon = "0.10"
log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.7", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-interpreter"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Interpret Cranelift IR"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,9 +11,9 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift-reader = { path = "../reader", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.65.0" }
cranelift-reader = { path = "../reader", version = "0.65.0" }
hashbrown = { version = "0.7.1", optional = true }
log = { version = "0.4.8", default-features = false }
thiserror = "1.0.15"
@@ -21,7 +21,7 @@ walkdir = "2.3.1"
pretty_env_logger = "0.4.0"
[dev-dependencies]
cranelift-frontend = { path = "../frontend", version = "0.64.0" }
cranelift-frontend = { path = "../frontend", version = "0.65.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-module"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Support for linking functions and data with Cranelift"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.65.0" }
hashbrown = { version = "0.6", optional = true }
log = { version = "0.4.6", default-features = false }
thiserror = "1.0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-native"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Support for targeting the host with Cranelift"
documentation = "https://docs.rs/cranelift-native"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
target-lexicon = "0.10"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-object"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with `object`"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,8 +10,8 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-module = { path = "../module", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false, features = ["std"] }
cranelift-module = { path = "../module", version = "0.65.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false, features = ["std"] }
object = { version = "0.18", default-features = false, features = ["write"] }
target-lexicon = "0.10"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic"
version = "0.64.0"
version = "0.65.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -10,8 +10,8 @@ description = "DSL and compiler for generating peephole optimizers"
[dependencies]
anyhow = "1.0.27"
peepmatic-automata = { version = "0.1.0", path = "crates/automata", features = ["dot"] }
peepmatic-macro = { version = "0.1.0", path = "crates/macro" }
peepmatic-runtime = { version = "0.1.0", path = "crates/runtime", features = ["construct"] }
peepmatic-automata = { version = "0.2.0", path = "crates/automata", features = ["dot"] }
peepmatic-macro = { version = "0.2.0", path = "crates/macro" }
peepmatic-runtime = { version = "0.2.0", path = "crates/runtime", features = ["construct"] }
wast = "15.0.0"
z3 = { version = "0.5.1", features = ["static-link-z3"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-automata"
version = "0.1.0"
version = "0.2.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-fuzzing"
version = "0.1.0"
version = "0.2.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
publish = false

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-macro"
version = "0.1.0"
version = "0.2.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-runtime"
version = "0.1.0"
version = "0.2.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
@@ -12,8 +12,8 @@ description = "Runtime support for peepmatic peephole optimizers"
bincode = "1.2.1"
bumpalo = "3.2.0"
log = "0.4.8"
peepmatic-automata = { version = "0.1.0", path = "../automata", features = ["serde"] }
peepmatic-macro = { version = "0.1.0", path = "../macro" }
peepmatic-automata = { version = "0.2.0", path = "../automata", features = ["serde"] }
peepmatic-macro = { version = "0.2.0", path = "../macro" }
serde = { version = "1.0.105", features = ["derive"] }
thiserror = "1.0.15"
wast = { version = "15.0.0", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "peepmatic-test"
version = "0.1.0"
version = "0.2.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
publish = false

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-preopt"
version = "0.64.0"
version = "0.65.0"
description = "Support for optimizations in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-preopt"
@@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"]
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.65.0" }
# This is commented out because it doesn't build on Rust 1.25.0, which
# cranelift currently supports.
# rustc_apfloat = { version = "0.1.2", default-features = false }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-reader"
version = "0.64.0"
version = "0.65.0"
description = "Cranelift textual IR reader"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-reader"
@@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0" }
smallvec = "1.0.0"
target-lexicon = "0.10"
thiserror = "1.0.15"

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-serde"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Serializer/Deserializer for Cranelift IR"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -18,8 +18,8 @@ clap = "2.32.0"
serde = "1.0.8"
serde_derive = "1.0.75"
serde_json = "1.0.26"
cranelift-codegen = { path = "../codegen", version = "0.64.0" }
cranelift-reader = { path = "../reader", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0" }
cranelift-reader = { path = "../reader", version = "0.65.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-simplejit"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "A simple JIT library backed by Cranelift"
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,9 +10,9 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-module = { path = "../module", version = "0.64.0" }
cranelift-native = { path = "../native", version = "0.64.0" }
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false, features = ["std"] }
cranelift-module = { path = "../module", version = "0.65.0" }
cranelift-native = { path = "../native", version = "0.65.0" }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false, features = ["std"] }
region = "2.1.0"
libc = { version = "0.2.42" }
errno = "0.2.4"
@@ -27,9 +27,9 @@ selinux-fix = ['memmap']
default = []
[dev-dependencies]
cranelift = { path = "../umbrella", version = "0.64.0" }
cranelift-frontend = { path = "../frontend", version = "0.64.0" }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift = { path = "../umbrella", version = "0.65.0" }
cranelift-frontend = { path = "../frontend", version = "0.65.0" }
cranelift-entity = { path = "../entity", version = "0.65.0" }
[badges]
maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift"
version = "0.64.0"
version = "0.65.0"
description = "Umbrella for commonly-used cranelift crates"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift"
@@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-frontend = { path = "../frontend", version = "0.64.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
cranelift-frontend = { path = "../frontend", version = "0.65.0", default-features = false }
[features]
default = ["std"]

View File

@@ -1,6 +1,6 @@
[package]
name = "cranelift-wasm"
version = "0.64.0"
version = "0.65.0"
authors = ["The Cranelift Project Developers"]
description = "Translator from WebAssembly to Cranelift IR"
documentation = "https://docs.rs/cranelift-wasm"
@@ -13,9 +13,9 @@ edition = "2018"
[dependencies]
wasmparser = { version = "0.57.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.64.0" }
cranelift-frontend = { path = "../frontend", version = "0.64.0", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.65.0" }
cranelift-frontend = { path = "../frontend", version = "0.65.0", default-features = false }
hashbrown = { version = "0.7", optional = true }
log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true }
@@ -25,7 +25,7 @@ thiserror = "1.0.4"
wat = "1.0.18"
target-lexicon = "0.10"
# Enable the riscv feature for cranelift-codegen, as some tests require it
cranelift-codegen = { path = "../codegen", version = "0.64.0", default-features = false, features = ["riscv"] }
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false, features = ["riscv"] }
[features]
default = ["std"]