Skip to content

Commit 637b3f6

Browse files
committed
Auto merge of rust-lang#96576 - oli-obk:post_monomorphization_error_backtrace, r=lqd
Also report the call site of PME errors locally. Note this does not produce a full stack all the way to the first call that specifies all monomorphic parameters, it's just shallowly mentioning the last call site. previous work: rust-lang#85633 tracking issue: rust-lang#85155 r? `@lqd` I figured we could get some improvement for traces in local crates without going into the backtrace hell you landed in last time
2 parents f75d884 + 91f422d commit 637b3f6

File tree

7 files changed

+98
-6
lines changed

7 files changed

+98
-6
lines changed

compiler/rustc_monomorphize/src/collector.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};
182182
use rustc_data_structures::sync::{par_iter, MTLock, MTRef, ParallelIterator};
183183
use rustc_hir as hir;
184184
use rustc_hir::def::DefKind;
185-
use rustc_hir::def_id::{DefId, DefIdMap, LocalDefId, LOCAL_CRATE};
185+
use rustc_hir::def_id::{DefId, DefIdMap, LocalDefId};
186186
use rustc_hir::lang_items::LangItem;
187187
use rustc_index::bit_set::GrowableBitSet;
188188
use rustc_middle::mir::interpret::{AllocId, ConstValue};
@@ -393,6 +393,7 @@ fn collect_items_rec<'tcx>(
393393
// error count. If it has changed, a PME occurred, and we trigger some diagnostics about the
394394
// current step of mono items collection.
395395
//
396+
// FIXME: don't rely on global state, instead bubble up errors. Note: this is very hard to do.
396397
let error_count = tcx.sess.diagnostic().err_count();
397398

398399
match starting_point.node {
@@ -473,12 +474,9 @@ fn collect_items_rec<'tcx>(
473474
}
474475

