Fix Reassociate handling of constant in presence of undef float
[oota-llvm.git] / lib / Transforms / Scalar / Reassociate.cpp
2015-01-16 Mehdi AminiFix Reassociate handling of constant in presence of...
2014-12-12 Chad Rosier[Reassociate] Use dbgs() instead of errs().
2014-11-21 David MajnemerThis Reassociate change unintentionally slipped in...
2014-11-21 David MajnemerSROA: The alloca type isn't a candidate promotion type...
2014-11-19 Chad RosierRevert "[Reassociate] As the expression tree is rewritt...
2014-11-19 David BlaikieUpdate SetVector to rely on the underlying set's insert...
2014-11-18 Chad Rosier[Reassociate] Rename local variable to not use same...
2014-11-17 Chad Rosier[Reassociate] As the expression tree is rewritten make...
2014-11-17 Chad Rosier[Reassociate] Canonicalize constants to RHS operand.
2014-11-14 Chad Rosier[Reassociate] Canonicalize the operands of all binary...
2014-11-14 Chad Rosier[Reassociate] Canonicalize operands of vector binary...
2014-11-14 Chad Rosier[Reassociate] Canonicalize constants to RHS operand.
2014-11-14 Chad Rosier[Reassociate] Improve rank debug information. NFC.
2014-11-13 Chad Rosier[Reassociate] Update comment. NFC.
2014-11-11 Chad Rosier[Reassociate] Canonicalize negative constants out of...
2014-11-11 Chad Rosier[Reassociate] Canonicalize negative constants out of...
2014-11-07 Chad Rosier[Reassociate] Better preserve NSW/NUW flags.
2014-11-06 Chad Rosier[Reassociate] Don't reassociate when mixing regular...
2014-11-04 Reid KlecknerRevert "[Reassociate] Canonicalize negative constants...
2014-11-03 Chad Rosier[Reassociate] Canonicalize negative constants out of...
2014-10-09 Chad Rosier[Reassociate] Don't canonicalize X - undef to X + ...
2014-10-05 Owen AndersonGive the Reassociate pass a bit more flexibility and...
2014-08-21 Erik VerbruggenReassociate x + -0.1234 * y into x - 0.1234 * y
2014-08-14 Chad Rosier[Reassociation] Add support for reassociation with...
2014-05-31 Benjamin Kramer[Reassociate] Similar to "X + -X" -> "0", added code...
2014-04-25 Craig Topper[C++] Use 'nullptr'. Transforms edition.
2014-04-22 Chandler Carruth[Modules] Fix potential ODR violations by sinking the...
2014-03-09 Chandler Carruth[C++11] Add range based accessors for the Use-Def chain...
2014-03-05 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-04 Chandler Carruth[Modules] Move CFG.h to the IR library as it defines...
2014-03-04 Chandler Carruth[Modules] Move ValueHandle into the IR library where...
2014-03-01 Benjamin KramerNow that we have C++11, turn simple functors into lambd...
2014-02-25 Chandler Carruth[reassociate] Switch two std::sort calls into std:...
2014-02-06 Paul RobinsonDisable most IR-level transform passes on functions...
2014-01-09 Chandler CarruthPut the functionality for printing a value to a raw_ost...
2014-01-07 Chandler CarruthMove the LLVM IR asm writer header files into the IR...
2013-07-22 Jakub StaszakUse switch instead of if. No functionality change.
2013-07-06 Benjamin KramerReassociate: Remove unnecessary default operator=.
2013-04-27 Shuxin YangFix a XOR reassociation bug.
2013-04-08 Shuxin YangRedo the fix Benjamin Kramer committed in r178793 about...
2013-04-04 Benjamin KramerReassociate: Avoid iterator invalidation.
2013-04-01 Shuxin YangCorrect assertion condition
2013-03-30 Shuxin YangImplement XOR reassociation. It is based on following...
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-18 Duncan SandsRemove the last bit of constant folding from LinearizeE...
2012-11-18 Duncan SandsFix PR14060, an infinite loop in reassociate. The...
2012-11-15 Duncan SandsFix a crash observed by Shuxin Yang. The issue here...
2012-11-13 Shuxin Yangrevert r167740
2012-11-12 Shuxin YangThis change is to fix rdar://12571717 which is about...
2012-07-26 Duncan SandsStop reassociate from looking through expressions of...
2012-07-24 Nadav RotemClean whitespaces.
2012-07-23 Nadav RotemSuppress a warning.
2012-06-29 Duncan SandsRework this to clarify where the removal of nodes from...
2012-06-29 Duncan SandsFix a reassociate crash on sozefx when compiling with...
2012-06-29 Chandler CarruthMove llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
2012-06-27 Duncan SandsSome reassociate optimizations create new instructions...
2012-06-24 Nick LewyckyRemove a dangling reference to a deleted instruction...
2012-06-15 Duncan SandsFix issues (infinite loop and/or crash) with self-refer...
2012-06-13 Duncan SandsIt is possible for several constants which aren't indiv...
2012-06-13 Duncan SandsWhen linearizing a multiplication, return at once if...
2012-06-12 Duncan SandsUse DenseMap as SmallMap workaround rather than std...
2012-06-12 Duncan SandsUse std::map rather than SmallMap because SmallMap...
2012-06-12 Duncan SandsNow that Reassociate's LinearizeExprTree can look throu...
2012-06-08 Duncan SandsReapply commit 158073 with a fix (the testcase was...
2012-06-08 Duncan SandsRevert commit 158073 while waiting for a fix. The...
2012-06-06 Duncan SandsGrab-bag of reassociate tweaks. Unify handling of...
2012-06-02 Benjamin KramerFix typos found by github.com/lyda/misspell-check
2012-05-26 Duncan SandsSince commit 157467, if reassociate isn't actually...
2012-05-26 Duncan SandsMove this debug statement earlier so it is easy to...
2012-05-25 Duncan SandsMake the reassociation pass more powerful so that it...
2012-05-08 Duncan SandsCalling ReassociateExpression recursively is extremely...
2012-05-07 Owen AndersonTeach reassociate to commute FMul's and FAdd's in order...
2012-05-04 Bill WendlingAdd 'landingpad' instructions to the list of instructio...
2012-05-02 Bill WendlingWhitespace cleanup.
2012-05-02 Bill WendlingThe value held in the vector may be RAUW'ed by some...
2012-04-26 Chandler CarruthTeach the reassociate pass to fold chains of multiplies...
2012-03-26 Craig TopperPrune some includes and forward declarations.
2011-08-12 Duncan SandsSilence a bunch (but not all) "variable written but...
2011-08-02 Owen AndersonRevert r136503 and r136480 in an effort to fix non...
2011-07-29 Devang PatelClear DbgValues in the end.
2011-07-29 Devang PatelClean up debug info after reassociation.
2011-07-15 Chris Lattnerstart using the new helper methods a bit.
2011-04-28 Devang PatelPreserve line number information.
2011-04-12 Dan GohmanFix reassociate to use a worklist instead of recursing...
2011-03-10 Dan GohmanRecursivelyDeleteTriviallyDeadInstructions only needs a
2011-03-10 Dan GohmanFix reassociate to postpone certain instruction deletio...
2011-02-17 Chris Lattnerfix PR9215, preventing -reassociate from clearing nsw...
2011-02-02 Dan GohmanFix reassociate to clear optional flags, such as nsw.
2011-01-26 Duncan SandsFix PR9039, a use-after-free in reassociate. The issue...
2010-10-19 Owen AndersonGet rid of static constructors for pass registration...
2010-10-07 Owen AndersonNow with fewer extraneous semicolons!
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-07-21 Owen AndersonFix batch of converting RegisterPass<> to INTIALIZE_PASS().
2010-07-12 Gabor Greifcache dereferenced iterators
2010-03-05 Chris Lattnerfix a nice subtle reassociate bug which would only...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
next