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
/
Analysis
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move llvm/Support/TypeBuilder.h -> llvm/TypeBuilder.h. This completes
Chandler Carruth
2012-07-15
1
-1
/
+1
*
LSR Fix: check SCEV expression safety before expansion.
Andrew Trick
2012-07-13
1
-0
/
+41
*
IVUsers should only generate SCEV's for values that are safe to speculate.
Andrew Trick
2012-07-13
1
-0
/
+7
*
Factor SCEV traversal code so I can use it elsewhere. No functionality.
Andrew Trick
2012-07-13
1
-51
/
+19
*
Delete code for folding undefs in ScalarEvolution. It's invalid in
Dan Gohman
2012-07-09
1
-14
/
+0
*
PHINode::hasConstantValue(): return undef if the PHI is fully recursive.
Nuno Lopes
2012-07-03
1
-1
/
+1
*
fold PHI nodes in SizeOffsetEvaluator whenever possible.
Nuno Lopes
2012-07-03
1
-1
/
+13
*
Reduce use list thrashing by using DenseMap's find_as for maps with ValueHand...
Benjamin Kramer
2012-06-30
2
-9
/
+11
*
RefreshCallGraph: ignore 'invoke intrinsic'. IntrinsicInst doesnt not recogni...
Nuno Lopes
2012-06-29
1
-1
/
+3
*
Update the CMake files.
Bill Wendling
2012-06-29
1
-1
/
+0
*
The DIBuilder class is just a wrapper around debug info creation
Bill Wendling
2012-06-29
1
-1018
/
+0
*
If the step value is a constant zero, the loop isn't going to terminate. Fixes
Nick Lewycky
2012-06-28
1
-1
/
+1
*
MemoryBuiltins:
Nuno Lopes
2012-06-28
1
-14
/
+37
*
make LazyValueInfo analyze the default case of switch statements (we know tha...
Nuno Lopes
2012-06-28
1
-16
/
+15
*
make LVI::getEdgeValue() always intersect the constraints of the edge with th...
Nuno Lopes
2012-06-28
1
-36
/
+53
*
Fix cmake failure from moving files around.
Bill Wendling
2012-06-28
1
-1
/
+0
*
Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp and
Bill Wendling
2012-06-28
4
-1188
/
+6
*
Reduce indentation in function. Rearrange some methods. No functionality change.
Bill Wendling
2012-06-26
1
-223
/
+222
*
Revamp how debugging information is emitted for debug info objects.
Bill Wendling
2012-06-26
1
-134
/
+84
*
Enable the new LoopInfo algorithm by default.
Andrew Trick
2012-06-26
2
-11
/
+8
*
Remove unnecessary FIXME
Andrew Trick
2012-06-26
1
-3
/
+0
*
check for the NoAlias attribute through CallSite
Nuno Lopes
2012-06-25
1
-2
/
+2
*
llvm/lib: [CMake] Add explicit dependency to intrinsics_gen.
NAKAMURA Takumi
2012-06-24
2
-0
/
+4
*
simplify code from previous commits (Thanks Duncan)
Nuno Lopes
2012-06-22
1
-7
/
+2
*
remove extractMallocCallFromBitCast, since it was tailor maded for its sole u...
Nuno Lopes
2012-06-22
1
-8
/
+1
*
Add support for invoke to the MemoryBuiltin analysid.
Nuno Lopes
2012-06-21
1
-15
/
+22
*
fix build in C++11 mode.
Nuno Lopes
2012-06-21
1
-7
/
+7
*
hopefully fix the buildbots: some tests have wrong definitions of malloc and...
Nuno Lopes
2012-06-21
1
-3
/
+5
*
refactor the MemoryBuiltin analysis:
Nuno Lopes
2012-06-21
4
-145
/
+533
*
A new algorithm for computing LoopInfo. Temporarily disabled.
Andrew Trick
2012-06-20
1
-1
/
+8
*
Move the implementation of LoopInfo into LoopInfoImpl.h.
Andrew Trick
2012-06-20
1
-0
/
+5
*
Round 2 of dead private variable removal.
Benjamin Kramer
2012-06-06
2
-5
/
+3
*
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-06-02
3
-3
/
+3
*
Add support for enum forward declarations.
Eric Christopher
2012-06-01
1
-2
/
+2
*
Make sure that we're dealing with a binary SCEVExpr when simplifying.
Benjamin Kramer
2012-05-30
1
-1
/
+2
*
Teach SCEV's icmp simplification logic that a-b == 0 is equivalent to a == b.
Benjamin Kramer
2012-05-30
1
-1
/
+20
*
SCEV: Handle a corner case reducing AddRecExpr * AddRecExpr
Andrew Trick
2012-05-30
1
-1
/
+4
*
Reformat the loop that does AddRecExpr * AddRecExpr reduction.
Andrew Trick
2012-05-30
1
-55
/
+56
*
Mark some static arrays as const.
Craig Topper
2012-05-24
1
-2
/
+2
*
Add support for C++11 enum classes in llvm.
Eric Christopher
2012-05-23
1
-2
/
+3
*
LSR fix: add a missing phi check during IV hoisting.
Andrew Trick
2012-05-22
1
-1
/
+2
*
Actually support DW_TAG_rvalue_reference_type that we were trying
Eric Christopher
2012-05-19
2
-9
/
+14
*
SCEV: Add MarkPendingLoopPredicates to avoid recursive isImpliedCond.
Andrew Trick
2012-05-19
1
-0
/
+24
*
allow LazyValueInfo::getEdgeValue() to reason about multiple edges from the s...
Nuno Lopes
2012-05-18
1
-11
/
+6
*
Clarify comment.
Eric Christopher
2012-05-18
1
-1
/
+1
*
minor simplification in the call to ConstantRange constructor
Nuno Lopes
2012-05-17
1
-1
/
+1
*
Remove extraneous ';'.
Bill Wendling
2012-05-17
1
-1
/
+1
*
reuse the result of some expensive computations in getSignExtendExpr() and ge...
Nuno Lopes
2012-05-15
1
-18
/
+20
*
minor simplification to code: Ty is already a SCEV type; don't need to run ge...
Nuno Lopes
2012-05-15
1
-6
/
+3
*
Move the capture analysis from MemoryDependencyAnalysis to a more general place
Chad Rosier
2012-05-14
2
-85
/
+88
[next]