-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix "new trace_macros doesn't work if there's an error during expansion" #44088
Changes from all commits
1ed962b
878013c
8bb7dba
8b71e0b
30603ee
0a2c95b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -384,13 +384,14 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
if self.cx.current_expansion.depth > self.cx.ecfg.recursion_limit { | ||
let info = self.cx.current_expansion.mark.expn_info().unwrap(); | ||
let suggested_limit = self.cx.ecfg.recursion_limit * 2; | ||
let mut err = self.cx.struct_span_fatal(info.call_site, | ||
let mut err = self.cx.struct_span_err(info.call_site, | ||
&format!("recursion limit reached while expanding the macro `{}`", | ||
info.callee.name())); | ||
err.help(&format!( | ||
"consider adding a `#![recursion_limit=\"{}\"]` attribute to your crate", | ||
suggested_limit)); | ||
err.emit(); | ||
self.cx.trace_macros_diag(); | ||
panic!(FatalError); | ||
} | ||
|
||
|
@@ -439,11 +440,13 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
} | ||
ProcMacroDerive(..) | BuiltinDerive(..) => { | ||
self.cx.span_err(attr.span, &format!("`{}` is a derive mode", attr.path)); | ||
self.cx.trace_macros_diag(); | ||
kind.dummy(attr.span) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need |
||
} | ||
_ => { | ||
let msg = &format!("macro `{}` may not be used in attributes", attr.path); | ||
self.cx.span_err(attr.span, msg); | ||
self.cx.trace_macros_diag(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need this here? This error shouldn't abort expansion. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The order of the trace notes is unstable otherwise. |
||
kind.dummy(attr.span) | ||
} | ||
} | ||
|
@@ -482,6 +485,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
if let Err(msg) = validate_and_set_expn_info(def_span.map(|(_, s)| s), | ||
false, false) { | ||
self.cx.span_err(path.span, &msg); | ||
self.cx.trace_macros_diag(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also this, and the most of the others in this file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
return kind.dummy(span); | ||
} | ||
kind.make_from(expand.expand(self.cx, span, mac.node.stream())) | ||
|
@@ -497,6 +501,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
allow_internal_unstable, | ||
allow_internal_unsafe) { | ||
self.cx.span_err(path.span, &msg); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
} | ||
kind.make_from(expander.expand(self.cx, span, mac.node.stream())) | ||
|
@@ -506,6 +511,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
if ident.name == keywords::Invalid.name() { | ||
self.cx.span_err(path.span, | ||
&format!("macro {}! expects an ident argument", path)); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
}; | ||
|
||
|
@@ -526,11 +532,13 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
MultiDecorator(..) | MultiModifier(..) | AttrProcMacro(..) => { | ||
self.cx.span_err(path.span, | ||
&format!("`{}` can only be used in attributes", path)); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
} | ||
|
||
ProcMacroDerive(..) | BuiltinDerive(..) => { | ||
self.cx.span_err(path.span, &format!("`{}` is a derive mode", path)); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
} | ||
|
||
|
@@ -539,6 +547,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
let msg = | ||
format!("macro {}! expects no ident argument, given '{}'", path, ident); | ||
self.cx.span_err(path.span, &msg); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
} | ||
|
||
|
@@ -564,6 +573,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
let msg = format!("non-{kind} macro in {kind} position: {name}", | ||
name = path.segments[0].identifier.name, kind = kind.name()); | ||
self.cx.span_err(path.span, &msg); | ||
self.cx.trace_macros_diag(); | ||
kind.dummy(span) | ||
}) | ||
} | ||
|
@@ -617,6 +627,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
_ => { | ||
let msg = &format!("macro `{}` may not be used for derive attributes", attr.path); | ||
self.cx.span_err(span, msg); | ||
self.cx.trace_macros_diag(); | ||
kind.dummy(span) | ||
} | ||
} | ||
|
@@ -629,6 +640,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> { | |
Ok(expansion) => expansion, | ||
Err(mut err) => { | ||
err.emit(); | ||
self.cx.trace_macros_diag(); | ||
return kind.dummy(span); | ||
} | ||
}; | ||
|
@@ -739,6 +751,7 @@ impl<'a, 'b> InvocationCollector<'a, 'b> { | |
if !traits.is_empty() && | ||
(kind == ExpansionKind::TraitItems || kind == ExpansionKind::ImplItems) { | ||
self.cx.span_err(traits[0].span, "`derive` can be only be applied to items"); | ||
self.cx.trace_macros_diag(); | ||
return kind.expect_from_annotatables(::std::iter::once(item)); | ||
} | ||
self.collect(kind, InvocationKind::Attr { attr: attr, traits: traits, item: item }) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,7 +172,9 @@ fn generic_extension<'cx>(cx: &'cx mut ExtCtxt, | |
} | ||
|
||
let best_fail_msg = parse_failure_msg(best_fail_tok.expect("ran no matchers")); | ||
cx.span_fatal(best_fail_spot.substitute_dummy(sp), &best_fail_msg); | ||
cx.span_err(best_fail_spot.substitute_dummy(sp), &best_fail_msg); | ||
cx.trace_macros_diag(); | ||
DummyResult::any(sp) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
} | ||
|
||
// Note that macro-by-example's input is also matched against a token tree: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ error: unexpected end of macro invocation | |
12 | assert_eq!(1, 1,); | ||
| ^ | ||
|
||
error: aborting due to previous error | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ error: unexpected end of macro invocation | |
12 | assert_ne!(1, 2,); | ||
| ^ | ||
|
||
error: aborting due to previous error | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// compile-flags: -Z trace-macros | ||
|
||
#![recursion_limit="4"] | ||
|
||
macro_rules! my_faulty_macro { | ||
() => { | ||
my_faulty_macro!(bcd); | ||
}; | ||
} | ||
|
||
macro_rules! pat_macro { | ||
() => { | ||
pat_macro!(A{a:a, b:0, c:_, ..}); | ||
}; | ||
($a:pat) => { | ||
$a | ||
}; | ||
} | ||
|
||
macro_rules! my_recursive_macro { | ||
() => { | ||
my_recursive_macro!(); | ||
}; | ||
} | ||
|
||
macro_rules! my_macro { | ||
() => { | ||
|
||
}; | ||
} | ||
|
||
fn main() { | ||
my_faulty_macro!(); | ||
my_recursive_macro!(); | ||
test!(); | ||
non_exisiting!(); | ||
derive!(Debug); | ||
let a = pat_macro!(); | ||
} | ||
|
||
#[my_macro] | ||
fn use_bang_macro_as_attr(){} | ||
|
||
#[derive(Debug)] | ||
fn use_derive_macro_as_attr(){} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
error: no rules expected the token `bcd` | ||
--> $DIR/trace_faulty_macros.rs:17:26 | ||
| | ||
17 | my_faulty_macro!(bcd); | ||
| ^^^ | ||
... | ||
43 | my_faulty_macro!(); | ||
| ------------------- in this macro invocation | ||
|
||
note: trace_macro | ||
--> $DIR/trace_faulty_macros.rs:43:5 | ||
| | ||
43 | my_faulty_macro!(); | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: expanding `my_faulty_macro! { }` | ||
= note: to `my_faulty_macro ! ( bcd ) ;` | ||
= note: expanding `my_faulty_macro! { bcd }` | ||
|
||
error: recursion limit reached while expanding the macro `my_recursive_macro` | ||
--> $DIR/trace_faulty_macros.rs:32:9 | ||
| | ||
32 | my_recursive_macro!(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
... | ||
44 | my_recursive_macro!(); | ||
| ---------------------- in this macro invocation | ||
| | ||
= help: consider adding a `#![recursion_limit="8"]` attribute to your crate | ||
|
||
note: trace_macro | ||
--> $DIR/trace_faulty_macros.rs:44:5 | ||
| | ||
44 | my_recursive_macro!(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: expanding `my_recursive_macro! { }` | ||
= note: to `my_recursive_macro ! ( ) ;` | ||
= note: expanding `my_recursive_macro! { }` | ||
= note: to `my_recursive_macro ! ( ) ;` | ||
= note: expanding `my_recursive_macro! { }` | ||
= note: to `my_recursive_macro ! ( ) ;` | ||
= note: expanding `my_recursive_macro! { }` | ||
= note: to `my_recursive_macro ! ( ) ;` | ||
= note: expanding `my_recursive_macro! { }` | ||
= note: to `my_recursive_macro ! ( ) ;` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As this prevent reporting an expansion trace twice or more