I am looking for a list of the
various optimizations that llvm performs
when I use the JIT execution engine.
Eg. I am assuming:
strench reduction,
dead code elimination
?
Simon.
I am looking for a list of the
various optimizations that llvm performs
when I use the JIT execution engine.
Eg. I am assuming:
strench reduction,
dead code elimination
?
Simon.
See a target's implementation of TargetJITInfo::addPassesToJITCompile();
these will vary from one target to the next.