Home
last modified time | relevance | path

Searched refs:Features (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/cranelift/assembler-x64/meta/src/dsl/
H A Dfeatures.rs17 pub enum Features { enum
18 And(Box<Features>, Box<Features>),
19 Or(Box<Features>, Box<Features>),
23 impl Features { impl
46 impl<T> BitOr<T> for Features implementation
48 T: Into<Features>,
50 type Output = Features;
58 T: Into<Features>,
60 type Output = Features;
146 T: Into<Features>,
[all …]
/wasmtime-44.0.1/cranelift/assembler-x64/src/
H A Dfeatures.rs84 pub enum Features { enum
85 And(&'static Features, &'static Features),
86 Or(&'static Features, &'static Features),
90 impl fmt::Display for Features { implementation
93 Features::And(lhs, rhs) => write!(f, "({lhs} & {rhs})"), in fmt()
94 Features::Or(lhs, rhs) => write!(f, "({lhs} | {rhs})"), in fmt()
95 Features::Feature(feature) => write!(f, "{feature:#?}"), in fmt()
H A Dinst.rs9 use crate::features::{AvailableFeatures, Feature, Features};
H A Dlib.rs77 pub use features::{AvailableFeatures, Feature, Features};
/wasmtime-44.0.1/cranelift/assembler-x64/meta/src/generate/
H A Dfeatures.rs26 impl dsl::Features { implementation
31 use dsl::Features::*; in generate_boolean_expr()
51 use dsl::Features::*; in generate_inner_boolean_expr()
78 use dsl::Features::*; in generate_inner_constructor_expr()
/wasmtime-44.0.1/cranelift/assembler-x64/meta/src/
H A Ddsl.rs18 pub use features::{ALL_FEATURES, Feature, Features};
27 features: impl Into<Features>, in inst() argument
64 pub features: Features,
/wasmtime-44.0.1/docs/
H A Dstability-tiers.md358 Features classified under a particular tier may already meet the criteria for
414 Features classified as Tier 3 may be disabled in CI or removed from the
424 for Tier 1. Features in this category may already be "production ready" and safe
469 Features at this tier generally are not turned off or disabled for very long.
520 Features classified as Tier 1 are rarely, if ever, turned off or removed from
/wasmtime-44.0.1/
H A DREADME.md89 ## Features section
H A DCargo.toml456 # Features for the Wasmtime CLI executable
460 # otherwise configure the `wasmtime` crate's execution. Features are provided as
/wasmtime-44.0.1/crates/wasmtime/
H A DCargo.toml123 # Features for the Wasmtime crate.