May 2015
Intermediate to advanced
296 pages
5h 10m
English
A wide variety of tools can be applied to LLVM IR. For example, as demonstrated in Chapter 1, LLVM Design and Use, the IR can be dumped into bitcode or into an assembly. An optimization tool called opt can be run on IR. IR acts as the common platform—an abstract layer for all of these tools.
JIT support can also be added. It immediately evaluates the top-level expressions typed in. For example, 1 + 2;, as soon as it is typed in, evaluates the code and prints the value as 3.
Do the following steps:
toy.cpp file:static ExecutionEngine *TheExecutionEngine;
toy.cpp file's main() function, write the code for JIT:int main() { … … init_precedence(); TheExecutionEngine ...Read now
Unlock full access