llvm-6502/lib
Evan Cheng e721f5c8d3 Improve codegen for select's:
if (x != 0) x = 1
if (x == 1) x = 1

Previous codegen looks like this:
        mov     r1, r0
        cmp     r1, #1
        mov     r0, #0
        moveq   r0, #1

The naive lowering select between two different values. It should recognize the
test is equality test so it's more a conditional move rather than a select:
        cmp     r0, #1
        movne   r0, #0

rdar://9758317


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135017 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-13 00:42:17 +00:00
..
Analysis stop using WriteTypeSymbolic. 2011-07-09 18:02:13 +00:00
Archive
AsmParser Second attempt at de-constifying LLVM Types in FunctionType::get(), 2011-07-12 14:06:48 +00:00
Bitcode Second attempt at de-constifying LLVM Types in FunctionType::get(), 2011-07-12 14:06:48 +00:00
CodeGen Second attempt at de-constifying LLVM Types in FunctionType::get(), 2011-07-12 14:06:48 +00:00
CompilerDriver
ExecutionEngine Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
Linker Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
MC Resynchronize EDInfo.h and EDEmitter.cpp. 2011-07-11 17:57:30 +00:00
Object Use memcmp. 2011-07-05 20:28:00 +00:00
Support Windows/DynamicLibrary.inc: Fix trivial warnings. Thanks to John Myers! 2011-07-09 08:41:20 +00:00
Target Improve codegen for select's: 2011-07-13 00:42:17 +00:00
Transforms Second attempt at de-constifying LLVM Types in FunctionType::get(), 2011-07-12 14:06:48 +00:00
VMCore Second attempt at de-constifying LLVM Types in FunctionType::get(), 2011-07-12 14:06:48 +00:00
CMakeLists.txt
Makefile