Skip to content

Commit 6da26f7

Browse files
authored
Rollup merge of #138552 - jieyouxu:print-request-cleanups, r=Urgau
Misc print request handling cleanups + a centralized test for print request stability gating I was working on implementing `--print=supported-crate-types`, then I noticed some things that were mildly annoying me, so I pulled out these changes. In this PR: - First commit adds a centralized test `tests/ui/print/stability.rs` that is responsible for exercising stability gating of the print requests. - AFAICT we didn't have any test that systematically checks this. - I coalesced `tests/ui/feature-gates/feature-gate-print-check-cfg.rs` (for `--print=check-cfg`) into this test too, since `--print=check-cfg` is only `-Z unstable-options`-gated like other unstable print requests, and is not additionally feature-gated. cc ``@Urgau`` in case you have any concerns. - Second commit alphabetically sorts the `PrintKind` enum for consistency because the `PRINT_KINDS` list (using the enum) is *already* alphabetically sorted. - Third commit pulls out two helpers: 1. A helper `check_print_request_stability` for checking stability of print requests and the diagnostics for using unstable print requests without `-Z unstable-options`, to avoid repeating the same logic over and over. 2. A helper `emit_unknown_print_request_help` for the unknown print request diagnostics to make print request collection control flow more obvious. - Fourth commit renames `PrintKind::{TargetSpec,AllTargetSpecs}` to `PrintKind::{TargetSpecJson,AllTargetSpecsJson}` to better reflect their actual print names, `--print={target-spec-json,all-target-specs-json}`. r? ``@nnethercote`` (or compiler/reroll)
2 parents 04032ab + 24edbfb commit 6da26f7

File tree

5 files changed

+159
-67
lines changed

5 files changed

+159
-67
lines changed