475476
// Check for PMEs and emit a diagnostic if one happened. To try to show relevant edges of the
476-
// mono item graph where the PME diagnostics are currently the most problematic (e.g. ones
477-
// involving a dependency, and the lack of context is confusing) in this MVP, we focus on
478-
// diagnostics on edges crossing a crate boundary: the collected mono items which are not
479-
// defined in the local crate.
477+
// mono item graph.
480478
if tcx.sess.diagnostic().err_count() > error_count
481-
&& starting_point.node.krate() != LOCAL_CRATE
479+
&& starting_point.node.is_generic_fn()
482480
&& starting_point.node.is_user_defined()
483481
{
484482
let formatted_item = with_no_trimmed_paths!(starting_point.node.to_string());

src/test/ui/consts/const-eval/issue-50814-2.stderr

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ error[E0080]: evaluation of `foo::<()>` failed
1616
LL | &<A<T> as Foo<T>>::BAR
1717
| ^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
1818

19+
note: the above error was encountered while instantiating `fn foo::<()>`
20+
--> $DIR/issue-50814-2.rs:31:22
21+
|
22+
LL | println!("{:x}", foo::<()>() as *const usize as usize);
23+
| ^^^^^^^^^^^
24+
1925
error: aborting due to 2 previous errors
2026

2127
For more information about this error, try `rustc --explain E0080`.

src/test/ui/consts/const-eval/issue-50814.stderr

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ error[E0080]: evaluation of `foo::<i32>` failed
1616
LL | &Sum::<U8,U8>::MAX
1717
| ^^^^^^^^^^^^^^^^^ referenced constant has errors
1818

19+
note: the above error was encountered while instantiating `fn foo::<i32>`
20+
--> $DIR/issue-50814.rs:26:5
21+
|
22+
LL | foo(0);
23+
| ^^^^^^
24+
1925
error: aborting due to 2 previous errors
2026

2127
For more information about this error, try `rustc --explain E0080`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// build-fail
2+
3+
fn assert_zst<T>() {
4+
struct F<T>(T);
5+
impl<T> F<T> {
6+
const V: () = assert!(std::mem::size_of::<T>() == 0);
7+
//~^ ERROR: evaluation of `assert_zst::F::<u32>::V` failed [E0080]
8+
//~| NOTE: in this expansion of assert!
9+
//~| NOTE: the evaluated program panicked
10+
//~| ERROR: evaluation of `assert_zst::F::<i32>::V` failed [E0080]
11+
//~| NOTE: in this expansion of assert!
12+
//~| NOTE: the evaluated program panicked
13+
}
14+
let _ = F::<T>::V;
15+
}
16+
17+
fn foo<U>() {
18+
assert_zst::<U>()
19+
//~^ NOTE: the above error was encountered while instantiating `fn assert_zst::<u32>`
20+
//~| NOTE: the above error was encountered while instantiating `fn assert_zst::<i32>`
21+
}
22+
23+
24+
fn bar<V>() {
25+
foo::<V>()
26+
}
27+
28+
fn main() {
29+
bar::<()>();
30+
bar::<u32>();
31+
bar::<u32>();
32+
bar::<i32>();
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
error[E0080]: evaluation of `assert_zst::F::<u32>::V` failed
2+
--> $DIR/post_monomorphization_error_backtrace.rs:6:23
3+
|
4+
LL | const V: () = assert!(std::mem::size_of::<T>() == 0);
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'assertion failed: std::mem::size_of::<T>() == 0', $DIR/post_monomorphization_error_backtrace.rs:6:23
6+
|
7+
= note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)
8+
9+
note: the above error was encountered while instantiating `fn assert_zst::<u32>`
10+
--> $DIR/post_monomorphization_error_backtrace.rs:18:5
11+
|
12+
LL | assert_zst::<U>()
13+
| ^^^^^^^^^^^^^^^^^
14+
15+
error[E0080]: evaluation of `assert_zst::F::<i32>::V` failed
16+
--> $DIR/post_monomorphization_error_backtrace.rs:6:23
17+
|
18+
LL | const V: () = assert!(std::mem::size_of::<T>() == 0);
19+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'assertion failed: std::mem::size_of::<T>() == 0', $DIR/post_monomorphization_error_backtrace.rs:6:23
20+
|
21+
= note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)
22+
23+
note: the above error was encountered while instantiating `fn assert_zst::<i32>`
24+
--> $DIR/post_monomorphization_error_backtrace.rs:18:5
25+
|
26+
LL | assert_zst::<U>()
27+
| ^^^^^^^^^^^^^^^^^
28+
29+
error: aborting due to 2 previous errors
30+
31+
For more information about this error, try `rustc --explain E0080`.

src/test/ui/polymorphization/generators.stderr

+12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ LL | | 2
1919
LL | | }
2020
| |_____^
2121

22+
note: the above error was encountered while instantiating `fn finish::<[generator@$DIR/generators.rs:35:5: 39:6], u32, u32>`
23+
--> $DIR/generators.rs:86:5
24+
|
25+
LL | finish(unused_type::<u32>());
26+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27+
2228
error: item has unused generic parameters
2329
--> $DIR/generators.rs:60:5
2430
|
@@ -31,5 +37,11 @@ LL | | 2
3137
LL | | }
3238
| |_____^
3339

40+
note: the above error was encountered while instantiating `fn finish::<[generator@$DIR/generators.rs:60:5: 64:6], u32, u32>`
41+
--> $DIR/generators.rs:89:5
42+
|
43+
LL | finish(unused_const::<1u32>());
44+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
45+
3446
error: aborting due to 2 previous errors; 1 warning emitted
3547

src/test/ui/polymorphization/predicates.stderr

+6
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,11 @@ error: item has unused generic parameters
4141
LL | fn bar<I>() {
4242
| ^^^ - generic parameter `I` is unused
4343

44+
note: the above error was encountered while instantiating `fn foo::<std::slice::Iter<u32>, T>`
45+
--> $DIR/predicates.rs:85:5
46+
|
47+
LL | foo(x.iter());
48+
| ^^^^^^^^^^^^^
49+
4450
error: aborting due to 6 previous errors
4551

0 commit comments

Comments
 (0)