librustc_trans: Mark some profiler symbols as exported to avoid LTO removing them.
This commit is contained in:
parent
8a4cebd16f
commit
4053e25bfb
3 changed files with 33 additions and 0 deletions
|
@ -223,6 +223,20 @@ fn exported_symbols_provider_local<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if tcx.sess.opts.debugging_opts.pgo_gen.is_some() {
|
||||||
|
// These are weak symbols that point to the profile version and the
|
||||||
|
// profile name, which need to be treated as exported so LTO doesn't nix
|
||||||
|
// them.
|
||||||
|
const PROFILER_WEAK_SYMBOLS: [&'static str; 2] = [
|
||||||
|
"__llvm_profile_raw_version",
|
||||||
|
"__llvm_profile_filename",
|
||||||
|
];
|
||||||
|
for sym in &PROFILER_WEAK_SYMBOLS {
|
||||||
|
let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(sym));
|
||||||
|
symbols.push((exported_symbol, SymbolExportLevel::C));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if tcx.sess.crate_types.borrow().contains(&config::CrateTypeDylib) {
|
if tcx.sess.crate_types.borrow().contains(&config::CrateTypeDylib) {
|
||||||
let symbol_name = metadata_symbol_name(tcx);
|
let symbol_name = metadata_symbol_name(tcx);
|
||||||
let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(&symbol_name));
|
let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(&symbol_name));
|
||||||
|
|
8
src/test/run-make/pgo-gen-lto/Makefile
Normal file
8
src/test/run-make/pgo-gen-lto/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
-include ../tools.mk
|
||||||
|
|
||||||
|
all:
|
||||||
|
ifeq ($(PROFILER_SUPPORT),1)
|
||||||
|
$(RUSTC) -Copt-level=3 -Clto=fat -Z pgo-gen=test.profraw test.rs
|
||||||
|
$(call RUN,test) || exit 1
|
||||||
|
[ -e "$(TMPDIR)/test.profraw" ] || (echo "No .profraw file"; exit 1)
|
||||||
|
endif
|
11
src/test/run-make/pgo-gen-lto/test.rs
Normal file
11
src/test/run-make/pgo-gen-lto/test.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
// Copyright 2018 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.
|
||||||
|
|
||||||
|
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue