blob: d7ebec5daaa691aa2f3c67ec021cc4065499c2ca [file] [log] [blame]
Bill Wendlingf6670722012-12-20 01:36:59 +00001//===-- AttributeImpl.h - Attribute Internals -------------------*- C++ -*-===//
Bill Wendling2c79ecb2012-09-26 21:07:29 +00002//
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 Wendling27107f62012-12-20 21:28:43 +00009///
10/// \file
11/// \brief This file defines various helper methods and classes used by
12/// LLVMContextImpl for creating and managing attributes.
13///
Bill Wendling2c79ecb2012-09-26 21:07:29 +000014//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_ATTRIBUTESIMPL_H
17#define LLVM_ATTRIBUTESIMPL_H
18
19#include "llvm/ADT/FoldingSet.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000020#include "llvm/IR/Attributes.h"
Bill Wendling2c79ecb2012-09-26 21:07:29 +000021
22namespace llvm {
23
Bill Wendling7c1683d2012-12-29 12:29:38 +000024class Constant;
Bill Wendling5f93e2b2012-12-19 23:55:43 +000025class LLVMContext;
26
Bill Wendling27107f62012-12-20 21:28:43 +000027//===----------------------------------------------------------------------===//
28/// \class
29/// \brief This class represents a single, uniqued attribute. That attribute
Bill Wendling979aff62012-12-30 02:22:16 +000030/// could be a single enum, a tuple, or a string.
Bill Wendlingf6670722012-12-20 01:36:59 +000031class AttributeImpl : public FoldingSetNode {
Bill Wendling1bbd6442013-01-05 01:36:54 +000032 LLVMContext &Context;
Bill Wendling7c1683d2012-12-29 12:29:38 +000033 Constant *Data;
Bill Wendling979aff62012-12-30 02:22:16 +000034 SmallVector<Constant*, 0> Vals;
Bill Wendling2c79ecb2012-09-26 21:07:29 +000035public:
Bill Wendling979aff62012-12-30 02:22:16 +000036 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
Bill Wendlingc5f1bc82013-01-21 21:57:28 +000042 LLVMContext &getContext() { return Context; }
43
Bill Wendlinga90a99a2013-01-07 08:24:35 +000044 ArrayRef<Constant*> getValues() const { return Vals; }
Bill Wendling2c79ecb2012-09-26 21:07:29 +000045
Bill Wendling60507d52013-01-04 20:54:35 +000046 bool hasAttribute(Attribute::AttrKind A) const;
Bill Wendling67658342012-10-09 07:45:08 +000047
Bill Wendling8e635db2012-10-08 21:47:17 +000048 bool hasAttributes() const;
Bill Wendling8e635db2012-10-08 21:47:17 +000049
50 uint64_t getAlignment() const;
51 uint64_t getStackAlignment() const;
52
Bill Wendling60507d52013-01-04 20:54:35 +000053 bool operator==(Attribute::AttrKind Kind) const;
54 bool operator!=(Attribute::AttrKind Kind) const;
Bill Wendling529ec712012-12-30 01:38:39 +000055
Bill Wendling60507d52013-01-04 20:54:35 +000056 bool operator==(StringRef Kind) const;
57 bool operator!=(StringRef Kind) const;
Bill Wendling529ec712012-12-30 01:38:39 +000058
Bill Wendling3467e302013-01-24 00:06:56 +000059 bool operator<(const AttributeImpl &AI) const;
60
Bill Wendling1db9b692013-01-09 23:36:50 +000061 uint64_t Raw() const; // FIXME: Remove.
Bill Wendling925bcb12012-10-16 05:57:28 +000062
Bill Wendling60507d52013-01-04 20:54:35 +000063 static uint64_t getAttrMask(Attribute::AttrKind Val);
Bill Wendling2e879bc2012-10-09 09:11:20 +000064
Bill Wendling2c79ecb2012-09-26 21:07:29 +000065 void Profile(FoldingSetNodeID &ID) const {
Bill Wendling979aff62012-12-30 02:22:16 +000066 Profile(ID, Data, Vals);
Bill Wendling2c79ecb2012-09-26 21:07:29 +000067 }
Bill Wendling979aff62012-12-30 02:22:16 +000068 static void Profile(FoldingSetNodeID &ID, Constant *Data,
Bill Wendlingff887162013-01-09 00:32:08 +000069 ArrayRef<Constant*> Vals);
Bill Wendling2c79ecb2012-09-26 21:07:29 +000070};
71
Bill Wendling27107f62012-12-20 21:28:43 +000072//===----------------------------------------------------------------------===//
73/// \class
Bill Wendling3467e302013-01-24 00:06:56 +000074/// \brief This class represents a group of attributes that apply to one
75/// element: function, return type, or parameter.
76class AttributeSetNode : public FoldingSetNode {
77 SmallVector<Attribute, 4> AttrList;
78
79 AttributeSetNode(ArrayRef<Attribute> Attrs)
80 : AttrList(Attrs.begin(), Attrs.end()) {}
81public:
82 static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
83
84 typedef SmallVectorImpl<Attribute>::iterator iterator;
85 typedef SmallVectorImpl<Attribute>::const_iterator const_iterator;
86
87 iterator begin() { return AttrList.begin(); }
88 iterator end() { return AttrList.end(); }
89
90 const_iterator begin() const { return AttrList.begin(); }
91 const_iterator end() const { return AttrList.end(); }
92
93 void Profile(FoldingSetNodeID &ID) const {
94 Profile(ID, AttrList);
95 }
96 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) {
97 for (unsigned I = 0, E = AttrList.size(); I != E; ++I)
98 AttrList[I].Profile(ID);
99 }
100};
101
102//===----------------------------------------------------------------------===//
103/// \class
104/// \brief This class represents a set of attributes that apply to the function,
105/// return type, and parameters.
Bill Wendling18e72112012-12-19 22:42:22 +0000106class AttributeSetImpl : public FoldingSetNode {
Bill Wendling8e47daf2013-01-25 23:09:36 +0000107 friend class AttributeSet;
108
Bill Wendling60507d52013-01-04 20:54:35 +0000109 LLVMContext &Context;
110 SmallVector<AttributeWithIndex, 4> AttrList;
111
Bill Wendlingbb085932013-01-24 01:01:34 +0000112 SmallVector<std::pair<uint64_t, AttributeSetNode*>, 4> AttrNodes;
113
Bill Wendling831737d2012-12-30 10:32:01 +0000114 // AttributesSet is uniqued, these should not be publicly available.
Bill Wendling18e72112012-12-19 22:42:22 +0000115 void operator=(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
116 AttributeSetImpl(const AttributeSetImpl &) LLVM_DELETED_FUNCTION;
Bill Wendling0976e002012-11-20 05:09:20 +0000117public:
Bill Wendling5f93e2b2012-12-19 23:55:43 +0000118 AttributeSetImpl(LLVMContext &C, ArrayRef<AttributeWithIndex> attrs)
Bill Wendling60507d52013-01-04 20:54:35 +0000119 : Context(C), AttrList(attrs.begin(), attrs.end()) {}
Bill Wendlingbb085932013-01-24 01:01:34 +0000120 AttributeSetImpl(LLVMContext &C,
121 ArrayRef<std::pair<uint64_t, AttributeSetNode*> > attrs)
122 : Context(C), AttrNodes(attrs.begin(), attrs.end()) {}
Bill Wendling60507d52013-01-04 20:54:35 +0000123
124 LLVMContext &getContext() { return Context; }
125 ArrayRef<AttributeWithIndex> getAttributes() const { return AttrList; }
126 unsigned getNumAttributes() const { return AttrList.size(); }
Bill Wendlinge1f95db2013-01-25 21:30:53 +0000127 unsigned getSlotIndex(unsigned Slot) const {
128 // FIXME: This needs to use AttrNodes instead.
129 return AttrList[Slot].Index;
130 }
Bill Wendling8e47daf2013-01-25 23:09:36 +0000131 AttributeSet getSlotAttributes(unsigned Slot) const {
132 // FIXME: This needs to use AttrNodes instead.
133 return AttributeSet::get(Context, AttrList[Slot]);
134 }
Bill Wendling0976e002012-11-20 05:09:20 +0000135
136 void Profile(FoldingSetNodeID &ID) const {
Bill Wendling60507d52013-01-04 20:54:35 +0000137 Profile(ID, AttrList);
Bill Wendling0976e002012-11-20 05:09:20 +0000138 }
Bill Wendling60507d52013-01-04 20:54:35 +0000139 static void Profile(FoldingSetNodeID &ID,
Bill Wendlingbb085932013-01-24 01:01:34 +0000140 ArrayRef<AttributeWithIndex> AttrList) {
Bill Wendling60507d52013-01-04 20:54:35 +0000141 for (unsigned i = 0, e = AttrList.size(); i != e; ++i) {
142 ID.AddInteger(AttrList[i].Index);
Bill Wendling1db9b692013-01-09 23:36:50 +0000143 ID.AddInteger(AttrList[i].Attrs.Raw());
Bill Wendling0976e002012-11-20 05:09:20 +0000144 }
145 }
Bill Wendlingbb085932013-01-24 01:01:34 +0000146
147 static void Profile(FoldingSetNodeID &ID,
148 ArrayRef<std::pair<uint64_t, AttributeSetNode*> > Nodes) {
149 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
150 ID.AddInteger(Nodes[i].first);
151 ID.AddPointer(Nodes[i].second);
152 }
153 }
Bill Wendling0976e002012-11-20 05:09:20 +0000154};
155
Bill Wendling2c79ecb2012-09-26 21:07:29 +0000156} // end llvm namespace
157
158#endif