Closed
Description
At the moment the compiler will re-instantiate generic code in every crate that uses it. That sounds like a lot of duplicated work. However, we don't have any actual numbers on how much duplicated work. There are a few things we could do:
- Instrument the compiler to count how many duplicated functions we have
- Prototype sharing of generic code and see how it affects compile times and binary sizes
- Wait for MIR-only RLIBs to solve the problem naturally.
This could potentially be a big win for compile times but we won't know until we've collected some data.
Side node: Sharing monomorphized instances could negatively affect runtime performance when compiling without any form of LTO or when compiling with ThinLTO just for the current crate (as opposed to doing ThinLTO over the whole crate graph).
Metadata
Metadata
Assignees
Labels
Area: Code generationCategory: A feature request, i.e: not implemented / a PR.Issue: Problems and improvements with respect to memory usage during compilation.Issue: Problems and improvements with respect to compile times.Relevant to the compiler team, which will review and decide on the PR/issue.Working group: Compiler Performance