Home
last modified time | relevance | path

Searched refs:RegallocAlgorithm (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dcompile.rs7 use crate::settings::RegallocAlgorithm;
61 RegallocAlgorithm::Backtracking => Algorithm::Ion, in compile()
62 RegallocAlgorithm::SinglePass => Algorithm::Fastalloc, in compile()
/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dconfig.rs572 regalloc_algorithm: RegallocAlgorithm,
843 enum RegallocAlgorithm { enum
848 impl RegallocAlgorithm { implementation
849 fn to_wasmtime(&self) -> wasmtime::RegallocAlgorithm { in to_wasmtime() argument
851 RegallocAlgorithm::Backtracking => wasmtime::RegallocAlgorithm::Backtracking, in to_wasmtime()
852 RegallocAlgorithm::SinglePass => { in to_wasmtime()
856 wasmtime::RegallocAlgorithm::Backtracking in to_wasmtime()
858 wasmtime::RegallocAlgorithm::SinglePass in to_wasmtime()
/wasmtime-44.0.1/crates/cli-flags/src/
H A Dopt.rs496 impl WasmtimeOptionValue for wasmtime::RegallocAlgorithm { implementation
500 "backtracking" => Ok(wasmtime::RegallocAlgorithm::Backtracking), in parse()
501 "single-pass" => Ok(wasmtime::RegallocAlgorithm::SinglePass), in parse()
510 wasmtime::RegallocAlgorithm::Backtracking => f.write_str("backtracking"), in display()
511 wasmtime::RegallocAlgorithm::SinglePass => f.write_str("single-pass"), in display()
H A Dlib.rs55 pub regalloc_algorithm: Option<wasmtime::RegallocAlgorithm>,
1190 use wasmtime::{OptLevel, RegallocAlgorithm};
1240 ("\"backtracking\"", Some(RegallocAlgorithm::Backtracking)), in from_toml()
1241 ("\"single-pass\"", Some(RegallocAlgorithm::SinglePass)), in from_toml()
/wasmtime-44.0.1/tests/all/
H A Dstack_overflow.rs155 config.cranelift_regalloc_algorithm(RegallocAlgorithm::SinglePass); in big_stack_works_ok()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs1431 pub fn cranelift_regalloc_algorithm(&mut self, algo: RegallocAlgorithm) -> &mut Self { in cranelift_regalloc_algorithm()
1433 RegallocAlgorithm::Backtracking => "backtracking", in cranelift_regalloc_algorithm()
1434 RegallocAlgorithm::SinglePass => "single_pass", in cranelift_regalloc_algorithm()
3309 pub enum RegallocAlgorithm { enum