From 5c473a059e26614b65414cfb8cf75c283cda5a87 Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Thu, 13 Feb 2020 15:27:54 -0800 Subject: [PATCH] Don't print block exit state if unchanged --- src/librustc_mir/dataflow/generic/graphviz.rs | 55 ++++++++++++------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/src/librustc_mir/dataflow/generic/graphviz.rs b/src/librustc_mir/dataflow/generic/graphviz.rs index b805b13592f89..157526d3c51ad 100644 --- a/src/librustc_mir/dataflow/generic/graphviz.rs +++ b/src/librustc_mir/dataflow/generic/graphviz.rs @@ -195,6 +195,8 @@ where // C: Entry state self.bg = Background::Light; self.results.seek_to_block_start(block); + let block_entry_state = self.results.get().clone(); + self.write_row_with_full_state(w, "", "(on entry)")?; // D: Statement transfer functions @@ -213,29 +215,42 @@ where self.write_row_for_location(w, "T", &terminator_str, terminator_loc)?; // F: Exit state + + // Write the full dataflow state immediately after the terminator if it differs from the + // state at block entry. self.results.seek_after(terminator_loc); - if let mir::TerminatorKind::Call { destination: Some(_), .. } = &terminator.kind { - self.write_row_with_full_state(w, "", "(on unwind)")?; - - let num_state_columns = self.num_state_columns(); - self.write_row(w, "", "(on successful return)", |this, w, fmt| { - write!( - w, - r#""#, - colspan = num_state_columns, - fmt = fmt, - )?; - - let state_on_unwind = this.results.get().clone(); - this.results.seek_after_assume_call_returns(terminator_loc); - write_diff(w, this.results.analysis(), &state_on_unwind, this.results.get())?; - - write!(w, "") - })?; - } else { - self.write_row_with_full_state(w, "", "(on exit)")?; + if self.results.get() != &block_entry_state { + let after_terminator_name = match terminator.kind { + mir::TerminatorKind::Call { destination: Some(_), .. } => "(on unwind)", + _ => "(on exit)", + }; + + self.write_row_with_full_state(w, "", after_terminator_name)?; } + // Write any changes caused by terminator-specific effects + match terminator.kind { + mir::TerminatorKind::Call { destination: Some(_), .. } => { + let num_state_columns = self.num_state_columns(); + self.write_row(w, "", "(on successful return)", |this, w, fmt| { + write!( + w, + r#""#, + colspan = num_state_columns, + fmt = fmt, + )?; + + let state_on_unwind = this.results.get().clone(); + this.results.seek_after_assume_call_returns(terminator_loc); + write_diff(w, this.results.analysis(), &state_on_unwind, this.results.get())?; + + write!(w, "") + })?; + } + + _ => {} + }; + write!(w, "") }