index
:
~nh/llvm
fold-subregs
images
latest
master
mimg
tablegen-name-resolution
wip
Misc LLVM things, mostly radeonsi (AMDGPU)
nh
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
IVUsers.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2015-10-10
Analysis: Remove implicit ilist iterator conversions
Duncan P. N. Exon Smith
1
-1
/
+1
2015-08-17
[PM] Port ScalarEvolution to the new pass manager.
Chandler Carruth
1
-3
/
+3
2015-07-13
[LSR] don't attempt to promote ephemeral values to indvars
Jingyue Wu
1
-1
/
+16
2015-03-10
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
1
-3
/
+4
2015-03-04
Make DataLayout Non-Optional in the Module
Mehdi Amini
1
-2
/
+2
2015-01-17
[PM] Split the LoopInfo object apart from the legacy pass, creating
Chandler Carruth
1
-3
/
+3
2014-11-19
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
1
-2
/
+2
2014-08-21
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
1
-2
/
+2
2014-08-18
Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi...
Craig Topper
1
-2
/
+2
2014-08-17
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
1
-2
/
+2
2014-06-21
Add back functionality removed in r210497.
Richard Trieu
1
-2
/
+4
2014-06-09
Removing an "if (!this)" check from two print methods. The condition will
Richard Trieu
1
-0
/
+1
2014-04-22
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
1
-1
/
+2
2014-04-15
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
1
-5
/
+5
2014-03-12
PR17473:
Michael Zolotukhin
1
-3
/
+21
2014-03-12
Test commit
Michael Zolotukhin
1
-0
/
+1
2014-03-09
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
1
-4
/
+3
2014-02-25
Make DataLayout a plain object, not a pass.
Rafael Espindola
1
-1
/
+2
2014-02-18
Rename some member variables from TD to DL.
Rafael Espindola
1
-3
/
+3
2014-01-13
[PM] Split DominatorTree into a concrete analysis result object which
Chandler Carruth
1
-3
/
+3
2014-01-13
[cleanup] Move the Dominators.h and Verifier.h headers into the IR
Chandler Carruth
1
-1
/
+1
2014-01-09
Put the functionality for printing a value to a raw_ostream as an
Chandler Carruth
1
-4
/
+3
2014-01-07
Move the LLVM IR asm writer header files into the IR directory, as they
Chandler Carruth
1
-1
/
+1
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
1
-5
/
+5
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
1
-6
/
+6
2012-10-08
Move TargetData to DataLayout.
Micah Villmow
1
-2
/
+2
2012-09-12
Release build: guard dump functions with
Manman Ren
1
-1
/
+1
2012-09-06
Release build: guard dump functions with "ifndef NDEBUG"
Manman Ren
1
-0
/
+2
2012-07-13
IVUsers should only generate SCEV's for values that are safe to speculate.
Andrew Trick
1
-0
/
+7
2012-03-22
Cleanup IVUsers::addUsersIfInteresting.
Andrew Trick
1
-12
/
+15
2012-03-20
LSR: teach isSimplifiedLoopNest to handle PHI IVUsers.
Andrew Trick
1
-1
/
+8
2012-03-20
LSR: fix IVUsers isSimplifiedLoopNest to perform a full domtree walk
Andrew Trick
1
-19
/
+23
2012-03-16
LSR fix: Add isSimplifiedLoopNest to IVUsers analysis.
Andrew Trick
1
-5
/
+41
2012-01-06
Put all IVUsers in the processed set. Allow querying IVUsers with isIVUserOrO...
Andrew Trick
1
-3
/
+6
2011-10-13
Slightly more useful tracing.
Andrew Trick
1
-1
/
+2
2011-07-01
Teach IVUsers to stop at non-affine expressions unless they are both
Dan Gohman
1
-7
/
+10
2011-06-28
indvars --disable-iv-rewrite: sever ties with IVUsers.
Andrew Trick
1
-15
/
+0
2011-06-21
IVUsers no longer needs to record the phis.
Andrew Trick
1
-8
/
+7
2011-05-27
Update this comment.
Dan Gohman
1
-1
/
+3
2011-05-20
indvars: Prototyping Sign/ZeroExtend elimination without canonical IVs.
Andrew Trick
1
-7
/
+7
2011-05-04
indvars: Added DisableIVRewrite and WidenIVs.
Andrew Trick
1
-0
/
+15
2011-03-18
Avoid creating canonical induction variables for non-native types.
Andrew Trick
1
-1
/
+6
2011-01-02
split dom frontier handling stuff out to its own DominanceFrontier header,
Chris Lattner
1
-0
/
+1
2010-10-19
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
1
-1
/
+2
2010-10-12
Begin adding static dependence information to passes, which will allow us to
Owen Anderson
1
-1
/
+7
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
1
-1
/
+1
2010-09-02
stop forcing a noop AssemblyAnnotationWriter to silence #uses
Chris Lattner
1
-5
/
+1
2010-09-01
Revert 112442 and 112440 until the compile time problems introduced
Dan Gohman
1
-89
/
+78
2010-08-29
Make IVUsers iterative instead of recursive.
Dan Gohman
1
-78
/
+89
2010-08-17
Tweak IVUsers' concept of "interesting" to exclude add recurrences
Dan Gohman
1
-12
/
+16
[next]