File tree 3 files changed +83
-2
lines changed
compiler/rustc_const_eval/src
tests/ui/consts/const-eval/stable-metric
3 files changed +83
-2
lines changed Original file line number Diff line number Diff line change @@ -641,7 +641,14 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
641
641
// current number of evaluated terminators is a power of 2. The latter gives us a cheap
642
642
// way to implement exponential backoff.
643
643
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
+ } ) ;
645
652
}
646
653
}
647
654
Original file line number Diff line number Diff line change @@ -243,6 +243,8 @@ pub struct LongRunningWarn {
243
243
pub span : Span ,
244
244
#[ help]
245
245
pub item_span : Span ,
246
+ // Used for evading `-Z deduplicate-diagnostics`.
247
+ pub force_duplicate : usize ,
246
248
}
247
249
248
250
#[ derive( Subdiagnostic ) ]
Original file line number Diff line number Diff line change @@ -16,5 +16,77 @@ help: the constant being evaluated
16
16
LL | const FOO: () = {
17
17
| ^^^^^^^^^^^^^
18
18
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
20
92
You can’t perform that action at this time.
0 commit comments