Skip to content

Commit 7d160ae

Browse files
compiler: Support nightly -Cforce-frame-pointers=non-leaf
Requires -Zunstable-options as this is a -C flag already.
1 parent f301d08 commit 7d160ae

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

compiler/rustc_session/src/config.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use rustc_macros::{Decodable, Encodable, HashStable_Generic};
1919
use rustc_span::edition::{Edition, DEFAULT_EDITION, EDITION_NAME_LIST, LATEST_STABLE_EDITION};
2020
use rustc_span::source_map::FilePathMapping;
2121
use rustc_span::{FileName, FileNameDisplayPreference, RealFileName, SourceFileHashAlgorithm};
22-
use rustc_target::spec::{LinkSelfContainedComponents, LinkerFeatures};
22+
use rustc_target::spec::{FramePointer, LinkSelfContainedComponents, LinkerFeatures};
2323
use rustc_target::spec::{SplitDebuginfo, Target, TargetTriple};
2424
use std::collections::btree_map::{
2525
Iter as BTreeMapIter, Keys as BTreeMapKeysIter, Values as BTreeMapValuesIter,
@@ -2524,6 +2524,15 @@ pub fn build_session_options(early_dcx: &mut EarlyDiagCtxt, matches: &getopts::M
25242524
}
25252525
}
25262526

2527+
if !nightly_options::is_unstable_enabled(matches)
2528+
&& cg.force_frame_pointers == FramePointer::NonLeaf
2529+
{
2530+
early_dcx.early_fatal(
2531+
"`-Cforce-frame-pointers=non-leaf` also requires `-Zunstable-options` \
2532+
and a nightly compiler",
2533+
)
2534+
}
2535+
25272536
// For testing purposes, until we have more feedback about these options: ensure `-Z
25282537
// unstable-options` is required when using the unstable `-C link-self-contained` and `-C
25292538
// linker-flavor` options.

compiler/rustc_session/src/options.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ mod desc {
373373
pub const parse_opt_comma_list: &str = parse_comma_list;
374374
pub const parse_number: &str = "a number";
375375
pub const parse_opt_number: &str = parse_number;
376-
pub const parse_frame_pointer: &str = parse_bool;
376+
pub const parse_frame_pointer: &str =
377+
"one of `true`/`yes`/`on`, `false`/`no`/`off`, or (with -Zunstable-options) `non-leaf`";
377378
pub const parse_threads: &str = parse_number;
378379
pub const parse_time_passes_format: &str = "`text` (default) or `json`";
379380
pub const parse_passes: &str = "a space-separated list of passes, or `all`";
@@ -677,9 +678,9 @@ mod parse {
677678
let mut is_parsed = parse_bool(&mut boolish, v);
678679
if boolish & is_parsed {
679680
*slot = FramePointer::Always;
680-
} else if false {
681-
/* TODO: add NonLeaf as an unstable opt */
681+
} else if v == Some("non-leaf") {
682682
is_parsed = true;
683+
*slot = FramePointer::NonLeaf;
683684
};
684685
is_parsed
685686
}

0 commit comments

Comments
 (0)