Bill Wendling | f667072 | 2012-12-20 01:36:59 +0000 | [diff] [blame] | 1 | //===-- AttributeImpl.h - Attribute Internals -------------------*- C++ -*-===// |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Bill Wendling | 27107f6 | 2012-12-20 21:28:43 +0000 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
| 11 | /// \brief This file defines various helper methods and classes used by |
| 12 | /// LLVMContextImpl for creating and managing attributes. |
| 13 | /// |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #ifndef LLVM_ATTRIBUTESIMPL_H |
| 17 | #define LLVM_ATTRIBUTESIMPL_H |
| 18 | |
| 19 | #include "llvm/ADT/FoldingSet.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Attributes.h" |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 21 | |
| 22 | namespace llvm { |
| 23 | |
Bill Wendling | 7c1683d | 2012-12-29 12:29:38 +0000 | [diff] [blame] | 24 | class Constant; |
Bill Wendling | 5f93e2b | 2012-12-19 23:55:43 +0000 | [diff] [blame] | 25 | class LLVMContext; |
| 26 | |
Bill Wendling | 27107f6 | 2012-12-20 21:28:43 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
| 28 | /// \class |
| 29 | /// \brief This class represents a single, uniqued attribute. That attribute |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 30 | /// could be a single enum, a tuple, or a string. |
Bill Wendling | f667072 | 2012-12-20 01:36:59 +0000 | [diff] [blame] | 31 | class AttributeImpl : public FoldingSetNode { |
Bill Wendling | 1bbd644 | 2013-01-05 01:36:54 +0000 | [diff] [blame] | 32 | LLVMContext &Context; |
Bill Wendling | 7c1683d | 2012-12-29 12:29:38 +0000 | [diff] [blame] | 33 | Constant *Data; |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 34 | SmallVector<Constant*, 0> Vals; |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 35 | public: |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 36 | explicit AttributeImpl(LLVMContext &C, uint64_t data); |
| 37 | explicit AttributeImpl(LLVMContext &C, Attribute::AttrKind data); |
| 38 | AttributeImpl(LLVMContext &C, Attribute::AttrKind data, |
| 39 | ArrayRef<Constant*> values); |
| 40 | AttributeImpl(LLVMContext &C, StringRef data); |
| 41 | |
| 42 | ArrayRef<Constant*> getValues() const { |
| 43 | return Vals; |
| 44 | } |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 45 | |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 46 | bool hasAttribute(Attribute::AttrKind A) const; |
Bill Wendling | 6765834 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 47 | |
Bill Wendling | 8e635db | 2012-10-08 21:47:17 +0000 | [diff] [blame] | 48 | bool hasAttributes() const; |
Bill Wendling | 8e635db | 2012-10-08 21:47:17 +0000 | [diff] [blame] | 49 | |
| 50 | uint64_t getAlignment() const; |
Bill Wendling | 1bbd644 | 2013-01-05 01:36:54 +0000 | [diff] [blame] | 51 | void setAlignment(unsigned Align); |
| 52 | |
Bill Wendling | 8e635db | 2012-10-08 21:47:17 +0000 | [diff] [blame] | 53 | uint64_t getStackAlignment() const; |
Bill Wendling | 1bbd644 | 2013-01-05 01:36:54 +0000 | [diff] [blame] | 54 | void setStackAlignment(unsigned Align); |
Bill Wendling | 8e635db | 2012-10-08 21:47:17 +0000 | [diff] [blame] | 55 | |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 56 | bool operator==(Attribute::AttrKind Kind) const; |
| 57 | bool operator!=(Attribute::AttrKind Kind) const; |
Bill Wendling | 529ec71 | 2012-12-30 01:38:39 +0000 | [diff] [blame] | 58 | |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 59 | bool operator==(StringRef Kind) const; |
| 60 | bool operator!=(StringRef Kind) const; |
Bill Wendling | 529ec71 | 2012-12-30 01:38:39 +0000 | [diff] [blame] | 61 | |
Bill Wendling | c966e08 | 2012-12-30 01:05:42 +0000 | [diff] [blame] | 62 | uint64_t getBitMask() const; // FIXME: Remove. |
Bill Wendling | 925bcb1 | 2012-10-16 05:57:28 +0000 | [diff] [blame] | 63 | |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 64 | static uint64_t getAttrMask(Attribute::AttrKind Val); |
Bill Wendling | 2e879bc | 2012-10-09 09:11:20 +0000 | [diff] [blame] | 65 | |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 66 | void Profile(FoldingSetNodeID &ID) const { |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 67 | Profile(ID, Data, Vals); |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 68 | } |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 69 | static void Profile(FoldingSetNodeID &ID, Constant *Data, |
| 70 | ArrayRef<Constant*> Vals) { |
Bill Wendling | 435654b | 2012-12-30 01:23:08 +0000 | [diff] [blame] | 71 | ID.AddPointer(Data); |
Bill Wendling | 979aff6 | 2012-12-30 02:22:16 +0000 | [diff] [blame] | 72 | for (ArrayRef<Constant*>::iterator I = Vals.begin(), E = Vals.end(); |
| 73 | I != E; ++I) |
| 74 | ID.AddPointer(*I); |
Bill Wendling | 435654b | 2012-12-30 01:23:08 +0000 | [diff] [blame] | 75 | } |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Bill Wendling | 27107f6 | 2012-12-20 21:28:43 +0000 | [diff] [blame] | 78 | //===----------------------------------------------------------------------===// |
| 79 | /// \class |
| 80 | /// \brief This class represents a set of attributes. |
Bill Wendling | 18e7211 | 2012-12-19 22:42:22 +0000 | [diff] [blame] | 81 | class AttributeSetImpl : public FoldingSetNode { |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 82 | LLVMContext &Context; |
| 83 | SmallVector<AttributeWithIndex, 4> AttrList; |
| 84 | |
Bill Wendling | 831737d | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 85 | // AttributesSet is uniqued, these should not be publicly available. |
Bill Wendling | 18e7211 | 2012-12-19 22:42:22 +0000 | [diff] [blame] | 86 | void operator=(const AttributeSetImpl &) LLVM_DELETED_FUNCTION; |
| 87 | AttributeSetImpl(const AttributeSetImpl &) LLVM_DELETED_FUNCTION; |
Bill Wendling | 0976e00 | 2012-11-20 05:09:20 +0000 | [diff] [blame] | 88 | public: |
Bill Wendling | 5f93e2b | 2012-12-19 23:55:43 +0000 | [diff] [blame] | 89 | AttributeSetImpl(LLVMContext &C, ArrayRef<AttributeWithIndex> attrs) |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 90 | : Context(C), AttrList(attrs.begin(), attrs.end()) {} |
| 91 | |
| 92 | LLVMContext &getContext() { return Context; } |
| 93 | ArrayRef<AttributeWithIndex> getAttributes() const { return AttrList; } |
| 94 | unsigned getNumAttributes() const { return AttrList.size(); } |
Bill Wendling | 0976e00 | 2012-11-20 05:09:20 +0000 | [diff] [blame] | 95 | |
| 96 | void Profile(FoldingSetNodeID &ID) const { |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 97 | Profile(ID, AttrList); |
Bill Wendling | 0976e00 | 2012-11-20 05:09:20 +0000 | [diff] [blame] | 98 | } |
Bill Wendling | 60507d5 | 2013-01-04 20:54:35 +0000 | [diff] [blame] | 99 | static void Profile(FoldingSetNodeID &ID, |
| 100 | ArrayRef<AttributeWithIndex> AttrList){ |
| 101 | for (unsigned i = 0, e = AttrList.size(); i != e; ++i) { |
| 102 | ID.AddInteger(AttrList[i].Index); |
| 103 | ID.AddInteger(AttrList[i].Attrs.getBitMask()); |
Bill Wendling | 0976e00 | 2012-11-20 05:09:20 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | }; |
| 107 | |
Bill Wendling | 2c79ecb | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 108 | } // end llvm namespace |
| 109 | |
| 110 | #endif |