aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Attributes.h
AgeCommit message (Expand)Author
2013-01-16Remove unused leftover header (it moved to llvm/IR).Benjamin Kramer
2013-01-09Add the integer value of the ConstantInt instead of the Constant* value.Bill Wendling
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-31Remove dead method.Bill Wendling
2012-12-31Add some comparison operators to compare the Attribute object with the AttrKi...Bill Wendling
2012-12-31Remove the getAttributesAtIndex and getNumAttrs methods in favor of using the...Bill Wendling
2012-12-30Use the predicate methods off of AttributeSet instead of Attribute.Bill Wendling
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling
2012-12-30s/hasAttribute/contains/g to be more consistent with other method names.Bill Wendling
2012-12-30s/Raw/getBitMask/g to be more in line with current naming conventions. This m...Bill Wendling
2012-12-22Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling
2012-12-20Some random comment, naming, and format changes.Bill Wendling
2012-12-20Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy
2012-12-20s/AttributesImpl/AttributeImpl/g This is going to apply to Attribute, not Att...Bill Wendling
2012-12-19s/AttributeListImpl/AttributeSetImpl/g to match the namechange of AttributeList.Bill Wendling
2012-12-19Remove superfluous brief command from getAsString.Chad Rosier
2012-12-19Inline hasFunctionOnlyAttrs into its only use.Bill Wendling
2012-12-19Inline the only use of the hasParameterOnlyAttrs method.Bill Wendling
2012-12-19Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And s...Bill Wendling
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-11-20Make the AttrListPtr object a part of the LLVMContext.Bill Wendling
2012-11-16Remove default public copy ctors.Benjamin Kramer
2012-10-30Change ForceSizeOpt attribute into MinSize attributeQuentin Colombet
2012-10-26Remove the unneeded initializers.Bill Wendling
2012-10-26Alphabetize the enum list.Bill Wendling
2012-10-22Add the "ForceSizeOpt" attribute.Nadav Rotem
2012-10-16And now we can call the other 'get' method from this one and not duplicate th...Bill Wendling
2012-10-16Use the appropriate Attributes::get method to create an Attributes object.Bill Wendling
2012-10-16Cleanup whitespace.Bill Wendling
2012-10-16Have AttrBuilder defriend the Attributes class.Bill Wendling
2012-10-16Put simple c'tors inline.Bill Wendling
2012-10-15Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling
2012-10-15Add comments.Bill Wendling
2012-10-15Add an enum for the return and function indexes into the AttrListPtr object. ...Bill Wendling
2012-10-15Use a ::get method to create the attribute from Attributes::AttrVals instead ...Bill Wendling
2012-10-15Supply a default 'operator=' method.Bill Wendling
2012-10-15Move the AttributesImpl header file into the VMCore directory so that it can ...Bill Wendling
2012-10-15Attributes RewriteBill Wendling
2012-10-14Remove dead methods.Bill Wendling
2012-10-14Remove operator cast method in favor of querying with the correct method.Bill Wendling
2012-10-14Remove the bitwise AND operators from the Attributes class. Replace it with t...Bill Wendling
2012-10-14Remove the bitwise assignment OR operator from the Attributes class. Replace ...Bill Wendling
2012-10-14Remove the bitwise OR operator from the Attributes class. Replace it with the...Bill Wendling
2012-10-14Remove the bitwise XOR operator from the Attributes class. Replace it with th...Bill Wendling
2012-10-14Remove the bitwise NOT operator from the Attributes class. Replace it with th...Bill Wendling
2012-10-14Decode the LLVM attributes from bitcode using the attributes builder.Bill Wendling
2012-10-14Use builder to create alignment attributes. Remove dead function.Bill Wendling
2012-10-14Remove dead method.Bill Wendling