summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/FunctionAttrs.cpp
Commit message (Expand)AuthorAge
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling2012-12-07
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Replace some instances of UniqueVector with SetVector, which is slightly chea...Benjamin Kramer2012-10-31
* Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling2012-10-15
* Add an enum for the return and function indexes into the AttrListPtr object. ...Bill Wendling2012-10-15
* Attributes RewriteBill Wendling2012-10-15
* Remove the final bits of Attributes being declared in the AttributeBill Wendling2012-10-10
* Use the attribute enums to query if a parameter has an attribute.Bill Wendling2012-10-09
* Give CaptureTracker::shouldExplore a base implementation. Most users want to doNick Lewycky2012-10-08
* Add method to query for 'NoAlias' attribute on call/invoke instructions.Bill Wendling2012-10-04
* SCCCaptured is trivially false on entry to this loop and not modified inside it.Nick Lewycky2012-01-05
* Change CaptureTracking to pass a Use* instead of a Value* when a value isNick Lewycky2011-12-28
* Revert a bit of r137667; the logic in question can safely handle atomic load/...Eli Friedman2011-08-16
* Update inter-procedural optimizations for atomic load/store.Eli Friedman2011-08-15
* Add helper functions for computing the Location of load, store,Dan Gohman2010-11-11
* Add a doesAccessArgPointees helper function, and update code to useDan Gohman2010-11-10
* Factor out the code for testing whether a function accessesDan Gohman2010-11-10
* Make ModRefBehavior a lattice. Use this to clean up AliasAnalysisDan Gohman2010-11-10
* Teach FunctionAttrs about the VAArg instruction.Dan Gohman2010-11-09
* Use the AliasAnalysis interface to determine how a Function accessesDan Gohman2010-11-09
* Teach FunctionAttrs about AccessesArgumentsReadonly.Dan Gohman2010-11-09
* Fix a thinko that Duncan spotted.Dan Gohman2010-11-08
* Make FunctionAttrs TBAA-aware.Dan Gohman2010-11-08
* Extend the AliasAnalysis::pointsToConstantMemory interface to allow itDan Gohman2010-11-08
* Make FunctionAttrs use AliasAnalysis::getModRefBehavior, now that itDan Gohman2010-11-08
* Rename PointsToLocalMemory to PointsToLocalOrConstantMemory to makeDuncan Sands2010-11-03
* Now that the MallocInst no longer exists, this workaround forDuncan Sands2010-10-30
* If a function does a volatile load from a global constant, do notDuncan Sands2010-10-30
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* CallGraphSCC passes implicity require CallGraph analysis.Owen Anderson2010-10-13
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman2010-08-03
* simplify by using CallSite constructors; virtually eliminates CallSite::get f...Gabor Greif2010-07-28
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* introduce a new CallGraphSCC class, and pass it aroundChris Lattner2010-04-16
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-16
* Be less stingy as to how many selects and phi nodes weDuncan Sands2010-01-07
* Fix a README item: have functionattrs look through selects andDuncan Sands2010-01-06
* Partially address a README by having functionattrs consider calls toDuncan Sands2010-01-06
* Extend CaptureTracking to indicate when a value is never stored, evenDan Gohman2009-11-19
* Rename MallocFreeHelper as MemoryBuiltinsVictor Hernandez2009-10-27
* Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t...Victor Hernandez2009-10-26
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Malloc calls are marked NoAlias, so the code below the isMalloc() check makes...Victor Hernandez2009-10-19
* Remove MallocInst from LLVM Instructions.Victor Hernandez2009-10-17