summaryrefslogtreecommitdiff
path: root/test/Transforms/ConstProp
Commit message (Expand)AuthorAge
* implement PR9315, constant folding exp2 in terms of pow (since hosts withoutChris Lattner2011-05-22
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Constant folding support for calls to umul.with.overflow(), basically identic...Frits van Bommel2011-03-27
* When loading from a constant, fold inttoptr if the integer type and the resul...Anders Carlsson2011-02-06
* Add the select optimization recently added to instcombine to constant folding.Nick Lewycky2011-01-29
* Add a constant folding of casts from zero to zero. Fixes PR9011!Nick Lewycky2011-01-21
* Teach constant folding to perform conversions from constant floatingChandler Carruth2011-01-11
* FileCheck-ize a test, and move a no-longer calling test case to anotherChandler Carruth2011-01-11
* test/Transforms/ConstProp/logicaltest.ll: FileCheck-ize.NAKAMURA Takumi2010-12-29
* Teach ConstantFoldInstruction() how to fold insertvalue and extractvalue.Frits van Bommel2010-11-29
* rename test.Chris Lattner2010-11-14
* filecheckize, remove an old and useless testChris Lattner2010-11-14
* this test is pretty pointless and "propogation" isn't a word (or so Misha cla...Chris Lattner2010-11-14
* fix a bug I introduced, no idea how this didn't repro right.Chris Lattner2010-10-14
* hack to unbreak buildbotsChris Lattner2010-10-14
* add uadd_ov/usub_ov to apint, consolidate constant foldingChris Lattner2010-10-14
* remove some noise from tests.Chris Lattner2010-09-02
* fix PR6197 - infinite recursion in ipsccp due to block addressesChris Lattner2010-02-01
* Fix a crasher trying to fold each element in a comparison between two vectorsNick Lewycky2010-01-21
* fix PR5978 by peeling the loop so that we avoid shifting theChris Lattner2010-01-08
* Fix PR5551 by not ignoring the top level constantexpr whenChris Lattner2009-12-04
* Convert a few tests to FileCheck for PR5307.Edward O'Callaghan2009-10-26
* fix PR5287, a serious regression from my previous patches. Thanks toChris Lattner2009-10-24
* teach libanalysis to simplify vector loads with bitcast sources. ThisChris Lattner2009-10-23
* enhance FoldReinterpretLoadFromConstPtr to handle loads of up to 32 Chris Lattner2009-10-23
* teach libanalysis to fold int and fp loads from almost arbitraryChris Lattner2009-10-23
* Teach vm core to more aggressively fold 'trunc' constantexprs,Chris Lattner2009-10-17
* remove # uses from FileCheck lines.Chris Lattner2009-10-17
* rename testChris Lattner2009-10-17
* Extend ConstantFolding to understand signed overflow variantsEvan Phoenix2009-10-05
* teach the optimizer how to constant fold uadd/usub intrinsics.Chris Lattner2009-10-05
* Peer through zext and sext to eliminate them when it is safe to do so.Nick Lewycky2009-09-20
* Fold 'icmp eq (icmp), true' into an xor(icmp).Nick Lewycky2009-09-20
* Rewrite this check so that it checks what it's supposed to and doesn't useNick Lewycky2009-09-20
* Teach the constant folder how to not a cmpinst.Nick Lewycky2009-09-20
* Try turning icmp(bitcast(x), bitcast(y)) into icmp(bitcast(bitcast(x)), y) inNick Lewycky2009-09-20
* Teach the constant folder how to handle a few simple i1 cases.Nick Lewycky2009-09-20
* convert to filecheckChris Lattner2009-09-15
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-11
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-08
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-08
* Eliminate some Tclisms.Daniel Dunbar2009-09-05
* Fix month.Chris Lattner2009-09-02
* fix PR4848 an infinite loop when indexing down through a recursive gepChris Lattner2009-09-02
* Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky2009-07-08
* Expand this test to handle more cases (remainder and shifts) of zero.Nick Lewycky2009-06-21
* implement PR4424: 0/x is always 0 for integer division.Chris Lattner2009-06-21
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-04
* apply Eli's patch for PR2165 and provide a testcase.Chris Lattner2008-10-16
* Fix a case where vector comparison constant folding would cause anChris Lattner2008-07-10