aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-2/+2
2014-08-13[optnone] Make the optnone attribute effective at suppressing functionChandler Carruth1-7/+13
2014-07-24AA metadata refactoring (introduce AAMDNodes)Hal Finkel1-2/+4
2014-05-30When analyzing params/args for readnone/readonly, don't forget to consider th...Nick Lewycky1-1/+18
2014-04-25SCC: Change clients to use const, NFCDuncan P. N. Exon Smith1-7/+6
2014-04-25[C++] Use 'nullptr'. Transforms edition.Craig Topper1-6/+6
2014-04-22[Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-03-30Add a missing break.Rafael Espindola1-0/+1
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-11/+6
2014-03-05[C++11] Make this interface accept const Use pointers and use overrideChandler Carruth1-1/+1
2014-03-05[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-4/+4
2014-03-04[Modules] Move InstIterator out of the Support library, where it had noChandler Carruth1-1/+1
2014-02-04cleanup: scc_iterator consumers should use isAtEndDuncan P. N. Exon Smith1-2/+1
2014-01-28Update optimization passes to handle inalloca argumentsReid Kleckner1-0/+4
2014-01-14Make nocapture analysis work with addrspacecastMatt Arsenault1-0/+2
2013-11-26[PM] Split the CallGraph out from the ModulePass which creates theChandler Carruth1-1/+1
2013-10-31Merge CallGraph and BasicCallGraph.Rafael Espindola1-1/+1
2013-09-13Avoid a compiler warning about Found not being used when assertions areDuncan Sands1-0/+1
2013-09-05Declare missing dependency on AliasAnalysis. Patch by Liu Xin!Nick Lewycky1-0/+1
2013-07-06Fix annotation of unlink. Should fix builder.Nick Lewycky1-1/+1
2013-07-06Extend 'readonly' and 'readnone' to work on function arguments as well asNick Lewycky1-37/+364
2013-07-04Tabs to spaces. No functionality change.Nick Lewycky1-10/+10
2013-07-03Added support in FunctionAttrs for adding relevant function/argument attribut...Michael Gottesman1-0/+10
2013-07-02Add missing break statements. Noticed by inspection.Nick Lewycky1-0/+2
2013-06-22Revert "FunctionAttrs: Merge attributes once instead of doing it for every ar...Benjamin Kramer1-46/+32
2013-06-22FunctionAttrs: Merge attributes once instead of doing it for every argument.Benjamin Kramer1-32/+46
2013-03-21Move library call prototype attribute inference to functionattrsMeador Inge1-2/+739
2013-01-23Remove the last of uses that use the Attribute object as a collection of attr...Bill Wendling1-4/+6
2013-01-23Use the AttributeSet when removing multiple attributes. Use Attribute::AttrKindBill Wendling1-2/+3
2013-01-23Use the AttributeSet when adding multiple attributes and an Attribute::AttrKindBill Wendling1-3/+1
2013-01-07Move CallGraphSCCPass.h into the Analysis tree; that's where theChandler Carruth1-1/+1
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-3/+3
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-11/+11
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling1-2/+2
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-7/+7
2012-10-31Replace some instances of UniqueVector with SetVector, which is slightly chea...Benjamin Kramer1-3/+3
2012-10-15Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling1-2/+2
2012-10-15Add an enum for the return and function indexes into the AttrListPtr object. ...Bill Wendling1-2/+4
2012-10-15Attributes RewriteBill Wendling1-6/+8
2012-10-10Remove the final bits of Attributes being declared in the AttributeBill Wendling1-6/+14
2012-10-09Use the attribute enums to query if a parameter has an attribute.Bill Wendling1-1/+1
2012-10-08Give CaptureTracker::shouldExplore a base implementation. Most users want to doNick Lewycky1-2/+0
2012-10-04Add method to query for 'NoAlias' attribute on call/invoke instructions.Bill Wendling1-1/+1
2012-01-05SCCCaptured is trivially false on entry to this loop and not modified inside it.Nick Lewycky1-1/+1
2011-12-28Change CaptureTracking to pass a Use* instead of a Value* when a value isNick Lewycky1-5/+222
2011-08-16Revert a bit of r137667; the logic in question can safely handle atomic load/...Eli Friedman1-4/+4
2011-08-15Update inter-procedural optimizations for atomic load/store.Eli Friedman1-2/+2
2010-11-11Add helper functions for computing the Location of load, store,Dan Gohman1-10/+3
2010-11-10Add a doesAccessArgPointees helper function, and update code to useDan Gohman1-1/+1
2010-11-10Factor out the code for testing whether a function accessesDan Gohman1-3/+2