aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Expand)AuthorAgeFilesLines
* When determining whether the new instruction was already present inDuncan Sands2010-12-221-0/+11
* Make this test not depend on how the variable is named.Duncan Sands2010-12-221-2/+2
* MC/Mach-O/ARM: We always use the SECTDIFF reloc type on ARM, which isDaniel Dunbar2010-12-221-17/+72
* MC/Mach-O/ARM: Add enough relocation logic to get BR24 relocations.Daniel Dunbar2010-12-221-0/+102
* Simplify the handling of .size expressions.Rafael Espindola2010-12-221-10/+0
* Add a generic expansion transform: A op (B op' C) -> (A op B) op' (A op C)Duncan Sands2010-12-221-2/+14
* ptx: add ld instruction and testChe-Liang Chiou2010-12-221-0/+44
* Fix a bug in ReduceLoadWidth that wasn't handling extendingChris Lattner2010-12-221-3/+21
* Give GVN back the ability to perform simple conditional propagation on condit...Owen Anderson2010-12-211-0/+55
* Reapply 122353-122355 with fixes. 122354 was wrong;Dale Johannesen2010-12-212-3/+13
* Add some x86 specific dagcombines for conditional increments.Benjamin Kramer2010-12-211-0/+89
* Revert 122353-122355 for the moment, they broke stuff.Dale Johannesen2010-12-212-13/+3
* Add a new transform to DAGCombiner.Dale Johannesen2010-12-211-0/+10
* Get the type of a shift from the shift, not from its shiftDale Johannesen2010-12-211-3/+3
* Revert 122341. It breaks some darwin tests.David Greene2010-12-211-39/+0
* Fix PR 8199. This patch prepends the build tool dir to LLVM programsDavid Greene2010-12-211-0/+39
* Add an additional InstructionSimplify factorization test.Duncan Sands2010-12-211-0/+10
* While I don't think any later transforms can fire, it seems cleaner toDuncan Sands2010-12-211-0/+22
* Fix typo in comment, spotted by Deewiant.Duncan Sands2010-12-211-1/+1
* Teach InstructionSimplify about distributive laws. These transforms fireDuncan Sands2010-12-211-0/+21
* Add generic simplification of associative operations, generalizingDuncan Sands2010-12-212-0/+67
* Add ARM-specific DAG combining to cast i64 vector element load/stores to f64.Bob Wilson2010-12-211-0/+30
* Teach the MBlaze disassembler to disassemble special purpose registers.Wesley Peck2010-12-201-2/+78
* Set the value of absolute symbols.Roman Divacky2010-12-201-1/+14
* Print all 64bits for st_value and st_size. Adjust tests accordingly.Roman Divacky2010-12-2018-136/+136
* Teach the MBlaze asm parser how to parse special purpose register names.Wesley Peck2010-12-201-4/+124
* Cosmetic changes.Dale Johannesen2010-12-201-1/+1
* Teach InstCombine to merge (icmp ult (X + CA), C1) | (icmp eq X, C2) into (ic...Benjamin Kramer2010-12-201-0/+14
* Have SimplifyBinOp dispatch Xor, Add and Sub to the corresponding methodsDuncan Sands2010-12-201-2/+4
* fix PR8807 by making transformConstExprCastCall aware of byval arguments.Chris Lattner2010-12-201-0/+13
* when eliding a byval copy due to inlining a readonly function, we haveChris Lattner2010-12-201-0/+23
* pull byval processing out to its own helper function.Chris Lattner2010-12-201-3/+4
* fix PR8769, a miscompilation by inliner when inlining a function with a byvalChris Lattner2010-12-201-0/+24
* merge two tests.Chris Lattner2010-12-202-30/+29
* filecheckizeChris Lattner2010-12-201-2/+5
* temporarily disable this: PR8823.Chris Lattner2010-12-201-17/+11
* now that addc/adde are gone, "ADDC" in the X86 backend uses EFLAGS results,Chris Lattner2010-12-201-0/+19
* We lower setb to sbb with the hope that the and will go away, when it Chris Lattner2010-12-201-0/+9
* Test case for r122215 when InstCombine optimizes memsetMon P Wang2010-12-201-0/+15
* Add comment for testcase for 122206Mon P Wang2010-12-201-1/+2
* Prevents PerformShuffleCombine from creating a node with an illegal type afte...Mon P Wang2010-12-191-4/+24
* improve the setcc -> setcc_carry optimization to happen moreChris Lattner2010-12-193-23/+34
* now that generic vector types aren't selected onto MMX registers, theseChris Lattner2010-12-1938-38/+36
* X86 supports i8/i16 overflow ops (except i8 multiplies), we shouldChris Lattner2010-12-191-0/+9
* add a general coverage test for overflow intrinsics.Chris Lattner2010-12-191-0/+220
* recognize an unsigned add with overflow idiom into uadd.Chris Lattner2010-12-191-0/+34
* optimize uadd(x, cst) into a comparison when the normal Chris Lattner2010-12-191-0/+10
* generalize the sadd creation code to not require that theChris Lattner2010-12-191-4/+27
* fix another miscompile in the llvm.sadd formation logic: it wasn't Chris Lattner2010-12-191-1/+22
* fix a bug (possibly 8816) in the sadd forming xform: it isn'tChris Lattner2010-12-191-1/+29