4 ms·
Isn't most of Rust's compilation overhead from the llvm backend?
by lsuresh 2mo ago
Isn't most of Rust's compilation overhead from the llvm backend?
- afdbcreid 2mo agoThat is common wisdom but reality is more complicated. It's true in some projects, but not all.
- simonask 2mo agoEvery analysis of the problem I've seen has concluded that the main problem is that rustc generates a lot of input to LLVM. Efforts to reduce compilation times are currently focused on doing more to the IR before converting it to LLVM IR. Rust as a language is even more reliant on monomorphization and inlining than C++, due to core language traits such as Deref, AsRef, From/Into, and so on. That said, in practice my personal experience has been that Rust compares pretty favorably on compilation speed, even to some high-level languages like C#. On many developer machines, the actual slow part is linking.
- afdbcreid 2mo agoSee https://kobzol.github.io/rust/rustc/2024/03/15/rustc-what-takes-so-long.html https://kobzol.github.io/rust/rustc/2024/03/15/rustc-what-ta..., which does an extensive analysis on that.
- steveklabnik 2mo agoThis analysis is great, and I don't mean to knock it, but one of the things that it doesn't capture is, what choices does the frontend make that impact the amount of work that the backend does. That is, some of the work attributed to the backend could be improved without touching the backend.
- afdbcreid 2mo agoThat is of course true, but if anything that just proves more what I said. Also that too is part of the "common wisdom" (that as I said, is not always true).
- steveklabnik 2mo agoI wasn’t trying to disagree at all :)