| Commit message (Expand) | Author | Age | Files | Lines |
* | Introduce a symbolic constant for ~0u for use with AliasAnalysis. | Dan Gohman | 2010-08-03 | 1 | -7/+8 |
* | Add INSTANTIATE_AG_PASS, which combines RegisterPass<> with RegisterAnalysisG... | Owen Anderson | 2010-07-21 | 1 | -10/+6 |
* | Speculatively revert r108813, in an attempt to get the self-host buildbots wo... | Owen Anderson | 2010-07-20 | 1 | -2/+2 |
* | Reapply r108794, a fix for the failing test from last time. | Owen Anderson | 2010-07-20 | 1 | -2/+2 |
* | Revert r108794, "Separate PassInfo into two classes: a constructor-free | Daniel Dunbar | 2010-07-20 | 1 | -2/+2 |
* | Separate PassInfo into two classes: a constructor-free superclass (StaticPass... | Owen Anderson | 2010-07-20 | 1 | -2/+2 |
* | Minore code simplification. | Dan Gohman | 2010-07-07 | 1 | -17/+15 |
* | Remove interprocedural-basic-aa and associated code. The AliasAnalysis | Dan Gohman | 2010-07-07 | 1 | -77/+14 |
* | Remove context sensitivity concerns from interprocedural-basic-aa, and | Dan Gohman | 2010-07-01 | 1 | -35/+55 |
* | Fix whitespace style. | Dan Gohman | 2010-06-29 | 1 | -2/+2 |
* | Use a more obvious way to avoid compiling functions which are only used when ... | Benjamin Kramer | 2010-06-29 | 1 | -3/+2 |
* | Jump through some silly hoops to make GCC accept that a function may not always | Chandler Carruth | 2010-06-29 | 1 | -0/+3 |
* | Add an Intraprocedural form of BasicAliasAnalysis, which aims to | Dan Gohman | 2010-06-29 | 1 | -28/+110 |
* | Fix Value::stripPointerCasts and BasicAA to avoid trouble on | Dan Gohman | 2010-06-28 | 1 | -9/+29 |
* | use ArgOperand accessors | Gabor Greif | 2010-06-23 | 1 | -11/+11 |
* | Revert 101465, it broke internal OpenGL testing. | Eric Christopher | 2010-04-16 | 1 | -11/+11 |
* | reapply r101434 | Gabor Greif | 2010-04-16 | 1 | -11/+11 |
* | back out r101423 and r101397, they break llvm-gcc self-host on darwin10 | Gabor Greif | 2010-04-16 | 1 | -11/+11 |
* | reapply r101364, which has been backed out in r101368 | Gabor Greif | 2010-04-15 | 1 | -11/+11 |
* | back out r101364, as it trips the linux nightlybot on some clang C++ tests | Gabor Greif | 2010-04-15 | 1 | -11/+11 |
* | rotate CallInst operands, i.e. move callee to the back | Gabor Greif | 2010-04-15 | 1 | -11/+11 |
* | Pointers to zero-sized objects don't point to overlapping objects. | Dan Gohman | 2010-04-08 | 1 | -0/+5 |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -2/+2 |
* | add some new methods to adjust this pointers. Not used yet. | Chris Lattner | 2010-01-20 | 1 | -0/+20 |
* | move DecomposeGEPExpression out into ValueTracking.cpp | Chris Lattner | 2009-11-26 | 1 | -158/+1 |
* | teach GetLinearExpression to be a bit more aggressive. | Chris Lattner | 2009-11-26 | 1 | -1/+10 |
* | resolve a fixme. I haven't figured out how to write a testcase | Chris Lattner | 2009-11-26 | 1 | -5/+4 |
* | Teach basicaa that x|c == x+c when the c bits of x are clear. This | Chris Lattner | 2009-11-26 | 1 | -5/+13 |
* | teach basicaa that A[i] != A[i+1]. | Chris Lattner | 2009-11-26 | 1 | -0/+32 |
* | Change the other half of aliasGEP (which handles GEP differencing) to use Dec... | Chris Lattner | 2009-11-26 | 1 | -466/+108 |
* | Generalize DecomposeGEPExpression to exactly handle what Value::getUnderlying... | Chris Lattner | 2009-11-26 | 1 | -30/+62 |
* | Implement a new DecomposeGEPExpression method, which decomposes a GEP into a ... | Chris Lattner | 2009-11-26 | 1 | -40/+121 |
* | Use GEPOperator more pervasively to simplify code. | Chris Lattner | 2009-11-26 | 1 | -29/+27 |
* | fix comment, thanks all :) | Chris Lattner | 2009-11-23 | 1 | -1/+3 |
* | use the new isNoAlias method to simplify some code, only do an escaping check... | Chris Lattner | 2009-11-23 | 1 | -10/+13 |
* | whitespace cleanup, tidying | Chris Lattner | 2009-11-23 | 1 | -16/+17 |
* | speed up BasicAA a bit by implementing a long-standing TODO. | Chris Lattner | 2009-11-23 | 1 | -9/+20 |
* | add fixme for dubious code. Duncan, what do you think? | Chris Lattner | 2009-11-22 | 1 | -0/+1 |
* | remove a silly condition that doesn't make a lot of sense anymore. | Chris Lattner | 2009-11-22 | 1 | -5/+0 |
* | reduce indentation, no functionality change. | Chris Lattner | 2009-11-22 | 1 | -85/+91 |
* | Remove the AliasAnalysis::getMustAliases method, which is dead. | Chris Lattner | 2009-11-22 | 1 | -6/+0 |
* | Extend CaptureTracking to indicate when a value is never stored, even | Dan Gohman | 2009-11-19 | 1 | -10/+19 |
* | Teach BasicAA that a constant expression can't alias memory provably not | Nick Lewycky | 2009-11-14 | 1 | -1/+6 |
* | Default-addressspace null pointers don't alias anything. This allows | Dan Gohman | 2009-11-09 | 1 | -0/+9 |
* | remove a bunch of extraneous LLVMContext arguments | Chris Lattner | 2009-11-06 | 1 | -22/+18 |
* | Rename MallocFreeHelper as MemoryBuiltins | Victor Hernandez | 2009-10-27 | 1 | -1/+1 |
* | Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t... | Victor Hernandez | 2009-10-26 | 1 | -1/+1 |
* | Teach BasicAA how to analyze Select instructions, and make it more | Dan Gohman | 2009-10-26 | 1 | -2/+76 |
* | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky | 2009-10-25 | 1 | -1/+0 |
* | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 2009-10-25 | 1 | -2/+2 |