index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Analysis
/
ScalarEvolution.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[ScalarEvolution] Refactor forgetLoop() to improve performance
Marcello Maggioni
2017-09-11
1
-40
/
+45
*
[SCEV] Ensure ScalarEvolution::createAddRecFromPHIWithCastsImpl properly hand...
Daniel Neilson
2017-09-05
1
-15
/
+59
*
[SCEV] Add URem support to SCEV
Alexandre Isoard
2017-09-01
1
-0
/
+31
*
[Analysis] Fix some Clang-tidy modernize and Include What You Use warnings; ...
Eugene Zelenko
2017-08-18
1
-82
/
+105
*
[SCEV] Preserve NSW information for sext(subtract).
Amara Emerson
2017-08-04
1
-3
/
+29
*
[SCEV] Re-enable "Cache results of computeExitLimit"
Max Kazantsev
2017-08-03
1
-2
/
+37
*
[SCEV/IndVars] Always compute loop exiting values if the backedge count is 0
Sanjoy Das
2017-08-01
1
-0
/
+19
*
[SCEV] Change an early exit to an assert; NFC
Sanjoy Das
2017-07-29
1
-2
/
+2
*
[SCEV] Do not visit nodes twice in containsConstantSomewhere
Max Kazantsev
2017-07-28
1
-13
/
+20
*
Revert "[SCEV] Cache results of computeExitLimit"
Sanjoy Das
2017-07-28
1
-21
/
+0
*
[SCEV] Cache results of computeExitLimit
Max Kazantsev
2017-07-26
1
-0
/
+21
*
[SCEV] Remove unnecessary call to forgetMemoizedResults
Sanjoy Das
2017-07-26
1
-3
/
+0
*
[SCEV] Limit max size of AddRecExpr during evolving
Max Kazantsev
2017-07-23
1
-0
/
+11
*
PSCEV] Create AddRec for Phis in cases of possible integer overflow,
Dorit Nuzman
2017-07-18
1
-13
/
+372
*
[Constants] Replace calls to ConstantInt::equalsInt(0)/equalsInt(1) with isZe...
Craig Topper
2017-07-06
1
-3
/
+3
*
[Constants] If we already have a ConstantInt*, prefer to use isZero/isOne/isM...
Craig Topper
2017-07-06
1
-7
/
+7
*
[SCEV] Use depth limit instead of local cache for SExt and ZExt
Max Kazantsev
2017-06-30
1
-124
/
+119
*
Reverting r306695 while investigating failing test case.
Alexandre Isoard
2017-06-29
1
-26
/
+0
*
ScalarEvolution: Add URem support
Alexandre Isoard
2017-06-29
1
-0
/
+26
*
[SCEV] Avoid copying ConstantRange just to get the min/max value
Craig Topper
2017-06-24
1
-67
/
+62
*
[SCEV] Make MulOpsInlineThreshold lower to avoid excessive compilation time
Max Kazantsev
2017-06-21
1
-1
/
+1
*
[SCEV][NFC] Fix a misleading description of AddOpsInlineThreshold
Max Kazantsev
2017-06-20
1
-1
/
+1
*
[ScalarEvolution] Apply Depth limit to getMulExpr
Max Kazantsev
2017-06-15
1
-53
/
+76
*
[InstSimplify] Don't constant fold or DCE calls that are marked nobuiltin
Andrew Kaylor
2017-06-09
1
-1
/
+1
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-1
/
+1
*
Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC.
Galina Kistanova
2017-05-31
1
-0
/
+4
*
[SCEV][NFC] Remove redundant params from isAvailableAtLoopEntry
Max Kazantsev
2017-05-30
1
-4
/
+3
*
[SCEV] Assume parameters coming from function calls contain IVs
Tobias Grosser
2017-05-27
1
-1
/
+4
*
Re-enable "[SCEV] Do not fold dominated SCEVUnknown into AddRecExpr start"
Max Kazantsev
2017-05-26
1
-2
/
+59
*
[ValueTracking] Convert most of the calls to computeKnownBits to use the vers...
Craig Topper
2017-05-24
1
-6
/
+2
*
Revert "[SCEV] Do not fold dominated SCEVUnknown into AddRecExpr start"
Diana Picus
2017-05-24
1
-59
/
+2
*
[SCEV] Do not fold dominated SCEVUnknown into AddRecExpr start
Max Kazantsev
2017-05-24
1
-2
/
+59
*
[SCEV] Clarify behavior around max backedge taken count
Sanjoy Das
2017-05-22
1
-10
/
+37
*
Revert "[SCEV] Clarify behavior around max backedge taken count"
Sanjoy Das
2017-05-21
1
-37
/
+10
*
[SCEV] Clarify behavior around max backedge taken count
Sanjoy Das
2017-05-21
1
-10
/
+37
*
[SCEV][NFC] Remove duplication of isLoopInvariant code
Max Kazantsev
2017-05-18
1
-2
/
+2
*
[SCEV] Always sort AddRecExprs from different loops by dominance
Max Kazantsev
2017-05-17
1
-7
/
+7
*
[SCEV][NFC] Replace redundant dyn_cast with cast in getAddExpr
Max Kazantsev
2017-05-17
1
-14
/
+15
*
[SCEV] Fix sorting order for AddRecExprs
Max Kazantsev
2017-05-16
1
-16
/
+31
*
[SCEV] Use copy initialization of APInts instead of direct initialization.
Craig Topper
2017-05-15
1
-6
/
+6
*
[ValueTracking] Replace all uses of ComputeSignBit with computeKnownBits.
Craig Topper
2017-05-15
1
-5
/
+4
*
Move some code into ScalarEvolution.cpp; NFC
Sanjoy Das
2017-05-15
1
-0
/
+24
*
[KnownBits] Add bit counting methods to KnownBits struct and use them where p...
Craig Topper
2017-05-12
1
-1
/
+1
*
[SCEV] Reduce possible APInt allocations a bit.
Craig Topper
2017-05-11
1
-7
/
+11
*
[SCEV] Remove unneeded 'using namespace APIntOps'.
Craig Topper
2017-05-11
1
-37
/
+34
*
[SCEV] Don't use std::move on both inputs to APInt::operator+ or operator-. I...
Craig Topper
2017-05-08
1
-4
/
+4
*
[SCEV] Use APInt::operator*=(uint64_t) to avoid a temporary APInt for a const...
Craig Topper
2017-05-08
1
-2
/
+1
*
[SCEV] Have getRangeForAffineARHelper take StartRange by const reference to a...
Craig Topper
2017-05-08
1
-1
/
+1
*
[SCEV] Use move semantics in ScalarEvolution::setRange
Craig Topper
2017-05-07
1
-3
/
+3
*
Remove unnecessary const_cast
Sanjoy Das
2017-05-07
1
-7
/
+4
[next]