index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert r186316 while I track down an ASan failure and an assert from
Chandler Carruth
2013-07-15
1
-972
/
+1255
*
Reimplement SROA yet again. Same fundamental principle, but a totally
Chandler Carruth
2013-07-15
1
-1255
/
+972
*
Add 'const' qualifier to some arrays.
Craig Topper
2013-07-15
1
-1
/
+1
*
Use llvm::array_lengthof to replace sizeof(array)/sizeof(array[0]).
Craig Topper
2013-07-15
1
-1
/
+2
*
SLPVectorizer: change the order in which we search for vectorization candidat...
Nadav Rotem
2013-07-14
1
-4
/
+4
*
Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...
Craig Topper
2013-07-14
9
-52
/
+57
*
LoopVectorizer: Disallow reductions whose header phi is used outside the loop
Arnold Schwaighofer
2013-07-13
1
-2
/
+6
*
LoopVectorize fix: LoopInfo must be valid when invoking utils like SCEVExpander.
Andrew Trick
2013-07-13
1
-18
/
+18
*
Add a microoptimization for urem.
Nick Lewycky
2013-07-13
1
-0
/
+7
*
Fix a crash in EvaluateInDifferentElementOrder where it would generate an
Joey Gouly
2013-07-12
1
-1
/
+3
*
LFTR improvement to avoid truncation.
Andrew Trick
2013-07-12
1
-6
/
+32
*
Cleanup LFTR logic.
Andrew Trick
2013-07-12
1
-28
/
+9
*
Cleanup: rename a variable to make the logic easier to follow.
Andrew Trick
2013-07-12
1
-7
/
+7
*
TargetTransformInfo: address calculation parameter for gather/scather
Arnold Schwaighofer
2013-07-12
1
-1
/
+56
*
Revert "indvars: Improve LFTR by eliminating truncation when comparing
Chandler Carruth
2013-07-12
1
-23
/
+4
*
SLPVectorizer: Sink and enable CSE for ExtractElements.
Nadav Rotem
2013-07-12
1
-11
/
+25
*
SLPVectorize: Replace the code that checks for vectorization candidates in su...
Nadav Rotem
2013-07-12
1
-25
/
+22
*
Remove an argument that we dont use anymore.
Nadav Rotem
2013-07-11
1
-15
/
+12
*
indvars: Improve LFTR by eliminating truncation when comparing against a cons...
Andrew Trick
2013-07-11
1
-4
/
+23
*
Don't use a potentially expensive shift if all we want is one set bit.
Benjamin Kramer
2013-07-11
2
-2
/
+2
*
LoopVectorize: Vectorize all accesses in address space zero with unit stride
Arnold Schwaighofer
2013-07-11
1
-8
/
+16
*
TryToSimplifyUncondBranchFromEmptyBlock was checking that any common
Duncan Sands
2013-07-11
1
-23
/
+147
*
Fix a warning.
Nadav Rotem
2013-07-11
1
-2
/
+1
*
SLPVectorizer: refactor the code that places extracts. Place the code that de...
Nadav Rotem
2013-07-11
1
-41
/
+131
*
Teach TailRecursionElimination to handle certain cases of nocapture escaping ...
Michael Gottesman
2013-07-11
1
-64
/
+85
*
[objc-arc] Changed 'mode: c++' => 'C++' at Nick Lewycky's suggestion. Also re...
Michael Gottesman
2013-07-10
7
-7
/
+7
*
Implement categories for special case lists.
Peter Collingbourne
2013-07-09
2
-27
/
+93
*
Introduce a SpecialCaseList ctor which takes a MemoryBuffer to make
Peter Collingbourne
2013-07-09
1
-1
/
+9
*
Rename BlackList class to SpecialCaseList and move it to Transforms/Utils.
Peter Collingbourne
2013-07-09
6
-21
/
+21
*
Fix PR16571, which is a bug in the code that checks that all of the types in ...
Nadav Rotem
2013-07-09
1
-1
/
+3
*
Set the default insert point to the first instruction, and not to end()
Nadav Rotem
2013-07-09
1
-1
/
+1
*
InstCombine: Fix typo in comment for visitICmpInstWithInstAndIntCst
David Majnemer
2013-07-09
1
-2
/
+2
*
InstCombine: variations on 0xffffffff - x >= 4
David Majnemer
2013-07-09
1
-0
/
+12
*
InstCombine: X & -C != -C -> X <= u ~C
David Majnemer
2013-07-09
1
-0
/
+9
*
Commit r185909 was a misapplied patch, fix it
David Majnemer
2013-07-09
1
-21
/
+13
*
InstCombine: add more transforms
David Majnemer
2013-07-09
1
-0
/
+42
*
Fix comment
Eli Bendersky
2013-07-08
1
-3
/
+2
*
This patch changes the saved IRBuilder insert point from BasicBlock::iterator...
Nadav Rotem
2013-07-08
1
-1
/
+2
*
[objc-arc] Fix assertion in EraseInstruction so that noop on null calls when ...
Michael Gottesman
2013-07-08
1
-1
/
+3
*
InstCombine: Fold X-C1 <u 2 -> (X & -2) == C1
David Majnemer
2013-07-08
1
-0
/
+8
*
Clear the builder insert point between tree-vectorization phases.
Nadav Rotem
2013-07-07
1
-0
/
+1
*
SLPVectorizer: Implement DCE as part of vectorization.
Nadav Rotem
2013-07-07
1
-1011
/
+1041
*
[objc-arc] Remove the alias analysis part of r185764.
Michael Gottesman
2013-07-07
1
-8
/
+0
*
[objc-arc] Teach the ARC optimizer that objc_sync_enter/objc_sync_exit do not...
Michael Gottesman
2013-07-07
2
-0
/
+10
*
[objc-arc] When we initialize ARCRuntimeEntryPoints, make sure we reset all r...
Michael Gottesman
2013-07-06
1
-0
/
+9
*
Reassociate: Remove unnecessary default operator=.
Benjamin Kramer
2013-07-06
1
-10
/
+0
*
[objc-arc] Performed some small cleanups in ARCRuntimeEntryPoints and added a...
Michael Gottesman
2013-07-06
1
-3
/
+5
*
[objc-arc] Renamed Module => TheModule in ARCRuntimeEntryPoints. Also did som...
Michael Gottesman
2013-07-06
1
-17
/
+14
*
Removed trailing whitespace.
Michael Gottesman
2013-07-06
1
-2
/
+2
*
[objc-arc] Updated ObjCARCContract to use ARCRuntimeEntryPoints.
Michael Gottesman
2013-07-06
1
-99
/
+11
[next]