| Commit message (Expand) | Author | Age | Files | Lines |
* | Teach InstCombine visitGetElementPtr about address spaces | Matt Arsenault | 2013-08-19 | 1 | -1/+28 |
* | Update Transforms tests to use CHECK-LABEL for easier debugging. No functiona... | Stephen Lin | 2013-07-14 | 1 | -47/+47 |
* | InstCombine: Don't claim to be able to evaluate any shl in a zexted type. | Benjamin Kramer | 2013-05-10 | 1 | -0/+28 |
* | unHECKify test fixed by Jacob in r159003. | Jakub Staszak | 2012-12-12 | 1 | -8/+6 |
* | Add a testcase that would have noticed the typo fixed in commit 166475. | Duncan Sands | 2012-10-24 | 1 | -0/+9 |
* | Transform code like this | Duncan Sands | 2012-10-23 | 1 | -0/+197 |
* | Fix a minor logic mistake transforming compares in instcombine. PR12514. | Eli Friedman | 2012-05-11 | 1 | -0/+15 |
* | Reapply r155136 after fixing PR12599. | Jakob Stoklund Olesen | 2012-04-23 | 1 | -3/+5 |
* | Revert r155136 "Defer some shl transforms to DAGCombine." | Jakob Stoklund Olesen | 2012-04-20 | 1 | -5/+3 |
* | Defer some shl transforms to DAGCombine. | Jakob Stoklund Olesen | 2012-04-19 | 1 | -3/+5 |
* | Fixes following the CR by Chris and Duncan: | Nadav Rotem | 2011-08-29 | 1 | -3/+36 |
* | Bitcasts are transitive. Bitcast-Bitcast-X becomes Bitcast-X. | Nadav Rotem | 2011-08-28 | 1 | -0/+14 |
* | manually upgrade a bunch of tests to modern syntax, and remove some that | Chris Lattner | 2011-06-17 | 1 | -19/+0 |
* | Simplify code. No functionality changes, name changes aside. | Benjamin Kramer | 2011-06-12 | 1 | -2/+2 |
* | Enhance a bunch of transformations in instcombine to start generating | Chris Lattner | 2011-02-10 | 1 | -4/+4 |
* | Re-apply r113679, which was reverted in r113720, which added a paid of new in... | Owen Anderson | 2010-09-13 | 1 | -12/+12 |
* | Revert 113679, it was causing an infinite loop in a testcase that I've sent | Eric Christopher | 2010-09-12 | 1 | -12/+12 |
* | Invert and-of-or into or-of-and when doing so would allow us to clear bits of... | Owen Anderson | 2010-09-11 | 1 | -12/+12 |
* | fix PR7311 by avoiding breaking casts when a bitcast from scalar->vector | Chris Lattner | 2010-07-12 | 1 | -0/+11 |
* | Teach instcombine to transform a bitcast/(zext|trunc)/bitcast sequence | Chris Lattner | 2010-05-08 | 1 | -0/+33 |
* | disable this testcase, PR5997 | Chris Lattner | 2010-01-11 | 1 | -6/+8 |
* | Extend CanEvaluateZExtd to handle and/or/xor more aggressively in the | Chris Lattner | 2010-01-11 | 1 | -0/+31 |
* | Remove the dead TD argument to CanEvaluateZExtd, and add a | Chris Lattner | 2010-01-11 | 1 | -1/+24 |
* | teach sext optimization to handle truncs from types that are not | Chris Lattner | 2010-01-10 | 1 | -0/+26 |
* | teach zext optimization how to deal with truncs that don't come from | Chris Lattner | 2010-01-10 | 1 | -1/+25 |
* | now that the cost model has changed, we can always consider | Chris Lattner | 2010-01-10 | 1 | -2/+44 |
* | two changes: | Chris Lattner | 2010-01-10 | 1 | -0/+26 |
* | enhance CanEvaluateZExtd to handle shift left and sext, allowing | Chris Lattner | 2010-01-10 | 1 | -0/+28 |
* | Enhance instcombine to reason more strongly about promoting computation | Chris Lattner | 2010-01-07 | 1 | -0/+11 |
* | Teach instcombine's sext elimination logic to be more aggressive. | Chris Lattner | 2010-01-06 | 1 | -0/+11 |
* | more rearrangement and cleanup, fix my test failure. | Chris Lattner | 2010-01-05 | 1 | -4/+4 |
* | merge some tests. | Chris Lattner | 2010-01-05 | 1 | -0/+7 |
* | merge cast2 into cast.ll | Chris Lattner | 2010-01-05 | 1 | -0/+37 |
* | Make ConstantFoldConstantExpression recursively visit the entire | Dan Gohman | 2009-11-23 | 1 | -2/+2 |
* | unify the code that determines whether it is a good idea to change the type | Chris Lattner | 2009-11-10 | 1 | -1/+1 |
* | Make opt default to not adding a target data string and update tests that dep... | Kenneth Uildriks | 2009-11-03 | 1 | -0/+1 |
* | Autoupgrade malloc insts to malloc calls. | Victor Hernandez | 2009-10-17 | 1 | -5/+5 |
* | Convert the rest of the InstCombine tests from notcast to FileCheck. | Edward O'Callaghan | 2009-10-12 | 1 | -1/+76 |
* | Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it c... | Victor Hernandez | 2009-09-25 | 1 | -3/+3 |
* | Auto-upgrade malloc instructions to malloc calls. | Victor Hernandez | 2009-09-24 | 1 | -3/+3 |
* | Change tests from "opt %s" to "opt < %s" so that opt doesn't see the | Dan Gohman | 2009-09-11 | 1 | -1/+1 |
* | Use opt -S instead of piping bitcode output through llvm-dis. | Dan Gohman | 2009-09-08 | 1 | -1/+1 |
* | Change these tests to feed the assembly files to opt directly, instead | Dan Gohman | 2009-09-08 | 1 | -1/+1 |
* | Clean up previous cast optimization a bit. Also make zext elimination a bit m... | Evan Cheng | 2009-01-16 | 1 | -0/+7 |
* | Implement rdar://6480391, extending of equality icmp's to avoid a truncation. | Chris Lattner | 2009-01-09 | 1 | -3/+19 |
* | Byebye llvm-upgrade! | Tanya Lattner | 2008-03-25 | 1 | -148/+158 |
* | For PR1319: | Reid Spencer | 2007-04-15 | 1 | -0/+1 |
* | For PR1319: | Reid Spencer | 2007-04-14 | 1 | -2/+2 |
* | For PR950: | Reid Spencer | 2006-12-23 | 1 | -5/+6 |
* | Use the llvm-upgrade program to upgrade llvm assembly. | Reid Spencer | 2006-12-02 | 1 | -2/+2 |