You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #31390 - dotdash:fix_quadratic_drop, r=nagisa
If a new cleanup is added to a cleanup scope, the cached exits for that
scope are cleared, so all previous cleanups have to be translated
again. In the worst case this means that we get N distinct landing pads
where the last one has N cleanups, then N-1 and so on.
As new cleanups are to be executed before older ones, we can instead
cache the number of already translated cleanups in addition to the
block that contains them, and then only translate new ones, if any and
then jump to the cached ones, getting away with linear growth instead.
For the crate in #31381 this reduces the compile time for an optimized
build from >20 minutes (I cancelled the build at that point) to about 11
seconds. Testing a few crates that come with rustc show compile time
improvements somewhere between 1 and 8%. The "big" winner being
rustc_platform_intrinsics which features code similar to that in #31381.
Fixes#31381
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
// compile-flags: -C no-prepopulate-passes
12
+
13
+
#![crate_type = "lib"]
14
+
15
+
structSomeUniqueName;
16
+
17
+
implDropforSomeUniqueName{
18
+
fndrop(&mutself){
19
+
}
20
+
}
21
+
22
+
pubfnpossibly_unwinding(){
23
+
}
24
+
25
+
// CHECK-LABEL: @droppy
26
+
#[no_mangle]
27
+
pubfndroppy(){
28
+
// Check that there are exactly 6 drop calls. The cleanups for the unwinding should be reused, so
29
+
// that's one new drop call per call to possibly_unwinding(), and finally 3 drop calls for the
30
+
// regular function exit. We used to have problems with quadratic growths of drop calls in such
31
+
// functions.
32
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
33
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
34
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
35
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
36
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
37
+
// CHECK: call{{.*}}SomeUniqueName{{.*}}drop
38
+
// CHECK-NOT: call{{.*}}SomeUniqueName{{.*}}drop
39
+
// The next line checks for the } that ends the function definition
0 commit comments