Skip to content

Commit d29289c

Browse files
committed
Auto merge of rust-lang#84507 - crlf0710:codegen_nonlocal_main_wrapper, r=nagisa
Add primary marker on codegen unit and generate main wrapper on primary codegen. This is the codegen part of changes extracted from rust-lang#84062. This add a marker called `primary` on each codegen units, where exactly one codegen unit will be `primary = true` at a time. This specific codegen unit will take charge of generating `main` wrapper when `main` is imported from a foreign crate after the implementation of RFC 1260. cc rust-lang#28937 I'm not sure who should i ask for review for codegen changes, so feel free to reassign. r? `@nagisa`
2 parents c55c26c + 89a6705 commit d29289c

File tree

5 files changed

+20
-31
lines changed

5 files changed

+20
-31
lines changed

compiler/rustc_codegen_ssa/src/base.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -357,20 +357,9 @@ pub fn maybe_create_entry_wrapper<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
357357
if !cx.codegen_unit().contains_item(&MonoItem::Fn(instance)) {
358358
return None;
359359
}
360-
} else {
361-
// FIXME: Add support for non-local main fn codegen
362-
let span = cx.tcx().main_def.unwrap().span;
363-
let n = 28937;
364-
cx.sess()
365-
.struct_span_err(span, "entry symbol `main` from foreign crate is not yet supported.")
366-
.note(&format!(
367-
"see issue #{} <https://github.com/rust-lang/rust/issues/{}> \
368-
for more information",
369-
n, n,
370-
))
371-
.emit();
372-
cx.sess().abort_if_errors();
373-
bug!();
360+
} else if !cx.codegen_unit().is_primary() {
361+
// We want to create the wrapper only when the codegen unit is the primary one
362+
return None;
374363
}
375364

376365
let main_llfn = cx.get_fn_addr(instance);

compiler/rustc_middle/src/mir/mono.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ pub struct CodegenUnit<'tcx> {
229229
name: Symbol,
230230
items: FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)>,
231231
size_estimate: Option<usize>,
232+
primary: bool,
232233
}
233234

234235
/// Specifies the linkage type for a `MonoItem`.
@@ -258,7 +259,7 @@ pub enum Visibility {
258259

259260
impl<'tcx> CodegenUnit<'tcx> {
260261
pub fn new(name: Symbol) -> CodegenUnit<'tcx> {
261-
CodegenUnit { name, items: Default::default(), size_estimate: None }
262+
CodegenUnit { name, items: Default::default(), size_estimate: None, primary: false }
262263
}
263264

264265
pub fn name(&self) -> Symbol {
@@ -269,6 +270,14 @@ impl<'tcx> CodegenUnit<'tcx> {
269270
self.name = name;
270271
}
271272

273+
pub fn is_primary(&self) -> bool {
274+
self.primary
275+
}
276+
277+
pub fn make_primary(&mut self) {
278+
self.primary = true;
279+
}
280+
272281
pub fn items(&self) -> &FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)> {
273282
&self.items
274283
}
@@ -378,6 +387,7 @@ impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for CodegenUnit<'tcx> {
378387
name,
379388
// The size estimate is not relevant to the hash
380389
size_estimate: _,
390+
primary: _,
381391
} = *self;
382392

383393
name.hash_stable(hcx, hasher);

compiler/rustc_mir/src/monomorphize/partitioning/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -350,12 +350,14 @@ fn collect_and_partition_mono_items<'tcx>(
350350
let (codegen_units, _) = tcx.sess.time("partition_and_assert_distinct_symbols", || {
351351
sync::join(
352352
|| {
353-
&*tcx.arena.alloc_from_iter(partition(
353+
let mut codegen_units = partition(
354354
tcx,
355355
&mut items.iter().cloned(),
356356
tcx.sess.codegen_units(),
357357
&inlining_map,
358-
))
358+
);
359+
codegen_units[0].make_primary();
360+
&*tcx.arena.alloc_from_iter(codegen_units)
359361
},
360362
|| assert_symbols_are_distinct(tcx, items.iter()),
361363
)
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// build-fail
1+
// run-pass
22
// aux-build:main_functions.rs
33

44
#![feature(imported_main)]
55

66
extern crate main_functions;
7-
pub use main_functions::boilerplate as main; //~ ERROR entry symbol `main` from foreign crate
8-
9-
// FIXME: Should be run-pass
7+
pub use main_functions::boilerplate as main;

src/test/ui/entry-point/imported_main_from_extern_crate.stderr

-10
This file was deleted.

0 commit comments

Comments
 (0)