[PATCH] D142386: ExecutionEngine: support composite types handling.

Artem Khvoshch via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 3 11:51:13 PST 2023


Panzerschrek added a comment.

In D142386#4166791 <https://reviews.llvm.org/D142386#4166791>, @Hahnfeld wrote:

> You should try ORC, which does actual just-in-time compilation.

I use interpreter for tests of my programming language. Using interpreter for this is totally fine, JIT is an overkill. Using JIT will slow down tests running. Also compilation will be slower, since JIT depends on code generator libraries (which are huge for x86/x86_64 targets).


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D142386/new/

https://reviews.llvm.org/D142386



More information about the llvm-commits mailing list