Dear LLVM Team, As a developer I'm very excited and interested in the LLVM project. Though my knowledge of the details is cursory my general understanding is that the SSA code that LLVM front ends produce is supposed to allow for optimizations that are unfeasible in GCC. I also expect most important optimizations from GCC would have been incorporated into LLVM by now since GCC code is open for everyone to see. Therefore I'm surprised to see that in most benchmarks LLVM produces binaries are 10-15% slower than their GCC counterparts. Would you mind explaining the main reasons for why this is the case? Also, what remains to be done for LLVM to surpass GCC in terms of binary performance? Thanks, Yuli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110311/6bb3a72b/attachment.html>
Hi Yuli,> As a developer I'm very excited and interested in the LLVM project. Though my > knowledge of the details is cursory my general understanding is that the SSA > code that LLVM front ends produce is supposed to allow for optimizations that > are unfeasible in GCC.not so, GCC also uses SSA form. I'm not aware of any optimization that LLVM can do that GCC couldn't do if it tried. I also expect most important optimizations from GCC would> have been incorporated into LLVM by now since GCC code is open for everyone to > see.This is not the case. You make it sound like reimplementing optimizations is a five minute job while that is very far from true! Not to mention that GCC is a moving target: it is being worked on too and getting nice improvements all the time. For example it has auto-vectorization support while LLVM does not. Also, don't forget that LLVM is not simply GCC written in C++: it makes a lot of different design choices to GCC, and has a bunch of use cases that GCC does not, for example, the ability to JIT code. The LLVM developers may feel that the way GCC solved some problem is not the best way for LLVM to solve it, and even if they think GCC's approach to some problem is great it nonetheless might be hard to do things the same in LLVM due to the different design. Therefore I'm surprised to see that in most benchmarks LLVM produces> binaries are 10-15% slower than their GCC counterparts.While in my experience this used to be pretty systematically true on x86 linux, nowadays it is much more hit and miss: I see some programs running faster when compiled with LLVM, and others running faster when compiled with GCC. On the whole I would say that on my machine GCC usually results in faster programs. Would you mind> explaining the main reasons for why this is the case?On the whole GCC produces excellent code. Many fine engineers have worked hard on it for many years, and it shows. Doing better than GCC is difficult. Also, what remains to be> done for LLVM to surpass GCC in terms of binary performance?There's no magic bullet. The things to improve that would give you the most bang for your buck are probably the code generator and auto-vectorization. Increasing the number of developers would be helpful. Ciao, Duncan.
On 11 March 2011 14:53, Duncan Sands <baldrick at free.fr> wrote:> There's no magic bullet. The things to improve that would give you the most > bang for your buck are probably the code generator and auto-vectorization. > Increasing the number of developers would be helpful.I'm not a GCC expert, but their auto-vectorization is not that great. It may be simple to do basic loop transformations and some stupid vectorization, but having a really good vectoriser is a lot of work. I personally think that the biggest difference is the number of people that have contributed over the years on very specific optimizations. There are as many corner cases as there are particles in the universe (maybe more), and implementing each one of them requires time and people willing. LLVM has the latter, but lacks the former, for now. Spending a full year on a vectoriser prototype might bring less value than the same year optimizing micro-benchmarks against GCC... Not that I don't think we should have a vectoriser, Poly is going to be great! But until it's not (and it's going to take some time), we better focus on some magic, as GCC did over the decades. My tuppence, --renato
Maybe Matching Threads
- [LLVMdev] LLVM vs GCC binary performance
- [LLVMdev] LLVM vs GCC binary performance
- [LLVMdev] LLVM vs GCC binary performance
- [LLVMdev] Proposal: Generic auto-vectorization and parallelization approach for LLVM and Polly
- Questions on LLVM vectorization diagnostics