blob: f1a38c4a91a36e0ec30ddcb7816d68da31a4697d [file] [log] [blame]
Dale Johannesen09f410b2008-02-22 22:17:59 +00001//===-- ParameterAttributes.cpp - Implement ParamAttrsList ----------------===//
Chris Lattner3e13b8c2008-01-02 23:42:30 +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//===----------------------------------------------------------------------===//
9//
Duncan Sands404eb052008-01-06 18:27:01 +000010// This file implements the ParamAttrsList class and ParamAttr utilities.
Chris Lattner3e13b8c2008-01-02 23:42:30 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner8a923e72008-03-12 17:45:29 +000014#include "llvm/ParameterAttributes.h"
15#include "llvm/Type.h"
Dan Gohmanfc429612008-03-10 23:55:07 +000016#include "llvm/ADT/StringExtras.h"
Chris Lattner8a923e72008-03-12 17:45:29 +000017#include "llvm/ADT/FoldingSet.h"
18#include "llvm/Support/Streams.h"
Chris Lattner3e13b8c2008-01-02 23:42:30 +000019#include "llvm/Support/ManagedStatic.h"
20using namespace llvm;
21
Chris Lattner8a923e72008-03-12 17:45:29 +000022//===----------------------------------------------------------------------===//
23// ParamAttr Function Definitions
24//===----------------------------------------------------------------------===//
Chris Lattnerd0e1f102008-01-03 00:10:22 +000025
Chris Lattner8a923e72008-03-12 17:45:29 +000026std::string ParamAttr::getAsString(ParameterAttributes Attrs) {
Chris Lattner3e13b8c2008-01-02 23:42:30 +000027 std::string Result;
28 if (Attrs & ParamAttr::ZExt)
29 Result += "zeroext ";
30 if (Attrs & ParamAttr::SExt)
31 Result += "signext ";
32 if (Attrs & ParamAttr::NoReturn)
33 Result += "noreturn ";
34 if (Attrs & ParamAttr::NoUnwind)
35 Result += "nounwind ";
36 if (Attrs & ParamAttr::InReg)
37 Result += "inreg ";
38 if (Attrs & ParamAttr::NoAlias)
39 Result += "noalias ";
40 if (Attrs & ParamAttr::StructRet)
41 Result += "sret ";
42 if (Attrs & ParamAttr::ByVal)
43 Result += "byval ";
44 if (Attrs & ParamAttr::Nest)
45 Result += "nest ";
46 if (Attrs & ParamAttr::ReadNone)
47 Result += "readnone ";
48 if (Attrs & ParamAttr::ReadOnly)
49 Result += "readonly ";
Dale Johannesen11a555e2008-02-19 23:51:49 +000050 if (Attrs & ParamAttr::Alignment) {
Dale Johannesen11a555e2008-02-19 23:51:49 +000051 Result += "align ";
Dan Gohmanfc429612008-03-10 23:55:07 +000052 Result += utostr((Attrs & ParamAttr::Alignment) >> 16);
Dale Johannesen11a555e2008-02-19 23:51:49 +000053 Result += " ";
54 }
Dan Gohman1a70bcc2008-08-05 15:51:44 +000055 // Trim the trailing space.
56 Result.erase(Result.end()-1);
Chris Lattner3e13b8c2008-01-02 23:42:30 +000057 return Result;
58}
59
Chris Lattner8a923e72008-03-12 17:45:29 +000060ParameterAttributes ParamAttr::typeIncompatible(const Type *Ty) {
61 ParameterAttributes Incompatible = None;
62
63 if (!Ty->isInteger())
64 // Attributes that only apply to integers.
65 Incompatible |= SExt | ZExt;
66
67 if (!isa<PointerType>(Ty))
68 // Attributes that only apply to pointers.
69 Incompatible |= ByVal | Nest | NoAlias | StructRet;
70
71 return Incompatible;
Chris Lattner3e13b8c2008-01-02 23:42:30 +000072}
73
Chris Lattner8a923e72008-03-12 17:45:29 +000074//===----------------------------------------------------------------------===//
75// ParamAttributeListImpl Definition
76//===----------------------------------------------------------------------===//
Chris Lattner3e13b8c2008-01-02 23:42:30 +000077
Chris Lattner8a923e72008-03-12 17:45:29 +000078namespace llvm {
79class ParamAttributeListImpl : public FoldingSetNode {
80 unsigned RefCount;
81
Chris Lattner4d650c42008-03-13 04:33:03 +000082 // ParamAttrsList is uniqued, these should not be publicly available.
Chris Lattner8a923e72008-03-12 17:45:29 +000083 void operator=(const ParamAttributeListImpl &); // Do not implement
84 ParamAttributeListImpl(const ParamAttributeListImpl &); // Do not implement
85 ~ParamAttributeListImpl(); // Private implementation
86public:
87 SmallVector<ParamAttrsWithIndex, 4> Attrs;
88
89 ParamAttributeListImpl(const ParamAttrsWithIndex *Attr, unsigned NumAttrs)
90 : Attrs(Attr, Attr+NumAttrs) {
91 RefCount = 0;
92 }
93
94 void AddRef() { ++RefCount; }
95 void DropRef() { if (--RefCount == 0) delete this; }
96
97 void Profile(FoldingSetNodeID &ID) const {
98 Profile(ID, &Attrs[0], Attrs.size());
99 }
100 static void Profile(FoldingSetNodeID &ID, const ParamAttrsWithIndex *Attr,
101 unsigned NumAttrs) {
102 for (unsigned i = 0; i != NumAttrs; ++i)
103 ID.AddInteger(uint64_t(Attr[i].Attrs) << 32 | unsigned(Attr[i].Index));
104 }
105};
106}
107
108static ManagedStatic<FoldingSet<ParamAttributeListImpl> > ParamAttrsLists;
109
110ParamAttributeListImpl::~ParamAttributeListImpl() {
111 ParamAttrsLists->RemoveNode(this);
112}
113
114
115PAListPtr PAListPtr::get(const ParamAttrsWithIndex *Attrs, unsigned NumAttrs) {
116 // If there are no attributes then return a null ParamAttrsList pointer.
117 if (NumAttrs == 0)
118 return PAListPtr();
119
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000120#ifndef NDEBUG
Chris Lattner8a923e72008-03-12 17:45:29 +0000121 for (unsigned i = 0; i != NumAttrs; ++i) {
122 assert(Attrs[i].Attrs != ParamAttr::None &&
123 "Pointless parameter attribute!");
124 assert((!i || Attrs[i-1].Index < Attrs[i].Index) &&
125 "Misordered ParamAttrsList!");
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000126 }
127#endif
Chris Lattner8a923e72008-03-12 17:45:29 +0000128
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000129 // Otherwise, build a key to look up the existing attributes.
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000130 FoldingSetNodeID ID;
Chris Lattner8a923e72008-03-12 17:45:29 +0000131 ParamAttributeListImpl::Profile(ID, Attrs, NumAttrs);
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000132 void *InsertPos;
Chris Lattner8a923e72008-03-12 17:45:29 +0000133 ParamAttributeListImpl *PAL =
134 ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
135
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000136 // If we didn't find any existing attributes of the same shape then
137 // create a new one and insert it.
138 if (!PAL) {
Chris Lattner8a923e72008-03-12 17:45:29 +0000139 PAL = new ParamAttributeListImpl(Attrs, NumAttrs);
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000140 ParamAttrsLists->InsertNode(PAL, InsertPos);
141 }
Chris Lattner8a923e72008-03-12 17:45:29 +0000142
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000143 // Return the ParamAttrsList that we found or created.
Chris Lattner8a923e72008-03-12 17:45:29 +0000144 return PAListPtr(PAL);
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000145}
146
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000147
Chris Lattner8a923e72008-03-12 17:45:29 +0000148//===----------------------------------------------------------------------===//
149// PAListPtr Method Implementations
150//===----------------------------------------------------------------------===//
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000151
Chris Lattner8a923e72008-03-12 17:45:29 +0000152PAListPtr::PAListPtr(ParamAttributeListImpl *LI) : PAList(LI) {
153 if (LI) LI->AddRef();
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000154}
155
Chris Lattner8a923e72008-03-12 17:45:29 +0000156PAListPtr::PAListPtr(const PAListPtr &P) : PAList(P.PAList) {
157 if (PAList) PAList->AddRef();
158}
159
160const PAListPtr &PAListPtr::operator=(const PAListPtr &RHS) {
161 if (PAList == RHS.PAList) return *this;
162 if (PAList) PAList->DropRef();
163 PAList = RHS.PAList;
164 if (PAList) PAList->AddRef();
165 return *this;
166}
167
168PAListPtr::~PAListPtr() {
169 if (PAList) PAList->DropRef();
170}
171
172/// getNumSlots - Return the number of slots used in this attribute list.
173/// This is the number of arguments that have an attribute set on them
174/// (including the function itself).
175unsigned PAListPtr::getNumSlots() const {
176 return PAList ? PAList->Attrs.size() : 0;
177}
178
179/// getSlot - Return the ParamAttrsWithIndex at the specified slot. This
180/// holds a parameter number plus a set of attributes.
181const ParamAttrsWithIndex &PAListPtr::getSlot(unsigned Slot) const {
182 assert(PAList && Slot < PAList->Attrs.size() && "Slot # out of range!");
183 return PAList->Attrs[Slot];
184}
185
186
187/// getParamAttrs - The parameter attributes for the specified parameter are
188/// returned. Parameters for the result are denoted with Idx = 0.
Devang Patel82fed672008-09-23 22:35:17 +0000189/// Function notes are denoted with idx = ~0.
Chris Lattner8a923e72008-03-12 17:45:29 +0000190ParameterAttributes PAListPtr::getParamAttrs(unsigned Idx) const {
191 if (PAList == 0) return ParamAttr::None;
192
193 const SmallVector<ParamAttrsWithIndex, 4> &Attrs = PAList->Attrs;
194 for (unsigned i = 0, e = Attrs.size(); i != e && Attrs[i].Index <= Idx; ++i)
195 if (Attrs[i].Index == Idx)
196 return Attrs[i].Attrs;
197 return ParamAttr::None;
198}
199
200/// hasAttrSomewhere - Return true if the specified attribute is set for at
201/// least one parameter or for the return value.
202bool PAListPtr::hasAttrSomewhere(ParameterAttributes Attr) const {
203 if (PAList == 0) return false;
204
205 const SmallVector<ParamAttrsWithIndex, 4> &Attrs = PAList->Attrs;
206 for (unsigned i = 0, e = Attrs.size(); i != e; ++i)
207 if (Attrs[i].Attrs & Attr)
208 return true;
209 return false;
210}
211
212
213PAListPtr PAListPtr::addAttr(unsigned Idx, ParameterAttributes Attrs) const {
214 ParameterAttributes OldAttrs = getParamAttrs(Idx);
Dale Johannesen11a555e2008-02-19 23:51:49 +0000215#ifndef NDEBUG
216 // FIXME it is not obvious how this should work for alignment.
217 // For now, say we can't change a known alignment.
218 ParameterAttributes OldAlign = OldAttrs & ParamAttr::Alignment;
Chris Lattner8a923e72008-03-12 17:45:29 +0000219 ParameterAttributes NewAlign = Attrs & ParamAttr::Alignment;
Anton Korobeynikov18991d72008-02-20 12:07:57 +0000220 assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
Dale Johannesen11a555e2008-02-19 23:51:49 +0000221 "Attempt to change alignment!");
222#endif
Chris Lattner8a923e72008-03-12 17:45:29 +0000223
224 ParameterAttributes NewAttrs = OldAttrs | Attrs;
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000225 if (NewAttrs == OldAttrs)
Chris Lattner8a923e72008-03-12 17:45:29 +0000226 return *this;
227
228 SmallVector<ParamAttrsWithIndex, 8> NewAttrList;
229 if (PAList == 0)
230 NewAttrList.push_back(ParamAttrsWithIndex::get(Idx, Attrs));
231 else {
232 const SmallVector<ParamAttrsWithIndex, 4> &OldAttrList = PAList->Attrs;
233 unsigned i = 0, e = OldAttrList.size();
234 // Copy attributes for arguments before this one.
235 for (; i != e && OldAttrList[i].Index < Idx; ++i)
236 NewAttrList.push_back(OldAttrList[i]);
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000237
Chris Lattner8a923e72008-03-12 17:45:29 +0000238 // If there are attributes already at this index, merge them in.
239 if (i != e && OldAttrList[i].Index == Idx) {
240 Attrs |= OldAttrList[i].Attrs;
241 ++i;
242 }
243
244 NewAttrList.push_back(ParamAttrsWithIndex::get(Idx, Attrs));
245
246 // Copy attributes for arguments after this one.
247 NewAttrList.insert(NewAttrList.end(),
248 OldAttrList.begin()+i, OldAttrList.end());
249 }
250
251 return get(&NewAttrList[0], NewAttrList.size());
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000252}
253
Chris Lattner8a923e72008-03-12 17:45:29 +0000254PAListPtr PAListPtr::removeAttr(unsigned Idx, ParameterAttributes Attrs) const {
Dale Johannesen11a555e2008-02-19 23:51:49 +0000255#ifndef NDEBUG
256 // FIXME it is not obvious how this should work for alignment.
257 // For now, say we can't pass in alignment, which no current use does.
Chris Lattner8a923e72008-03-12 17:45:29 +0000258 assert(!(Attrs & ParamAttr::Alignment) && "Attempt to exclude alignment!");
Dale Johannesen11a555e2008-02-19 23:51:49 +0000259#endif
Chris Lattner8a923e72008-03-12 17:45:29 +0000260 if (PAList == 0) return PAListPtr();
261
262 ParameterAttributes OldAttrs = getParamAttrs(Idx);
263 ParameterAttributes NewAttrs = OldAttrs & ~Attrs;
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000264 if (NewAttrs == OldAttrs)
Chris Lattner8a923e72008-03-12 17:45:29 +0000265 return *this;
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000266
Chris Lattner8a923e72008-03-12 17:45:29 +0000267 SmallVector<ParamAttrsWithIndex, 8> NewAttrList;
268 const SmallVector<ParamAttrsWithIndex, 4> &OldAttrList = PAList->Attrs;
269 unsigned i = 0, e = OldAttrList.size();
270
271 // Copy attributes for arguments before this one.
272 for (; i != e && OldAttrList[i].Index < Idx; ++i)
273 NewAttrList.push_back(OldAttrList[i]);
274
275 // If there are attributes already at this index, merge them in.
276 assert(OldAttrList[i].Index == Idx && "Attribute isn't set?");
277 Attrs = OldAttrList[i].Attrs & ~Attrs;
278 ++i;
279 if (Attrs) // If any attributes left for this parameter, add them.
280 NewAttrList.push_back(ParamAttrsWithIndex::get(Idx, Attrs));
281
282 // Copy attributes for arguments after this one.
283 NewAttrList.insert(NewAttrList.end(),
284 OldAttrList.begin()+i, OldAttrList.end());
285
286 return get(&NewAttrList[0], NewAttrList.size());
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000287}
288
Chris Lattner8a923e72008-03-12 17:45:29 +0000289void PAListPtr::dump() const {
290 cerr << "PAL[ ";
291 for (unsigned i = 0; i < getNumSlots(); ++i) {
292 const ParamAttrsWithIndex &PAWI = getSlot(i);
293 cerr << "{" << PAWI.Index << "," << PAWI.Attrs << "} ";
294 }
295
296 cerr << "]\n";
Duncan Sands404eb052008-01-06 18:27:01 +0000297}