- Aug 30, 2010
-
-
Michael J. Spencer authored
llvm-svn: 112483
-
- Aug 19, 2010
-
-
Chris Lattner authored
which I broke with a recent patch. llvm-svn: 111452
-
- Aug 18, 2010
-
-
Chris Lattner authored
llvm-svn: 111354
-
Chris Lattner authored
gep P, (zext x) != gep P, (sext x) DecomposeGEPExpression was getting this wrong, confusing basicaa. llvm-svn: 111352
-
Chris Lattner authored
llvm-svn: 111350
-
- Aug 11, 2010
-
-
Dan Gohman authored
make any assumptions about when the two conditions will agree on when to permit the loop to exit. This fixes PR7845. llvm-svn: 110758
-
- Aug 10, 2010
-
-
Tobias Grosser authored
llvm-svn: 110665
-
- Aug 06, 2010
-
-
Dan Gohman authored
llvm-svn: 110458
-
Dan Gohman authored
of BasicAA::getModRefInfo. This allows BasicAA to say that two memset calls to non-aliasing memory locations don't interfere. llvm-svn: 110393
-
Dan Gohman authored
response from getModRefInfo is not useful here. Instead, check for identical calls only in the NoModRef case. Reapply r110270, and strengthen it to compensate for the memdep changes. When both calls are readonly, there is no dependence between them. llvm-svn: 110382
-
- Aug 05, 2010
-
-
Dan Gohman authored
llvm-svn: 110293
-
Dan Gohman authored
one is a suffix of the other, and FileCheck accepts superstrings. Adjust the output to avoid this problem. llvm-svn: 110280
-
Dan Gohman authored
to return Ref if the left callsite only reads memory read or written by the right callsite; fix BasicAliasAnalysis to implement this. Add AliasAnalysisEvaluator support for testing the two-callsite form of getModRefInfo. llvm-svn: 110270
-
- Jul 22, 2010
-
-
Tobias Grosser authored
The RegionInfo pass detects single entry single exit regions in a function, where a region is defined as any subgraph that is connected to the remaining graph at only two spots. Furthermore an hierarchical region tree is built. Use it by calling "opt -regions analyze" or "opt -view-regions". llvm-svn: 109089
-
- Jul 07, 2010
-
-
Dan Gohman authored
interface needs implementations to be consistent, so any code which wants to support different semantics must use a different interface. It's not currently worthwhile to add a new interface for this new concept. Document that AliasAnalysis doesn't support cross-function queries. llvm-svn: 107776
-
- Jul 01, 2010
-
-
Dan Gohman authored
make it more aggressive in cases where both pointers are known to live in the same function. llvm-svn: 107420
-
- Jun 30, 2010
-
-
Dan Gohman authored
nsw and nuw flags from IR Instructions. On further consideration, this isn't valid. llvm-svn: 107298
-
Dan Gohman authored
llvm-svn: 107258
-
- Jun 29, 2010
-
-
Dan Gohman authored
llvm-svn: 107177
-
Dan Gohman authored
properly handles instructions and arguments defined in different functions, or across recursive function iterations. llvm-svn: 107109
-
- Jun 28, 2010
-
-
Dan Gohman authored
code in unreachable blocks, which have have use-def cycles. This fixes PR7514. llvm-svn: 107071
-
- Jun 22, 2010
-
-
Dan Gohman authored
constant operands. llvm-svn: 106537
-
- Jun 19, 2010
-
-
Dan Gohman authored
assuming that loops are in canonical form, as ScalarEvolution doesn't depend on LoopSimplify itself. Also, with indirectbr not all loops can be simplified. This fixes PR7416. llvm-svn: 106389
-
- Jun 18, 2010
-
-
Dan Gohman authored
optimizations. There is still some nondeterminism remaining. llvm-svn: 106306
-
Dan Gohman authored
llvm-svn: 106304
-
- Jun 09, 2010
-
-
Daniel Dunbar authored
green. Dan, please revert this once the real problem is fixed. llvm-svn: 105732
-
- Jun 07, 2010
-
-
Dan Gohman authored
scrounging through SCEVUnknown contents and SCEVNAryExpr operands; instead just do a simple deterministic comparison of the precomputed hash data. Also, since this is more precise, it eliminates the need for the slow N^2 duplicate detection code. llvm-svn: 105540
-
- Apr 26, 2010
-
-
Dan Gohman authored
llvm-svn: 102387
-
- Apr 24, 2010
-
-
Dan Gohman authored
Also, generalize ScalarEvolutions's min and max recognition to handle some new forms of min and max that this change makes more common. llvm-svn: 102234
-
- Apr 23, 2010
-
-
Chris Lattner authored
llvm-svn: 102197
-
- Apr 22, 2010
-
-
Dan Gohman authored
assertion failures in extreme cases. llvm-svn: 102042
-
- Apr 12, 2010
-
-
Dan Gohman authored
have preheaders or dedicated exit blocks, as clients may not otherwise need to run LoopSimplify. llvm-svn: 101030
-
- Apr 08, 2010
-
-
Dan Gohman authored
llvm-svn: 100789
-
Chris Lattner authored
llvm-svn: 100705
-
- Apr 04, 2010
-
-
Mon P Wang authored
Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset, e.g., llvm.memcpy.i32(i8*, i8*, i32, i32) -> llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) llvm-svn: 100304
-
- Apr 02, 2010
-
-
Mon P Wang authored
llvm-svn: 100199
-
Mon P Wang authored
Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset, e.g., llvm.memcpy.i32(i8*, i8*, i32, i32) -> llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) llvm-svn: 100191
-
- Mar 31, 2010
-
-
Bob Wilson authored
llvm-svn: 99948
-
- Mar 30, 2010
-
-
Mon P Wang authored
e.g., llvm.memcpy.i32(i8*, i8*, i32, i32) -> llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) A update of langref will occur in a subsequent checkin. llvm-svn: 99928
-
- Mar 10, 2010
-
-
Dan Gohman authored
They are lots of trouble, and they don't matter. This fixes PR6559. llvm-svn: 98103
-