Skip to content

Commit

Permalink
Rollup merge of #132450 - bjorn3:better_mir_errors, r=jieyouxu
Browse files Browse the repository at this point in the history
Show actual MIR when MIR building forgot to terminate block

This makes it significantly easier to debug bugs of this kind.
  • Loading branch information
GuillaumeGomez authored Nov 1, 2024
2 parents e9e7aa8 + 7603385 commit 7bfdc3d
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 28 deletions.
46 changes: 24 additions & 22 deletions compiler/rustc_middle/src/mir/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,33 +762,35 @@ where

// Terminator at the bottom.
extra_data(PassWhere::BeforeLocation(current_location), w)?;
let indented_terminator = format!("{0}{0}{1:?};", INDENT, data.terminator().kind);
if options.include_extra_comments {
writeln!(
if data.terminator.is_some() {
let indented_terminator = format!("{0}{0}{1:?};", INDENT, data.terminator().kind);
if options.include_extra_comments {
writeln!(
w,
"{:A$} // {}{}",
indented_terminator,
if tcx.sess.verbose_internals() {
format!("{current_location:?}: ")
} else {
String::new()
},
comment(tcx, data.terminator().source_info),
A = ALIGN,
)?;
} else {
writeln!(w, "{indented_terminator}")?;
}

write_extra(
tcx,
w,
"{:A$} // {}{}",
indented_terminator,
if tcx.sess.verbose_internals() {
format!("{current_location:?}: ")
} else {
String::new()
|visitor| {
visitor.visit_terminator(data.terminator(), current_location);
},
comment(tcx, data.terminator().source_info),
A = ALIGN,
options,
)?;
} else {
writeln!(w, "{indented_terminator}")?;
}

write_extra(
tcx,
w,
|visitor| {
visitor.visit_terminator(data.terminator(), current_location);
},
options,
)?;

extra_data(PassWhere::AfterLocation(current_location), w)?;
extra_data(PassWhere::AfterTerminator(block), w)?;

Expand Down
23 changes: 17 additions & 6 deletions compiler/rustc_mir_build/src/build/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -791,12 +791,6 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
}

fn finish(self) -> Body<'tcx> {
for (index, block) in self.cfg.basic_blocks.iter().enumerate() {
if block.terminator.is_none() {
span_bug!(self.fn_span, "no terminator on block {:?}", index);
}
}

let mut body = Body::new(
MirSource::item(self.def_id.to_def_id()),
self.cfg.basic_blocks,
Expand All @@ -810,6 +804,23 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
None,
);
body.coverage_info_hi = self.coverage_info.map(|b| b.into_done());

for (index, block) in body.basic_blocks.iter().enumerate() {
if block.terminator.is_none() {
use rustc_middle::mir::pretty;
let options = pretty::PrettyPrintMirOptions::from_cli(self.tcx);
pretty::write_mir_fn(
self.tcx,
&body,
&mut |_, _| Ok(()),
&mut std::io::stdout(),
options,
)
.unwrap();
span_bug!(self.fn_span, "no terminator on block {:?}", index);
}
}

body
}

Expand Down

0 comments on commit 7bfdc3d

Please sign in to comment.