|
|
|
|
|
by tach4n
4137 days ago
|
|
Multi-stage JITs are indeed fascinating and give some nice wins, but as a "user" (that is, a developer) I find them frustrating at times because they make it more difficult to reason about the performance and behaviour of my code. Not only a priori, but in terms of testing actual code and designing benchmarks as well - you have to make sure the right sections of code are hot, hitting the right levels, etc. It's extra mental load and work. (and if you're a JS developer, you may have to do this across multiple platforms). And oh, regressions and updates. I'm not entirely convinced it's all worth it, but so far I'm begrudgingly accepting it. |
|
Even the same compiler can behave differently just by changing the target CPU.