-
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
rustc: Unbounded memory growth when missing use
#34324
Comments
cc me |
FWIW, I have also tried building with MIR enabled (
|
@Jake-Shadle The bug happens in resolve, long before MIR is constructed |
use
use
use
This is still an issue on the latest nightly build.
|
@Jake-Shadle sorry for the delay! |
Oh awesome, I guess this just fell through the cracks! 😄 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that there is a problem related to missing use statements that occurs once a dependent library becomes large enough, or possibly it has enough transitive dependencies, but this is just conjecture as I was not able to find a repro for this issue on a smaller scale.
I have created a single repo that includes all of the code required to repro this issue, but basically the short of the problem is encapsulated in a very small amount of code.
I expected this to happen:
Instead, this happened:
rustc consumes ever increasing amounts of memory while maxing out a CPU core, until it is eventually killed by the OS.
Meta
rustc --version --verbose
:More notes:
use
can be eitherlib
orbin
Sha1
type in bothdbobject
as well asrust-crypto
, but using a type that only exists indbobject
such asNull
still exhibits the same problem.Backtrace (captured at a random time as the compiler was running):
The text was updated successfully, but these errors were encountered: