Skip to content

Commit 669f610

Browse files
Prevent Deduplication of LongRunningWarn
1 parent a35da65 commit 669f610

File tree

3 files changed

+83
-2
lines changed

3 files changed

+83
-2
lines changed

compiler/rustc_const_eval/src/const_eval/machine.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,14 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
641641
// current number of evaluated terminators is a power of 2. The latter gives us a cheap
642642
// way to implement exponential backoff.
643643
let span = ecx.cur_span();
644-
ecx.tcx.dcx().emit_warn(LongRunningWarn { span, item_span: ecx.tcx.span });
644+
// We store a unique number in `force_duplicate` to evade `-Z deduplicate-diagnostics`.
645+
// `new_steps` is guaranteed to be unique because `ecx.machine.num_evaluated_steps` is
646+
// always increasing.
647+
ecx.tcx.dcx().emit_warn(LongRunningWarn {
648+
span,
649+
item_span: ecx.tcx.span,
650+
force_duplicate: new_steps,
651+
});
645652
}
646653
}
647654

compiler/rustc_const_eval/src/errors.rs

+2
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ pub struct LongRunningWarn {
243243
pub span: Span,
244244
#[help]
245245
pub item_span: Span,
246+
// Used for evading `-Z deduplicate-diagnostics`.
247+
pub force_duplicate: usize,
246248
}
247249

248250
#[derive(Subdiagnostic)]

tests/ui/consts/const-eval/stable-metric/evade-deduplication-issue-118612.stderr

+73-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,77 @@ help: the constant being evaluated
1616
LL | const FOO: () = {
1717
| ^^^^^^^^^^^^^
1818

19-
warning: 1 warning emitted
19+
warning: constant evaluation is taking a long time
20+
--> $DIR/evade-deduplication-issue-118612.rs:8:5
21+
|
22+
LL | / loop {
23+
LL | |
24+
LL | |
25+
LL | |
26+
... |
27+
LL | | }
28+
LL | | }
29+
| |_____^ the const evaluator is currently interpreting this expression
30+
|
31+
help: the constant being evaluated
32+
--> $DIR/evade-deduplication-issue-118612.rs:6:1
33+
|
34+
LL | const FOO: () = {
35+
| ^^^^^^^^^^^^^
36+
37+
warning: constant evaluation is taking a long time
38+
--> $DIR/evade-deduplication-issue-118612.rs:8:5
39+
|
40+
LL | / loop {
41+
LL | |
42+
LL | |
43+
LL | |
44+
... |
45+
LL | | }
46+
LL | | }
47+
| |_____^ the const evaluator is currently interpreting this expression
48+
|
49+
help: the constant being evaluated
50+
--> $DIR/evade-deduplication-issue-118612.rs:6:1
51+
|
52+
LL | const FOO: () = {
53+
| ^^^^^^^^^^^^^
54+
55+
warning: constant evaluation is taking a long time
56+
--> $DIR/evade-deduplication-issue-118612.rs:8:5
57+
|
58+
LL | / loop {
59+
LL | |
60+
LL | |
61+
LL | |
62+
... |
63+
LL | | }
64+
LL | | }
65+
| |_____^ the const evaluator is currently interpreting this expression
66+
|
67+
help: the constant being evaluated
68+
--> $DIR/evade-deduplication-issue-118612.rs:6:1
69+
|
70+
LL | const FOO: () = {
71+
| ^^^^^^^^^^^^^
72+
73+
warning: constant evaluation is taking a long time
74+
--> $DIR/evade-deduplication-issue-118612.rs:8:5
75+
|
76+
LL | / loop {
77+
LL | |
78+
LL | |
79+
LL | |
80+
... |
81+
LL | | }
82+
LL | | }
83+
| |_____^ the const evaluator is currently interpreting this expression
84+
|
85+
help: the constant being evaluated
86+
--> $DIR/evade-deduplication-issue-118612.rs:6:1
87+
|
88+
LL | const FOO: () = {
89+
| ^^^^^^^^^^^^^
90+
91+
warning: 5 warnings emitted
2092

0 commit comments

Comments
 (0)