Skip to content

Commit 3ed189e

Browse files
Cleanup PpMode and friends
1 parent cb2effd commit 3ed189e

File tree

3 files changed

+83
-74
lines changed

3 files changed

+83
-74
lines changed

compiler/rustc_driver/src/pretty.rs

+18-20
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use rustc_hir_pretty as pprust_hir;
99
use rustc_middle::hir::map as hir_map;
1010
use rustc_middle::ty::{self, TyCtxt};
1111
use rustc_mir::util::{write_mir_graphviz, write_mir_pretty};
12-
use rustc_session::config::{Input, PpMode, PpSourceMode};
12+
use rustc_session::config::{Input, PpHirMode, PpMode, PpSourceMode};
1313
use rustc_session::Session;
1414
use rustc_span::symbol::Ident;
1515
use rustc_span::FileName;
@@ -42,43 +42,41 @@ where
4242
F: FnOnce(&dyn PrinterSupport) -> A,
4343
{
4444
match *ppmode {
45-
PpmNormal | PpmEveryBodyLoops | PpmExpanded => {
45+
Normal | EveryBodyLoops | Expanded => {
4646
let annotation = NoAnn { sess, tcx };
4747
f(&annotation)
4848
}
4949

50-
PpmIdentified | PpmExpandedIdentified => {
50+
Identified | ExpandedIdentified => {
5151
let annotation = IdentifiedAnnotation { sess, tcx };
5252
f(&annotation)
5353
}
54-
PpmExpandedHygiene => {
54+
ExpandedHygiene => {
5555
let annotation = HygieneAnnotation { sess };
5656
f(&annotation)
5757
}
58-
_ => panic!("Should use call_with_pp_support_hir"),
5958
}
6059
}
61-
fn call_with_pp_support_hir<A, F>(ppmode: &PpSourceMode, tcx: TyCtxt<'_>, f: F) -> A
60+
fn call_with_pp_support_hir<A, F>(ppmode: &PpHirMode, tcx: TyCtxt<'_>, f: F) -> A
6261
where
6362
F: FnOnce(&dyn HirPrinterSupport<'_>, &hir::Crate<'_>) -> A,
6463
{
6564
match *ppmode {
66-
PpmNormal => {
65+
PpHirMode::Normal => {
6766
let annotation = NoAnn { sess: tcx.sess, tcx: Some(tcx) };
6867
f(&annotation, tcx.hir().krate())
6968
}
7069

71-
PpmIdentified => {
70+
PpHirMode::Identified => {
7271
let annotation = IdentifiedAnnotation { sess: tcx.sess, tcx: Some(tcx) };
7372
f(&annotation, tcx.hir().krate())
7473
}
75-
PpmTyped => {
74+
PpHirMode::Typed => {
7675
abort_on_err(tcx.analysis(LOCAL_CRATE), tcx.sess);
7776

7877
let annotation = TypedAnnotation { tcx, maybe_typeck_results: Cell::new(None) };
7978
tcx.dep_graph.with_ignore(|| f(&annotation, tcx.hir().krate()))
8079
}
81-
_ => panic!("Should use call_with_pp_support"),
8280
}
8381
}
8482

@@ -395,7 +393,7 @@ pub fn print_after_parsing(
395393

396394
let mut out = String::new();
397395

398-
if let PpmSource(s) = ppm {
396+
if let Source(s) = ppm {
399397
// Silently ignores an identified node.
400398
let out = &mut out;
401399
call_with_pp_support(&s, sess, None, move |annotation| {
@@ -436,7 +434,7 @@ pub fn print_after_hir_lowering<'tcx>(
436434
let mut out = String::new();
437435

438436
match ppm {
439-
PpmSource(s) => {
437+
Source(s) => {
440438
// Silently ignores an identified node.
441439
let out = &mut out;
442440
call_with_pp_support(&s, tcx.sess, Some(tcx), move |annotation| {
@@ -455,20 +453,20 @@ pub fn print_after_hir_lowering<'tcx>(
455453
})
456454
}
457455

458-
PpmHir(s) => {
456+
Hir(s) => {
459457
let out = &mut out;
460458
call_with_pp_support_hir(&s, tcx, move |annotation, krate| {
461-
debug!("pretty printing source code {:?}", s);
459+
debug!("pretty printing HIR {:?}", s);
462460
let sess = annotation.sess();
463461
let sm = sess.source_map();
464462
*out = pprust_hir::print_crate(sm, krate, src_name, src, annotation.pp_ann())
465463
})
466464
}
467465

468-
PpmHirTree(s) => {
466+
HirTree => {
469467
let out = &mut out;
470-
call_with_pp_support_hir(&s, tcx, move |_annotation, krate| {
471-
debug!("pretty printing source code {:?}", s);
468+
call_with_pp_support_hir(&PpHirMode::Normal, tcx, move |_annotation, krate| {
469+
debug!("pretty printing HIR tree");
472470
*out = format!("{:#?}", krate);
473471
});
474472
}
@@ -493,9 +491,9 @@ fn print_with_analysis(
493491
tcx.analysis(LOCAL_CRATE)?;
494492

495493
match ppm {
496-
PpmMir | PpmMirCFG => match ppm {
497-
PpmMir => write_mir_pretty(tcx, None, &mut out),
498-
PpmMirCFG => write_mir_graphviz(tcx, None, &mut out),
494+
Mir | MirCFG => match ppm {
495+
Mir => write_mir_pretty(tcx, None, &mut out),
496+
MirCFG => write_mir_graphviz(tcx, None, &mut out),
499497
_ => unreachable!(),
500498
},
501499
_ => unreachable!(),

compiler/rustc_interface/src/passes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ fn configure_and_expand_inner<'a>(
348348
rustc_builtin_macros::test_harness::inject(&sess, &mut resolver, &mut krate)
349349
});
350350

351-
if let Some(PpMode::PpmSource(PpSourceMode::PpmEveryBodyLoops)) = sess.opts.pretty {
351+
if let Some(PpMode::Source(PpSourceMode::EveryBodyLoops)) = sess.opts.pretty {
352352
tracing::debug!("replacing bodies with loop {{}}");
353353
util::ReplaceBodyWithLoop::new(&mut resolver).visit_crate(&mut krate);
354354
}

compiler/rustc_session/src/config.rs

+64-53
Original file line numberDiff line numberDiff line change
@@ -2068,40 +2068,21 @@ fn parse_pretty(
20682068
debugging_opts: &DebuggingOptions,
20692069
efmt: ErrorOutputType,
20702070
) -> Option<PpMode> {
2071-
let pretty = if debugging_opts.unstable_options {
2072-
matches.opt_default("pretty", "normal").map(|a| {
2073-
// stable pretty-print variants only
2074-
parse_pretty_inner(efmt, &a, false)
2075-
})
2076-
} else {
2077-
None
2078-
};
2079-
2080-
return if pretty.is_none() {
2081-
debugging_opts.unpretty.as_ref().map(|a| {
2082-
// extended with unstable pretty-print variants
2083-
parse_pretty_inner(efmt, &a, true)
2084-
})
2085-
} else {
2086-
pretty
2087-
};
2088-
20892071
fn parse_pretty_inner(efmt: ErrorOutputType, name: &str, extended: bool) -> PpMode {
20902072
use PpMode::*;
2091-
use PpSourceMode::*;
20922073
let first = match (name, extended) {
2093-
("normal", _) => PpmSource(PpmNormal),
2094-
("identified", _) => PpmSource(PpmIdentified),
2095-
("everybody_loops", true) => PpmSource(PpmEveryBodyLoops),
2096-
("expanded", _) => PpmSource(PpmExpanded),
2097-
("expanded,identified", _) => PpmSource(PpmExpandedIdentified),
2098-
("expanded,hygiene", _) => PpmSource(PpmExpandedHygiene),
2099-
("hir", true) => PpmHir(PpmNormal),
2100-
("hir,identified", true) => PpmHir(PpmIdentified),
2101-
("hir,typed", true) => PpmHir(PpmTyped),
2102-
("hir-tree", true) => PpmHirTree(PpmNormal),
2103-
("mir", true) => PpmMir,
2104-
("mir-cfg", true) => PpmMirCFG,
2074+
("normal", _) => Source(PpSourceMode::Normal),
2075+
("identified", _) => Source(PpSourceMode::Identified),
2076+
("everybody_loops", true) => Source(PpSourceMode::EveryBodyLoops),
2077+
("expanded", _) => Source(PpSourceMode::Expanded),
2078+
("expanded,identified", _) => Source(PpSourceMode::ExpandedIdentified),
2079+
("expanded,hygiene", _) => Source(PpSourceMode::ExpandedHygiene),
2080+
("hir", true) => Hir(PpHirMode::Normal),
2081+
("hir,identified", true) => Hir(PpHirMode::Identified),
2082+
("hir,typed", true) => Hir(PpHirMode::Typed),
2083+
("hir-tree", true) => HirTree,
2084+
("mir", true) => Mir,
2085+
("mir-cfg", true) => MirCFG,
21052086
_ => {
21062087
if extended {
21072088
early_error(
@@ -2130,6 +2111,18 @@ fn parse_pretty(
21302111
tracing::debug!("got unpretty option: {:?}", first);
21312112
first
21322113
}
2114+
2115+
if debugging_opts.unstable_options {
2116+
if let Some(a) = matches.opt_default("pretty", "normal") {
2117+
// stable pretty-print variants only
2118+
return Some(parse_pretty_inner(efmt, &a, false));
2119+
}
2120+
}
2121+
2122+
debugging_opts.unpretty.as_ref().map(|a| {
2123+
// extended with unstable pretty-print variants
2124+
parse_pretty_inner(efmt, &a, true)
2125+
})
21332126
}
21342127

21352128
pub fn make_crate_type_option() -> RustcOptGroup {
@@ -2237,45 +2230,63 @@ impl fmt::Display for CrateType {
22372230

22382231
#[derive(Copy, Clone, PartialEq, Debug)]
22392232
pub enum PpSourceMode {
2240-
PpmNormal,
2241-
PpmEveryBodyLoops,
2242-
PpmExpanded,
2243-
PpmIdentified,
2244-
PpmExpandedIdentified,
2245-
PpmExpandedHygiene,
2246-
PpmTyped,
2233+
/// `--pretty=normal`
2234+
Normal,
2235+
/// `-Zunpretty=everybody_loops`
2236+
EveryBodyLoops,
2237+
/// `--pretty=expanded`
2238+
Expanded,
2239+
/// `--pretty=identified`
2240+
Identified,
2241+
/// `--pretty=expanded,identified`
2242+
ExpandedIdentified,
2243+
/// `--pretty=expanded,hygiene`
2244+
ExpandedHygiene,
2245+
}
2246+
2247+
#[derive(Copy, Clone, PartialEq, Debug)]
2248+
pub enum PpHirMode {
2249+
/// `-Zunpretty=hir`
2250+
Normal,
2251+
/// `-Zunpretty=hir,identified`
2252+
Identified,
2253+
/// `-Zunpretty=hir,typed`
2254+
Typed,
22472255
}
22482256

22492257
#[derive(Copy, Clone, PartialEq, Debug)]
22502258
pub enum PpMode {
2251-
PpmSource(PpSourceMode),
2252-
PpmHir(PpSourceMode),
2253-
PpmHirTree(PpSourceMode),
2254-
PpmMir,
2255-
PpmMirCFG,
2259+
/// Options that print the source code, i.e.
2260+
/// `--pretty` and `-Zunpretty=everybody_loops`
2261+
Source(PpSourceMode),
2262+
/// Options that print the HIR, i.e. `-Zunpretty=hir`
2263+
Hir(PpHirMode),
2264+
/// `-Zunpretty=hir-tree`
2265+
HirTree,
2266+
/// `-Zunpretty=mir`
2267+
Mir,
2268+
/// `-Zunpretty=mir-cfg`
2269+
MirCFG,
22562270
}
22572271

22582272
impl PpMode {
22592273
pub fn needs_ast_map(&self) -> bool {
22602274
use PpMode::*;
22612275
use PpSourceMode::*;
22622276
match *self {
2263-
PpmSource(PpmNormal | PpmIdentified) => false,
2277+
Source(Normal | Identified) => false,
22642278

2265-
PpmSource(
2266-
PpmExpanded | PpmEveryBodyLoops | PpmExpandedIdentified | PpmExpandedHygiene,
2267-
)
2268-
| PpmHir(_)
2269-
| PpmHirTree(_)
2270-
| PpmMir
2271-
| PpmMirCFG => true,
2272-
PpmSource(PpmTyped) => panic!("invalid state"),
2279+
Source(Expanded | EveryBodyLoops | ExpandedIdentified | ExpandedHygiene)
2280+
| Hir(_)
2281+
| HirTree
2282+
| Mir
2283+
| MirCFG => true,
22732284
}
22742285
}
22752286

22762287
pub fn needs_analysis(&self) -> bool {
22772288
use PpMode::*;
2278-
matches!(*self, PpmMir | PpmMirCFG)
2289+
matches!(*self, Mir | MirCFG)
22792290
}
22802291
}
22812292

0 commit comments

Comments
 (0)