Skip to content

Commit 2977dff

Browse files
committed
Remove a sorting operation from used_crates
1 parent 9a27044 commit 2977dff

File tree

2 files changed

+18
-29
lines changed

2 files changed

+18
-29
lines changed

compiler/rustc_codegen_ssa/src/base.rs

+18-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use rustc_hir::def_id::{DefId, LOCAL_CRATE};
1919
use rustc_hir::lang_items::LangItem;
2020
use rustc_index::vec::Idx;
2121
use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrs;
22-
use rustc_middle::middle::cstore::{self, EncodedMetadata};
22+
use rustc_middle::middle::cstore::EncodedMetadata;
2323
use rustc_middle::middle::lang_items;
2424
use rustc_middle::mir::mono::{CodegenUnit, CodegenUnitNameBuilder, MonoItem};
2525
use rustc_middle::ty::layout::{HasTyCtxt, TyAndLayout};
@@ -769,6 +769,22 @@ impl CrateInfo {
769769
subsystem.to_string()
770770
});
771771

772+
// This list is used when generating the command line to pass through to
773+
// system linker. The linker expects undefined symbols on the left of the
774+
// command line to be defined in libraries on the right, not the other way
775+
// around. For more info, see some comments in the add_used_library function
776+
// below.
777+
//
778+
// In order to get this left-to-right dependency ordering, we use the reverse
779+
// postorder of all crates putting the leaves at the right-most positions.
780+
let used_crates = tcx
781+
.postorder_cnums(())
782+
.iter()
783+
.rev()
784+
.copied()
785+
.filter(|&cnum| !tcx.dep_kind(cnum).macros_only())
786+
.collect();
787+
772788
let mut info = CrateInfo {
773789
local_crate_name,
774790
panic_runtime: None,
@@ -778,7 +794,7 @@ impl CrateInfo {
778794
native_libraries: Default::default(),
779795
used_libraries: tcx.native_libraries(LOCAL_CRATE).iter().map(Into::into).collect(),
780796
crate_name: Default::default(),
781-
used_crates: cstore::used_crates(tcx),
797+
used_crates,
782798
used_crate_source: Default::default(),
783799
lang_item_to_crate: Default::default(),
784800
missing_lang_items: Default::default(),

compiler/rustc_middle/src/middle/cstore.rs

-27
Original file line numberDiff line numberDiff line change
@@ -197,30 +197,3 @@ pub trait CrateStore {
197197
}
198198

199199
pub type CrateStoreDyn = dyn CrateStore + sync::Sync;
200-
201-
// This method is used when generating the command line to pass through to
202-
// system linker. The linker expects undefined symbols on the left of the
203-
// command line to be defined in libraries on the right, not the other way
204-
// around. For more info, see some comments in the add_used_library function
205-
// below.
206-
//
207-
// In order to get this left-to-right dependency ordering, we perform a
208-
// topological sort of all crates putting the leaves at the right-most
209-
// positions.
210-
pub fn used_crates(tcx: TyCtxt<'_>) -> Vec<CrateNum> {
211-
let mut libs = tcx
212-
.crates(())
213-
.iter()
214-
.cloned()
215-
.filter_map(|cnum| {
216-
if tcx.dep_kind(cnum).macros_only() {
217-
return None;
218-
}
219-
Some(cnum)
220-
})
221-
.collect::<Vec<_>>();
222-
let mut ordering = tcx.postorder_cnums(()).to_owned();
223-
ordering.reverse();
224-
libs.sort_by_cached_key(|&a| ordering.iter().position(|x| *x == a));
225-
libs
226-
}

0 commit comments

Comments
 (0)