llvm-6502/lib
Chris Lattner d2f9ee9ea7 Codegen cond&cond with two branches. This compiles (f.e.) PowerPC/and-branch.ll to:
cmpwi cr0, r4, 4
        bgt cr0, LBB1_2 ;UnifiedReturnBlock
LBB1_3: ;entry
        cmplwi cr0, r3, 0
        bne cr0, LBB1_2 ;UnifiedReturnBlock

instead of:

        cmpwi cr7, r4, 4
        mfcr r2
        addic r4, r3, -1
        subfe r3, r4, r3
        rlwinm r2, r2, 30, 31, 31
        or r2, r2, r3
        cmplwi cr0, r2, 0
        bne cr0, LBB1_2 ;UnifiedReturnBlock
LBB1_1: ;cond_true


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31232 91177308-0d34-0410-b5e6-96231b3b80d8
2006-10-27 21:54:23 +00:00
..
Analysis For PR950: 2006-10-26 06:15:43 +00:00
Archive For PR797: 2006-08-25 19:54:53 +00:00
AsmParser For PR950: 2006-10-26 06:15:43 +00:00
Bytecode For PR950: 2006-10-26 06:15:43 +00:00
CodeGen Codegen cond&cond with two branches. This compiles (f.e.) PowerPC/and-branch.ll to: 2006-10-27 21:54:23 +00:00
Debugger For PR950: 2006-10-20 07:07:24 +00:00
ExecutionEngine For PR950: 2006-10-26 06:15:43 +00:00
Linker Adding dllimport, dllexport and external weak linkage types. 2006-09-14 18:23:27 +00:00
Support SmallVector append not insert. 2006-10-27 19:38:32 +00:00
System Use new config.h macro 2006-09-14 06:21:59 +00:00
Target Fixed a significant bug where unpcklpd is incorrectly used to extract element 1 from a v2f64 value. 2006-10-27 21:08:32 +00:00
Transforms Simplify code a bit by changing instances of: 2006-10-26 19:19:06 +00:00
VMCore Make the Value and Type methods print a newline so it prints nicely in gdb 2006-10-27 18:58:54 +00:00
Makefile