Skip to content

Commit

Permalink
Auto merge of #86645 - FabianWolff:issue-82328, r=LeSeulArtichaut
Browse files Browse the repository at this point in the history
Fix ICE with `-Zunpretty=hir,typed`

This PR fixes #82328. The `-Zunpretty=hir,typed` pretty-printer maintains an `Option` with type-checking results and sets the `Option` to `Some` when entering a body. However, this leads to an ICE if an expression occurs in a function signature (i.e. outside of a body), such as `128` in
```rust
fn foo(-128..=127: i8) {}
```
This PR fixes the ICE by checking (if necessary) whether the expression's owner has a body, and retrieving type-checking results for that on the fly.
  • Loading branch information
bors committed Jun 27, 2021
2 parents a1411de + e8ebf98 commit a5b7511
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 16 deletions.
30 changes: 14 additions & 16 deletions compiler/rustc_driver/src/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,18 +293,6 @@ struct TypedAnnotation<'tcx> {
maybe_typeck_results: Cell<Option<&'tcx ty::TypeckResults<'tcx>>>,
}

impl<'tcx> TypedAnnotation<'tcx> {
/// Gets the type-checking results for the current body.
/// As this will ICE if called outside bodies, only call when working with
/// `Expr` or `Pat` nodes (they are guaranteed to be found only in bodies).
#[track_caller]
fn typeck_results(&self) -> &'tcx ty::TypeckResults<'tcx> {
self.maybe_typeck_results
.get()
.expect("`TypedAnnotation::typeck_results` called outside of body")
}
}

impl<'tcx> HirPrinterSupport<'tcx> for TypedAnnotation<'tcx> {
fn sess(&self) -> &Session {
&self.tcx.sess
Expand Down Expand Up @@ -336,10 +324,20 @@ impl<'tcx> pprust_hir::PpAnn for TypedAnnotation<'tcx> {
}
fn post(&self, s: &mut pprust_hir::State<'_>, node: pprust_hir::AnnNode<'_>) {
if let pprust_hir::AnnNode::Expr(expr) = node {
s.s.space();
s.s.word("as");
s.s.space();
s.s.word(self.typeck_results().expr_ty(expr).to_string());
let typeck_results = self.maybe_typeck_results.get().or_else(|| {
self.tcx
.hir()
.maybe_body_owned_by(self.tcx.hir().local_def_id_to_hir_id(expr.hir_id.owner))
.map(|body_id| self.tcx.typeck_body(body_id))
});

if let Some(typeck_results) = typeck_results {
s.s.space();
s.s.word("as");
s.s.space();
s.s.word(typeck_results.expr_ty(expr).to_string());
}

s.pclose();
}
}
Expand Down
13 changes: 13 additions & 0 deletions src/test/ui/unpretty-expr-fn-arg.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Regression test for the ICE described in #82328. The pretty-printer for
// `-Zunpretty=hir,typed` would previously retrieve type-checking results
// when entering a body, which means that type information was not available
// for expressions occurring in function signatures, as in the `foo` example
// below, leading to an ICE.

// check-pass
// compile-flags: -Zunpretty=hir,typed
#![allow(dead_code)]

fn main() {}

fn foo(-128..=127: i8) {}
17 changes: 17 additions & 0 deletions src/test/ui/unpretty-expr-fn-arg.stdout
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Regression test for the ICE described in #82328. The pretty-printer for
// `-Zunpretty=hir,typed` would previously retrieve type-checking results
// when entering a body, which means that type information was not available
// for expressions occurring in function signatures, as in the `foo` example
// below, leading to an ICE.

// check-pass
// compile-flags: -Zunpretty=hir,typed
#![allow(dead_code)]
#[prelude_import]
use ::std::prelude::rust_2015::*;
#[macro_use]
extern crate std;

fn main() ({ } as ())

fn foo((-(128 as i8) as i8) ...(127 as i8): i8) ({ } as ())

0 comments on commit a5b7511

Please sign in to comment.