1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
//@ check-pass
//
// During development of #124141 at one point expression on attributes were
// being duplicated and `m1` caused an exponential blowup that caused OOM.
// The number of recursive calls depends on the number of doc comments on the
// expr block. On each recursive call, the `#[allow(deprecated)]` attribute(s) on
// the `0` somehow get duplicated, resulting in 1, 2, 4, 8, ... identical
// attributes.
//
// After the fix, the code compiles quickly and normally.
macro_rules! m1 {
($(#[$meta:meta])* { $e:expr }) => {
m1! { expr: { $e }, unprocessed: [$(#[$meta])*] }
};
(expr: { $e:expr }, unprocessed: [ #[$meta:meta] $($metas:tt)* ]) => {
m1! { expr: { $e }, unprocessed: [ $($metas)* ] }
};
(expr: { $e:expr }, unprocessed: []) => {
{ $e }
}
}
macro_rules! m2 {
($(#[$meta:meta])* { $e:stmt }) => {
m2! { stmt: { $e }, unprocessed: [$(#[$meta])*] }
};
(stmt: { $e:stmt }, unprocessed: [ #[$meta:meta] $($metas:tt)* ]) => {
m2! { stmt: { $e }, unprocessed: [ $($metas)* ] }
};
(stmt: { $e:stmt }, unprocessed: []) => {
{ $e }
}
}
macro_rules! m3 {
($(#[$meta:meta])* { $e:item }) => {
m3! { item: { $e }, unprocessed: [$(#[$meta])*] }
};
(item: { $e:item }, unprocessed: [ #[$meta:meta] $($metas:tt)* ]) => {
m3! { item: { $e }, unprocessed: [ $($metas)* ] }
};
(item: { $e:item }, unprocessed: []) => {
{ $e }
}
}
fn main() {
// Each additional doc comment line doubles the compile time.
m1!(
/// a1
/// a2
/// a3
/// a4
/// a5
/// a6
/// a7
/// a8
/// a9
/// a10
/// a11
/// a12
/// a13
/// a14
/// a15
/// a16
/// a17
/// a18
/// a19
/// a20
{
#[allow(deprecated)] 0
}
);
m2!(
/// a1
/// a2
/// a3
/// a4
/// a5
/// a6
/// a7
/// a8
/// a9
/// a10
/// a11
/// a12
/// a13
/// a14
/// a15
/// a16
/// a17
/// a18
/// a19
/// a20
{
#[allow(deprecated)] let x = 5
}
);
m3!(
/// a1
/// a2
/// a3
/// a4
/// a5
/// a6
/// a7
/// a8
/// a9
/// a10
/// a11
/// a12
/// a13
/// a14
/// a15
/// a16
/// a17
/// a18
/// a19
/// a20
{
#[allow(deprecated)] struct S;
}
);
}
|