-
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
incr. comp.: Increase partition granularity via special-casing non-inlined functions #35902
Comments
Even if a function is marked with |
Not necessarily. It could still inline as many functions as it wants (via copying those functions into the codegen unit of its "main" functions). That just leads to another kind of false positives when it comes to recompilation. |
Has anything happened here? I don't think so, but perhaps an update would be good. |
Well, generic functions are not treated as inline functions by default anymore. Otherwise the status is the same. ThinLTO might open up some interesting opportunities here, since it potentially decouples runtime performance from CGU granularity. |
Triage: incremental compilation has come a long way, but I'm still not sure what the state is today. |
Because codegen unit currently implies object file, this would make object file spam even worse of an issue, making #53014 occur far more often. |
If we put every function into its own codegen unit, we would minimize the amount of functions being re-translated even though they have not changed. The main reason we don't do this, is because it would completely prevent inlining, which in turn has too detrimental an effect on runtime performance.
However, for many functions we could probably predict very well that they would never get inlined by LLVM anyway, because they are marked with
#[inline(never)]
or they are just too big. This category of functions could be put into their own codegen unit without negative effects on runtime performance.The text was updated successfully, but these errors were encountered: