index
:
external_llvm.git
replicant-6.0
Android's llvm
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
LoopInstSimplify preserves LoopSimplify.
Cameron Zwarich
2011-01-09
1
-0
/
+1
*
Another missed memset in std::vector initialization.
Chandler Carruth
2011-01-09
1
-0
/
+19
*
Eliminate some extra hash table lookups.
Cameron Zwarich
2011-01-09
1
-7
/
+10
*
Add an informative comment.
Cameron Zwarich
2011-01-09
1
-1
/
+9
*
Fix a cut-paste-o so that the sample code is correct for my last note.
Chandler Carruth
2011-01-09
1
-2
/
+6
*
Another missed optimization of trivial vector code.
Chandler Carruth
2011-01-09
1
-0
/
+33
*
Add a note about vector's size-constructor producing dead stores.
Chandler Carruth
2011-01-09
1
-0
/
+55
*
Simplify LiveDebugVariables by storing MachineOperand copies locations instead
Jakob Stoklund Olesen
2011-01-09
2
-169
/
+58
*
Shrink a BitVector that didn't mean to store bits for all physical registers.
Jakob Stoklund Olesen
2011-01-09
1
-6
/
+4
*
Replace TargetRegisterInfo::printReg with a PrintReg class that also works wi...
Jakob Stoklund Olesen
2011-01-09
15
-110
/
+81
*
Use IndexedMap for MachineRegisterInfo as well. No functional change.
Jakob Stoklund Olesen
2011-01-09
3
-34
/
+33
*
teach SCEV analysis of PHI nodes that PHI recurences formed
Chris Lattner
2011-01-09
2
-2
/
+45
*
reduce indentation. Print <nuw> and <nsw> when dumping SCEV AddRec's
Chris Lattner
2011-01-09
3
-53
/
+57
*
Add a note about a missed memset optimization from std::fill.
Chandler Carruth
2011-01-09
1
-0
/
+30
*
Fix the last virtual register enumerations.
Jakob Stoklund Olesen
2011-01-08
2
-7
/
+8
*
Fix VirtRegMap to use TRI::index2VirtReg and TRI::virtReg2Index instead of
Jakob Stoklund Olesen
2011-01-08
3
-20
/
+34
*
Fix a MachineVerifier loop that probably didn't mean to skip the last two
Jakob Stoklund Olesen
2011-01-08
1
-2
/
+2
*
Don't document exactly how virtual registers are represented as integers. Code
Jakob Stoklund Olesen
2011-01-08
1
-11
/
+18
*
Use an IndexedMap for LiveVariables::VirtRegInfo.
Jakob Stoklund Olesen
2011-01-08
4
-29
/
+25
*
Do not talk about TargetRegisterInfo::FirstVirtualRegister.
Jakob Stoklund Olesen
2011-01-08
1
-1
/
+1
*
Use an IndexedMap for LiveOutRegInfo to hide its dependence on TargetRegister...
Jakob Stoklund Olesen
2011-01-08
4
-12
/
+12
*
Fix coding style.
Cameron Zwarich
2011-01-08
1
-64
/
+64
*
fix a latent bug in memcpyoptimizer that my recent patches exposed: it wasn't
Chris Lattner
2011-01-08
1
-2
/
+4
*
tryMergingIntoMemset can only handle constant length memsets.
Chris Lattner
2011-01-08
1
-5
/
+6
*
Merge memsets followed by neighboring memsets and other stores into
Chris Lattner
2011-01-08
2
-3
/
+46
*
fix an issue in IsPointerOffset that prevented us from recognizing that
Chris Lattner
2011-01-08
2
-3
/
+31
*
enhance memcpyopt to merge a store and a subsequent
Chris Lattner
2011-01-08
2
-53
/
+101
*
fit in 80 cols
Chris Lattner
2011-01-08
1
-2
/
+2
*
merge two tests and filecheckify
Chris Lattner
2011-01-08
2
-103
/
+113
*
constify TargetData references.
Chris Lattner
2011-01-08
1
-86
/
+96
*
When loop rotation happens, it is *very* common for the duplicated condbr
Chris Lattner
2011-01-08
2
-32
/
+53
*
make domtree verification print something useful on failure.
Chris Lattner
2011-01-08
1
-1
/
+8
*
split ssa updating code out to its own helper function. Don't bother
Chris Lattner
2011-01-08
1
-74
/
+78
*
Implement a TODO: Enhance loopinfo to merge away the unconditional branch
Chris Lattner
2011-01-08
1
-11
/
+7
*
various code cleanups, enhance MergeBlockIntoPredecessor to preserve
Chris Lattner
2011-01-08
1
-13
/
+10
*
inline preserveCanonicalLoopForm now that it is simple.
Chris Lattner
2011-01-08
1
-39
/
+17
*
Three major changes:
Chris Lattner
2011-01-08
2
-117
/
+22
*
reduce nesting.
Chris Lattner
2011-01-08
1
-6
/
+6
*
On Windows, replace each occurrence of '\' by '\\' on the replacement string....
Francois Pichet
2011-01-08
1
-4
/
+2
*
LoopRotate requires canonical loop form, so it always has preheaders
Chris Lattner
2011-01-08
1
-15
/
+11
*
use the LI ivar.
Chris Lattner
2011-01-08
1
-3
/
+2
*
some cleanups: remove dead arguments and eliminate ivars
Chris Lattner
2011-01-08
1
-55
/
+36
*
fix an issue duncan pointed out, which could cause loop rotate
Chris Lattner
2011-01-08
1
-12
/
+16
*
Fix coding style issues.
Cameron Zwarich
2011-01-08
1
-2
/
+2
*
Make more passes preserve dominators (or state that they preserve dominators if
Cameron Zwarich
2011-01-08
5
-2
/
+49
*
First step in fixing PR8927:
Rafael Espindola
2011-01-08
12
-13
/
+98
*
Contract subloop bodies. However, it is still important to visit the phis at the
Cameron Zwarich
2011-01-08
1
-7
/
+41
*
Fix a bug in r123034 (trying to sext/zext non-integers) and clean up a little.
Frits van Bommel
2011-01-08
2
-5
/
+14
*
Have loop-rotate simplify instructions (yay instsimplify!) as it clones
Chris Lattner
2011-01-08
2
-8
/
+23
*
make this file properly self contained.
Chris Lattner
2011-01-08
1
-0
/
+2
[prev]
[next]