Age | Commit message (Expand) | Author |
2010-10-30 | Now that the MallocInst no longer exists, this workaround for | Duncan Sands |
2010-10-30 | If a function does a volatile load from a global constant, do not | Duncan Sands |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-13 | CallGraphSCC passes implicity require CallGraph analysis. | Owen Anderson |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson |
2010-08-03 | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman |
2010-07-28 | simplify by using CallSite constructors; virtually eliminates CallSite::get f... | Gabor Greif |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson |
2010-04-16 | introduce a new CallGraphSCC class, and pass it around | Chris Lattner |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-01-07 | Be less stingy as to how many selects and phi nodes we | Duncan Sands |
2010-01-06 | Fix a README item: have functionattrs look through selects and | Duncan Sands |
2010-01-06 | Partially address a README by having functionattrs consider calls to | Duncan Sands |
2009-11-19 | Extend CaptureTracking to indicate when a value is never stored, even | Dan Gohman |
2009-10-27 | Rename MallocFreeHelper as MemoryBuiltins | Victor Hernandez |
2009-10-26 | Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t... | Victor Hernandez |
2009-10-25 | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky |
2009-10-25 | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky |
2009-10-19 | Malloc calls are marked NoAlias, so the code below the isMalloc() check makes... | Victor Hernandez |
2009-10-17 | Remove MallocInst from LLVM Instructions. | Victor Hernandez |
2009-09-27 | remove special handling of bitcast(malloc), it will be handled | Chris Lattner |
2009-09-27 | unlike the malloc instruction, "malloc" calls do not claim to be readonly, ju... | Chris Lattner |
2009-09-18 | Enhance transform passes so that they apply the same tranforms to malloc call... | Victor Hernandez |
2009-08-31 | simplify some code by making the SCCNodes set contain Function*'s | Chris Lattner |
2009-08-31 | Fix some nasty callgraph dangling pointer problems in | Chris Lattner |
2009-05-06 | Fix PR3754: don't mark functions that wrap MallocInst with | Duncan Sands |
2009-03-09 | This debug info special case should no longer | Duncan Sands |
2009-03-08 | Fix comments, pointed out by Duncan Sands. | Nick Lewycky |
2009-03-08 | Mark function returns as noalias. | Nick Lewycky |
2009-03-03 | Ignore debug info intrinsics. | Devang Patel |
2009-01-18 | BasicAliasAnalysis and FunctionAttrs were both | Duncan Sands |
2009-01-07 | Remove alloca tracking from nocapture analysis. Not only | Duncan Sands |
2009-01-07 | Reorder these. | Duncan Sands |
2009-01-07 | Use a switch rather than a sequence of "isa" tests. | Duncan Sands |
2009-01-03 | Any void readonly functions are provably dead, don't waste time adding | Nick Lewycky |
2009-01-02 | Load tracking means that the value analyzed may | Duncan Sands |
2009-01-02 | When calculating 'nocapture' argument attributes, allow | Duncan Sands |
2009-01-02 | Improve comments and reorganize a bit - no functionality | Duncan Sands |
2009-01-02 | Make adding nocapture a bit stronger. FreeInst is nocapture. Also, | Nick Lewycky |
2009-01-01 | Mention that this pass does escape analysis in the | Duncan Sands |
2008-12-31 | Look through phi nodes and select instructions when | Duncan Sands |
2008-12-31 | Don't analyze arguments already marked 'nocapture'. | Duncan Sands |
2008-12-31 | Rename AddReadAttrs to FunctionAttrs, and teach it how | Duncan Sands |