aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/Reassociate.cpp
AgeCommit message (Expand)Author
2017-11-06[IR] redefine 'UnsafeAlgebra' / 'reassoc' fast-math-flags and add 'trans' fas...Sanjay Patel
2017-10-18[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...Eugene Zelenko
2017-08-24[Reassociate] Do not drop debug location if replacement is missingMikael Holmen
2017-08-23[Reassociate] Don't canonicalize x + (-Constant * y) -> x - (Constant * y)..Chad Rosier
2017-08-07[Reassociate] Use a range loop for clarity. NFCI.Davide Italiano
2017-08-07[Reassociate] Try to bail out early when canonicalizing.Davide Italiano
2017-07-06[Constants] If we already have a ConstantInt*, prefer to use isZero/isOne/isM...Craig Topper
2017-06-27[Reassociate] Make sure EraseInst sets MadeChangeMikael Holmen
2017-06-21[Reassociate] Use early returns in a couple places to reduce indentation and ...Craig Topper
2017-06-21[Reassociate] Const correct a helper function. NFCCraig Topper
2017-06-21[Reassociate] Support xor reassociating for splat vectorsCraig Topper
2017-06-19[Reassociate] Support some reassociation of vector xorsCraig Topper
2017-06-19[Reassociate] Make one of the helper methods static because it doesn't use an...Craig Topper
2017-06-18[Reassociate] Use APInt::isNullValue() instead of comparing with 0. NFCCraig Topper
2017-05-18[IR] De-virtualize ~Value to save a vptrReid Kleckner
2017-05-16[IR] Prefer use_empty() to !hasNUsesOrMore(1) for clarity.Davide Italiano
2017-05-01Rename WeakVH to WeakTrackingVH; NFCSanjoy Das
2017-04-26Reverts commit r301424, r301425 and r301426Sanjoy Das
2017-04-26Rename WeakVH to WeakTrackingVH; NFCSanjoy Das
2017-02-23[Reassociate] Add negated value of negative constant to the Duplicates list.Chad Rosier
2017-02-08[Reassociate] Remove an unused argument. NFC.Chad Rosier
2017-01-15[PM] Introduce an analysis set used to preserve all analyses overChandler Carruth
2016-11-22Fixed the lost FastMathFlags in Reassociate optimization.Vyacheslav Klochkov
2016-11-14Remove redundant condition (PR28352) NFCI.Simon Pilgrim
2016-11-02[Reassociate] Skip analysis of dead code to avoid infinite loop.Bjorn Pettersson
2016-10-28[Reassociate] Removing instructions mutates the IR.Davide Italiano
2016-08-30[Reassociate] Add additional debug output. NFC.Chad Rosier
2016-08-17Revert "Reassociate: Reprocess RedoInsts after each inst".Chad Rosier
2016-08-17Revert "[Reassociate] Avoid iterator invalidation when negating value."Chad Rosier
2016-08-17[Reassociate] Avoid iterator invalidation when negating value.Chad Rosier
2016-06-28[PM] Normalize FIXMEs for missing PreserveCFG to have the same wording.Michael Kuperstein
2016-06-26Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.Benjamin Kramer
2016-06-17[PM] Remove support for omitting the AnalysisManager argument to newChandler Carruth
2016-06-08Avoid copies of std::strings and APInt/APFloats where we only read from itBenjamin Kramer
2016-05-29[PM] Reassociate: cache analyses more aggressively.Davide Italiano
2016-04-26PM: Port Reassociate to the new pass managerJustin Bogner
2016-04-26Reassociate: Convert another functor into a lambda. NFCJustin Bogner
2016-04-26Reassociate: Simplify using lambdas. NFCJustin Bogner
2016-04-22Re-commit optimization bisect support (r267022) without new pass manager supp...Andrew Kaylor
2016-04-22Revert "Initial implementation of optimization bisect support."Vedant Kumar
2016-04-21Initial implementation of optimization bisect support.Andrew Kaylor
2016-02-21ADT: Remove == and != comparisons between ilist iterators and pointersDuncan P. N. Exon Smith
2016-01-26Reassociate: Reprocess RedoInsts after each instAditya Nandakumar
2016-01-07Instructions to be redone only if from the same BBAditya Nandakumar
2016-01-04Remove dead instructions before RedoingAditya Nandakumar
2015-12-16Fix funciton->function typo.Eric Christopher
2015-12-14getParent() ^ 3 == getModule() ; NFCISanjay Patel
2015-12-12[IR] Reformulate LLVM's EH funclet IRDavid Majnemer
2015-11-20Fix a pair of issues that caused an infinite loop in reassociate.Owen Anderson
2015-11-16Add intermediate subtract instructions to reassociation worklist.Owen Anderson