2016-03-24 10:40:49 -05:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Partitioning Codegen Units for Incremental Compilation
|
|
|
|
//! ======================================================
|
|
|
|
//!
|
|
|
|
//! The task of this module is to take the complete set of translation items of
|
|
|
|
//! a crate and produce a set of codegen units from it, where a codegen unit
|
|
|
|
//! is a named set of (translation-item, linkage) pairs. That is, this module
|
|
|
|
//! decides which translation item appears in which codegen units with which
|
|
|
|
//! linkage. The following paragraphs describe some of the background on the
|
|
|
|
//! partitioning scheme.
|
|
|
|
//!
|
|
|
|
//! The most important opportunity for saving on compilation time with
|
|
|
|
//! incremental compilation is to avoid re-translating and re-optimizing code.
|
|
|
|
//! Since the unit of translation and optimization for LLVM is "modules" or, how
|
|
|
|
//! we call them "codegen units", the particulars of how much time can be saved
|
|
|
|
//! by incremental compilation are tightly linked to how the output program is
|
|
|
|
//! partitioned into these codegen units prior to passing it to LLVM --
|
|
|
|
//! especially because we have to treat codegen units as opaque entities once
|
|
|
|
//! they are created: There is no way for us to incrementally update an existing
|
|
|
|
//! LLVM module and so we have to build any such module from scratch if it was
|
|
|
|
//! affected by some change in the source code.
|
|
|
|
//!
|
|
|
|
//! From that point of view it would make sense to maximize the number of
|
|
|
|
//! codegen units by, for example, putting each function into its own module.
|
|
|
|
//! That way only those modules would have to be re-compiled that were actually
|
|
|
|
//! affected by some change, minimizing the number of functions that could have
|
|
|
|
//! been re-used but just happened to be located in a module that is
|
|
|
|
//! re-compiled.
|
|
|
|
//!
|
|
|
|
//! However, since LLVM optimization does not work across module boundaries,
|
|
|
|
//! using such a highly granular partitioning would lead to very slow runtime
|
|
|
|
//! code since it would effectively prohibit inlining and other inter-procedure
|
|
|
|
//! optimizations. We want to avoid that as much as possible.
|
|
|
|
//!
|
|
|
|
//! Thus we end up with a trade-off: The bigger the codegen units, the better
|
|
|
|
//! LLVM's optimizer can do its work, but also the smaller the compilation time
|
|
|
|
//! reduction we get from incremental compilation.
|
|
|
|
//!
|
|
|
|
//! Ideally, we would create a partitioning such that there are few big codegen
|
|
|
|
//! units with few interdependencies between them. For now though, we use the
|
|
|
|
//! following heuristic to determine the partitioning:
|
|
|
|
//!
|
|
|
|
//! - There are two codegen units for every source-level module:
|
|
|
|
//! - One for "stable", that is non-generic, code
|
|
|
|
//! - One for more "volatile" code, i.e. monomorphized instances of functions
|
|
|
|
//! defined in that module
|
|
|
|
//!
|
|
|
|
//! In order to see why this heuristic makes sense, let's take a look at when a
|
|
|
|
//! codegen unit can get invalidated:
|
|
|
|
//!
|
|
|
|
//! 1. The most straightforward case is when the BODY of a function or global
|
|
|
|
//! changes. Then any codegen unit containing the code for that item has to be
|
|
|
|
//! re-compiled. Note that this includes all codegen units where the function
|
|
|
|
//! has been inlined.
|
|
|
|
//!
|
|
|
|
//! 2. The next case is when the SIGNATURE of a function or global changes. In
|
|
|
|
//! this case, all codegen units containing a REFERENCE to that item have to be
|
|
|
|
//! re-compiled. This is a superset of case 1.
|
|
|
|
//!
|
|
|
|
//! 3. The final and most subtle case is when a REFERENCE to a generic function
|
|
|
|
//! is added or removed somewhere. Even though the definition of the function
|
|
|
|
//! might be unchanged, a new REFERENCE might introduce a new monomorphized
|
|
|
|
//! instance of this function which has to be placed and compiled somewhere.
|
|
|
|
//! Conversely, when removing a REFERENCE, it might have been the last one with
|
|
|
|
//! that particular set of generic arguments and thus we have to remove it.
|
|
|
|
//!
|
|
|
|
//! From the above we see that just using one codegen unit per source-level
|
|
|
|
//! module is not such a good idea, since just adding a REFERENCE to some
|
|
|
|
//! generic item somewhere else would invalidate everything within the module
|
|
|
|
//! containing the generic item. The heuristic above reduces this detrimental
|
|
|
|
//! side-effect of references a little by at least not touching the non-generic
|
|
|
|
//! code of the module.
|
|
|
|
//!
|
|
|
|
//! A Note on Inlining
|
|
|
|
//! ------------------
|
|
|
|
//! As briefly mentioned above, in order for LLVM to be able to inline a
|
|
|
|
//! function call, the body of the function has to be available in the LLVM
|
|
|
|
//! module where the call is made. This has a few consequences for partitioning:
|
|
|
|
//!
|
|
|
|
//! - The partitioning algorithm has to take care of placing functions into all
|
|
|
|
//! codegen units where they should be available for inlining. It also has to
|
|
|
|
//! decide on the correct linkage for these functions.
|
|
|
|
//!
|
|
|
|
//! - The partitioning algorithm has to know which functions are likely to get
|
|
|
|
//! inlined, so it can distribute function instantiations accordingly. Since
|
|
|
|
//! there is no way of knowing for sure which functions LLVM will decide to
|
|
|
|
//! inline in the end, we apply a heuristic here: Only functions marked with
|
2017-01-09 08:54:54 -06:00
|
|
|
//! #[inline] are considered for inlining by the partitioner. The current
|
|
|
|
//! implementation will not try to determine if a function is likely to be
|
|
|
|
//! inlined by looking at the functions definition.
|
2016-03-24 10:40:49 -05:00
|
|
|
//!
|
|
|
|
//! Note though that as a side-effect of creating a codegen units per
|
|
|
|
//! source-level module, functions from the same module will be available for
|
|
|
|
//! inlining, even when they are not marked #[inline].
|
|
|
|
|
2016-05-09 13:26:15 -05:00
|
|
|
use collector::InliningMap;
|
2017-02-28 17:30:41 -06:00
|
|
|
use common;
|
2016-08-08 19:50:19 -05:00
|
|
|
use context::SharedCrateContext;
|
2016-05-09 12:37:14 -05:00
|
|
|
use llvm;
|
2016-07-21 11:49:59 -05:00
|
|
|
use rustc::dep_graph::{DepNode, WorkProductId};
|
2016-03-24 10:40:49 -05:00
|
|
|
use rustc::hir::def_id::DefId;
|
|
|
|
use rustc::hir::map::DefPathData;
|
2016-05-13 19:48:32 -05:00
|
|
|
use rustc::session::config::NUMBERED_CODEGEN_UNIT_MARKER;
|
2017-02-08 11:31:03 -06:00
|
|
|
use rustc::ty::{self, TyCtxt};
|
2016-03-24 10:40:49 -05:00
|
|
|
use rustc::ty::item_path::characteristic_def_id_of_type;
|
2016-12-09 16:13:13 -06:00
|
|
|
use rustc_incremental::IchHasher;
|
2016-05-26 12:04:35 -05:00
|
|
|
use std::cmp::Ordering;
|
2016-12-09 16:13:13 -06:00
|
|
|
use std::hash::Hash;
|
2016-07-21 11:49:59 -05:00
|
|
|
use std::sync::Arc;
|
2017-04-14 14:10:53 -05:00
|
|
|
use symbol_cache::SymbolCache;
|
2016-05-26 12:04:35 -05:00
|
|
|
use syntax::ast::NodeId;
|
2016-11-16 04:52:37 -06:00
|
|
|
use syntax::symbol::{Symbol, InternedString};
|
2017-01-09 08:52:08 -06:00
|
|
|
use trans_item::{TransItem, InstantiationMode};
|
2016-11-07 21:02:55 -06:00
|
|
|
use util::nodemap::{FxHashMap, FxHashSet};
|
2016-03-24 10:40:49 -05:00
|
|
|
|
2016-04-21 15:45:33 -05:00
|
|
|
pub enum PartitioningStrategy {
|
2016-04-22 13:07:23 -05:00
|
|
|
/// Generate one codegen unit per source-level module.
|
2016-04-21 15:45:33 -05:00
|
|
|
PerModule,
|
2016-04-22 13:07:23 -05:00
|
|
|
|
|
|
|
/// Partition the whole crate into a fixed number of codegen units.
|
2016-04-21 15:45:33 -05:00
|
|
|
FixedUnitCount(usize)
|
|
|
|
}
|
|
|
|
|
2016-05-26 10:43:53 -05:00
|
|
|
pub struct CodegenUnit<'tcx> {
|
2016-07-25 09:51:14 -05:00
|
|
|
/// A name for this CGU. Incremental compilation requires that
|
|
|
|
/// name be unique amongst **all** crates. Therefore, it should
|
|
|
|
/// contain something unique to this crate (e.g., a module path)
|
|
|
|
/// as well as the crate name and disambiguator.
|
2016-07-21 11:49:59 -05:00
|
|
|
name: InternedString,
|
2016-07-25 09:51:14 -05:00
|
|
|
|
2016-11-07 21:02:55 -06:00
|
|
|
items: FxHashMap<TransItem<'tcx>, llvm::Linkage>,
|
2016-05-26 10:43:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> CodegenUnit<'tcx> {
|
2016-07-21 11:49:59 -05:00
|
|
|
pub fn new(name: InternedString,
|
2016-11-07 21:02:55 -06:00
|
|
|
items: FxHashMap<TransItem<'tcx>, llvm::Linkage>)
|
2016-07-21 11:49:59 -05:00
|
|
|
-> Self {
|
|
|
|
CodegenUnit {
|
|
|
|
name: name,
|
|
|
|
items: items,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn empty(name: InternedString) -> Self {
|
2016-11-07 21:02:55 -06:00
|
|
|
Self::new(name, FxHashMap())
|
2016-07-21 11:49:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn contains_item(&self, item: &TransItem<'tcx>) -> bool {
|
|
|
|
self.items.contains_key(item)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn name(&self) -> &str {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
|
2016-11-07 21:02:55 -06:00
|
|
|
pub fn items(&self) -> &FxHashMap<TransItem<'tcx>, llvm::Linkage> {
|
2016-07-21 11:49:59 -05:00
|
|
|
&self.items
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn work_product_id(&self) -> Arc<WorkProductId> {
|
2016-07-25 09:51:14 -05:00
|
|
|
Arc::new(WorkProductId(self.name().to_string()))
|
2016-07-21 11:49:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn work_product_dep_node(&self) -> DepNode<DefId> {
|
|
|
|
DepNode::WorkProduct(self.work_product_id())
|
|
|
|
}
|
|
|
|
|
2017-04-14 14:10:53 -05:00
|
|
|
pub fn compute_symbol_name_hash<'a>(&self,
|
|
|
|
scx: &SharedCrateContext<'a, 'tcx>,
|
|
|
|
symbol_cache: &SymbolCache<'a, 'tcx>)
|
|
|
|
-> u64 {
|
2016-12-09 16:13:13 -06:00
|
|
|
let mut state = IchHasher::new();
|
|
|
|
let exported_symbols = scx.exported_symbols();
|
2017-04-14 14:10:53 -05:00
|
|
|
let all_items = self.items_in_deterministic_order(scx.tcx(), symbol_cache);
|
2016-07-21 11:49:59 -05:00
|
|
|
for (item, _) in all_items {
|
2017-04-14 14:10:53 -05:00
|
|
|
let symbol_name = symbol_cache.get(item);
|
2016-12-09 16:13:13 -06:00
|
|
|
symbol_name.len().hash(&mut state);
|
2016-07-21 11:49:59 -05:00
|
|
|
symbol_name.hash(&mut state);
|
2016-12-09 16:13:13 -06:00
|
|
|
let exported = match item {
|
2017-03-21 10:03:52 -05:00
|
|
|
TransItem::Fn(ref instance) => {
|
|
|
|
let node_id =
|
|
|
|
scx.tcx().hir.as_local_node_id(instance.def_id());
|
2016-12-09 16:13:13 -06:00
|
|
|
node_id.map(|node_id| exported_symbols.contains(&node_id))
|
2017-03-21 10:03:52 -05:00
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
|
|
|
TransItem::Static(node_id) => {
|
2016-12-09 16:13:13 -06:00
|
|
|
exported_symbols.contains(&node_id)
|
2017-03-21 10:03:52 -05:00
|
|
|
}
|
|
|
|
TransItem::GlobalAsm(..) => true,
|
2016-12-09 16:13:13 -06:00
|
|
|
};
|
|
|
|
exported.hash(&mut state);
|
2016-07-21 11:49:59 -05:00
|
|
|
}
|
2016-12-09 16:13:13 -06:00
|
|
|
state.finish().to_smaller_hash()
|
2016-07-21 11:49:59 -05:00
|
|
|
}
|
|
|
|
|
2017-04-14 14:10:53 -05:00
|
|
|
pub fn items_in_deterministic_order<'a>(&self,
|
|
|
|
tcx: TyCtxt,
|
|
|
|
symbol_cache: &SymbolCache<'a, 'tcx>)
|
|
|
|
-> Vec<(TransItem<'tcx>, llvm::Linkage)> {
|
2016-05-26 10:43:53 -05:00
|
|
|
let mut items: Vec<(TransItem<'tcx>, llvm::Linkage)> =
|
|
|
|
self.items.iter().map(|(item, linkage)| (*item, *linkage)).collect();
|
|
|
|
|
2016-05-26 12:04:35 -05:00
|
|
|
// The codegen tests rely on items being process in the same order as
|
|
|
|
// they appear in the file, so for local items, we sort by node_id first
|
2016-06-02 11:28:29 -05:00
|
|
|
items.sort_by(|&(trans_item1, _), &(trans_item2, _)| {
|
2016-05-26 12:04:35 -05:00
|
|
|
let node_id1 = local_node_id(tcx, trans_item1);
|
|
|
|
let node_id2 = local_node_id(tcx, trans_item2);
|
|
|
|
|
|
|
|
match (node_id1, node_id2) {
|
|
|
|
(None, None) => {
|
2017-04-14 14:10:53 -05:00
|
|
|
let symbol_name1 = symbol_cache.get(trans_item1);
|
|
|
|
let symbol_name2 = symbol_cache.get(trans_item2);
|
|
|
|
symbol_name1.cmp(&symbol_name2)
|
2016-05-26 12:04:35 -05:00
|
|
|
}
|
2016-06-02 11:28:29 -05:00
|
|
|
// In the following two cases we can avoid looking up the symbol
|
2016-05-26 12:04:35 -05:00
|
|
|
(None, Some(_)) => Ordering::Less,
|
|
|
|
(Some(_), None) => Ordering::Greater,
|
|
|
|
(Some(node_id1), Some(node_id2)) => {
|
|
|
|
let ordering = node_id1.cmp(&node_id2);
|
|
|
|
|
|
|
|
if ordering != Ordering::Equal {
|
|
|
|
return ordering;
|
|
|
|
}
|
|
|
|
|
2017-04-14 14:10:53 -05:00
|
|
|
let symbol_name1 = symbol_cache.get(trans_item1);
|
|
|
|
let symbol_name2 = symbol_cache.get(trans_item2);
|
|
|
|
symbol_name1.cmp(&symbol_name2)
|
2016-05-26 12:04:35 -05:00
|
|
|
}
|
|
|
|
}
|
2016-05-26 10:43:53 -05:00
|
|
|
});
|
|
|
|
|
2016-05-26 12:04:35 -05:00
|
|
|
return items;
|
|
|
|
|
|
|
|
fn local_node_id(tcx: TyCtxt, trans_item: TransItem) -> Option<NodeId> {
|
|
|
|
match trans_item {
|
|
|
|
TransItem::Fn(instance) => {
|
2017-02-08 11:31:03 -06:00
|
|
|
tcx.hir.as_local_node_id(instance.def_id())
|
2016-05-26 12:04:35 -05:00
|
|
|
}
|
2017-03-21 10:03:52 -05:00
|
|
|
TransItem::Static(node_id) | TransItem::GlobalAsm(node_id) => {
|
|
|
|
Some(node_id)
|
|
|
|
}
|
2016-05-26 12:04:35 -05:00
|
|
|
}
|
|
|
|
}
|
2016-05-26 10:43:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-24 10:40:49 -05:00
|
|
|
// Anything we can't find a proper codegen unit for goes into this.
|
|
|
|
const FALLBACK_CODEGEN_UNIT: &'static str = "__rustc_fallback_codegen_unit";
|
|
|
|
|
2016-08-08 19:50:19 -05:00
|
|
|
pub fn partition<'a, 'tcx, I>(scx: &SharedCrateContext<'a, 'tcx>,
|
2016-05-02 20:56:42 -05:00
|
|
|
trans_items: I,
|
|
|
|
strategy: PartitioningStrategy,
|
2016-09-15 19:39:58 -05:00
|
|
|
inlining_map: &InliningMap<'tcx>)
|
2016-05-02 20:56:42 -05:00
|
|
|
-> Vec<CodegenUnit<'tcx>>
|
2016-03-24 10:40:49 -05:00
|
|
|
where I: Iterator<Item = TransItem<'tcx>>
|
|
|
|
{
|
2016-08-08 19:50:19 -05:00
|
|
|
let tcx = scx.tcx();
|
|
|
|
|
2016-03-24 10:40:49 -05:00
|
|
|
// In the first step, we place all regular translation items into their
|
|
|
|
// respective 'home' codegen unit. Regular translation items are all
|
|
|
|
// functions and statics defined in the local crate.
|
2016-08-08 19:50:19 -05:00
|
|
|
let mut initial_partitioning = place_root_translation_items(scx,
|
2016-09-15 19:39:58 -05:00
|
|
|
trans_items);
|
2016-04-21 15:45:33 -05:00
|
|
|
|
2016-10-04 11:02:19 -05:00
|
|
|
debug_dump(scx, "INITIAL PARTITONING:", initial_partitioning.codegen_units.iter());
|
2016-05-09 22:56:49 -05:00
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
// If the partitioning should produce a fixed count of codegen units, merge
|
|
|
|
// until that count is reached.
|
2016-04-21 15:45:33 -05:00
|
|
|
if let PartitioningStrategy::FixedUnitCount(count) = strategy {
|
2016-11-16 04:52:37 -06:00
|
|
|
merge_codegen_units(&mut initial_partitioning, count, &tcx.crate_name.as_str());
|
2016-05-09 22:56:49 -05:00
|
|
|
|
2016-10-04 11:02:19 -05:00
|
|
|
debug_dump(scx, "POST MERGING:", initial_partitioning.codegen_units.iter());
|
2016-04-21 15:45:33 -05:00
|
|
|
}
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
// In the next step, we use the inlining map to determine which addtional
|
|
|
|
// translation items have to go into each codegen unit. These additional
|
|
|
|
// translation items can be drop-glue, functions from external crates, and
|
|
|
|
// local functions the definition of which is marked with #[inline].
|
2016-04-22 13:07:23 -05:00
|
|
|
let post_inlining = place_inlined_translation_items(initial_partitioning,
|
2016-05-09 13:26:15 -05:00
|
|
|
inlining_map);
|
2016-05-09 22:56:49 -05:00
|
|
|
|
2016-10-04 11:02:19 -05:00
|
|
|
debug_dump(scx, "POST INLINING:", post_inlining.0.iter());
|
2016-05-09 22:56:49 -05:00
|
|
|
|
2016-05-26 10:43:53 -05:00
|
|
|
// Finally, sort by codegen unit name, so that we get deterministic results
|
|
|
|
let mut result = post_inlining.0;
|
2016-06-02 11:28:29 -05:00
|
|
|
result.sort_by(|cgu1, cgu2| {
|
2016-05-26 10:43:53 -05:00
|
|
|
(&cgu1.name[..]).cmp(&cgu2.name[..])
|
|
|
|
});
|
|
|
|
|
|
|
|
result
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
struct PreInliningPartitioning<'tcx> {
|
2016-03-24 10:40:49 -05:00
|
|
|
codegen_units: Vec<CodegenUnit<'tcx>>,
|
2016-11-07 21:02:55 -06:00
|
|
|
roots: FxHashSet<TransItem<'tcx>>,
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
struct PostInliningPartitioning<'tcx>(Vec<CodegenUnit<'tcx>>);
|
|
|
|
|
2016-08-08 19:50:19 -05:00
|
|
|
fn place_root_translation_items<'a, 'tcx, I>(scx: &SharedCrateContext<'a, 'tcx>,
|
2016-09-15 19:39:58 -05:00
|
|
|
trans_items: I)
|
2016-05-02 20:56:42 -05:00
|
|
|
-> PreInliningPartitioning<'tcx>
|
2016-03-24 10:40:49 -05:00
|
|
|
where I: Iterator<Item = TransItem<'tcx>>
|
|
|
|
{
|
2016-08-08 19:50:19 -05:00
|
|
|
let tcx = scx.tcx();
|
2016-11-07 21:02:55 -06:00
|
|
|
let mut roots = FxHashSet();
|
|
|
|
let mut codegen_units = FxHashMap();
|
2017-01-09 08:52:08 -06:00
|
|
|
let is_incremental_build = tcx.sess.opts.incremental.is_some();
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
for trans_item in trans_items {
|
2017-01-09 08:52:08 -06:00
|
|
|
let is_root = trans_item.instantiation_mode(tcx) == InstantiationMode::GloballyShared;
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
if is_root {
|
2016-08-08 19:50:19 -05:00
|
|
|
let characteristic_def_id = characteristic_def_id_of_trans_item(scx, trans_item);
|
2017-01-09 08:52:08 -06:00
|
|
|
let is_volatile = is_incremental_build &&
|
|
|
|
trans_item.is_generic_fn();
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
let codegen_unit_name = match characteristic_def_id {
|
|
|
|
Some(def_id) => compute_codegen_unit_name(tcx, def_id, is_volatile),
|
2016-11-17 08:04:20 -06:00
|
|
|
None => Symbol::intern(FALLBACK_CODEGEN_UNIT).as_str(),
|
2016-03-24 10:40:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let make_codegen_unit = || {
|
2016-07-21 11:49:59 -05:00
|
|
|
CodegenUnit::empty(codegen_unit_name.clone())
|
2016-03-24 10:40:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut codegen_unit = codegen_units.entry(codegen_unit_name.clone())
|
|
|
|
.or_insert_with(make_codegen_unit);
|
|
|
|
|
|
|
|
let linkage = match trans_item.explicit_linkage(tcx) {
|
|
|
|
Some(explicit_linkage) => explicit_linkage,
|
|
|
|
None => {
|
|
|
|
match trans_item {
|
2017-01-09 08:52:08 -06:00
|
|
|
TransItem::Fn(..) |
|
2017-03-21 10:03:52 -05:00
|
|
|
TransItem::Static(..) |
|
|
|
|
TransItem::GlobalAsm(..) => llvm::ExternalLinkage,
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-09 13:26:15 -05:00
|
|
|
codegen_unit.items.insert(trans_item, linkage);
|
2016-03-24 10:40:49 -05:00
|
|
|
roots.insert(trans_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-24 14:08:07 -05:00
|
|
|
// always ensure we have at least one CGU; otherwise, if we have a
|
2016-05-18 19:19:07 -05:00
|
|
|
// crate with just types (for example), we could wind up with no CGU
|
|
|
|
if codegen_units.is_empty() {
|
2016-11-17 08:04:20 -06:00
|
|
|
let codegen_unit_name = Symbol::intern(FALLBACK_CODEGEN_UNIT).as_str();
|
2016-05-18 19:19:07 -05:00
|
|
|
codegen_units.entry(codegen_unit_name.clone())
|
2016-07-22 09:39:30 -05:00
|
|
|
.or_insert_with(|| CodegenUnit::empty(codegen_unit_name.clone()));
|
2016-05-18 19:19:07 -05:00
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
PreInliningPartitioning {
|
2016-03-24 10:40:49 -05:00
|
|
|
codegen_units: codegen_units.into_iter()
|
|
|
|
.map(|(_, codegen_unit)| codegen_unit)
|
|
|
|
.collect(),
|
|
|
|
roots: roots,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
fn merge_codegen_units<'tcx>(initial_partitioning: &mut PreInliningPartitioning<'tcx>,
|
2016-04-21 15:45:33 -05:00
|
|
|
target_cgu_count: usize,
|
|
|
|
crate_name: &str) {
|
|
|
|
assert!(target_cgu_count >= 1);
|
|
|
|
let codegen_units = &mut initial_partitioning.codegen_units;
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
// Merge the two smallest codegen units until the target size is reached.
|
|
|
|
// Note that "size" is estimated here rather inaccurately as the number of
|
|
|
|
// translation items in a given unit. This could be improved on.
|
2016-04-21 15:45:33 -05:00
|
|
|
while codegen_units.len() > target_cgu_count {
|
|
|
|
// Sort small cgus to the back
|
2016-06-02 11:28:29 -05:00
|
|
|
codegen_units.sort_by_key(|cgu| -(cgu.items.len() as i64));
|
2016-04-21 15:45:33 -05:00
|
|
|
let smallest = codegen_units.pop().unwrap();
|
|
|
|
let second_smallest = codegen_units.last_mut().unwrap();
|
|
|
|
|
|
|
|
for (k, v) in smallest.items.into_iter() {
|
|
|
|
second_smallest.items.insert(k, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (index, cgu) in codegen_units.iter_mut().enumerate() {
|
2016-05-06 16:00:59 -05:00
|
|
|
cgu.name = numbered_codegen_unit_name(crate_name, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the initial partitioning contained less than target_cgu_count to begin
|
|
|
|
// with, we won't have enough codegen units here, so add a empty units until
|
|
|
|
// we reach the target count
|
|
|
|
while codegen_units.len() < target_cgu_count {
|
|
|
|
let index = codegen_units.len();
|
2016-07-21 11:49:59 -05:00
|
|
|
codegen_units.push(
|
|
|
|
CodegenUnit::empty(numbered_codegen_unit_name(crate_name, index)));
|
2016-05-06 16:00:59 -05:00
|
|
|
}
|
2016-04-21 15:45:33 -05:00
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
fn place_inlined_translation_items<'tcx>(initial_partitioning: PreInliningPartitioning<'tcx>,
|
2016-05-09 13:26:15 -05:00
|
|
|
inlining_map: &InliningMap<'tcx>)
|
2016-04-22 13:07:23 -05:00
|
|
|
-> PostInliningPartitioning<'tcx> {
|
|
|
|
let mut new_partitioning = Vec::new();
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
for codegen_unit in &initial_partitioning.codegen_units[..] {
|
|
|
|
// Collect all items that need to be available in this codegen unit
|
2016-11-07 21:02:55 -06:00
|
|
|
let mut reachable = FxHashSet();
|
2016-03-24 10:40:49 -05:00
|
|
|
for root in codegen_unit.items.keys() {
|
2016-05-09 13:26:15 -05:00
|
|
|
follow_inlining(*root, inlining_map, &mut reachable);
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
|
2016-07-21 11:49:59 -05:00
|
|
|
let mut new_codegen_unit =
|
|
|
|
CodegenUnit::empty(codegen_unit.name.clone());
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
// Add all translation items that are not already there
|
|
|
|
for trans_item in reachable {
|
2016-05-09 13:26:15 -05:00
|
|
|
if let Some(linkage) = codegen_unit.items.get(&trans_item) {
|
2016-03-24 10:40:49 -05:00
|
|
|
// This is a root, just copy it over
|
2016-05-09 13:26:15 -05:00
|
|
|
new_codegen_unit.items.insert(trans_item, *linkage);
|
2016-03-24 10:40:49 -05:00
|
|
|
} else {
|
2017-01-09 08:52:08 -06:00
|
|
|
if initial_partitioning.roots.contains(&trans_item) {
|
|
|
|
bug!("GloballyShared trans-item inlined into other CGU: \
|
|
|
|
{:?}", trans_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a cgu-private copy
|
|
|
|
new_codegen_unit.items.insert(trans_item, llvm::InternalLinkage);
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
new_partitioning.push(new_codegen_unit);
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
|
2016-04-22 13:07:23 -05:00
|
|
|
return PostInliningPartitioning(new_partitioning);
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
fn follow_inlining<'tcx>(trans_item: TransItem<'tcx>,
|
2016-05-09 13:26:15 -05:00
|
|
|
inlining_map: &InliningMap<'tcx>,
|
2016-11-07 21:02:55 -06:00
|
|
|
visited: &mut FxHashSet<TransItem<'tcx>>) {
|
2016-03-24 10:40:49 -05:00
|
|
|
if !visited.insert(trans_item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-09 13:26:15 -05:00
|
|
|
inlining_map.with_inlining_candidates(trans_item, |target| {
|
|
|
|
follow_inlining(target, inlining_map, visited);
|
2016-04-22 13:07:23 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-08 19:50:19 -05:00
|
|
|
fn characteristic_def_id_of_trans_item<'a, 'tcx>(scx: &SharedCrateContext<'a, 'tcx>,
|
2016-05-02 20:56:42 -05:00
|
|
|
trans_item: TransItem<'tcx>)
|
|
|
|
-> Option<DefId> {
|
2016-08-08 19:50:19 -05:00
|
|
|
let tcx = scx.tcx();
|
2016-03-24 10:40:49 -05:00
|
|
|
match trans_item {
|
|
|
|
TransItem::Fn(instance) => {
|
2017-02-08 11:31:03 -06:00
|
|
|
let def_id = match instance.def {
|
|
|
|
ty::InstanceDef::Item(def_id) => def_id,
|
2017-03-07 17:41:26 -06:00
|
|
|
ty::InstanceDef::FnPtrShim(..) |
|
|
|
|
ty::InstanceDef::ClosureOnceShim { .. } |
|
|
|
|
ty::InstanceDef::Intrinsic(..) |
|
2017-03-13 18:08:21 -05:00
|
|
|
ty::InstanceDef::DropGlue(..) |
|
2017-03-07 17:41:26 -06:00
|
|
|
ty::InstanceDef::Virtual(..) => return None
|
2017-02-08 11:31:03 -06:00
|
|
|
};
|
|
|
|
|
2016-03-24 10:40:49 -05:00
|
|
|
// If this is a method, we want to put it into the same module as
|
|
|
|
// its self-type. If the self-type does not provide a characteristic
|
|
|
|
// DefId, we use the location of the impl after all.
|
|
|
|
|
2017-02-08 11:31:03 -06:00
|
|
|
if tcx.trait_of_item(def_id).is_some() {
|
2016-08-18 00:32:50 -05:00
|
|
|
let self_ty = instance.substs.type_at(0);
|
2016-03-24 10:40:49 -05:00
|
|
|
// This is an implementation of a trait method.
|
2017-02-08 11:31:03 -06:00
|
|
|
return characteristic_def_id_of_type(self_ty).or(Some(def_id));
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 11:31:03 -06:00
|
|
|
if let Some(impl_def_id) = tcx.impl_of_method(def_id) {
|
2016-03-24 10:40:49 -05:00
|
|
|
// This is a method within an inherent impl, find out what the
|
|
|
|
// self-type is:
|
2017-02-28 17:30:41 -06:00
|
|
|
let impl_self_ty = common::def_ty(scx, impl_def_id, instance.substs);
|
2016-03-24 10:40:49 -05:00
|
|
|
if let Some(def_id) = characteristic_def_id_of_type(impl_self_ty) {
|
|
|
|
return Some(def_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 11:31:03 -06:00
|
|
|
Some(def_id)
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
2017-03-21 10:03:52 -05:00
|
|
|
TransItem::Static(node_id) |
|
|
|
|
TransItem::GlobalAsm(node_id) => Some(tcx.hir.local_def_id(node_id)),
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 21:23:22 -05:00
|
|
|
fn compute_codegen_unit_name<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2016-05-02 20:56:42 -05:00
|
|
|
def_id: DefId,
|
|
|
|
volatile: bool)
|
|
|
|
-> InternedString {
|
2016-03-24 10:40:49 -05:00
|
|
|
// Unfortunately we cannot just use the `ty::item_path` infrastructure here
|
|
|
|
// because we need paths to modules and the DefIds of those are not
|
|
|
|
// available anymore for external items.
|
|
|
|
let mut mod_path = String::with_capacity(64);
|
|
|
|
|
|
|
|
let def_path = tcx.def_path(def_id);
|
2016-11-16 04:52:37 -06:00
|
|
|
mod_path.push_str(&tcx.crate_name(def_path.krate).as_str());
|
2016-03-24 10:40:49 -05:00
|
|
|
|
|
|
|
for part in tcx.def_path(def_id)
|
|
|
|
.data
|
|
|
|
.iter()
|
|
|
|
.take_while(|part| {
|
|
|
|
match part.data {
|
|
|
|
DefPathData::Module(..) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}) {
|
|
|
|
mod_path.push_str("-");
|
|
|
|
mod_path.push_str(&part.data.as_interned_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if volatile {
|
|
|
|
mod_path.push_str(".volatile");
|
|
|
|
}
|
|
|
|
|
2016-11-16 04:52:37 -06:00
|
|
|
return Symbol::intern(&mod_path[..]).as_str();
|
2016-03-24 10:40:49 -05:00
|
|
|
}
|
2016-05-19 11:35:36 -05:00
|
|
|
|
|
|
|
fn numbered_codegen_unit_name(crate_name: &str, index: usize) -> InternedString {
|
2016-11-16 04:52:37 -06:00
|
|
|
Symbol::intern(&format!("{}{}{}", crate_name, NUMBERED_CODEGEN_UNIT_MARKER, index)).as_str()
|
2016-05-19 11:35:36 -05:00
|
|
|
}
|
2016-05-09 22:56:49 -05:00
|
|
|
|
2016-10-04 11:02:19 -05:00
|
|
|
fn debug_dump<'a, 'b, 'tcx, I>(scx: &SharedCrateContext<'a, 'tcx>,
|
2016-05-09 22:56:49 -05:00
|
|
|
label: &str,
|
|
|
|
cgus: I)
|
|
|
|
where I: Iterator<Item=&'b CodegenUnit<'tcx>>,
|
|
|
|
'tcx: 'a + 'b
|
|
|
|
{
|
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
debug!("{}", label);
|
2017-04-14 14:10:53 -05:00
|
|
|
let symbol_cache = SymbolCache::new(scx);
|
2016-05-09 22:56:49 -05:00
|
|
|
for cgu in cgus {
|
|
|
|
debug!("CodegenUnit {}:", cgu.name);
|
|
|
|
|
|
|
|
for (trans_item, linkage) in &cgu.items {
|
2017-04-14 14:10:53 -05:00
|
|
|
let symbol_name = symbol_cache.get(*trans_item);
|
2016-10-04 11:02:19 -05:00
|
|
|
let symbol_hash_start = symbol_name.rfind('h');
|
|
|
|
let symbol_hash = symbol_hash_start.map(|i| &symbol_name[i ..])
|
|
|
|
.unwrap_or("<no hash>");
|
|
|
|
|
|
|
|
debug!(" - {} [{:?}] [{}]",
|
|
|
|
trans_item.to_string(scx.tcx()),
|
|
|
|
linkage,
|
|
|
|
symbol_hash);
|
2016-05-09 22:56:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|