summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/AttributesImpl.h
Commit message (Collapse)AuthorAgeFilesLines
* s/AttributesImpl/AttributeImpl/g This is going to apply to Attribute, not ↵Bill Wendling2012-12-201-74/+0
| | | | | | Attributes. llvm-svn: 170631
* Add a context so that once we uniquify strings we can access them easily.Bill Wendling2012-12-191-2/+5
| | | | llvm-svn: 170615
* s/AttributeListImpl/AttributeSetImpl/g to match the namechange of AttributeList.Bill Wendling2012-12-191-4/+4
| | | | llvm-svn: 170600
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a ↵Bill Wendling2012-12-191-2/+2
| | | | | | single attribute in the future. llvm-svn: 170502
* Sort includes for all of the .h files under the 'lib' tree. These wereChandler Carruth2012-12-041-1/+1
| | | | | | | | | | missed in the first pass because the script didn't yet handle include guards. Note that the script is now able to handle all of these headers without manual edits. =] llvm-svn: 169224
* Make the AttrListPtr object a part of the LLVMContext.Bill Wendling2012-11-201-2/+22
| | | | | | | | | When code deletes the context, the AttributeImpls that the AttrListPtr points to are now invalid. Therefore, instead of keeping a separate managed static for the AttrListPtrs that's reference counted, move it into the LLVMContext and delete it when deleting the AttributeImpls. llvm-svn: 168354
* Have AttributesImpl defriend the Attributes class.Bill Wendling2012-10-161-2/+2
| | | | llvm-svn: 166012
* Move the AttributesImpl header file into the VMCore directory so that it can ↵Bill Wendling2012-10-151-0/+51
| | | | | | be opaque. llvm-svn: 165920
* Begin the transition to using the AttributesImpl object for the Attributes ivar.Bill Wendling2012-10-081-40/+0
| | | | | | | | | | | Start using the AttributesImpl object to hold the value of the attributes. All queries go through the interfaces now. This has one unfortunate consequence. I needed to move the AttributesImpl.h file into include/llvm. But this is only temporary! Otherwise, the changes needed to support this would be too large. llvm-svn: 165433
* Initial commit for the AttributesImpl class.Bill Wendling2012-09-261-0/+40
This opaque class will contain all of the attributes. All attribute queries will go through this object. This object will also be uniqued in the LLVMContext. Currently not used, so no implementation change. llvm-svn: 164722
OpenPOWER on IntegriCloud