This commit introduces the `winch-environ` crate. This crate's responsibility is to provide a shared implementatation of the `winch_codegen::FuncEnv` trait, which is Winch's function compilation environment, used to resolve module and runtime specific information needed by the code generation, such as resolving all the details about a callee in a WebAssembly module, or resolving specific information from the `VMContext`. As of this change, the implementation only includes the necessary pieces to resolve a function callee in a WebAssembly module. The idea is to evolve the `winch_codegen::FuncEnv` trait as we evolve Winch's code generation.
24 lines
771 B
TOML
24 lines
771 B
TOML
[package]
|
|
authors = ["The Winch Project Developers"]
|
|
name = "winch-filetests"
|
|
description = "Tests for the Winch compiler based on a set of known valid files"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
winch-test-macros = {workspace = true}
|
|
target-lexicon = { workspace = true }
|
|
winch-codegen = { workspace = true, features = ['all-arch'] }
|
|
winch-environ = { workspace = true }
|
|
wasmtime-environ = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
wat = { workspace = true }
|
|
similar = { workspace = true }
|
|
toml = { workspace = true }
|
|
serde = { workspace = true }
|
|
cranelift-codegen = { workspace = true }
|
|
capstone = { workspace = true }
|