aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Attributes.h
Commit message (Expand)AuthorAgeFilesLines
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-399/+0
* Remove dead method.Bill Wendling2012-12-311-6/+0
* Add some comparison operators to compare the Attribute object with the AttrKi...Bill Wendling2012-12-311-1/+5
* Remove the getAttributesAtIndex and getNumAttrs methods in favor of using the...Bill Wendling2012-12-311-3/+0
* Use the predicate methods off of AttributeSet instead of Attribute.Bill Wendling2012-12-301-3/+2
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-0/+14
* s/hasAttribute/contains/g to be more consistent with other method names.Bill Wendling2012-12-301-2/+2
* s/Raw/getBitMask/g to be more in line with current naming conventions. This m...Bill Wendling2012-12-301-3/+3
* Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling2012-12-221-8/+8
* Some random comment, naming, and format changes.Bill Wendling2012-12-201-18/+23
* Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy2012-12-201-1/+3
* s/AttributesImpl/AttributeImpl/g This is going to apply to Attribute, not Att...Bill Wendling2012-12-201-5/+5
* s/AttributeListImpl/AttributeSetImpl/g to match the namechange of AttributeList.Bill Wendling2012-12-191-46/+42
* Remove superfluous brief command from getAsString.Chad Rosier2012-12-191-1/+1
* Inline hasFunctionOnlyAttrs into its only use.Bill Wendling2012-12-191-24/+0
* Inline the only use of the hasParameterOnlyAttrs method.Bill Wendling2012-12-191-8/+0
* Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And s...Bill Wendling2012-12-191-31/+26
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-88/+88
* s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling2012-12-071-12/+12
* Sort the #include lines for the include/... tree with the script.Chandler Carruth2012-12-031-1/+1
* Make the AttrListPtr object a part of the LLVMContext.Bill Wendling2012-11-201-12/+10
* Remove default public copy ctors.Benjamin Kramer2012-11-161-6/+0
* Change ForceSizeOpt attribute into MinSize attributeQuentin Colombet2012-10-301-3/+3
* Remove the unneeded initializers.Bill Wendling2012-10-261-29/+29
* Alphabetize the enum list.Bill Wendling2012-10-261-24/+24
* Add the "ForceSizeOpt" attribute.Nadav Rotem2012-10-221-3/+6
* And now we can call the other 'get' method from this one and not duplicate th...Bill Wendling2012-10-161-6/+3
* Use the appropriate Attributes::get method to create an Attributes object.Bill Wendling2012-10-161-7/+1
* Cleanup whitespace.Bill Wendling2012-10-161-5/+5
* Have AttrBuilder defriend the Attributes class.Bill Wendling2012-10-161-1/+2
* Put simple c'tors inline.Bill Wendling2012-10-161-2/+2
* Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling2012-10-151-128/+95
* Add comments.Bill Wendling2012-10-151-10/+30
* Add an enum for the return and function indexes into the AttrListPtr object. ...Bill Wendling2012-10-151-2/+8
* Use a ::get method to create the attribute from Attributes::AttrVals instead ...Bill Wendling2012-10-151-12/+17
* Supply a default 'operator=' method.Bill Wendling2012-10-151-0/+4
* Move the AttributesImpl header file into the VMCore directory so that it can ...Bill Wendling2012-10-151-4/+1
* Attributes RewriteBill Wendling2012-10-151-11/+11
* Remove dead methods.Bill Wendling2012-10-141-3/+0
* Remove operator cast method in favor of querying with the correct method.Bill Wendling2012-10-141-1/+0
* Remove the bitwise AND operators from the Attributes class. Replace it with t...Bill Wendling2012-10-141-3/+0
* Remove the bitwise assignment OR operator from the Attributes class. Replace ...Bill Wendling2012-10-141-2/+1
* Remove the bitwise OR operator from the Attributes class. Replace it with the...Bill Wendling2012-10-141-1/+1
* Remove the bitwise XOR operator from the Attributes class. Replace it with th...Bill Wendling2012-10-141-1/+0
* Remove the bitwise NOT operator from the Attributes class. Replace it with th...Bill Wendling2012-10-141-3/+9
* Decode the LLVM attributes from bitcode using the attributes builder.Bill Wendling2012-10-141-7/+9
* Use builder to create alignment attributes. Remove dead function.Bill Wendling2012-10-141-16/+9
* Remove dead method.Bill Wendling2012-10-141-12/+3
* Add the LLVM context to this c'tor. It will be needed in the future.Bill Wendling2012-10-111-1/+1
* Support a common idiom on how to build an Attributes class with a single attr...Bill Wendling2012-10-111-0/+1