rollup merge of #20258: sanxiyn/show-span-2
This commit is contained in:
commit
0dd07429ab
5 changed files with 64 additions and 12 deletions
|
@ -105,6 +105,7 @@ pub struct Options {
|
|||
pub prints: Vec<PrintRequest>,
|
||||
pub cg: CodegenOptions,
|
||||
pub color: ColorConfig,
|
||||
pub show_span: Option<String>,
|
||||
pub externs: HashMap<String, Vec<String>>,
|
||||
pub crate_name: Option<String>,
|
||||
/// An optional name to use as the crate for std during std injection,
|
||||
|
@ -211,6 +212,7 @@ pub fn basic_options() -> Options {
|
|||
prints: Vec::new(),
|
||||
cg: basic_codegen_options(),
|
||||
color: Auto,
|
||||
show_span: None,
|
||||
externs: HashMap::new(),
|
||||
crate_name: None,
|
||||
alt_std_name: None,
|
||||
|
@ -259,7 +261,6 @@ debugging_opts! {
|
|||
BORROWCK_STATS,
|
||||
NO_LANDING_PADS,
|
||||
DEBUG_LLVM,
|
||||
SHOW_SPAN,
|
||||
COUNT_TYPE_SIZES,
|
||||
META_STATS,
|
||||
GC,
|
||||
|
@ -299,7 +300,6 @@ pub fn debugging_opts_map() -> Vec<(&'static str, &'static str, u64)> {
|
|||
("no-landing-pads", "omit landing pads for unwinding",
|
||||
NO_LANDING_PADS),
|
||||
("debug-llvm", "enable debug output from LLVM", DEBUG_LLVM),
|
||||
("show-span", "show spans for compiler debugging", SHOW_SPAN),
|
||||
("count-type-sizes", "count the sizes of aggregate types",
|
||||
COUNT_TYPE_SIZES),
|
||||
("meta-stats", "gather metadata statistics", META_STATS),
|
||||
|
@ -823,6 +823,7 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
|
|||
`flowgraph=<nodeid>` (graphviz formatted flowgraph for node), or
|
||||
`everybody_loops` (all function bodies replaced with `loop {}`).",
|
||||
"TYPE"),
|
||||
opt::opt_u("", "show-span", "Show spans for compiler debugging", "expr|pat|ty"),
|
||||
opt::flagopt("", "dep-info",
|
||||
"Output dependency info to <filename> after compiling, \
|
||||
in a format suitable for use by Makefiles", "FILENAME"),
|
||||
|
@ -1143,6 +1144,7 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
|
|||
prints: prints,
|
||||
cg: cg,
|
||||
color: color,
|
||||
show_span: None,
|
||||
externs: externs,
|
||||
crate_name: crate_name,
|
||||
alt_std_name: None,
|
||||
|
|
|
@ -201,8 +201,8 @@ impl Session {
|
|||
pub fn no_landing_pads(&self) -> bool {
|
||||
self.debugging_opt(config::NO_LANDING_PADS)
|
||||
}
|
||||
pub fn show_span(&self) -> bool {
|
||||
self.debugging_opt(config::SHOW_SPAN)
|
||||
pub fn unstable_options(&self) -> bool {
|
||||
self.debugging_opt(config::UNSTABLE_OPTIONS)
|
||||
}
|
||||
pub fn print_enum_sizes(&self) -> bool {
|
||||
self.debugging_opt(config::PRINT_ENUM_SIZES)
|
||||
|
|
|
@ -146,8 +146,8 @@ pub fn phase_1_parse_input(sess: &Session, cfg: ast::CrateConfig, input: &Input)
|
|||
println!("{}", json::as_json(&krate));
|
||||
}
|
||||
|
||||
if sess.show_span() {
|
||||
syntax::show_span::run(sess.diagnostic(), &krate);
|
||||
if let Some(ref s) = sess.opts.show_span {
|
||||
syntax::show_span::run(sess.diagnostic(), s.as_slice(), &krate);
|
||||
}
|
||||
|
||||
krate
|
||||
|
@ -572,7 +572,7 @@ pub fn stop_after_phase_1(sess: &Session) -> bool {
|
|||
debug!("invoked with --parse-only, returning early from compile_input");
|
||||
return true;
|
||||
}
|
||||
if sess.show_span() {
|
||||
if sess.opts.show_span.is_some() {
|
||||
return true;
|
||||
}
|
||||
return sess.opts.debugging_opts & config::AST_JSON_NOEXPAND != 0;
|
||||
|
|
|
@ -134,7 +134,7 @@ fn run_compiler(args: &[String]) {
|
|||
_ => early_error("multiple input filenames provided")
|
||||
};
|
||||
|
||||
let sess = build_session(sopts, input_file_path, descriptions);
|
||||
let mut sess = build_session(sopts, input_file_path, descriptions);
|
||||
let cfg = config::build_configuration(&sess);
|
||||
if print_crate_info(&sess, Some(&input), &odir, &ofile) {
|
||||
return
|
||||
|
@ -145,7 +145,7 @@ fn run_compiler(args: &[String]) {
|
|||
pretty::parse_pretty(&sess, a.as_slice(), false)
|
||||
});
|
||||
let pretty = if pretty.is_none() &&
|
||||
sess.debugging_opt(config::UNSTABLE_OPTIONS) {
|
||||
sess.unstable_options() {
|
||||
matches.opt_str("xpretty").map(|a| {
|
||||
// extended with unstable pretty-print variants
|
||||
pretty::parse_pretty(&sess, a.as_slice(), true)
|
||||
|
@ -162,6 +162,10 @@ fn run_compiler(args: &[String]) {
|
|||
None => {/* continue */ }
|
||||
}
|
||||
|
||||
if sess.unstable_options() {
|
||||
sess.opts.show_span = matches.opt_str("show-span");
|
||||
}
|
||||
|
||||
let r = matches.opt_strs("Z");
|
||||
if r.contains(&("ls".to_string())) {
|
||||
match input {
|
||||
|
|
|
@ -13,27 +13,73 @@
|
|||
//! This module shows spans for all expressions in the crate
|
||||
//! to help with compiler debugging.
|
||||
|
||||
use std::str::FromStr;
|
||||
|
||||
use ast;
|
||||
use diagnostic;
|
||||
use visit;
|
||||
use visit::Visitor;
|
||||
|
||||
enum Mode {
|
||||
Expression,
|
||||
Pattern,
|
||||
Type,
|
||||
}
|
||||
|
||||
impl FromStr for Mode {
|
||||
fn from_str(s: &str) -> Option<Mode> {
|
||||
let mode = match s {
|
||||
"expr" => Mode::Expression,
|
||||
"pat" => Mode::Pattern,
|
||||
"ty" => Mode::Type,
|
||||
_ => return None
|
||||
};
|
||||
Some(mode)
|
||||
}
|
||||
}
|
||||
|
||||
struct ShowSpanVisitor<'a> {
|
||||
span_diagnostic: &'a diagnostic::SpanHandler,
|
||||
mode: Mode,
|
||||
}
|
||||
|
||||
impl<'a, 'v> Visitor<'v> for ShowSpanVisitor<'a> {
|
||||
fn visit_expr(&mut self, e: &ast::Expr) {
|
||||
self.span_diagnostic.span_note(e.span, "expression");
|
||||
if let Mode::Expression = self.mode {
|
||||
self.span_diagnostic.span_note(e.span, "expression");
|
||||
}
|
||||
visit::walk_expr(self, e);
|
||||
}
|
||||
|
||||
fn visit_pat(&mut self, p: &ast::Pat) {
|
||||
if let Mode::Pattern = self.mode {
|
||||
self.span_diagnostic.span_note(p.span, "pattern");
|
||||
}
|
||||
visit::walk_pat(self, p);
|
||||
}
|
||||
|
||||
fn visit_ty(&mut self, t: &ast::Ty) {
|
||||
if let Mode::Type = self.mode {
|
||||
self.span_diagnostic.span_note(t.span, "type");
|
||||
}
|
||||
visit::walk_ty(self, t);
|
||||
}
|
||||
|
||||
fn visit_mac(&mut self, macro: &ast::Mac) {
|
||||
visit::walk_mac(self, macro);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run(span_diagnostic: &diagnostic::SpanHandler, krate: &ast::Crate) {
|
||||
let mut v = ShowSpanVisitor { span_diagnostic: span_diagnostic };
|
||||
pub fn run(span_diagnostic: &diagnostic::SpanHandler,
|
||||
mode: &str,
|
||||
krate: &ast::Crate) {
|
||||
let mode = match mode.parse() {
|
||||
Some(mode) => mode,
|
||||
None => return
|
||||
};
|
||||
let mut v = ShowSpanVisitor {
|
||||
span_diagnostic: span_diagnostic,
|
||||
mode: mode,
|
||||
};
|
||||
visit::walk_crate(&mut v, krate);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue