vote up 3 vote down star
3

I'm interested in knowing what is "best" free/OSS compiler for MIPS code, GCC or LLVM, or is there anything even better than those?

I'm interested in knowing more about fast and memory constrained generated Assembly code than code size.

In other words, does llvm-opt do the job better than gcc -O3?

flag

67% accept rate
This isn't an answer, but afaik LLVM does a better job than GCC on x86. – Calyth Jan 8 at 18:39
1  
Why would you say so? From the benchmarks I see, LLVM 2.4 is tightly close to GCC 4.2 and I've never seen a benchmark against GCC 4.3. And when GCC 4.4 is out with a new optimization framework will LLVM 2.5 be better? or basically almost the same? – Paulo Lopes Jan 15 at 8:11
AFAIK well-done GCC vs LLVM comparisons are quite few in general (as opposed to blanket statements on their mailing lists based on anecdotal evidence). Your best bet is to do comparison yourself, on the code that is relevant for you. – kastauyra Jul 21 at 19:39

2 Answers

vote up 1 vote down

LLVM is generally better than GCC on x86, but I haven't found any benchmarks for MIPS. Because you're asking this question, I assume you have access to a MIPS machine, so why don't you compile the Computer Language Benchmarks Game C code with GCC and LLVM, and see which is faster. I'm guessing GCC will be, since the MIPS backend is relatively new, but the code is much cleaner, and I expect LLVM to eventually win.

link|flag
1  
better on x86 is a big assumtion, see leonardo-m.livejournal.com/77877.html it is not that obvious. About MIPS all I have is a old PS2 and a PSP and I cannot really compare since GCC backends have support for SIMD operations using it's internal VFPUs and the LLVM has no support for them yet. – Paulo Lopes Apr 10 at 10:17
Well then, GCC is probably faster on MIPS right now. – Zifre Apr 10 at 13:52
1  
The above link compares GCC -O3 to JITed LLVM. This is hardly a fair comparison, either. LLVM can compile statically. – nominolo May 4 at 14:02
vote up 0 vote down

I dont know about mips, I tried ARM and llvm code was around 10-20% slower than the current gcc. The tests in question were zlib based. a decompression by itself and a compression then decompression. used both clang and llvm-gcc. I preferred clang because the -m32 actually works on a 64 bit host. For the test in question I found that NOT using -O2 (or -O3) produced the fastest code. linked the bytecode modules into one big module and performed one opt with standard optimisations, to get the fastest code. llc was by default -O2 and that did help performance.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.