aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
Commit message (Expand)AuthorAgeFilesLines
* -Move the DwarfWriter::ValidDebugInfo check to a static DIDescriptor::ValidDe...Argyrios Kyrtzidis2009-05-031-0/+44
* Revert r70645 for now; it's causing a variety of regressions.Dan Gohman2009-05-031-25/+33
* Convert ScalarEvolution to use CallbackVH for its internal map. ThisDan Gohman2009-05-021-33/+25
* When ScalarEvolution is told to forget the trip count for a loop, haveDan Gohman2009-05-021-3/+11
* Change the description string of the LoopInfo pass.Dan Gohman2009-05-011-1/+1
* Actually insert inserted instructions into the InsertedValues map.Dan Gohman2009-05-011-11/+33
* When printing a SCEVUnknown with pointer type, don't print anDan Gohman2009-05-011-4/+0
* Short-circuit inttoptr-ptrtoint constant expressions; these aren'tDan Gohman2009-05-011-1/+8
* Fix an 80-column violation.Dan Gohman2009-05-011-1/+2
* When creating cast scevs, canonicalize the destination type. ThisDan Gohman2009-05-011-0/+9
* hasSCEV() was declared in ScalarEvolution.h, but never defined. This must haveTorok Edwin2009-05-011-0/+6
* Add some comments, and tidy up some whitespace.Dan Gohman2009-04-301-5/+7
* Extend ScalarEvolution's getBackedgeTakenCount to be able toDan Gohman2009-04-301-65/+127
* Don't try to mix integers and pointers in an icmp instructionDan Gohman2009-04-301-12/+19
* Fix ScalarEvolution::print to print a value for any Instruction withDan Gohman2009-04-301-1/+1
* Implement getSCEVAtScope for SCEV cast expressions.Dan Gohman2009-04-291-2/+25
* Generalize the cast-of-addrec folding to handle folding of SCEVs likeDan Gohman2009-04-291-46/+33
* Include the source type in SCEV cast expression debug output, andDan Gohman2009-04-291-3/+3
* Fix recent regression in gcc.dg/pr26719.c (6835035).Dale Johannesen2009-04-291-2/+5
* Update comments to reflect the current code.Dan Gohman2009-04-291-4/+4
* Teach getZeroExtendExpr and getSignExtendExpr to use trip-countDan Gohman2009-04-271-9/+133
* Handle ands with ~0 correctly too. This fixes PR4052.Dan Gohman2009-04-271-0/+2
* Handle ands with 0 and shifts by 0 correctly. These aren'tDan Gohman2009-04-251-2/+9
* Change SCEVExpander's expandCodeFor to provide more flexibilityDan Gohman2009-04-231-3/+1
* Simplify trunc(extend(x)) in SCEVs, just for completeness. Also fix some oddNick Lewycky2009-04-231-4/+12
* Fix cut-n-pasto.Devang Patel2009-04-221-2/+2
* Simplify trivial cast-of-cast SCEVs.Dan Gohman2009-04-221-0/+12
* SCEVExpander's InsertCastOfTo knows how to move existing castDan Gohman2009-04-221-0/+5
* Use BasicBlock::iterator instead of Instruction* for insert points,Dan Gohman2009-04-221-7/+7
* De-pImpl-ify ScalarEvolution. The pImpl pattern doesn't provide muchDan Gohman2009-04-211-452/+165
* When turning (ashr(shl(x, n), n)) into sext(trunc(x)), the width of theDan Gohman2009-04-211-1/+1
* Teach ScalarEvolution how to recognize zext-inreg and sext-inreg,Dan Gohman2009-04-211-0/+27
* This FIXME is fixed, now that SCEV understands pointers.Dan Gohman2009-04-211-3/+0
* Factor out a common base class from SCEVTruncateExpr, SCEVZeroExtendExpr,Dan Gohman2009-04-211-15/+13
* Usage getAnalysisToUpdate for TargetData, per PR760.Dan Gohman2009-04-211-2/+1
* Introduce encapsulation for ScalarEvolution's TargetData object, and refactorDan Gohman2009-04-212-118/+171
* Move some assertion checks so they can do more complete checking.Dan Gohman2009-04-211-6/+8
* Convert ScalarEvolution to use raw_ostream instead of OStream.Dan Gohman2009-04-211-22/+32
* Add a ScalarEvolution::getCouldNotCompute() function, and use itDan Gohman2009-04-181-12/+21
* More const qualifiers.Dan Gohman2009-04-181-14/+14
* Use more const qualifiers with SCEV interfaces.Dan Gohman2009-04-181-12/+12
* Handle a pointer type correctly in SCEVExpander::visitAddRecExpr.Dan Gohman2009-04-161-0/+2
* Fix a bug with inttoptr/ptrtoint casts where the pointer has a differentDan Gohman2009-04-162-5/+12
* Fix SCEVExpander::visitSMaxExpr and SCEVExpander::visitUMaxExpr toDan Gohman2009-04-161-0/+8
* Teach SCEVExpander::InsertCastOfTo to avoid creating inttoptr-of-ptrtointDan Gohman2009-04-161-0/+8
* Expand GEPs in ScalarEvolution expressions. SCEV expressions can nowDan Gohman2009-04-162-134/+330
* Add a method to check that the subprogram holds debug info for the given Func...Devang Patel2009-04-151-0/+13
* use higher level APIs.Chris Lattner2009-04-031-8/+6
* getEntryFor() may invalidate DenseMap iterator.Devang Patel2009-03-301-0/+1
* now that you can put a PointerIntPair in a SmallPtrSet, remove someChris Lattner2009-03-291-17/+15