-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested closures result in exponential compilation time increase #72408
Labels
A-closures
Area: Closures (`|…| { … }`)
C-bug
Category: This is a bug.
I-compiletime
Issue: Problems and improvements with respect to compile times.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
Just for the record, similar issue has been fixed recently #68061 It's similar but without any captures. |
There is already a |
VFLashM
added a commit
to VFLashM/rust
that referenced
this issue
May 22, 2020
This fixes rust-lang#72408. Nested closures were resulting in exponential compilation time.
VFLashM
added a commit
to VFLashM/rust
that referenced
this issue
Sep 15, 2020
This fixes rust-lang#72408. Nested closures were resulting in exponential compilation time. As a performance optimization this change introduces MiniSet, which is a simple small storage optimized set.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Sep 18, 2020
…xponential, r=tmandry Issue 72408 nested closures exponential This fixes rust-lang#72408. Nested closures were resulting in exponential compilation time. This PR is enhancing asymptotic complexity, but also increasing the constant, so I would love to see perf run results.
Mark-Simulacrum
pushed a commit
to Mark-Simulacrum/rust
that referenced
this issue
Oct 3, 2020
This fixes rust-lang#72408. Nested closures were resulting in exponential compilation time. As a performance optimization this change introduces MiniSet, which is a simple small storage optimized set.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-closures
Area: Closures (`|…| { … }`)
C-bug
Category: This is a bug.
I-compiletime
Issue: Problems and improvements with respect to compile times.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Closures include captured types twice in a type tree.
Wrapping one closure with another leads to doubling the amount of types in the type tree.
With nested closures compile time increases exponentially and it's extremely easy to break the compiler. Obviously it's even easier if each level captures more than one closure.
I think I have a fix for this one ready, about to push it.
I tried this code:
I expected to see this happen: no error.
Instead, this happened:
Meta
I tried it both on stable and nightly rust:
The text was updated successfully, but these errors were encountered: