Skip to content

Commit b522b25

Browse files
committed
Auto merge of #33909 - michaelwoerister:frame-pointer-fix, r=nikomatsakis
Emit "no-frame-pointer-elim" attribute for closures, shims, and glue. This will hopefully let `perf` give better backtraces. r? @nikomatsakis
2 parents f3bfa31 + 4f7ab0e commit b522b25

File tree

7 files changed

+27
-13
lines changed

7 files changed

+27
-13
lines changed

src/librustc/session/mod.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use lint;
1515
use middle::cstore::CrateStore;
1616
use middle::dependency_format;
1717
use session::search_paths::PathKind;
18-
use session::config::PanicStrategy;
18+
use session::config::{DebugInfoLevel, PanicStrategy};
1919
use ty::tls;
2020
use util::nodemap::{NodeMap, FnvHashMap};
2121
use mir::transform as mir_pass;
@@ -315,6 +315,11 @@ impl Session {
315315
self.opts.debugging_opts.enable_nonzeroing_move_hints
316316
}
317317

318+
pub fn must_not_eliminate_frame_pointers(&self) -> bool {
319+
self.opts.debuginfo != DebugInfoLevel::NoDebugInfo ||
320+
!self.target.target.options.eliminate_frame_pointer
321+
}
322+
318323
/// Returns the symbol name for the registrar function,
319324
/// given the crate Svh and the function DefIndex.
320325
pub fn generate_plugin_registrar_symbol(&self, svh: &Svh, index: DefIndex)

src/librustc_trans/attributes.rs

+13-11
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
1212
use libc::c_uint;
1313
use llvm::{self, ValueRef};
14-
use session::config::NoDebugInfo;
1514
pub use syntax::attr::InlineAttr;
1615
use syntax::ast;
1716
use context::CrateContext;
@@ -74,25 +73,28 @@ pub fn naked(val: ValueRef, is_naked: bool) {
7473
}
7574
}
7675

77-
/// Composite function which sets LLVM attributes for function depending on its AST (#[attribute])
78-
/// attributes.
79-
pub fn from_fn_attrs(ccx: &CrateContext, attrs: &[ast::Attribute], llfn: ValueRef) {
80-
use syntax::attr::*;
81-
inline(llfn, find_inline_attr(Some(ccx.sess().diagnostic()), attrs));
82-
76+
pub fn set_frame_pointer_elimination(ccx: &CrateContext, llfn: ValueRef) {
8377
// FIXME: #11906: Omitting frame pointers breaks retrieving the value of a
8478
// parameter.
85-
let no_fp_elim = (ccx.sess().opts.debuginfo != NoDebugInfo) ||
86-
!ccx.sess().target.target.options.eliminate_frame_pointer;
87-
if no_fp_elim {
79+
if ccx.sess().must_not_eliminate_frame_pointers() {
8880
unsafe {
8981
let attr = "no-frame-pointer-elim\0".as_ptr() as *const _;
9082
let val = "true\0".as_ptr() as *const _;
9183
llvm::LLVMAddFunctionAttrStringValue(llfn,
9284
llvm::FunctionIndex as c_uint,
93-
attr, val);
85+
attr,
86+
val);
9487
}
9588
}
89+
}
90+
91+
/// Composite function which sets LLVM attributes for function depending on its AST (#[attribute])
92+
/// attributes.
93+
pub fn from_fn_attrs(ccx: &CrateContext, attrs: &[ast::Attribute], llfn: ValueRef) {
94+
use syntax::attr::*;
95+
inline(llfn, find_inline_attr(Some(ccx.sess().diagnostic()), attrs));
96+
97+
set_frame_pointer_elimination(ccx, llfn);
9698

9799
for attr in attrs {
98100
if attr.check_name("cold") {

src/librustc_trans/callee.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ pub fn trans_fn_pointer_shim<'a, 'tcx>(
381381
bare_fn_ty,
382382
"fn_pointer_shim");
383383
let llfn = declare::define_internal_fn(ccx, &function_name, tuple_fn_ty);
384-
384+
attributes::set_frame_pointer_elimination(ccx, llfn);
385385
//
386386
let (block_arena, fcx): (TypedArena<_>, FunctionContext);
387387
block_arena = TypedArena::new();

src/librustc_trans/closure.rs

+2
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ fn get_or_create_closure_declaration<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
171171

172172
// set an inline hint for all closures
173173
attributes::inline(llfn, attributes::InlineAttr::Hint);
174+
attributes::set_frame_pointer_elimination(ccx, llfn);
174175

175176
debug!("get_or_create_declaration_if_closure(): inserting new \
176177
closure {:?}: {:?}",
@@ -377,6 +378,7 @@ fn trans_fn_once_adapter_shim<'a, 'tcx>(
377378
let function_name =
378379
symbol_names::internal_name_from_type_and_suffix(ccx, llonce_fn_ty, "once_shim");
379380
let lloncefn = declare::define_internal_fn(ccx, &function_name, llonce_fn_ty);
381+
attributes::set_frame_pointer_elimination(ccx, lloncefn);
380382

381383
let (block_arena, fcx): (TypedArena<_>, FunctionContext);
382384
block_arena = TypedArena::new();

src/librustc_trans/glue.rs

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
use std;
1616

17+
use attributes;
1718
use back::symbol_names;
1819
use llvm;
1920
use llvm::{ValueRef, get_param};
@@ -272,6 +273,7 @@ fn get_drop_glue_core<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
272273
let fn_nm = symbol_names::internal_name_from_type_and_suffix(ccx, t, suffix);
273274
assert!(declare::get_defined_value(ccx, &fn_nm).is_none());
274275
let llfn = declare::declare_cfn(ccx, &fn_nm, llfnty);
276+
attributes::set_frame_pointer_elimination(ccx, llfn);
275277
ccx.available_drop_glues().borrow_mut().insert(g, fn_nm);
276278
ccx.drop_glues().borrow_mut().insert(g, llfn);
277279

src/librustc_trans/meth.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
use std::rc::Rc;
1212

13+
use attributes;
1314
use arena::TypedArena;
1415
use back::symbol_names;
1516
use llvm::{ValueRef, get_params};
@@ -91,6 +92,7 @@ pub fn trans_object_shim<'a, 'tcx>(ccx: &'a CrateContext<'a, 'tcx>,
9192
let function_name =
9293
symbol_names::internal_name_from_type_and_suffix(ccx, method_ty, "object_shim");
9394
let llfn = declare::define_internal_fn(ccx, &function_name, method_ty);
95+
attributes::set_frame_pointer_elimination(ccx, llfn);
9496

9597
let (block_arena, fcx): (TypedArena<_>, FunctionContext);
9698
block_arena = TypedArena::new();

src/librustc_trans/monomorphize.rs

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ pub fn monomorphic_fn<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
151151
_ => bug!()
152152
};
153153
attributes::inline(lldecl, attributes::InlineAttr::Hint);
154+
attributes::set_frame_pointer_elimination(ccx, lldecl);
154155
base::trans_ctor_shim(ccx, fn_node_id, disr, psubsts, lldecl);
155156
}
156157

0 commit comments

Comments
 (0)