summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/Reassociate.cpp
Commit message (Expand)AuthorAge
* [Reassociate] Similar to "X + -X" -> "0", added code to handle "X + ~X" -> "-1".Benjamin Kramer2014-05-31
* [C++] Use 'nullptr'. Transforms edition.Craig Topper2014-04-25
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* [C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth2014-03-09
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-05
* [Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth2014-03-04
* [Modules] Move ValueHandle into the IR library where Value itself lives.Chandler Carruth2014-03-04
* Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer2014-03-01
* [reassociate] Switch two std::sort calls into std::stable_sort calls asChandler Carruth2014-02-25
* Disable most IR-level transform passes on functions marked 'optnone'.Paul Robinson2014-02-06
* Put the functionality for printing a value to a raw_ostream as anChandler Carruth2014-01-09
* Move the LLVM IR asm writer header files into the IR directory, as theyChandler Carruth2014-01-07
* Use switch instead of if. No functionality change.Jakub Staszak2013-07-22
* Reassociate: Remove unnecessary default operator=.Benjamin Kramer2013-07-06
* Fix a XOR reassociation bug. Shuxin Yang2013-04-27
* Redo the fix Benjamin Kramer committed in r178793 about iterator invalidation...Shuxin Yang2013-04-08
* Reassociate: Avoid iterator invalidation.Benjamin Kramer2013-04-04
* Correct assertion conditionShuxin Yang2013-04-01
* Implement XOR reassociation. It is based on following rules:Shuxin Yang2013-03-30
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Remove the last bit of constant folding from LinearizeExprTree (most of it wasDuncan Sands2012-11-18
* Fix PR14060, an infinite loop in reassociate. The problem was that one of theDuncan Sands2012-11-18
* Fix a crash observed by Shuxin Yang. The issue here is that LinearizeExprTree,Duncan Sands2012-11-15
* revert r167740Shuxin Yang2012-11-13
* This change is to fix rdar://12571717 which is about assertion in Reassociate...Shuxin Yang2012-11-12
* Stop reassociate from looking through expressions of arbitrary complexity. ThisDuncan Sands2012-07-26
* Clean whitespaces.Nadav Rotem2012-07-24
* Suppress a warning.Nadav Rotem2012-07-23
* Rework this to clarify where the removal of nodes from the queue isDuncan Sands2012-06-29
* Fix a reassociate crash on sozefx when compiling with dragonegg+gcc-4.7 due toDuncan Sands2012-06-29
* Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth2012-06-29
* Some reassociate optimizations create new instructions, which they insert justDuncan Sands2012-06-27
* Remove a dangling reference to a deleted instruction. Fixes PR13185!Nick Lewycky2012-06-24
* Fix issues (infinite loop and/or crash) with self-referential instructions, forDuncan Sands2012-06-15
* It is possible for several constants which aren't individually absorbing toDuncan Sands2012-06-13
* When linearizing a multiplication, return at once if we see a factor of zero,Duncan Sands2012-06-13
* Use DenseMap as SmallMap workaround rather than std::map, at Chandler's request.Duncan Sands2012-06-12
* Use std::map rather than SmallMap because SmallMap assumes that the value hasDuncan Sands2012-06-12
* Now that Reassociate's LinearizeExprTree can look through arbitrary expressionDuncan Sands2012-06-12
* Reapply commit 158073 with a fix (the testcase was already committed). TheDuncan Sands2012-06-08
* Revert commit 158073 while waiting for a fix. The issue is that reassociateDuncan Sands2012-06-08
* Grab-bag of reassociate tweaks. Unify handling of dead instructions andDuncan Sands2012-06-06
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-02
* Since commit 157467, if reassociate isn't actually going to change an expressionDuncan Sands2012-05-26
* Move this debug statement earlier so it is easy to see the order inDuncan Sands2012-05-26
* Make the reassociation pass more powerful so that it can handle expressionsDuncan Sands2012-05-25
* Calling ReassociateExpression recursively is extremely dangerous since it willDuncan Sands2012-05-08
* Teach reassociate to commute FMul's and FAdd's in order to canonicalize the o...Owen Anderson2012-05-07
* Add 'landingpad' instructions to the list of instructions to ignore.Bill Wendling2012-05-04