Files
wasmtime/cranelift/reader/Cargo.toml
Julian Seward 94190d5724 cranelift/reader/src/parser.rs: fn parse_inst_resuts: produce the results as a
SmallVec<[Value; 1]>, not as a Vec<Value>.  This isn't a useful change for any
non-developer use of Cranelift, but it does significantly reduce the amount of
allocation "noise" seen when tuning the new backend pipeline as driven by
clif-util reading .clif files.  In one case the number of malloc calls
declined by about 20% with this change.
2020-05-11 12:27:15 +02:00

20 lines
534 B
TOML

[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-reader"
version = "0.63.0"
description = "Cranelift textual IR reader"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-reader"
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.63.0" }
smallvec = "1.0.0"
target-lexicon = "0.10"
thiserror = "1.0.15"
[badges]
maintenance = { status = "experimental" }