compiler/rustc_driver_impl/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -649,10 +649,10 @@ fn print_crate_info(
649649
HostTuple => println_info!("{}", rustc_session::config::host_tuple()),
650650
Sysroot => println_info!("{}", sess.sysroot.display()),
651651
TargetLibdir => println_info!("{}", sess.target_tlib_path.dir.display()),
652-
TargetSpec => {
652+
TargetSpecJson => {
653653
println_info!("{}", serde_json::to_string_pretty(&sess.target.to_json()).unwrap());
654654
}
655-
AllTargetSpecs => {
655+
AllTargetSpecsJson => {
656656
let mut targets = BTreeMap::new();
657657
for name in rustc_target::spec::TARGETS {
658658
let triple = TargetTuple::from_tuple(name);

compiler/rustc_session/src/config.rs

+54-60
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub mod sigpipe;
4444

4545
pub const PRINT_KINDS: &[(&str, PrintKind)] = &[
4646
// tidy-alphabetical-start
47-
("all-target-specs-json", PrintKind::AllTargetSpecs),
47+
("all-target-specs-json", PrintKind::AllTargetSpecsJson),
4848
("calling-conventions", PrintKind::CallingConventions),
4949
("cfg", PrintKind::Cfg),
5050
("check-cfg", PrintKind::CheckCfg),
@@ -63,7 +63,7 @@ pub const PRINT_KINDS: &[(&str, PrintKind)] = &[
6363
("target-features", PrintKind::TargetFeatures),
6464
("target-libdir", PrintKind::TargetLibdir),
6565
("target-list", PrintKind::TargetList),
66-
("target-spec-json", PrintKind::TargetSpec),
66+
("target-spec-json", PrintKind::TargetSpecJson),
6767
("tls-models", PrintKind::TlsModels),
6868
// tidy-alphabetical-end
6969
];
@@ -873,27 +873,29 @@ pub struct PrintRequest {
873873

874874
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
875875
pub enum PrintKind {
876+
// tidy-alphabetical-start
877+
AllTargetSpecsJson,
878+
CallingConventions,
879+
Cfg,
880+
CheckCfg,
881+
CodeModels,
882+
CrateName,
883+
DeploymentTarget,
876884
FileNames,
877885
HostTuple,
886+
LinkArgs,
887+
NativeStaticLibs,
888+
RelocationModels,
889+
SplitDebuginfo,
890+
StackProtectorStrategies,
878891
Sysroot,
879-
TargetLibdir,
880-
CrateName,
881-
Cfg,
882-
CheckCfg,
883-
CallingConventions,
884-
TargetList,
885892
TargetCPUs,
886893
TargetFeatures,
887-
RelocationModels,
888-
CodeModels,
894+
TargetLibdir,
895+
TargetList,
896+
TargetSpecJson,
889897
TlsModels,
890-
TargetSpec,
891-
AllTargetSpecs,
892-
NativeStaticLibs,
893-
StackProtectorStrategies,
894-
LinkArgs,
895-
SplitDebuginfo,
896-
DeploymentTarget,
898+
// tidy-alphabetical-end
897899
}
898900

899901
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Default)]
@@ -2030,49 +2032,13 @@ fn collect_print_requests(
20302032
prints.extend(matches.opt_strs("print").into_iter().map(|req| {
20312033
let (req, out) = split_out_file_name(&req);
20322034

2033-
let kind = match PRINT_KINDS.iter().find(|&&(name, _)| name == req) {
2034-
Some((_, PrintKind::TargetSpec)) => {
2035-
if unstable_opts.unstable_options {
2036-
PrintKind::TargetSpec
2037-
} else {
2038-
early_dcx.early_fatal(
2039-
"the `-Z unstable-options` flag must also be passed to \
2040-
enable the target-spec-json print option",
2041-
);
2042-
}
2043-
}
2044-
Some((_, PrintKind::AllTargetSpecs)) => {
2045-
if unstable_opts.unstable_options {
2046-
PrintKind::AllTargetSpecs
2047-
} else {
2048-
early_dcx.early_fatal(
2049-
"the `-Z unstable-options` flag must also be passed to \
2050-
enable the all-target-specs-json print option",
2051-
);
2052-
}
2053-
}
2054-
Some((_, PrintKind::CheckCfg)) => {
2055-
if unstable_opts.unstable_options {
2056-
PrintKind::CheckCfg
2057-
} else {
2058-
early_dcx.early_fatal(
2059-
"the `-Z unstable-options` flag must also be passed to \
2060-
enable the check-cfg print option",
2061-
);
2062-
}
2063-
}
2064-
Some(&(_, print_kind)) => print_kind,
2065-
None => {
2066-
let prints =
2067-
PRINT_KINDS.iter().map(|(name, _)| format!("`{name}`")).collect::<Vec<_>>();
2068-
let prints = prints.join(", ");
2069-
2070-
let mut diag =
2071-
early_dcx.early_struct_fatal(format!("unknown print request: `{req}`"));
2072-
#[allow(rustc::diagnostic_outside_of_impl)]
2073-
diag.help(format!("valid print requests are: {prints}"));
2074-
diag.emit()
2075-
}
2035+
let kind = if let Some((print_name, print_kind)) =
2036+
PRINT_KINDS.iter().find(|&&(name, _)| name == req)
2037+
{
2038+
check_print_request_stability(early_dcx, unstable_opts, (print_name, *print_kind));
2039+
*print_kind
2040+
} else {
2041+
emit_unknown_print_request_help(early_dcx, req)
20762042
};
20772043

20782044
let out = out.unwrap_or(OutFileName::Stdout);
@@ -2091,6 +2057,34 @@ fn collect_print_requests(
20912057
prints
20922058
}
20932059

2060+
fn check_print_request_stability(
2061+
early_dcx: &EarlyDiagCtxt,
2062+
unstable_opts: &UnstableOptions,
2063+
(print_name, print_kind): (&str, PrintKind),
2064+
) {
2065+
match print_kind {
2066+
PrintKind::AllTargetSpecsJson | PrintKind::CheckCfg | PrintKind::TargetSpecJson
2067+
if !unstable_opts.unstable_options =>
2068+
{
2069+
early_dcx.early_fatal(format!(
2070+
"the `-Z unstable-options` flag must also be passed to enable the `{print_name}` \
2071+
print option"
2072+
));
2073+
}
2074+
_ => {}
2075+
}
2076+
}
2077+
2078+
fn emit_unknown_print_request_help(early_dcx: &EarlyDiagCtxt, req: &str) -> ! {
2079+
let prints = PRINT_KINDS.iter().map(|(name, _)| format!("`{name}`")).collect::<Vec<_>>();
2080+
let prints = prints.join(", ");
2081+
2082+
let mut diag = early_dcx.early_struct_fatal(format!("unknown print request: `{req}`"));
2083+
#[allow(rustc::diagnostic_outside_of_impl)]
2084+
diag.help(format!("valid print requests are: {prints}"));
2085+
diag.emit()
2086+
}
2087+
20942088
pub fn parse_target_triple(early_dcx: &EarlyDiagCtxt, matches: &getopts::Matches) -> TargetTuple {
20952089
match matches.opt_str("target") {
20962090
Some(target) if target.ends_with(".json") => {

tests/ui/feature-gates/feature-gate-print-check-cfg.rs

-3
This file was deleted.

tests/ui/feature-gates/feature-gate-print-check-cfg.stderr

-2
This file was deleted.

tests/ui/print-request/stability.rs

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
//! Check that we properly gate unstable print requests (`--print=KIND`) and require the user to
2+
//! specify `-Z unstable-options` to use unstable print requests.
3+
4+
// We don't care about the exact *stdout* output (i.e. what the print requests actually give back)
5+
// for the purposes of this test.
6+
//@ dont-check-compiler-stdout
7+
8+
// We want to check for the core error message of the unstable print requests being `-Z
9+
// unstable-options`-gated and not the help because the help can change with addition of a new print
10+
// request, which is not important for the purposes of this test.
11+
//@ dont-check-compiler-stderr
12+
13+
// =======================
14+
// Unstable print requests
15+
// =======================
16+
17+
//@ revisions: all_target_specs_json
18+
//@[all_target_specs_json] compile-flags: --print=all-target-specs-json
19+
//@[all_target_specs_json] error-pattern: the `-Z unstable-options` flag must also be passed
20+
21+
//@ revisions: check_cfg
22+
//@[check_cfg] compile-flags: --print=check-cfg
23+
//@[check_cfg] error-pattern: the `-Z unstable-options` flag must also be passed
24+
25+
//@ revisions: target_spec_json
26+
//@[target_spec_json] compile-flags: --print=target-spec-json
27+
//@[target_spec_json] error-pattern: the `-Z unstable-options` flag must also be passed
28+
29+
// =======================
30+
// Stable print requests
31+
// =======================
32+
33+
//@ revisions: calling_conventions
34+
//@[calling_conventions] compile-flags: --print=calling-conventions
35+
//@[calling_conventions] check-pass
36+
37+
//@ revisions: cfg
38+
//@[cfg] compile-flags: --print=cfg
39+
//@[cfg] check-pass
40+
41+
//@ revisions: code_models
42+
//@[code_models] compile-flags: --print=code-models
43+
//@[code_models] check-pass
44+
45+
//@ revisions: crate_name
46+
//@[crate_name] compile-flags: --print=crate-name
47+
//@[crate_name] check-pass
48+
49+
// Note: `--print=deployment_target` is only accepted on Apple targets.
50+
//@ revisions: deployment_target
51+
//@[deployment_target] only-apple
52+
//@[deployment_target] compile-flags: --print=deployment-target
53+
//@[deployment_target] check-pass
54+
55+
//@ revisions: file_names
56+
//@[file_names] compile-flags: --print=file-names
57+
//@[file_names] check-pass
58+
59+
//@ revisions: host_tuple
60+
//@[host_tuple] compile-flags: --print=host-tuple
61+
//@[host_tuple] check-pass
62+
63+
//@ revisions: link_args
64+
//@[link_args] compile-flags: --print=link-args
65+
//@[link_args] check-pass
66+
67+
//@ revisions: native_static_libs
68+
//@[native_static_libs] compile-flags: --print=native-static-libs
69+
//@[native_static_libs] check-pass
70+
71+
//@ revisions: relocation_models
72+
//@[relocation_models] compile-flags: --print=relocation-models
73+
//@[relocation_models] check-pass
74+
75+
//@ revisions: split_debuginfo
76+
//@[split_debuginfo] compile-flags: --print=split-debuginfo
77+
//@[split_debuginfo] check-pass
78+
79+
//@ revisions: stack_protector_strategies
80+
//@[stack_protector_strategies] compile-flags: --print=stack-protector-strategies
81+
//@[stack_protector_strategies] check-pass
82+
83+
//@ revisions: target_cpus
84+
//@[target_cpus] compile-flags: --print=target-cpus
85+
//@[target_cpus] check-pass
86+
87+
//@ revisions: target_features
88+
//@[target_features] compile-flags: --print=target-features
89+
//@[target_features] check-pass
90+
91+
//@ revisions: target_libdir
92+
//@[target_libdir] compile-flags: --print=target-libdir
93+
//@[target_libdir] check-pass
94+
95+
//@ revisions: target_list
96+
//@[target_list] compile-flags: --print=target-list
97+
//@[target_list] check-pass
98+
99+
//@ revisions: tls_models
100+
//@[tls_models] compile-flags: --print=tls-models
101+
//@[tls_models] check-pass
102+
103+
fn main() {}

0 commit comments

Comments
 (0)