Hacker News new | past | comments | ask | show | jobs | submit login

But you can't turn off codegen in a JIT compiler either, unless you're interpreting code, so that requirement doesn't fundamentally make GCC and LLVM impractical. It sounds like LLVM either doesn't have very many optimizations or their backend needs work.



LLVM's instruction selection/legalization infrastructure is very sophisticated, very generic, table-driven, etc. Most JIT compilers use more ad-hoc and quicker mechanisms to get machine code out of IR.


Yeah okay. Someone else pointed out FastISel.cpp. It's probably true that prettiness competes with performance.


FastISel will quite often kick out to the regular instruction selector because it can't handle particular IR constructs.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: