aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ScalarEvolution.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-299/+330
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-355/+484
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-436/+625
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-2/+11
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-456/+711
* Update to LLVM 3.5a.Stephen Hines2014-04-241-159/+267
* Annotate APInt methods where it's not clear whether they are in place with wa...Benjamin Kramer2013-11-161-6/+6
* add more comments around the delinearization of arraysSebastian Pop2013-11-131-12/+68
* delinearization of arraysSebastian Pop2013-11-121-0/+471
* Change data structure to memorize computed result in ScalarEvolutionWan Xiaofei2013-11-121-22/+42
* Rewrite SCEV's backedge taken count computation.Andrew Trick2013-11-061-163/+207
* SCEV: Make the final add of an inbounds GEP nuw if we know that the index is ...Benjamin Kramer2013-10-281-4/+9
* Clarify SCEV comments.Andrew Trick2013-10-221-8/+11
* Use more type helper functionsMatt Arsenault2013-10-211-1/+1
* Fix creating bitcasts between address spaces in SCEV.Matt Arsenault2013-10-211-5/+10
* Remove unused SCEV functionsMatt Arsenault2013-10-211-20/+1
* SCEV should use NSW to get trip count for positive nonunit stride loops.Andrew Trick2013-10-181-18/+21
* Minor code simplificationMatt Arsenault2013-09-271-11/+8
* Teach ScalarEvolution about pointer address spacesMatt Arsenault2013-09-101-11/+17
* Fix a severe compile time problem when forming large SCEV expressions.Andrew Trick2013-07-311-0/+3
* Stylistic change.Shuxin Yang2013-07-121-2/+2
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-111-1/+1
* Don't use a potentially expensive shift if all we want is one set bit.Benjamin Kramer2013-07-111-3/+3
* Don't crash in SE dealing with ashr x, -1Hal Finkel2013-07-091-1/+1
* Fix a SCEV update problem.Shuxin Yang2013-07-081-2/+40
* Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper2013-07-031-1/+1
* Silencing an MSVC warning about */ being found outside of a comment.Aaron Ballman2013-06-041-2/+2
* Prevent loop-unroll from making assumptions about undefined behavior.Andrew Trick2013-05-311-5/+14
* Fix ScalarEvolution::ComputeExitLimitFromCond for 'or' conditions.Andrew Trick2013-05-311-32/+54
* Fix SCEV forgetMemoizedResults should search and destroy backedge exprs.Andrew Trick2013-03-261-0/+30
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-8/+8
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-12/+13
* Follow up to 168711: It's safe to base this analysis on the found compare, ju...Benjamin Kramer2012-11-291-4/+3
* Improve isImpliedCond comment a bit.Andrew Trick2012-11-291-2/+2
* SCEV: Even if the latch terminator is foldable we can't deduce the result of ...Benjamin Kramer2012-11-271-3/+4
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-7/+8
* SCEV validator: Ignore CouldNotCompute/undef on both sides. This is mostly no...Benjamin Kramer2012-10-271-3/+6
* SCEV validator: Add workarounds for some common false positives due to the wa...Benjamin Kramer2012-10-271-0/+18
* Add a basic verifier for SCEV's backedge taken counts.Benjamin Kramer2012-10-261-0/+68
* getSmallConstantTripMultiple should never return zero.Hal Finkel2012-10-241-2/+5
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-8/+7
* Move TargetData to DataLayout.Micah Villmow2012-10-081-8/+8
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-271-2/+2
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-271-2/+2
* Release build: guard dump functions withManman Ren2012-09-121-1/+1
* Release build: guard dump functions with "ifndef NDEBUG"Manman Ren2012-09-061-0/+2
* Stay rational; don't assert trying to take the square root of a negative value.Nick Lewycky2012-08-011-0/+6
* Factor SCEV traversal code so I can use it elsewhere. No functionality.Andrew Trick2012-07-131-51/+19
* Delete code for folding undefs in ScalarEvolution. It's invalid inDan Gohman2012-07-091-14/+0
* Reduce use list thrashing by using DenseMap's find_as for maps with ValueHand...Benjamin Kramer2012-06-301-6/+8