AOT Compiler? #106
Replies: 2 comments 7 replies
-
I don't think this is needed. The performance of Objeck is good enough. The binaries produced by AOT is platform dependent. They are not portable. I don't think the performance gained by compiling to native binaries worth it. Only performance critical enterprise systems need something like AOT, where a little more performance gained means a lot of money saved. |
Beta Was this translation helpful? Give feedback.
-
AOT is interesting, like tracing JITs, but it will offer little performance benefit. The AOT would have to be machine code independent to support x64 and ARM64 targets, two vastly different machine formats. For example, the x64 JIT compiler supports indirect addressing, which is not available on ARM64. |
Beta Was this translation helpful? Give feedback.
-
https://en.wikipedia.org/wiki/Ahead-of-time_compilation
Beta Was this translation helpful? Give feedback.
All reactions