| Commit message (Expand) | Author | Age | Files | Lines |
* | SCCCaptured is trivially false on entry to this loop and not modified inside it. | Nick Lewycky | 2012-01-05 | 1 | -1/+1 |
* | Change CaptureTracking to pass a Use* instead of a Value* when a value is | Nick Lewycky | 2011-12-28 | 1 | -5/+222 |
* | Revert a bit of r137667; the logic in question can safely handle atomic load/... | Eli Friedman | 2011-08-16 | 1 | -4/+4 |
* | Update inter-procedural optimizations for atomic load/store. | Eli Friedman | 2011-08-15 | 1 | -2/+2 |
* | Add helper functions for computing the Location of load, store, | Dan Gohman | 2010-11-11 | 1 | -10/+3 |
* | Add a doesAccessArgPointees helper function, and update code to use | Dan Gohman | 2010-11-10 | 1 | -1/+1 |
* | Factor out the code for testing whether a function accesses | Dan Gohman | 2010-11-10 | 1 | -3/+2 |
* | Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis | Dan Gohman | 2010-11-10 | 1 | -44/+31 |
* | Teach FunctionAttrs about the VAArg instruction. | Dan Gohman | 2010-11-09 | 1 | -0/+7 |
* | Use the AliasAnalysis interface to determine how a Function accesses | Dan Gohman | 2010-11-09 | 1 | -2/+3 |
* | Teach FunctionAttrs about AccessesArgumentsReadonly. | Dan Gohman | 2010-11-09 | 1 | -0/+19 |
* | Fix a thinko that Duncan spotted. | Dan Gohman | 2010-11-08 | 1 | -1/+1 |
* | Make FunctionAttrs TBAA-aware. | Dan Gohman | 2010-11-08 | 1 | -12/+24 |
* | Extend the AliasAnalysis::pointsToConstantMemory interface to allow it | Dan Gohman | 2010-11-08 | 1 | -52/+5 |
* | Make FunctionAttrs use AliasAnalysis::getModRefBehavior, now that it | Dan Gohman | 2010-11-08 | 1 | -18/+33 |
* | Rename PointsToLocalMemory to PointsToLocalOrConstantMemory to make | Duncan Sands | 2010-11-03 | 1 | -8/+11 |
* | Now that the MallocInst no longer exists, this workaround for | Duncan Sands | 2010-10-30 | 1 | -5/+0 |
* | If a function does a volatile load from a global constant, do not | Duncan Sands | 2010-10-30 | 1 | -4/+4 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | CallGraphSCC passes implicity require CallGraph analysis. | Owen Anderson | 2010-10-13 | 1 | -1/+4 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -1/+1 |
* | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman | 2010-08-03 | 1 | -1/+1 |
* | simplify by using CallSite constructors; virtually eliminates CallSite::get f... | Gabor Greif | 2010-07-28 | 1 | -2/+2 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -2/+2 |
* | introduce a new CallGraphSCC class, and pass it around | Chris Lattner | 2010-04-16 | 1 | -22/+22 |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -4/+4 |
* | Be less stingy as to how many selects and phi nodes we | Duncan Sands | 2010-01-07 | 1 | -2/+2 |
* | Fix a README item: have functionattrs look through selects and | Duncan Sands | 2010-01-06 | 1 | -10/+41 |
* | Partially address a README by having functionattrs consider calls to | Duncan Sands | 2010-01-06 | 1 | -0/+15 |
* | Extend CaptureTracking to indicate when a value is never stored, even | Dan Gohman | 2009-11-19 | 1 | -2/+2 |
* | 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 |
* | 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 | -1/+1 |
* | Malloc calls are marked NoAlias, so the code below the isMalloc() check makes... | Victor Hernandez | 2009-10-19 | 1 | -2/+0 |
* | Remove MallocInst from LLVM Instructions. | Victor Hernandez | 2009-10-17 | 1 | -2/+1 |
* | remove special handling of bitcast(malloc), it will be handled | Chris Lattner | 2009-09-27 | 1 | -5/+4 |
* | unlike the malloc instruction, "malloc" calls do not claim to be readonly, ju... | Chris Lattner | 2009-09-27 | 1 | -1/+1 |
* | Enhance transform passes so that they apply the same tranforms to malloc call... | Victor Hernandez | 2009-09-18 | 1 | -3/+9 |
* | simplify some code by making the SCCNodes set contain Function*'s | Chris Lattner | 2009-08-31 | 1 | -12/+9 |
* | Fix some nasty callgraph dangling pointer problems in | Chris Lattner | 2009-08-31 | 1 | -2/+2 |
* | Fix PR3754: don't mark functions that wrap MallocInst with | Duncan Sands | 2009-05-06 | 1 | -0/+5 |
* | This debug info special case should no longer | Duncan Sands | 2009-03-09 | 1 | -4/+0 |
* | Fix comments, pointed out by Duncan Sands. | Nick Lewycky | 2009-03-08 | 1 | -3/+3 |
* | Mark function returns as noalias. | Nick Lewycky | 2009-03-08 | 1 | -0/+127 |
* | Ignore debug info intrinsics. | Devang Patel | 2009-03-03 | 1 | -1/+5 |
* | BasicAliasAnalysis and FunctionAttrs were both | Duncan Sands | 2009-01-18 | 1 | -81/+2 |