Lines Matching refs:codegen
634 pub codegen: CodegenOptions, field
701 codegen: Default::default(), in new()
719 self.codegen = toml_options.codegen; in configure()
726 self.codegen.configure_with(&self.codegen_raw); in configure()
772 ["cranelift" : self.codegen.compiler] in config()
777 ["gc" : self.codegen.collector] in config()
785 ["cranelift" : self.codegen.cranelift_debug_verifier] in config()
822 for (name, value) in self.codegen.cranelift.iter() { in config()
836 if !self.codegen.cranelift.is_empty() { in config()
841 if self.codegen.cache != Some(false) { in config()
843 let cache = match &self.codegen.cache_config { in config()
850 if self.codegen.cache == Some(true) { in config()
855 ["parallel-compilation" : self.codegen.parallel_compilation] in config()
918 if let Some(enable) = self.codegen.native_unwind_info { in config()
921 if let Some(enable) = self.codegen.inlining { in config()
1277 .and_then(|common_options| common_options.codegen.compiler); in from_toml()
1303 .and_then(|common_options| common_options.codegen.collector); in from_toml()
1322 codegen, in fmt()
1352 codegen_flags = codegen.to_options(); in fmt()