Lines Matching refs:Config
35 match Module::new(&Engine::new(Config::new().target(target)?)?, "(module)") { in checks_incompatible_target()
49 let c = Config::new(); in caches_across_engines()
62 &Engine::new(Config::new().memory_reservation(0)).unwrap(), in caches_across_engines()
70 &Engine::new(Config::new().wasm_relaxed_simd(false)).unwrap(), in caches_across_engines()
145 let mut config = Config::new(); in serialize_not_overly_massive()
208 let mut config = Config::new(); in missing_sse_and_floats_still_works()
247 let mut config = Config::new(); in large_add_chain_no_stack_overflow()
289 &Engine::new(Config::new().strategy(Strategy::Cranelift))?, in tail_call_defaults()
296 &Engine::new(Config::new().strategy(Strategy::Winch))?, in tail_call_defaults()
332 fn concurrent_type_registry_modifications(config: &mut Config) -> Result<()> { in concurrent_type_registry_modifications()
475 fn concurrent_type_modifications_and_checks(config: &mut Config) -> Result<()> { in concurrent_type_modifications_and_checks()
574 let engine_parallel = Engine::new(&Config::new().parallel_compilation(true)).unwrap(); in validate_deterministic()
579 let engine_sequential = Engine::new(&Config::new().parallel_compilation(false)).unwrap(); in validate_deterministic()
590 let mut config = Config::new(); in deserialize_raw_avoids_copy()