Merge print_* functions.

The handling of the `PpMode` variants is currently spread across three
functions: `print_after_parsing`, `print_after_hir_lowering`, and
`print_with_analysis`. Each one handles some of the variants. This split
is primarily because `print_after_parsing` has slightly different
arguments to the other two.

This commit changes the structure. It merges the three functions into a
single `print` function, and encapsulates the different arguments in a
new enum `PrintExtra`.

Benefits:
- The code is a little shorter.
- All the `PpMode` variants are handled in a single `match`, with no
  need for `unreachable!` arms.
- It enables the trait removal in the subsequent commit by reducing
  the number of `call_with_pp_support_ast` call sites from two to one.
This commit is contained in:
Nicholas Nethercote 2023-10-11 08:49:24 +11:00
parent e3d8bbbfe2
commit 7d145a0fde
2 changed files with 55 additions and 73 deletions

View File

@ -396,7 +396,7 @@ fn run_compiler(
if ppm.needs_ast_map() { if ppm.needs_ast_map() {
queries.global_ctxt()?.enter(|tcx| { queries.global_ctxt()?.enter(|tcx| {
tcx.ensure().early_lint_checks(()); tcx.ensure().early_lint_checks(());
pretty::print_after_hir_lowering(tcx, *ppm); pretty::print(sess, *ppm, pretty::PrintExtra::NeedsAstMap { tcx });
Ok(()) Ok(())
})?; })?;
@ -405,7 +405,7 @@ fn run_compiler(
queries.global_ctxt()?.enter(|tcx| tcx.output_filenames(())); queries.global_ctxt()?.enter(|tcx| tcx.output_filenames(()));
} else { } else {
let krate = queries.parse()?.steal(); let krate = queries.parse()?.steal();
pretty::print_after_parsing(sess, &krate, *ppm); pretty::print(sess, *ppm, pretty::PrintExtra::AfterParsing { krate });
} }
trace!("finished pretty-printing"); trace!("finished pretty-printing");
return early_exit(); return early_exit();

View File

@ -2,9 +2,9 @@
use rustc_ast as ast; use rustc_ast as ast;
use rustc_ast_pretty::pprust as pprust_ast; use rustc_ast_pretty::pprust as pprust_ast;
use rustc_errors::ErrorGuaranteed;
use rustc_hir as hir; use rustc_hir as hir;
use rustc_hir_pretty as pprust_hir; use rustc_hir_pretty as pprust_hir;
use rustc_middle::bug;
use rustc_middle::hir::map as hir_map; use rustc_middle::hir::map as hir_map;
use rustc_middle::mir::{write_mir_graphviz, write_mir_pretty}; use rustc_middle::mir::{write_mir_graphviz, write_mir_pretty};
use rustc_middle::ty::{self, TyCtxt}; use rustc_middle::ty::{self, TyCtxt};
@ -310,7 +310,37 @@ fn write_or_print(out: &str, sess: &Session) {
sess.io.output_file.as_ref().unwrap_or(&OutFileName::Stdout).overwrite(out, sess); sess.io.output_file.as_ref().unwrap_or(&OutFileName::Stdout).overwrite(out, sess);
} }
pub fn print_after_parsing(sess: &Session, krate: &ast::Crate, ppm: PpMode) { // Extra data for pretty-printing, the form of which depends on what kind of
// pretty-printing we are doing.
pub enum PrintExtra<'tcx> {
AfterParsing { krate: ast::Crate },
NeedsAstMap { tcx: TyCtxt<'tcx> },
}
impl<'tcx> PrintExtra<'tcx> {
fn with_krate<F, R>(&self, f: F) -> R
where
F: FnOnce(&ast::Crate) -> R
{
match self {
PrintExtra::AfterParsing { krate, .. } => f(krate),
PrintExtra::NeedsAstMap { tcx } => f(&tcx.resolver_for_lowering(()).borrow().1),
}
}
fn tcx(&self) -> TyCtxt<'tcx> {
match self {
PrintExtra::AfterParsing { .. } => bug!("PrintExtra::tcx"),
PrintExtra::NeedsAstMap { tcx } => *tcx,
}
}
}
pub fn print<'tcx>(sess: &Session, ppm: PpMode, ex: PrintExtra<'tcx>) {
if ppm.needs_analysis() {
abort_on_err(ex.tcx().analysis(()), sess);
}
let (src, src_name) = get_source(sess); let (src, src_name) = get_source(sess);
let out = match ppm { let out = match ppm {
@ -320,96 +350,52 @@ pub fn print_after_parsing(sess: &Session, krate: &ast::Crate, ppm: PpMode) {
debug!("pretty printing source code {:?}", s); debug!("pretty printing source code {:?}", s);
let sess = annotation.sess(); let sess = annotation.sess();
let parse = &sess.parse_sess; let parse = &sess.parse_sess;
pprust_ast::print_crate( let is_expanded = ppm.needs_ast_map();
sess.source_map(), ex.with_krate(|krate|
krate, pprust_ast::print_crate(
src_name, sess.source_map(),
src, krate,
annotation, src_name,
false, src,
parse.edition, annotation,
&sess.parse_sess.attr_id_generator, is_expanded,
parse.edition,
&sess.parse_sess.attr_id_generator,
)
) )
}) })
} }
AstTree => { AstTree => {
debug!("pretty printing AST tree"); debug!("pretty printing AST tree");
format!("{krate:#?}") ex.with_krate(|krate| format!("{krate:#?}"))
} }
_ => unreachable!(),
};
write_or_print(&out, sess);
}
pub fn print_after_hir_lowering<'tcx>(tcx: TyCtxt<'tcx>, ppm: PpMode) {
if ppm.needs_analysis() {
abort_on_err(print_with_analysis(tcx, ppm), tcx.sess);
return;
}
let (src, src_name) = get_source(tcx.sess);
let out = match ppm {
Source(s) => {
// Silently ignores an identified node.
call_with_pp_support_ast(&s, tcx.sess, Some(tcx), move |annotation| {
debug!("pretty printing source code {:?}", s);
let sess = annotation.sess();
let parse = &sess.parse_sess;
pprust_ast::print_crate(
sess.source_map(),
&tcx.resolver_for_lowering(()).borrow().1,
src_name,
src,
annotation,
true,
parse.edition,
&sess.parse_sess.attr_id_generator,
)
})
}
AstTreeExpanded => { AstTreeExpanded => {
debug!("pretty-printing expanded AST"); debug!("pretty-printing expanded AST");
format!("{:#?}", tcx.resolver_for_lowering(()).borrow().1) format!("{:#?}", ex.tcx().resolver_for_lowering(()).borrow().1)
} }
Hir(s) => call_with_pp_support_hir(&s, ex.tcx(), move |annotation, hir_map| {
Hir(s) => call_with_pp_support_hir(&s, tcx, move |annotation, hir_map| {
debug!("pretty printing HIR {:?}", s); debug!("pretty printing HIR {:?}", s);
let sess = annotation.sess(); let sess = annotation.sess();
let sm = sess.source_map(); let sm = sess.source_map();
let attrs = |id| hir_map.attrs(id); let attrs = |id| hir_map.attrs(id);
pprust_hir::print_crate(sm, hir_map.root_module(), src_name, src, &attrs, annotation) pprust_hir::print_crate(sm, hir_map.root_module(), src_name, src, &attrs, annotation)
}), }),
HirTree => { HirTree => {
debug!("pretty printing HIR tree"); debug!("pretty printing HIR tree");
format!("{:#?}", tcx.hir().krate()) format!("{:#?}", ex.tcx().hir().krate())
} }
_ => unreachable!(),
};
write_or_print(&out, tcx.sess);
}
fn print_with_analysis(tcx: TyCtxt<'_>, ppm: PpMode) -> Result<(), ErrorGuaranteed> {
tcx.analysis(())?;
let out = match ppm {
Mir => { Mir => {
let mut out = Vec::new(); let mut out = Vec::new();
write_mir_pretty(tcx, None, &mut out).unwrap(); write_mir_pretty(ex.tcx(), None, &mut out).unwrap();
String::from_utf8(out).unwrap() String::from_utf8(out).unwrap()
} }
MirCFG => { MirCFG => {
let mut out = Vec::new(); let mut out = Vec::new();
write_mir_graphviz(tcx, None, &mut out).unwrap(); write_mir_graphviz(ex.tcx(), None, &mut out).unwrap();
String::from_utf8(out).unwrap() String::from_utf8(out).unwrap()
} }
ThirTree => { ThirTree => {
let tcx = ex.tcx();
let mut out = String::new(); let mut out = String::new();
abort_on_err(rustc_hir_analysis::check_crate(tcx), tcx.sess); abort_on_err(rustc_hir_analysis::check_crate(tcx), tcx.sess);
debug!("pretty printing THIR tree"); debug!("pretty printing THIR tree");
@ -418,8 +404,8 @@ fn print_with_analysis(tcx: TyCtxt<'_>, ppm: PpMode) -> Result<(), ErrorGuarante
} }
out out
} }
ThirFlat => { ThirFlat => {
let tcx = ex.tcx();
let mut out = String::new(); let mut out = String::new();
abort_on_err(rustc_hir_analysis::check_crate(tcx), tcx.sess); abort_on_err(rustc_hir_analysis::check_crate(tcx), tcx.sess);
debug!("pretty printing THIR flat"); debug!("pretty printing THIR flat");
@ -428,11 +414,7 @@ fn print_with_analysis(tcx: TyCtxt<'_>, ppm: PpMode) -> Result<(), ErrorGuarante
} }
out out
} }
_ => unreachable!(),
}; };
write_or_print(&out, tcx.sess); write_or_print(&out, sess);
Ok(())
} }