aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LoopUnroll.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-11-19Revert r253253 and r253126: "Don't recompute LCSSA after loop-unrolling when ...Michael Zolotukhin1-12/+2
2015-11-16[PR25538]: Fix a failure caused by r253126.Michael Zolotukhin1-2/+2
2015-11-14Don't recompute LCSSA after loop-unrolling when possible.Michael Zolotukhin1-1/+11
2015-10-13TransformUtils: Remove implicit ilist iterator conversions, NFCDuncan P. N. Exon Smith1-2/+2
2015-10-06[IndVars] Don't break dominance in `eliminateIdentitySCEV`Sanjoy Das1-1/+1
2015-09-23[Unroll] When completely unrolling the loop, replace conditinal branches with...Michael Zolotukhin1-2/+3
2015-08-17[PM] Port ScalarEvolution to the new pass manager.Chandler Carruth1-4/+6
2015-07-22[PM/AA] Remove all of the dead AliasAnalysis pointers being threadedChandler Carruth1-1/+1
2015-04-14[LoopUnrollRuntime] Avoid high-cost trip count computation.Sanjoy Das1-3/+12
2015-03-23Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.Benjamin Kramer1-1/+1
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini1-3/+3
2015-03-04Make DataLayout Non-Optional in the ModuleMehdi Amini1-3/+2
2015-02-02Resurrect the assertion removed by r227717Jingyue Wu1-3/+4
2015-02-01Removed assert that doesn't typecheck and breaks debug MSVC build.Michael Kuperstein1-1/+0
2015-02-01[NVPTX] Emit .pragma "nounroll" for loops marked with nounrollJingyue Wu1-0/+23
2015-01-18[PM] Now that LoopInfo isn't in the Pass type hierarchy, it is muchChandler Carruth1-2/+2
2015-01-04[PM] Split the AssumptionTracker immutable pass into two separate APIs:Chandler Carruth1-6/+5
2014-12-22[LCSSA] Handle PHI insertion in disjoint loopsBruno Cardoso Lopes1-1/+1
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-10-07LoopUnroll: Create sub-loops in LoopInfoDuncan P. N. Exon Smith1-1/+29
2014-10-07LoopUnroll: Only check for ScalarEvolution analysis once, NFCDuncan P. N. Exon Smith1-7/+4
2014-10-06LoopUnroll: Change code order of changes to new basic blocksDuncan P. N. Exon Smith1-2/+2
2014-10-06Sink comment, NFCDuncan P. N. Exon Smith1-2/+2
2014-09-07Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)Hal Finkel1-1/+1
2014-09-07Add an Assumption-Tracking PassHal Finkel1-1/+7
2014-07-21Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite...Duncan P. N. Exon Smith1-6/+8
2014-07-20[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra...Manuel Jacob1-8/+6
2014-07-10Partially fix PR20058: reduce compile time for loop unrolling with very high ...Mark Heffernan1-7/+17
2014-07-10Feeding isSafeToSpeculativelyExecute its DataLayout pointerHal Finkel1-1/+4
2014-07-08Fix some Twine locals.Benjamin Kramer1-5/+9
2014-05-29LCSSA should be performed on the outermost affected loop while unrolling loop.Dinesh Dwivedi1-0/+9
2014-05-22Add support for missed and analysis optimization remarks.Diego Novillo1-4/+5
2014-04-29Add optimization remarks to the loop unroller and vectorizer.Diego Novillo1-0/+14
2014-04-25[C++] Use 'nullptr'. Transforms edition.Craig Topper1-5/+5
2014-04-22[Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-01-28[LPM] Fix PR18616 where the shifts to the loop pass manager to extractChandler Carruth1-3/+5
2014-01-23[LPM] Make LoopSimplify no longer a LoopPass and instead both a utilityChandler Carruth1-8/+26
2014-01-13[PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth1-2/+3
2014-01-13[cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth1-1/+1
2013-12-07Don't #include heavy Dominators.h file in LoopInfo.h. This change reducesJakub Staszak1-0/+1
2013-11-17Utils/LoopUnroll.cpp: Tweak (StringRef)OldName to be valid until it is used, ...NAKAMURA Takumi1-1/+3
2013-11-13Use StringRef instead of std::stringJakub Staszak1-1/+1
2013-09-15Replace some unnecessary vector copies with references.Benjamin Kramer1-2/+0
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-1/+1
2012-06-05LoopUnroll: always check for NULL LoopPassManagerAndrew Trick1-3/+5
2012-05-08Allow NULL LoopPassManager argument in UnrollLoop. PR12734.Andrew Trick1-20/+24
2012-04-10Fix 12513: Loop unrolling breaks with indirect branches.Andrew Trick1-0/+6
2011-12-16Avoid a confusing assert for silly options: -unroll-runtime -unroll-count=1.Andrew Trick1-0/+5
2011-12-09Add -unroll-runtime for unrolling loops with run-time trip counts.Andrew Trick1-7/+22