Skip to content

Commit 7c0a6f4

Browse files
authored
Rollup merge of rust-lang#58605 - nagisa:fix-the-metadata, r=michaelwoerister
Use informational target machine for metadata Since there is nothing to optimise there... Should fix rust-lang#58323 but haven’t tested locally. r? @michaelwoerister
2 parents 9bf28e0 + d89c2f6 commit 7c0a6f4

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

src/librustc_codegen_llvm/back/write.rs

-10
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ use crate::common;
1313
use crate::LlvmCodegenBackend;
1414
use rustc_codegen_ssa::back::write::{CodegenContext, ModuleConfig, run_assembler};
1515
use rustc_codegen_ssa::traits::*;
16-
use rustc::hir::def_id::LOCAL_CRATE;
1716
use rustc::session::config::{self, OutputType, Passes, Lto};
1817
use rustc::session::Session;
19-
use rustc::ty::TyCtxt;
2018
use rustc_codegen_ssa::{ModuleCodegen, CompiledModule};
2119
use rustc::util::common::time_ext;
2220
use rustc_fs_util::{path_to_c_string, link_or_copy};
@@ -82,14 +80,6 @@ pub fn write_output_file(
8280
}
8381
}
8482

85-
pub fn create_target_machine(
86-
tcx: TyCtxt<'_, '_, '_>,
87-
find_features: bool,
88-
) -> &'static mut llvm::TargetMachine {
89-
target_machine_factory(tcx.sess, tcx.backend_optimization_level(LOCAL_CRATE), find_features)()
90-
.unwrap_or_else(|err| llvm_err(tcx.sess.diagnostic(), &err).raise() )
91-
}
92-
9383
pub fn create_informational_target_machine(
9484
sess: &Session,
9585
find_features: bool,

src/librustc_codegen_llvm/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ pub unsafe fn create_module(
154154

155155
// Ensure the data-layout values hardcoded remain the defaults.
156156
if sess.target.target.options.is_builtin {
157-
let tm = crate::back::write::create_target_machine(tcx, false);
157+
let tm = crate::back::write::create_informational_target_machine(&tcx.sess, false);
158158
llvm::LLVMRustSetDataLayoutFromTargetMachine(llmod, tm);
159159
llvm::LLVMRustDisposeTargetMachine(tm);
160160

src/librustc_codegen_llvm/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#![deny(rust_2018_idioms)]
2525
#![allow(explicit_outlives_requirements)]
2626

27-
use back::write::create_target_machine;
27+
use back::write::create_informational_target_machine;
2828
use syntax_pos::symbol::Symbol;
2929

3030
extern crate flate2;
@@ -114,8 +114,9 @@ pub struct LlvmCodegenBackend(());
114114

115115
impl ExtraBackendMethods for LlvmCodegenBackend {
116116
fn new_metadata(&self, tcx: TyCtxt<'_, '_, '_>, mod_name: &str) -> ModuleLlvm {
117-
ModuleLlvm::new(tcx, mod_name)
117+
ModuleLlvm::new_metadata(tcx, mod_name)
118118
}
119+
119120
fn write_metadata<'b, 'gcx>(
120121
&self,
121122
tcx: TyCtxt<'b, 'gcx, 'gcx>,
@@ -366,15 +367,14 @@ unsafe impl Send for ModuleLlvm { }
366367
unsafe impl Sync for ModuleLlvm { }
367368

368369
impl ModuleLlvm {
369-
fn new(tcx: TyCtxt<'_, '_, '_>, mod_name: &str) -> Self {
370+
fn new_metadata(tcx: TyCtxt<'_, '_, '_>, mod_name: &str) -> Self {
370371
unsafe {
371372
let llcx = llvm::LLVMRustContextCreate(tcx.sess.fewer_names());
372373
let llmod_raw = context::create_module(tcx, llcx, mod_name) as *const _;
373-
374374
ModuleLlvm {
375375
llmod_raw,
376376
llcx,
377-
tm: create_target_machine(tcx, false),
377+
tm: create_informational_target_machine(&tcx.sess, false),
378378
}
379379
}
380380
}

src/librustc_codegen_ssa/back/write.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,13 @@ fn start_executing_work<B: ExtraBackendMethods>(
10221022
None
10231023
};
10241024

1025-
let ol = tcx.backend_optimization_level(LOCAL_CRATE);
1025+
let ol = if tcx.sess.opts.debugging_opts.no_codegen
1026+
|| !tcx.sess.opts.output_types.should_codegen() {
1027+
// If we know that we won’t be doing codegen, create target machines without optimisation.
1028+
config::OptLevel::No
1029+
} else {
1030+
tcx.backend_optimization_level(LOCAL_CRATE)
1031+
};
10261032
let cgcx = CodegenContext::<B> {
10271033
backend: backend.clone(),
10281034
crate_types: sess.crate_types.borrow().clone(),

0 commit comments

Comments
 (0)