llvm-6502/lib
Evan Cheng cdf43b1fad If a loop termination compare instruction is the only use of its stride,
and the compaison is against a constant value, try eliminate the stride
by moving the compare instruction to another stride and change its
constant operand accordingly. e.g.

loop:
...
v1 = v1 + 3
v2 = v2 + 1
if (v2 < 10) goto loop
=>
loop:
...
v1 = v1 + 3
if (v1 < 30) goto loop


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43336 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-25 09:11:16 +00:00
..
Analysis Fix for PR1741. 2007-10-25 02:36:18 +00:00
Archive
AsmParser
Bitcode Implemented prototype serialization of pointers, including support 2007-10-25 00:10:21 +00:00
CodeGen Another expansion for i64 multiply, suitable for PPC. 2007-10-24 22:26:08 +00:00
Debugger
ExecutionEngine add a mechanism for the JIT to invoke a function to lazily create functions as they are referenced. 2007-10-22 02:50:12 +00:00
Linker
Support This requires rtti info because tblgen uses commandline, 2007-10-18 15:57:29 +00:00
System
Target Disable a couple more things for ppcf128. 2007-10-23 23:20:14 +00:00
Transforms If a loop termination compare instruction is the only use of its stride, 2007-10-25 09:11:16 +00:00
VMCore Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than inheriting from it. 2007-10-23 20:58:37 +00:00
Makefile