-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Up to 7% regression in recent rollup #57115
Labels
I-compilemem
Issue: Problems and improvements with respect to memory usage during compilation.
I-compiletime
Issue: Problems and improvements with respect to compile times.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
alexcrichton
added
the
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
label
Dec 25, 2018
Centril
added
I-slow
Issue: Problems and improvements with respect to performance of generated code.
I-compilemem
Issue: Problems and improvements with respect to memory usage during compilation.
I-compiletime
Issue: Problems and improvements with respect to compile times.
and removed
I-slow
Issue: Problems and improvements with respect to performance of generated code.
labels
Dec 25, 2018
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Jan 2, 2019
In rust-lang#56986 the linkage of jemalloc to the compiler was switched from the driver library to the rustc binary to ensure that only rustc itself uses jemalloc. In doing so, however, it turns out jemalloc wasn't actually linked in at all! None of the symbols were referenced so the static library wasn't used. This means that jemalloc wasn't pulled in at all. This commit performs a bit of a dance to reference jemalloc symbols, attempting to pull it in despite LLVM's optimizations. Closes rust-lang#57115
I believe this should be fixed in #57287 |
bors
added a commit
that referenced
this issue
Jan 2, 2019
rustc: Fix regression where jemalloc isn't used In #56986 the linkage of jemalloc to the compiler was switched from the driver library to the rustc binary to ensure that only rustc itself uses jemalloc. In doing so, however, it turns out jemalloc wasn't actually linked in at all! None of the symbols were referenced so the static library wasn't used. This means that jemalloc wasn't pulled in at all. This commit performs a bit of a dance to reference jemalloc symbols, attempting to pull it in despite LLVM's optimizations. Closes #57115
nagisa
added
the
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
label
Jan 3, 2019
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Jan 3, 2019
In rust-lang#56986 the linkage of jemalloc to the compiler was switched from the driver library to the rustc binary to ensure that only rustc itself uses jemalloc. In doing so, however, it turns out jemalloc wasn't actually linked in at all! None of the symbols were referenced so the static library wasn't used. This means that jemalloc wasn't pulled in at all. This commit performs a bit of a dance to reference jemalloc symbols, attempting to pull it in despite LLVM's optimizations. Closes rust-lang#57115
bors
added a commit
that referenced
this issue
Jan 6, 2019
rustc: Fix regression where jemalloc isn't used In #56986 the linkage of jemalloc to the compiler was switched from the driver library to the rustc binary to ensure that only rustc itself uses jemalloc. In doing so, however, it turns out jemalloc wasn't actually linked in at all! None of the symbols were referenced so the static library wasn't used. This means that jemalloc wasn't pulled in at all. This commit performs a bit of a dance to reference jemalloc symbols, attempting to pull it in despite LLVM's optimizations. Closes #57115
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
I-compilemem
Issue: Problems and improvements with respect to memory usage during compilation.
I-compiletime
Issue: Problems and improvements with respect to compile times.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Noticed here it looks like something in that rollup has caused a blanket regression in compile time instruction counts while also simultaneously improving memory. The current hypothesis is that #56986 is incorrect and disabled jemalloc entirely.
Another hypothesis is that #56944 had a really weird effect on the build.
In any case, we should investigate!
The text was updated successfully, but these errors were encountered: