Skip to content

Commit 70fc288

Browse files
committed
Do not suggest using -Zmacro-backtrace for builtin macros
For macros that are implemented on the compiler, or that are annotated with `rustc_diagnostic_item`, which have arbitrary implementations from the point of view of the user and might as well be intrinsics, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros like `panic!` and `format!`.
1 parent 385970f commit 70fc288

File tree

276 files changed

+41
-679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+41
-679
lines changed

compiler/rustc_errors/src/emitter.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ pub trait Emitter: Translate {
297297
// are some which do actually involve macros.
298298
ExpnKind::Desugaring(..) | ExpnKind::AstPass(..) => None,
299299

300-
ExpnKind::Macro(macro_kind, name) => Some((macro_kind, name)),
300+
ExpnKind::Macro(macro_kind, name) => {
301+
Some((macro_kind, name, expn_data.builtin_macro))
302+
}
301303
}
302304
})
303305
.collect();
@@ -309,13 +311,18 @@ pub trait Emitter: Translate {
309311
self.render_multispans_macro_backtrace(span, children, backtrace);
310312

311313
if !backtrace {
312-
if let Some((macro_kind, name)) = has_macro_spans.first() {
314+
// Skip builtin macros, as their expansion isn't relevant to the end user. This includes
315+
// actual intrinsics, like `asm!`, as well as macros by example, like `println!`, which
316+
// might as well be an intrinsic as far as the user is concerned.
317+
if let Some((macro_kind, name, _)) = has_macro_spans.first()
318+
&& let Some((_, _, false)) = has_macro_spans.last()
319+
{
313320
// Mark the actual macro this originates from
314-
let and_then = if let Some((macro_kind, last_name)) = has_macro_spans.last()
321+
let and_then = if let Some((macro_kind, last_name, _)) = has_macro_spans.last()
315322
&& last_name != name
316323
{
317324
let descr = macro_kind.descr();
318-
format!(" which comes from the expansion of the {descr} `{last_name}`",)
325+
format!(" which comes from the expansion of the {descr} `{last_name}`")
319326
} else {
320327
"".to_string()
321328
};

compiler/rustc_expand/src/base.rs

+17-4
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,11 @@ pub struct SyntaxExtension {
757757
/// Built-in macros have a couple of special properties like availability
758758
/// in `#[no_implicit_prelude]` modules, so we have to keep this flag.
759759
pub builtin_name: Option<Symbol>,
760+
/// Whether this macro is either a compiler intrinsic (implied by the above field) or a macro
761+
/// provided by the standard library where the specific of its implementation are not relevant
762+
/// to the end user, like for `format!` or `println!`, which are normal macros by example, but
763+
/// that is an implementation detail.
764+
pub builtin: bool,
760765
/// Suppresses the `unsafe_code` lint for code produced by this macro.
761766
pub allow_internal_unsafe: bool,
762767
/// Enables the macro helper hack (`ident!(...)` -> `$crate::ident!(...)`) for this macro.
@@ -792,6 +797,7 @@ impl SyntaxExtension {
792797
helper_attrs: Vec::new(),
793798
edition,
794799
builtin_name: None,
800+
builtin: false,
795801
kind,
796802
allow_internal_unsafe: false,
797803
local_inner_macros: false,
@@ -888,17 +894,19 @@ impl SyntaxExtension {
888894
)
889895
})
890896
.unwrap_or_else(|| (None, helper_attrs));
897+
let builtin = builtin_name.is_some()
898+
|| ast::attr::find_by_name(attrs, sym::rustc_diagnostic_item).is_some();
891899

892-
let stability = find_attr!(attrs, AttributeKind::Stability{stability, ..} => *stability);
900+
let stability = find_attr!(attrs, AttributeKind::Stability { stability, .. } => *stability);
893901

894902
// FIXME(jdonszelmann): make it impossible to miss the or_else in the typesystem
895-
if let Some(sp) = find_attr!(attrs, AttributeKind::ConstStability{span, ..} => *span) {
903+
if let Some(sp) = find_attr!(attrs, AttributeKind::ConstStability { span, .. } => *span) {
896904
sess.dcx().emit_err(errors::MacroConstStability {
897905
span: sp,
898906
head_span: sess.source_map().guess_head_span(span),
899907
});
900908
}
901-
if let Some(sp) = find_attr!(attrs, AttributeKind::BodyStability{span, ..} => *span) {
909+
if let Some(sp) = find_attr!(attrs, AttributeKind::BodyStability{ span, .. } => *span) {
902910
sess.dcx().emit_err(errors::MacroBodyStability {
903911
span: sp,
904912
head_span: sess.source_map().guess_head_span(span),
@@ -912,10 +920,14 @@ impl SyntaxExtension {
912920
// FIXME(jdonszelmann): avoid the into_iter/collect?
913921
.then(|| allow_internal_unstable.iter().map(|i| i.0).collect::<Vec<_>>().into()),
914922
stability,
915-
deprecation: find_attr!(attrs, AttributeKind::Deprecation{deprecation, ..} => *deprecation),
923+
deprecation: find_attr!(
924+
attrs,
925+
AttributeKind::Deprecation { deprecation, .. } => *deprecation
926+
),
916927
helper_attrs,
917928
edition,
918929
builtin_name,
930+
builtin,
919931
allow_internal_unsafe,
920932
local_inner_macros,
921933
collapse_debuginfo,
@@ -1000,6 +1012,7 @@ impl SyntaxExtension {
10001012
self.allow_internal_unsafe,
10011013
self.local_inner_macros,
10021014
self.collapse_debuginfo,
1015+
self.builtin,
10031016
)
10041017
}
10051018
}

compiler/rustc_span/src/hygiene.rs

+8
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,11 @@ pub struct ExpnData {
982982
/// Should debuginfo for the macro be collapsed to the outermost expansion site (in other
983983
/// words, was the macro definition annotated with `#[collapse_debuginfo]`)?
984984
pub(crate) collapse_debuginfo: bool,
985+
/// Whether this macro expansion came from a compiler implemented macro (`rustc_builtin_macro`)
986+
/// or a macro by example provided by the standard library (marked with
987+
/// `rustc_diagnostic_item`). If this is true, then we do not display the standard note telling
988+
/// people to use the `-Zmacro-backtrace` flag.
989+
pub builtin_macro: bool,
985990
}
986991

987992
impl !PartialEq for ExpnData {}
@@ -1000,6 +1005,7 @@ impl ExpnData {
10001005
allow_internal_unsafe: bool,
10011006
local_inner_macros: bool,
10021007
collapse_debuginfo: bool,
1008+
builtin_macro: bool,
10031009
) -> ExpnData {
10041010
ExpnData {
10051011
kind,
@@ -1014,6 +1020,7 @@ impl ExpnData {
10141020
allow_internal_unsafe,
10151021
local_inner_macros,
10161022
collapse_debuginfo,
1023+
builtin_macro,
10171024
}
10181025
}
10191026

@@ -1038,6 +1045,7 @@ impl ExpnData {
10381045
allow_internal_unsafe: false,
10391046
local_inner_macros: false,
10401047
collapse_debuginfo: false,
1048+
builtin_macro: false,
10411049
}
10421050
}
10431051

compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1503,6 +1503,7 @@ symbols! {
15031503
panic_implementation,
15041504
panic_in_cleanup,
15051505
panic_info,
1506+
panic_internals,
15061507
panic_location,
15071508
panic_misaligned_pointer_dereference,
15081509
panic_nounwind,

tests/run-make/non-unicode-env/non_unicode_env.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@ error: environment variable `NON_UNICODE_VAR` is not a valid Unicode string
33
|
44
2 | let _ = env!("NON_UNICODE_VAR");
55
| ^^^^^^^^^^^^^^^^^^^^^^^
6-
|
7-
= note: this error originates in the macro `env` (in Nightly builds, run with -Z macro-backtrace for more info)
86

97
error: environment variable `NON_UNICODE_VAR` is not a valid Unicode string
108
--> non_unicode_env.rs:3:13
119
|
1210
3 | let _ = option_env!("NON_UNICODE_VAR");
1311
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14-
|
15-
= note: this error originates in the macro `option_env` (in Nightly builds, run with -Z macro-backtrace for more info)
1612

1713
error: aborting due to 2 previous errors
1814

tests/rustdoc-ui/doctest/relative-path-include-bytes-132203.edition2015.stdout

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ error: couldn't read `$DIR/relative-dir-empty-file`: $FILE_NOT_FOUND_MSG (os err
1010
|
1111
LL | let x = include_bytes!("relative-dir-empty-file");
1212
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13-
|
14-
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
1513

1614
error: aborting due to 1 previous error
1715

tests/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ LL | fn oom(
1818
| ^^^
1919
LL | info: &Layout,
2020
| -------------
21-
= note: this error originates in the attribute macro `alloc_error_handler` (in Nightly builds, run with -Z macro-backtrace for more info)
2221

2322
error[E0308]: mismatched types
2423
--> $DIR/alloc-error-handler-bad-signature-1.rs:10:1
@@ -35,7 +34,6 @@ LL | | }
3534
|
3635
= note: expected type `!`
3736
found unit type `()`
38-
= note: this error originates in the attribute macro `alloc_error_handler` (in Nightly builds, run with -Z macro-backtrace for more info)
3937

4038
error: aborting due to 2 previous errors
4139

tests/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr

-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ LL | fn oom(
2626
| ^^^
2727
LL | info: Layout,
2828
| ------------
29-
= note: this error originates in the attribute macro `alloc_error_handler` (in Nightly builds, run with -Z macro-backtrace for more info)
3029

3130
error[E0308]: mismatched types
3231
--> $DIR/alloc-error-handler-bad-signature-2.rs:10:1
@@ -43,7 +42,6 @@ LL | | }
4342
|
4443
= note: expected type `!`
4544
found unit type `()`
46-
= note: this error originates in the attribute macro `alloc_error_handler` (in Nightly builds, run with -Z macro-backtrace for more info)
4745

4846
error: aborting due to 2 previous errors
4947

tests/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ note: function defined here
1414
|
1515
LL | fn oom() -> ! {
1616
| ^^^
17-
= note: this error originates in the attribute macro `alloc_error_handler` (in Nightly builds, run with -Z macro-backtrace for more info)
1817

1918
error: aborting due to 1 previous error
2019

tests/ui/allocator/not-an-allocator.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ LL | static A: usize = 0;
77
| ^^^^^ the trait `GlobalAlloc` is not implemented for `usize`
88
|
99
= help: the trait `GlobalAlloc` is implemented for `System`
10-
= note: this error originates in the attribute macro `global_allocator` (in Nightly builds, run with -Z macro-backtrace for more info)
1110

1211
error[E0277]: the trait bound `usize: GlobalAlloc` is not satisfied
1312
--> $DIR/not-an-allocator.rs:2:11
@@ -19,7 +18,6 @@ LL | static A: usize = 0;
1918
|
2019
= help: the trait `GlobalAlloc` is implemented for `System`
2120
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
22-
= note: this error originates in the attribute macro `global_allocator` (in Nightly builds, run with -Z macro-backtrace for more info)
2321

2422
error[E0277]: the trait bound `usize: GlobalAlloc` is not satisfied
2523
--> $DIR/not-an-allocator.rs:2:11
@@ -31,7 +29,6 @@ LL | static A: usize = 0;
3129
|
3230
= help: the trait `GlobalAlloc` is implemented for `System`
3331
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
34-
= note: this error originates in the attribute macro `global_allocator` (in Nightly builds, run with -Z macro-backtrace for more info)
3532

3633
error[E0277]: the trait bound `usize: GlobalAlloc` is not satisfied
3734
--> $DIR/not-an-allocator.rs:2:11
@@ -43,7 +40,6 @@ LL | static A: usize = 0;
4340
|
4441
= help: the trait `GlobalAlloc` is implemented for `System`
4542
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
46-
= note: this error originates in the attribute macro `global_allocator` (in Nightly builds, run with -Z macro-backtrace for more info)
4743

4844
error: aborting due to 4 previous errors
4945

tests/ui/allocator/two-allocators.stderr

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ LL | #[global_allocator]
77
| ------------------- in this procedural macro expansion
88
LL | static B: System = System;
99
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot define a new global allocator
10-
|
11-
= note: this error originates in the attribute macro `global_allocator` (in Nightly builds, run with -Z macro-backtrace for more info)
1210

1311
error: aborting due to 1 previous error
1412

tests/ui/asm/ice-bad-err-span-in-template-129503.stderr

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ LL | asm!(concat!(r#"lJ𐏿Æ�.𐏿�"#, "r} {}"));
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unmatched `}` in asm template string
66
|
77
= note: if you intended to print `}`, you can escape it using `}}`
8-
= note: this error originates in the macro `concat` (in Nightly builds, run with -Z macro-backtrace for more info)
98

109
error: invalid asm template string: unmatched `}` found
1110
--> $DIR/ice-bad-err-span-in-template-129503.rs:18:10
@@ -14,7 +13,6 @@ LL | asm!(concat!("abc", "r} {}"));
1413
| ^^^^^^^^^^^^^^^^^^^^^^^ unmatched `}` in asm template string
1514
|
1615
= note: if you intended to print `}`, you can escape it using `}}`
17-
= note: this error originates in the macro `concat` (in Nightly builds, run with -Z macro-backtrace for more info)
1816

1917
error: invalid asm template string: unmatched `}` found
2018
--> $DIR/ice-bad-err-span-in-template-129503.rs:24:19

tests/ui/asm/parse-error.stderr

-8
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,12 @@ error: asm template must be a string literal
193193
|
194194
LL | asm!(format!("{{{}}}", 0), in(reg) foo);
195195
| ^^^^^^^^^^^^^^^^^^^^
196-
|
197-
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
198196

199197
error: asm template must be a string literal
200198
--> $DIR/parse-error.rs:86:21
201199
|
202200
LL | asm!("{1}", format!("{{{}}}", 0), in(reg) foo, out(reg) bar);
203201
| ^^^^^^^^^^^^^^^^^^^^
204-
|
205-
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
206202

207203
error: _ cannot be used for input operands
208204
--> $DIR/parse-error.rs:88:28
@@ -369,16 +365,12 @@ error: asm template must be a string literal
369365
|
370366
LL | global_asm!(format!("{{{}}}", 0), const FOO);
371367
| ^^^^^^^^^^^^^^^^^^^^
372-
|
373-
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
374368

375369
error: asm template must be a string literal
376370
--> $DIR/parse-error.rs:145:20
377371
|
378372
LL | global_asm!("{1}", format!("{{{}}}", 0), const FOO, const BAR);
379373
| ^^^^^^^^^^^^^^^^^^^^
380-
|
381-
= note: this error originates in the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
382374

383375
error: the `in` operand cannot be used with `global_asm!`
384376
--> $DIR/parse-error.rs:148:19

tests/ui/asm/x86_64/goto.stderr

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ note: the lint level is defined here
1717
|
1818
LL | #[warn(unreachable_code)]
1919
| ^^^^^^^^^^^^^^^^
20-
= note: this warning originates in the macro `unreachable` (in Nightly builds, run with -Z macro-backtrace for more info)
2120

2221
warning: 1 warning emitted
2322

tests/ui/asm/x86_64/type-check-2.stderr

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ LL | asm!("{}", in(reg) vec![0]);
2121
| ^^^^^^^
2222
|
2323
= note: only integers, floats, SIMD vectors, pointers and function pointers can be used as arguments for inline assembly
24-
= note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
2524

2625
error: cannot use value of type `(i32, i32, i32)` for inline assembly
2726
--> $DIR/type-check-2.rs:48:28

tests/ui/associated-consts/defaults-not-assumed-fail.stderr

-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ note: erroneous constant encountered
2323
|
2424
LL | assert_eq!(<() as Tr>::B, 0); // causes the error above
2525
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26-
|
27-
= note: this note originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
2826

2927
note: erroneous constant encountered
3028
--> $DIR/defaults-not-assumed-fail.rs:33:5
@@ -33,7 +31,6 @@ LL | assert_eq!(<() as Tr>::B, 0); // causes the error above
3331
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3432
|
3533
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
36-
= note: this note originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
3734

3835
error: aborting due to 1 previous error
3936

0 commit comments

Comments
 (0)