rust/tests/codegen-units/partitioning/local-inlining.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
989 B
Rust
Raw Normal View History

//
// We specify incremental here because we want to test the partitioning for
//@ incremental compilation
//@ incremental
//@ compile-flags:-Zprint-mono-items=lazy
rustc: Don't inline in CGUs at -O0 This commit tweaks the behavior of inlining functions into multiple codegen units when rustc is compiling in debug mode. Today rustc will unconditionally treat `#[inline]` functions by translating them into all codegen units that they're needed within, marking the linkage as `internal`. This commit changes the behavior so that in debug mode (compiling at `-O0`) rustc will instead only translate `#[inline]` functions into *one* codegen unit, forcing all other codegen units to reference this one copy. The goal here is to improve debug compile times by reducing the amount of translation that happens on behalf of multiple codegen units. It was discovered in #44941 that increasing the number of codegen units had the adverse side effect of increasing the overal work done by the compiler, and the suspicion here was that the compiler was inlining, translating, and codegen'ing more functions with more codegen units (for example `String` would be basically inlined into all codegen units if used). The strategy in this commit should reduce the cost of `#[inline]` functions to being equivalent to one codegen unit, which is only translating and codegen'ing inline functions once. Collected [data] shows that this does indeed improve the situation from [before] as the overall cpu-clock time increases at a much slower rate and when pinned to one core rustc does not consume significantly more wall clock time than with one codegen unit. One caveat of this commit is that the symbol names for inlined functions that are only translated once needed some slight tweaking. These inline functions could be translated into multiple crates and we need to make sure the symbols don't collideA so the crate name/disambiguator is mixed in to the symbol name hash in these situations. [data]: https://github.com/rust-lang/rust/issues/44941#issuecomment-334880911 [before]: https://github.com/rust-lang/rust/issues/44941#issuecomment-334583384
2017-10-07 05:59:33 +08:00
//@ compile-flags:-Zinline-in-all-cgus
#![allow(dead_code)]
#![crate_type="lib"]
mod inline {
// Important: This function should show up in all codegen units where it is inlined
//~ MONO_ITEM fn inline::inlined_function @@ local_inlining-user1[Internal] local_inlining-user2[Internal]
#[inline(always)]
pub fn inlined_function()
{
}
}
2017-10-27 20:31:18 +08:00
pub mod user1 {
use super::inline;
//~ MONO_ITEM fn user1::foo @@ local_inlining-user1[External]
2017-10-27 20:31:18 +08:00
pub fn foo() {
inline::inlined_function();
}
}
2017-10-27 20:31:18 +08:00
pub mod user2 {
use super::inline;
//~ MONO_ITEM fn user2::bar @@ local_inlining-user2[External]
2017-10-27 20:31:18 +08:00
pub fn bar() {
inline::inlined_function();
}
}
2017-10-27 20:31:18 +08:00
pub mod non_user {
//~ MONO_ITEM fn non_user::baz @@ local_inlining-non_user[External]
2017-10-27 20:31:18 +08:00
pub fn baz() {
}
}