[llvm] [DTLTO][LLVM] Integrated Distributed ThinLTO (DTLTO) (PR #127749)

Katya Romanova via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 16 01:34:49 PDT 2025


romanova-ekaterina wrote:

As mentioned elsewhere on this thread, we have an alternative "no backend" design and implementation. 

Please find it here: https://github.com/romanova-ekaterina/llvm-project/pull/new/kromanova/main/integrated-DTLTO-no-backend
 
Here's a summary:
1. Out of process (DTLTO) backend is not used in this implementation.
2. Both regular and thin archive members are supported in a way that's minimally invasive to LTO. This is in contrast to the approach whereby a new backend is introduced, since archive support for DTLTO cannot be implemented within a backend. Support for (non-thin) archives would require changes to the linker or LTO.cpp.
3. Only COFF and ELF formats are supported in the initial commit. Support for all other formats is implemented, but it will be submitted later.
4. Footprint on lld and llvm/lto is very small.
5. Plugins (shared libraries) are used in this implementation rather than external processes/python scripts.
6. Plugins allow direct calls and two-way communication between LLVM and DBS, while external processes require parameter serialization and thus allow only one-way communication with DBS. Plugins allow to pass memory buffers to DBS client and get output back from DBS in memory (which saves 2 writes and 2 reads from the file). Note: We have a prototype implemented for distcc distribution system that allows direct memory to memory interface, which we can share on request. Direct memory to memory interface could not be implemented in one-way external process interface.
7. Throughput is one of the two main factors that contribute to distribution build system efficiency. Load balancing is the other factor. Plugin interface could be extended to integrate more closely with the DBS, allowing do more advanced things like getting information about internal state of DBS, allowing to do things like load balancing.
 
If there are aspects that people prefer about this approach, we can consider bringing them in to this PR. Or if the "no backend" design is a preferred starting point, we can turn it into a Pull Request and take across parts of this one.


https://github.com/llvm/llvm-project/pull/127749


More information about the llvm-commits mailing list