Skip to content

Commit 0a75a74

Browse files
authored
Rollup merge of rust-lang#48786 - nagisa:fp, r=nikomatsakis
Add force-frame-pointer flag to allow control of frame pointer ommision Rebase of rust-lang#47152 plus some changes suggested by rust-lang#48785. Fixes rust-lang#11906 r? @nikomatsakis
2 parents dc1e7a5 + 7188f41 commit 0a75a74

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

src/librustc/session/config.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,8 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
10641064
2 = full debug info with variable and type information"),
10651065
opt_level: Option<String> = (None, parse_opt_string, [TRACKED],
10661066
"optimize with possible levels 0-3, s, or z"),
1067+
force_frame_pointers: Option<bool> = (None, parse_opt_bool, [TRACKED],
1068+
"force use of the frame pointers"),
10671069
debug_assertions: Option<bool> = (None, parse_opt_bool, [TRACKED],
10681070
"explicitly enable the cfg(debug_assertions) directive"),
10691071
inline_threshold: Option<usize> = (None, parse_opt_uint, [TRACKED],
@@ -2892,6 +2894,10 @@ mod tests {
28922894
opts.cg.debuginfo = Some(0xba5eba11);
28932895
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
28942896

2897+
opts = reference.clone();
2898+
opts.cg.force_frame_pointers = Some(false);
2899+
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
2900+
28952901
opts = reference.clone();
28962902
opts.cg.debug_assertions = Some(true);
28972903
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());

src/librustc/session/mod.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use lint::builtin::BuiltinLintDiagnostics;
2020
use middle::allocator::AllocatorKind;
2121
use middle::dependency_format;
2222
use session::search_paths::PathKind;
23-
use session::config::{DebugInfoLevel, OutputType};
23+
use session::config::{OutputType};
2424
use ty::tls;
2525
use util::nodemap::{FxHashMap, FxHashSet};
2626
use util::common::{duration_to_secs_str, ErrorReported};
@@ -676,8 +676,11 @@ impl Session {
676676
}
677677

678678
pub fn must_not_eliminate_frame_pointers(&self) -> bool {
679-
self.opts.debuginfo != DebugInfoLevel::NoDebugInfo
680-
|| !self.target.target.options.eliminate_frame_pointer
679+
if let Some(x) = self.opts.cg.force_frame_pointers {
680+
x
681+
} else {
682+
!self.target.target.options.eliminate_frame_pointer
683+
}
681684
}
682685

683686
/// Returns the symbol name for the registrar function,

src/librustc_trans/attributes.rs

-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ pub fn naked(val: ValueRef, is_naked: bool) {
6565
}
6666

6767
pub fn set_frame_pointer_elimination(cx: &CodegenCx, llfn: ValueRef) {
68-
// FIXME: #11906: Omitting frame pointers breaks retrieving the value of a
69-
// parameter.
7068
if cx.sess().must_not_eliminate_frame_pointers() {
7169
llvm::AddFunctionAttrStringValue(
7270
llfn, llvm::AttributePlace::Function,
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
//
11+
// compile-flags: -C no-prepopulate-passes -C force-frame-pointers=y
12+
13+
#![crate_type="lib"]
14+
15+
// CHECK: attributes #{{.*}} "no-frame-pointer-elim"="true"
16+
pub fn foo() {}

0 commit comments

Comments
 (0)