2014-02-07 20:13:07 +09:00
|
|
|
//! Span debugger
|
|
|
|
//!
|
|
|
|
//! This module shows spans for all expressions in the crate
|
|
|
|
//! to help with compiler debugging.
|
|
|
|
|
2014-12-27 21:00:48 +09:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
2020-04-27 23:26:11 +05:30
|
|
|
use rustc_ast as ast;
|
2020-02-29 20:37:32 +03:00
|
|
|
use rustc_ast::visit;
|
|
|
|
use rustc_ast::visit::Visitor;
|
2014-02-07 19:50:07 +09:00
|
|
|
|
2014-12-27 21:00:48 +09:00
|
|
|
enum Mode {
|
|
|
|
Expression,
|
|
|
|
Pattern,
|
|
|
|
Type,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for Mode {
|
2015-01-27 22:52:32 -08:00
|
|
|
type Err = ();
|
|
|
|
fn from_str(s: &str) -> Result<Mode, ()> {
|
2014-12-27 21:00:48 +09:00
|
|
|
let mode = match s {
|
|
|
|
"expr" => Mode::Expression,
|
|
|
|
"pat" => Mode::Pattern,
|
|
|
|
"ty" => Mode::Type,
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => return Err(()),
|
2014-12-27 21:00:48 +09:00
|
|
|
};
|
2015-01-27 22:52:32 -08:00
|
|
|
Ok(mode)
|
2014-12-27 21:00:48 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 16:36:01 +02:00
|
|
|
struct ShowSpanVisitor<'a> {
|
2020-01-09 11:18:47 +01:00
|
|
|
span_diagnostic: &'a rustc_errors::Handler,
|
2014-12-27 21:00:48 +09:00
|
|
|
mode: Mode,
|
2014-02-07 19:50:07 +09:00
|
|
|
}
|
|
|
|
|
2016-12-06 11:26:52 +01:00
|
|
|
impl<'a> Visitor<'a> for ShowSpanVisitor<'a> {
|
|
|
|
fn visit_expr(&mut self, e: &'a ast::Expr) {
|
2014-12-27 21:00:48 +09:00
|
|
|
if let Mode::Expression = self.mode {
|
2015-12-21 10:00:43 +13:00
|
|
|
self.span_diagnostic.span_warn(e.span, "expression");
|
2014-12-27 21:00:48 +09:00
|
|
|
}
|
2014-09-17 11:58:11 +12:00
|
|
|
visit::walk_expr(self, e);
|
2014-02-07 19:50:07 +09:00
|
|
|
}
|
2014-09-09 22:38:23 -07:00
|
|
|
|
2016-12-06 11:26:52 +01:00
|
|
|
fn visit_pat(&mut self, p: &'a ast::Pat) {
|
2014-12-27 21:00:48 +09:00
|
|
|
if let Mode::Pattern = self.mode {
|
2015-12-21 10:00:43 +13:00
|
|
|
self.span_diagnostic.span_warn(p.span, "pattern");
|
2014-12-27 21:00:48 +09:00
|
|
|
}
|
|
|
|
visit::walk_pat(self, p);
|
|
|
|
}
|
|
|
|
|
2016-12-06 11:26:52 +01:00
|
|
|
fn visit_ty(&mut self, t: &'a ast::Ty) {
|
2014-12-27 21:00:48 +09:00
|
|
|
if let Mode::Type = self.mode {
|
2015-12-21 10:00:43 +13:00
|
|
|
self.span_diagnostic.span_warn(t.span, "type");
|
2014-12-27 21:00:48 +09:00
|
|
|
}
|
|
|
|
visit::walk_ty(self, t);
|
|
|
|
}
|
2014-02-07 19:50:07 +09:00
|
|
|
}
|
|
|
|
|
2020-01-09 11:18:47 +01:00
|
|
|
pub fn run(span_diagnostic: &rustc_errors::Handler, mode: &str, krate: &ast::Crate) {
|
2022-02-19 00:48:49 +01:00
|
|
|
let Ok(mode) = mode.parse() else {
|
|
|
|
return;
|
2014-12-27 21:00:48 +09:00
|
|
|
};
|
2019-12-22 17:42:04 -05:00
|
|
|
let mut v = ShowSpanVisitor { span_diagnostic, mode };
|
2014-09-12 13:10:30 +03:00
|
|
|
visit::walk_crate(&mut v, krate);
|
2014-02-07 19:50:07 +09:00
|
|
|
}
|