aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AttributesImpl.h
Commit message (Collapse)AuthorAgeFilesLines
* 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168354 91177308-0d34-0410-b5e6-96231b3b80d8
* Have AttributesImpl defriend the Attributes class.Bill Wendling2012-10-161-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166012 91177308-0d34-0410-b5e6-96231b3b80d8
* Move the AttributesImpl header file into the VMCore directory so that it can ↵Bill Wendling2012-10-151-0/+51
| | | | | | be opaque. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165920 91177308-0d34-0410-b5e6-96231b3b80d8
* 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165433 91177308-0d34-0410-b5e6-96231b3b80d8
* 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164722 91177308-0d34-0410-b5e6-96231b3b80d8