aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/Reassociate.cpp
AgeCommit message (Expand)Author
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-19don't use the result of WriteAsOperandChris Lattner
2008-05-16API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...Gabor Greif
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-03-21Don't include <map> in Pass.h, which doesn't need it. This requiresDan Gohman
2008-02-18simplify some code, BreakUpSubtract always returns nonnull now.Chris Lattner
2008-02-17fix pastoChris Lattner
2008-02-17Split up subtracts into add+negate if they have a reassociable use or operandChris Lattner
2008-02-17make the logic for breaking up subtracts more explicit, no Chris Lattner
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-05-06Fix typo in comment.Nick Lewycky
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-03-02Prefer non-virtual calls to ConstantInt::isZero over virtual calls toReid Spencer
2007-03-01Use isUnitValue() instead of getZExtValue() == 1 which will prevent anReid Spencer
2007-02-15For PR1195:Reid Spencer
2007-02-11Simplify code by using value::takenameChris Lattner
2007-02-05Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes inReid Spencer
2007-01-21For PR970:Reid Spencer
2007-01-15rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger.Chris Lattner
2007-01-11For PR1043:Zhou Sheng
2006-12-23For PR950:Reid Spencer
2006-12-19Switch over Transforms/Scalar to use the STATISTIC macro. For each statisticChris Lattner
2006-12-07Removing even more <iostream> includes.Bill Wendling
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-12-06Remove the 'printname' argument to WriteAsOperand. It is always true, andChris Lattner
2006-11-02For PR950:Reid Spencer
2006-10-26For PR950:Reid Spencer
2006-10-20For PR950:Reid Spencer
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2006-04-28Fix Transforms/Reassociate/2006-04-27-ReassociateVector.llChris Lattner
2006-03-14Implement a FIXME, recusively reassociatingChris Lattner
2006-03-14extract some code into a method, no functionality changeChris Lattner
2006-03-14Promote shifts by a constant to multiplies so that we can reassociateChris Lattner
2006-03-04Add factoring of multiplications, e.g. turning A*A+A*B into A*(A+B).Chris Lattner
2006-01-22Make iostream #inclusion explicitChris Lattner
2005-09-02Fix a problem that Dan Berlin noticed, where reassociation would not succeedChris Lattner
2005-09-02Avoid creating garbage instructions, just move the old add instructionChris Lattner
2005-09-02add some assertions and fix problems where reassociate could access theChris Lattner
2005-08-24Fix Regression/Transforms/Reassociate/2005-08-24-Crash.llChris Lattner
2005-08-08Use the new 'moveBefore' method to simplify some code. Really, which isChris Lattner
2005-07-27Eliminate all remaining tabs and trailing spaces.Jeff Cohen
2005-05-10Fix Reassociate/shifttest.llChris Lattner
2005-05-08Implement Reassociate/mul-neg-add.llChris Lattner
2005-05-08Bail out earlierChris Lattner
2005-05-08Teach reassociate that 0-X === X*-1Chris Lattner
2005-05-08Fix PR557 and basictest[34].ll.Chris Lattner
2005-05-08Add debugging informationChris Lattner