Why is llvm considered unsuitable for implementing a JIT?

前端 未结 6 437
我寻月下人不归
我寻月下人不归 2020-12-22 22:38

Many dynamic languages implement (or want to implement) a JIT Compiler in order to speed up their execution times. Inevitably, someone from the peanut gallery asks why they

6条回答
  •  误落风尘
    2020-12-22 23:14

    There is a presentation on using LLVM as a JIT backened where the address many of the concerns raised as to why its bad, most of its seems to boil down to people building a static compiler as a JIT instead of building an actual JIT.

提交回复
热议问题