blob: 8a0551cbf124f53abf3bbd251bbc9aaa8bb75f92 [file] [log] [blame]
Bill Wendling87e10df2013-01-28 21:55:20 +00001//===-- Attributes.cpp - Implement AttributesList -------------------------===//
Chris Lattner50ee9dd2008-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//
Bill Wendling87e10df2013-01-28 21:55:20 +000010// \file
11// \brief This file implements the Attribute, AttributeImpl, AttrBuilder,
Bill Wendling18e72112012-12-19 22:42:22 +000012// AttributeSetImpl, and AttributeSet classes.
Chris Lattner50ee9dd2008-01-02 23:42:30 +000013//
14//===----------------------------------------------------------------------===//
15
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000016#include "llvm/IR/Attributes.h"
Bill Wendlingf6670722012-12-20 01:36:59 +000017#include "AttributeImpl.h"
Bill Wendling2c79ecb2012-09-26 21:07:29 +000018#include "LLVMContextImpl.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "llvm/ADT/StringExtras.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000020#include "llvm/IR/Type.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000021#include "llvm/Support/Atomic.h"
David Greeneef1894e2010-01-05 01:29:58 +000022#include "llvm/Support/Debug.h"
Chris Lattner50ee9dd2008-01-02 23:42:30 +000023#include "llvm/Support/ManagedStatic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/Support/Mutex.h"
Benjamin Kramercfa6ec92009-08-23 11:37:21 +000025#include "llvm/Support/raw_ostream.h"
Bill Wendling3467e302013-01-24 00:06:56 +000026#include <algorithm>
Chris Lattner50ee9dd2008-01-02 23:42:30 +000027using namespace llvm;
28
Chris Lattner58d74912008-03-12 17:45:29 +000029//===----------------------------------------------------------------------===//
Bill Wendling817abdd2013-01-29 00:48:16 +000030// Attribute Construction Methods
Chris Lattner58d74912008-03-12 17:45:29 +000031//===----------------------------------------------------------------------===//
Chris Lattnerfabfde32008-01-03 00:10:22 +000032
Bill Wendling169d5272013-01-31 23:16:25 +000033Attribute Attribute::get(LLVMContext &Context, Constant *Kind, Constant *Val) {
Bill Wendling8e635db2012-10-08 21:47:17 +000034 LLVMContextImpl *pImpl = Context.pImpl;
35 FoldingSetNodeID ID;
Bill Wendling169d5272013-01-31 23:16:25 +000036 ID.AddPointer(Kind);
37 if (Val) ID.AddPointer(Val);
Bill Wendling8e635db2012-10-08 21:47:17 +000038
39 void *InsertPoint;
Bill Wendlingf6670722012-12-20 01:36:59 +000040 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
Bill Wendling8e635db2012-10-08 21:47:17 +000041
42 if (!PA) {
43 // If we didn't find any existing attributes of the same shape then create a
44 // new one and insert it.
Bill Wendlingbdcbccc2013-02-02 00:42:06 +000045 PA = new AttributeImpl(Context, Kind, Val);
Bill Wendling8e635db2012-10-08 21:47:17 +000046 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
47 }
48
Bill Wendlingea59f892013-02-05 08:09:32 +000049 // Return the Attribute that we found or created.
Bill Wendling034b94b2012-12-19 07:18:57 +000050 return Attribute(PA);
Bill Wendling8e635db2012-10-08 21:47:17 +000051}
52
Bill Wendling169d5272013-01-31 23:16:25 +000053Attribute Attribute::get(LLVMContext &Context, AttrKind Kind, Constant *Val) {
54 ConstantInt *KindVal = ConstantInt::get(Type::getInt64Ty(Context), Kind);
55 return get(Context, KindVal, Val);
56}
57
Bill Wendlingc08a5ef2013-01-27 22:43:04 +000058Attribute Attribute::getWithAlignment(LLVMContext &Context, uint64_t Align) {
Bill Wendling169d5272013-01-31 23:16:25 +000059 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
60 assert(Align <= 0x40000000 && "Alignment too large.");
61 return get(Context, Alignment,
62 ConstantInt::get(Type::getInt64Ty(Context), Align));
Bill Wendlingc08a5ef2013-01-27 22:43:04 +000063}
64
65Attribute Attribute::getWithStackAlignment(LLVMContext &Context,
66 uint64_t Align) {
Bill Wendling169d5272013-01-31 23:16:25 +000067 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
68 assert(Align <= 0x100 && "Alignment too large.");
69 return get(Context, StackAlignment,
70 ConstantInt::get(Type::getInt64Ty(Context), Align));
Bill Wendlingc08a5ef2013-01-27 22:43:04 +000071}
72
Bill Wendling817abdd2013-01-29 00:48:16 +000073//===----------------------------------------------------------------------===//
74// Attribute Accessor Methods
75//===----------------------------------------------------------------------===//
76
Bill Wendling629fb822012-12-22 00:37:52 +000077bool Attribute::hasAttribute(AttrKind Val) const {
Bill Wendling27107f62012-12-20 21:28:43 +000078 return pImpl && pImpl->hasAttribute(Val);
Bill Wendlinge66f3d32012-10-05 06:44:41 +000079}
80
Bill Wendling6dc37812013-01-29 20:45:34 +000081Constant *Attribute::getAttributeKind() const {
82 return pImpl ? pImpl->getAttributeKind() : 0;
83}
84
Bill Wendling5a4041e2013-02-01 22:32:30 +000085Constant *Attribute::getAttributeValues() const {
86 return pImpl ? pImpl->getAttributeValues() : 0;
Bill Wendling6dc37812013-01-29 20:45:34 +000087}
88
Bill Wendlinge66f3d32012-10-05 06:44:41 +000089/// This returns the alignment field of an attribute as a byte alignment value.
Bill Wendling034b94b2012-12-19 07:18:57 +000090unsigned Attribute::getAlignment() const {
Bill Wendling7beee282013-02-01 01:04:27 +000091 assert(hasAttribute(Attribute::Alignment) &&
92 "Trying to get alignment from non-alignment attribute!");
Bill Wendlinga8ab5fc2013-01-23 23:00:05 +000093 return pImpl->getAlignment();
Bill Wendlinge66f3d32012-10-05 06:44:41 +000094}
95
96/// This returns the stack alignment field of an attribute as a byte alignment
97/// value.
Bill Wendling034b94b2012-12-19 07:18:57 +000098unsigned Attribute::getStackAlignment() const {
Bill Wendling7beee282013-02-01 01:04:27 +000099 assert(hasAttribute(Attribute::StackAlignment) &&
100 "Trying to get alignment from non-alignment attribute!");
Bill Wendlinga8ab5fc2013-01-23 23:00:05 +0000101 return pImpl->getStackAlignment();
Bill Wendlinge66f3d32012-10-05 06:44:41 +0000102}
103
Bill Wendling034b94b2012-12-19 07:18:57 +0000104std::string Attribute::getAsString() const {
Bill Wendling14292a62013-01-31 20:59:05 +0000105 if (!pImpl) return "";
106
107 if (hasAttribute(Attribute::AddressSafety))
108 return "address_safety";
109 if (hasAttribute(Attribute::AlwaysInline))
110 return "alwaysinline";
111 if (hasAttribute(Attribute::ByVal))
112 return "byval";
113 if (hasAttribute(Attribute::InlineHint))
114 return "inlinehint";
Bill Wendling034b94b2012-12-19 07:18:57 +0000115 if (hasAttribute(Attribute::InReg))
Bill Wendling606c8e32013-01-29 03:20:31 +0000116 return "inreg";
Bill Wendling14292a62013-01-31 20:59:05 +0000117 if (hasAttribute(Attribute::MinSize))
118 return "minsize";
119 if (hasAttribute(Attribute::Naked))
120 return "naked";
121 if (hasAttribute(Attribute::Nest))
122 return "nest";
Bill Wendling034b94b2012-12-19 07:18:57 +0000123 if (hasAttribute(Attribute::NoAlias))
Bill Wendling606c8e32013-01-29 03:20:31 +0000124 return "noalias";
Bill Wendling034b94b2012-12-19 07:18:57 +0000125 if (hasAttribute(Attribute::NoCapture))
Bill Wendling606c8e32013-01-29 03:20:31 +0000126 return "nocapture";
Bill Wendling14292a62013-01-31 20:59:05 +0000127 if (hasAttribute(Attribute::NoDuplicate))
128 return "noduplicate";
129 if (hasAttribute(Attribute::NoImplicitFloat))
130 return "noimplicitfloat";
131 if (hasAttribute(Attribute::NoInline))
132 return "noinline";
133 if (hasAttribute(Attribute::NonLazyBind))
134 return "nonlazybind";
135 if (hasAttribute(Attribute::NoRedZone))
136 return "noredzone";
137 if (hasAttribute(Attribute::NoReturn))
138 return "noreturn";
139 if (hasAttribute(Attribute::NoUnwind))
140 return "nounwind";
141 if (hasAttribute(Attribute::OptimizeForSize))
142 return "optsize";
Bill Wendling034b94b2012-12-19 07:18:57 +0000143 if (hasAttribute(Attribute::ReadNone))
Bill Wendling606c8e32013-01-29 03:20:31 +0000144 return "readnone";
Bill Wendling034b94b2012-12-19 07:18:57 +0000145 if (hasAttribute(Attribute::ReadOnly))
Bill Wendling606c8e32013-01-29 03:20:31 +0000146 return "readonly";
Bill Wendling14292a62013-01-31 20:59:05 +0000147 if (hasAttribute(Attribute::ReturnsTwice))
148 return "returns_twice";
149 if (hasAttribute(Attribute::SExt))
150 return "signext";
Bill Wendling034b94b2012-12-19 07:18:57 +0000151 if (hasAttribute(Attribute::StackProtect))
Bill Wendling606c8e32013-01-29 03:20:31 +0000152 return "ssp";
Bill Wendling034b94b2012-12-19 07:18:57 +0000153 if (hasAttribute(Attribute::StackProtectReq))
Bill Wendling606c8e32013-01-29 03:20:31 +0000154 return "sspreq";
Bill Wendling114baee2013-01-23 06:41:41 +0000155 if (hasAttribute(Attribute::StackProtectStrong))
Bill Wendling606c8e32013-01-29 03:20:31 +0000156 return "sspstrong";
Bill Wendling14292a62013-01-31 20:59:05 +0000157 if (hasAttribute(Attribute::StructRet))
158 return "sret";
159 if (hasAttribute(Attribute::UWTable))
160 return "uwtable";
161 if (hasAttribute(Attribute::ZExt))
162 return "zeroext";
163
164 // FIXME: These should be output like this:
165 //
166 // align=4
167 // alignstack=8
168 //
Bill Wendling034b94b2012-12-19 07:18:57 +0000169 if (hasAttribute(Attribute::StackAlignment)) {
Bill Wendling606c8e32013-01-29 03:20:31 +0000170 std::string Result;
Charles Davis1e063d12010-02-12 00:31:15 +0000171 Result += "alignstack(";
Bill Wendlingef99fe82012-09-21 15:26:31 +0000172 Result += utostr(getStackAlignment());
Bill Wendling606c8e32013-01-29 03:20:31 +0000173 Result += ")";
174 return Result;
Charles Davis1e063d12010-02-12 00:31:15 +0000175 }
Bill Wendling034b94b2012-12-19 07:18:57 +0000176 if (hasAttribute(Attribute::Alignment)) {
Bill Wendling606c8e32013-01-29 03:20:31 +0000177 std::string Result;
Dale Johannesen6167c3f2008-02-19 23:51:49 +0000178 Result += "align ";
Bill Wendlingef99fe82012-09-21 15:26:31 +0000179 Result += utostr(getAlignment());
Bill Wendling606c8e32013-01-29 03:20:31 +0000180 return Result;
Dale Johannesen6167c3f2008-02-19 23:51:49 +0000181 }
Bill Wendling14292a62013-01-31 20:59:05 +0000182
183 // Convert target-dependent attributes to strings of the form:
184 //
185 // "kind"
186 // "kind" = "value"
Bill Wendling5a4041e2013-02-01 22:32:30 +0000187 // "kind" = ( "value1" "value2" "value3" )
Bill Wendling14292a62013-01-31 20:59:05 +0000188 //
189 if (ConstantDataArray *CDA =
190 dyn_cast<ConstantDataArray>(pImpl->getAttributeKind())) {
191 std::string Result;
192 Result += '\"' + CDA->getAsString().str() + '"';
193
Bill Wendling5a4041e2013-02-01 22:32:30 +0000194 Constant *Vals = pImpl->getAttributeValues();
195 if (!Vals) return Result;
196
197 // FIXME: This should support more than just ConstantDataArrays. Also,
198 // support a vector of attribute values.
199
Bill Wendling14292a62013-01-31 20:59:05 +0000200 Result += " = ";
Bill Wendling5a4041e2013-02-01 22:32:30 +0000201 Result += '\"' + cast<ConstantDataArray>(Vals)->getAsString().str() + '"';
202
Bill Wendling7beee282013-02-01 01:04:27 +0000203 return Result;
Bill Wendling14292a62013-01-31 20:59:05 +0000204 }
Bill Wendling606c8e32013-01-29 03:20:31 +0000205
206 llvm_unreachable("Unknown attribute");
Chris Lattner50ee9dd2008-01-02 23:42:30 +0000207}
208
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000209bool Attribute::operator==(AttrKind K) const {
Bill Wendling14292a62013-01-31 20:59:05 +0000210 return (pImpl && *pImpl == K) || (!pImpl && K == None);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000211}
212bool Attribute::operator!=(AttrKind K) const {
213 return !(*this == K);
214}
215
216bool Attribute::operator<(Attribute A) const {
217 if (!pImpl && !A.pImpl) return false;
218 if (!pImpl) return true;
219 if (!A.pImpl) return false;
220 return *pImpl < *A.pImpl;
221}
222
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000223//===----------------------------------------------------------------------===//
224// AttributeImpl Definition
225//===----------------------------------------------------------------------===//
226
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000227bool AttributeImpl::hasAttribute(Attribute::AttrKind A) const {
Bill Wendling169d5272013-01-31 23:16:25 +0000228 if (ConstantInt *CI = dyn_cast<ConstantInt>(Kind))
229 return CI->getZExtValue() == A;
230 return false;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000231}
232
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000233uint64_t AttributeImpl::getAlignment() const {
Bill Wendling169d5272013-01-31 23:16:25 +0000234 assert(hasAttribute(Attribute::Alignment) &&
235 "Trying to retrieve the alignment from a non-alignment attr!");
Bill Wendling5a4041e2013-02-01 22:32:30 +0000236 return cast<ConstantInt>(Values)->getZExtValue();
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000237}
238
239uint64_t AttributeImpl::getStackAlignment() const {
Bill Wendling169d5272013-01-31 23:16:25 +0000240 assert(hasAttribute(Attribute::StackAlignment) &&
241 "Trying to retrieve the stack alignment from a non-alignment attr!");
Bill Wendling5a4041e2013-02-01 22:32:30 +0000242 return cast<ConstantInt>(Values)->getZExtValue();
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000243}
244
Bill Wendling9f175f82013-01-29 20:37:10 +0000245bool AttributeImpl::operator==(Attribute::AttrKind kind) const {
246 if (ConstantInt *CI = dyn_cast<ConstantInt>(Kind))
247 return CI->getZExtValue() == kind;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000248 return false;
249}
Bill Wendling9f175f82013-01-29 20:37:10 +0000250bool AttributeImpl::operator!=(Attribute::AttrKind kind) const {
251 return !(*this == kind);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000252}
253
Bill Wendling9f175f82013-01-29 20:37:10 +0000254bool AttributeImpl::operator==(StringRef kind) const {
255 if (ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(Kind))
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000256 if (CDA->isString())
Bill Wendling9f175f82013-01-29 20:37:10 +0000257 return CDA->getAsString() == kind;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000258 return false;
259}
260
Bill Wendling9f175f82013-01-29 20:37:10 +0000261bool AttributeImpl::operator!=(StringRef kind) const {
262 return !(*this == kind);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000263}
264
265bool AttributeImpl::operator<(const AttributeImpl &AI) const {
Bill Wendling7beee282013-02-01 01:04:27 +0000266 // This sorts the attributes with Attribute::AttrKinds coming first (sorted
267 // relative to their enum value) and then strings.
268
Bill Wendling9f175f82013-01-29 20:37:10 +0000269 if (!Kind && !AI.Kind) return false;
270 if (!Kind && AI.Kind) return true;
271 if (Kind && !AI.Kind) return false;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000272
Bill Wendling9f175f82013-01-29 20:37:10 +0000273 ConstantInt *ThisCI = dyn_cast<ConstantInt>(Kind);
274 ConstantInt *ThatCI = dyn_cast<ConstantInt>(AI.Kind);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000275
Bill Wendling9f175f82013-01-29 20:37:10 +0000276 ConstantDataArray *ThisCDA = dyn_cast<ConstantDataArray>(Kind);
277 ConstantDataArray *ThatCDA = dyn_cast<ConstantDataArray>(AI.Kind);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000278
279 if (ThisCI && ThatCI)
280 return ThisCI->getZExtValue() < ThatCI->getZExtValue();
281
282 if (ThisCI && ThatCDA)
283 return true;
284
285 if (ThisCDA && ThatCI)
286 return false;
287
288 return ThisCDA->getAsString() < ThatCDA->getAsString();
289}
290
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000291uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) {
292 // FIXME: Remove this.
293 switch (Val) {
294 case Attribute::EndAttrKinds:
295 case Attribute::AttrKindEmptyKey:
296 case Attribute::AttrKindTombstoneKey:
297 llvm_unreachable("Synthetic enumerators which should never get here");
298
299 case Attribute::None: return 0;
300 case Attribute::ZExt: return 1 << 0;
301 case Attribute::SExt: return 1 << 1;
302 case Attribute::NoReturn: return 1 << 2;
303 case Attribute::InReg: return 1 << 3;
304 case Attribute::StructRet: return 1 << 4;
305 case Attribute::NoUnwind: return 1 << 5;
306 case Attribute::NoAlias: return 1 << 6;
307 case Attribute::ByVal: return 1 << 7;
308 case Attribute::Nest: return 1 << 8;
309 case Attribute::ReadNone: return 1 << 9;
310 case Attribute::ReadOnly: return 1 << 10;
311 case Attribute::NoInline: return 1 << 11;
312 case Attribute::AlwaysInline: return 1 << 12;
313 case Attribute::OptimizeForSize: return 1 << 13;
314 case Attribute::StackProtect: return 1 << 14;
315 case Attribute::StackProtectReq: return 1 << 15;
316 case Attribute::Alignment: return 31 << 16;
317 case Attribute::NoCapture: return 1 << 21;
318 case Attribute::NoRedZone: return 1 << 22;
319 case Attribute::NoImplicitFloat: return 1 << 23;
320 case Attribute::Naked: return 1 << 24;
321 case Attribute::InlineHint: return 1 << 25;
322 case Attribute::StackAlignment: return 7 << 26;
323 case Attribute::ReturnsTwice: return 1 << 29;
324 case Attribute::UWTable: return 1 << 30;
325 case Attribute::NonLazyBind: return 1U << 31;
326 case Attribute::AddressSafety: return 1ULL << 32;
327 case Attribute::MinSize: return 1ULL << 33;
328 case Attribute::NoDuplicate: return 1ULL << 34;
329 case Attribute::StackProtectStrong: return 1ULL << 35;
330 }
331 llvm_unreachable("Unsupported attribute type");
332}
333
334//===----------------------------------------------------------------------===//
335// AttributeSetNode Definition
336//===----------------------------------------------------------------------===//
337
338AttributeSetNode *AttributeSetNode::get(LLVMContext &C,
339 ArrayRef<Attribute> Attrs) {
340 if (Attrs.empty())
341 return 0;
342
343 // Otherwise, build a key to look up the existing attributes.
344 LLVMContextImpl *pImpl = C.pImpl;
345 FoldingSetNodeID ID;
346
347 SmallVector<Attribute, 8> SortedAttrs(Attrs.begin(), Attrs.end());
348 std::sort(SortedAttrs.begin(), SortedAttrs.end());
349
350 for (SmallVectorImpl<Attribute>::iterator I = SortedAttrs.begin(),
351 E = SortedAttrs.end(); I != E; ++I)
352 I->Profile(ID);
353
354 void *InsertPoint;
355 AttributeSetNode *PA =
356 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
357
358 // If we didn't find any existing attributes of the same shape then create a
359 // new one and insert it.
360 if (!PA) {
361 PA = new AttributeSetNode(SortedAttrs);
362 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
363 }
364
365 // Return the AttributesListNode that we found or created.
366 return PA;
367}
368
Bill Wendling606c8e32013-01-29 03:20:31 +0000369bool AttributeSetNode::hasAttribute(Attribute::AttrKind Kind) const {
370 for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
371 E = AttrList.end(); I != E; ++I)
NAKAMURA Takumieddab152013-01-31 03:47:28 +0000372 if (I->hasAttribute(Kind))
Bill Wendling606c8e32013-01-29 03:20:31 +0000373 return true;
374 return false;
375}
376
377unsigned AttributeSetNode::getAlignment() const {
378 for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
379 E = AttrList.end(); I != E; ++I)
NAKAMURA Takumieddab152013-01-31 03:47:28 +0000380 if (I->hasAttribute(Attribute::Alignment))
Bill Wendling606c8e32013-01-29 03:20:31 +0000381 return I->getAlignment();
382 return 0;
383}
384
385unsigned AttributeSetNode::getStackAlignment() const {
386 for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
387 E = AttrList.end(); I != E; ++I)
NAKAMURA Takumieddab152013-01-31 03:47:28 +0000388 if (I->hasAttribute(Attribute::StackAlignment))
Bill Wendling606c8e32013-01-29 03:20:31 +0000389 return I->getStackAlignment();
390 return 0;
391}
392
393std::string AttributeSetNode::getAsString() const {
394 std::string Str = "";
395 for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
Bill Wendling7beee282013-02-01 01:04:27 +0000396 E = AttrList.end(); I != E; ) {
Bill Wendling606c8e32013-01-29 03:20:31 +0000397 Str += I->getAsString();
Bill Wendling7beee282013-02-01 01:04:27 +0000398 if (++I != E) Str += " ";
Bill Wendling606c8e32013-01-29 03:20:31 +0000399 }
400 return Str;
401}
402
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000403//===----------------------------------------------------------------------===//
404// AttributeSetImpl Definition
405//===----------------------------------------------------------------------===//
406
407uint64_t AttributeSetImpl::Raw(uint64_t Index) const {
408 for (unsigned I = 0, E = getNumAttributes(); I != E; ++I) {
409 if (getSlotIndex(I) != Index) continue;
410 const AttributeSetNode *ASN = AttrNodes[I].second;
Bill Wendlingfca0ed22013-02-02 00:52:44 +0000411 uint64_t Mask = 0;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000412
413 for (AttributeSetNode::const_iterator II = ASN->begin(),
Bill Wendlingfca0ed22013-02-02 00:52:44 +0000414 IE = ASN->end(); II != IE; ++II) {
415 Attribute Attr = *II;
416 ConstantInt *Kind = cast<ConstantInt>(Attr.getAttributeKind());
417 Attribute::AttrKind KindVal = Attribute::AttrKind(Kind->getZExtValue());
418
419 if (KindVal == Attribute::Alignment)
420 Mask |= (Log2_32(ASN->getAlignment()) + 1) << 16;
421 else if (KindVal == Attribute::StackAlignment)
422 Mask |= (Log2_32(ASN->getStackAlignment()) + 1) << 26;
423 else
424 Mask |= AttributeImpl::getAttrMask(KindVal);
425 }
426
427 return Mask;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000428 }
429
430 return 0;
431}
432
433//===----------------------------------------------------------------------===//
434// AttributeSet Construction and Mutation Methods
435//===----------------------------------------------------------------------===//
436
Bill Wendling8232ece2013-01-29 01:43:29 +0000437AttributeSet
438AttributeSet::getImpl(LLVMContext &C,
439 ArrayRef<std::pair<unsigned, AttributeSetNode*> > Attrs) {
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000440 LLVMContextImpl *pImpl = C.pImpl;
441 FoldingSetNodeID ID;
442 AttributeSetImpl::Profile(ID, Attrs);
443
444 void *InsertPoint;
445 AttributeSetImpl *PA = pImpl->AttrsLists.FindNodeOrInsertPos(ID, InsertPoint);
446
447 // If we didn't find any existing attributes of the same shape then
448 // create a new one and insert it.
449 if (!PA) {
450 PA = new AttributeSetImpl(C, Attrs);
451 pImpl->AttrsLists.InsertNode(PA, InsertPoint);
452 }
453
454 // Return the AttributesList that we found or created.
455 return AttributeSet(PA);
456}
457
458AttributeSet AttributeSet::get(LLVMContext &C,
459 ArrayRef<std::pair<unsigned, Attribute> > Attrs){
460 // If there are no attributes then return a null AttributesList pointer.
461 if (Attrs.empty())
462 return AttributeSet();
463
464#ifndef NDEBUG
465 for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
466 assert((!i || Attrs[i-1].first <= Attrs[i].first) &&
467 "Misordered Attributes list!");
Bill Wendling82aea642013-01-31 06:22:35 +0000468 assert(Attrs[i].second != Attribute::None &&
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000469 "Pointless attribute!");
470 }
471#endif
472
473 // Create a vector if (unsigned, AttributeSetNode*) pairs from the attributes
474 // list.
475 SmallVector<std::pair<unsigned, AttributeSetNode*>, 8> AttrPairVec;
476 for (ArrayRef<std::pair<unsigned, Attribute> >::iterator I = Attrs.begin(),
477 E = Attrs.end(); I != E; ) {
478 unsigned Index = I->first;
479 SmallVector<Attribute, 4> AttrVec;
NAKAMURA Takumi3ba51ce2013-01-29 15:18:16 +0000480 while (I != E && I->first == Index) {
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000481 AttrVec.push_back(I->second);
482 ++I;
483 }
484
485 AttrPairVec.push_back(std::make_pair(Index,
486 AttributeSetNode::get(C, AttrVec)));
487 }
488
489 return getImpl(C, AttrPairVec);
490}
491
492AttributeSet AttributeSet::get(LLVMContext &C,
493 ArrayRef<std::pair<unsigned,
494 AttributeSetNode*> > Attrs) {
495 // If there are no attributes then return a null AttributesList pointer.
496 if (Attrs.empty())
497 return AttributeSet();
498
499 return getImpl(C, Attrs);
500}
501
502AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx, AttrBuilder &B) {
503 if (!B.hasAttributes())
504 return AttributeSet();
Bill Wendling8fbc0c22013-01-29 01:02:03 +0000505
506 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
507 for (AttrBuilder::iterator I = B.begin(), E = B.end(); I != E; ++I) {
508 Attribute::AttrKind Kind = *I;
509 if (Kind == Attribute::Alignment)
510 Attrs.push_back(std::make_pair(Idx, Attribute::
511 getWithAlignment(C, B.getAlignment())));
512 else if (Kind == Attribute::StackAlignment)
513 Attrs.push_back(std::make_pair(Idx, Attribute::
514 getWithStackAlignment(C, B.getStackAlignment())));
515 else
516 Attrs.push_back(std::make_pair(Idx, Attribute::get(C, Kind)));
517 }
518
519 return get(C, Attrs);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000520}
521
522AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx,
523 ArrayRef<Attribute::AttrKind> Kind) {
524 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
525 for (ArrayRef<Attribute::AttrKind>::iterator I = Kind.begin(),
526 E = Kind.end(); I != E; ++I)
527 Attrs.push_back(std::make_pair(Idx, Attribute::get(C, *I)));
528 return get(C, Attrs);
529}
530
531AttributeSet AttributeSet::get(LLVMContext &C, ArrayRef<AttributeSet> Attrs) {
532 if (Attrs.empty()) return AttributeSet();
533
534 SmallVector<std::pair<unsigned, AttributeSetNode*>, 8> AttrNodeVec;
535 for (unsigned I = 0, E = Attrs.size(); I != E; ++I) {
536 AttributeSet AS = Attrs[I];
537 if (!AS.pImpl) continue;
538 AttrNodeVec.append(AS.pImpl->AttrNodes.begin(), AS.pImpl->AttrNodes.end());
539 }
540
541 return getImpl(C, AttrNodeVec);
542}
543
544AttributeSet AttributeSet::addAttribute(LLVMContext &C, unsigned Idx,
545 Attribute::AttrKind Attr) const {
546 return addAttributes(C, Idx, AttributeSet::get(C, Idx, Attr));
547}
548
549AttributeSet AttributeSet::addAttributes(LLVMContext &C, unsigned Idx,
550 AttributeSet Attrs) const {
551 if (!pImpl) return Attrs;
552 if (!Attrs.pImpl) return *this;
553
554#ifndef NDEBUG
555 // FIXME it is not obvious how this should work for alignment. For now, say
556 // we can't change a known alignment.
557 unsigned OldAlign = getParamAlignment(Idx);
558 unsigned NewAlign = Attrs.getParamAlignment(Idx);
559 assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
560 "Attempt to change alignment!");
561#endif
562
563 // Add the attribute slots before the one we're trying to add.
564 SmallVector<AttributeSet, 4> AttrSet;
565 uint64_t NumAttrs = pImpl->getNumAttributes();
566 AttributeSet AS;
567 uint64_t LastIndex = 0;
568 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
569 if (getSlotIndex(I) >= Idx) {
570 if (getSlotIndex(I) == Idx) AS = getSlotAttributes(LastIndex++);
571 break;
572 }
573 LastIndex = I + 1;
574 AttrSet.push_back(getSlotAttributes(I));
575 }
576
577 // Now add the attribute into the correct slot. There may already be an
578 // AttributeSet there.
579 AttrBuilder B(AS, Idx);
580
581 for (unsigned I = 0, E = Attrs.pImpl->getNumAttributes(); I != E; ++I)
582 if (Attrs.getSlotIndex(I) == Idx) {
583 for (AttributeSetImpl::const_iterator II = Attrs.pImpl->begin(I),
584 IE = Attrs.pImpl->end(I); II != IE; ++II)
Bill Wendling39da0782013-01-31 23:38:01 +0000585 B.addAttribute(*II);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000586 break;
587 }
588
589 AttrSet.push_back(AttributeSet::get(C, Idx, B));
590
591 // Add the remaining attribute slots.
592 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
593 AttrSet.push_back(getSlotAttributes(I));
594
595 return get(C, AttrSet);
596}
597
598AttributeSet AttributeSet::removeAttribute(LLVMContext &C, unsigned Idx,
599 Attribute::AttrKind Attr) const {
600 return removeAttributes(C, Idx, AttributeSet::get(C, Idx, Attr));
601}
602
603AttributeSet AttributeSet::removeAttributes(LLVMContext &C, unsigned Idx,
604 AttributeSet Attrs) const {
605 if (!pImpl) return AttributeSet();
606 if (!Attrs.pImpl) return *this;
607
608#ifndef NDEBUG
609 // FIXME it is not obvious how this should work for alignment.
610 // For now, say we can't pass in alignment, which no current use does.
611 assert(!Attrs.hasAttribute(Idx, Attribute::Alignment) &&
612 "Attempt to change alignment!");
613#endif
614
615 // Add the attribute slots before the one we're trying to add.
616 SmallVector<AttributeSet, 4> AttrSet;
617 uint64_t NumAttrs = pImpl->getNumAttributes();
618 AttributeSet AS;
619 uint64_t LastIndex = 0;
620 for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
621 if (getSlotIndex(I) >= Idx) {
622 if (getSlotIndex(I) == Idx) AS = getSlotAttributes(LastIndex++);
623 break;
624 }
625 LastIndex = I + 1;
626 AttrSet.push_back(getSlotAttributes(I));
627 }
628
Bill Wendlinge7436542013-01-30 23:07:40 +0000629 // Now remove the attribute from the correct slot. There may already be an
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000630 // AttributeSet there.
631 AttrBuilder B(AS, Idx);
632
633 for (unsigned I = 0, E = Attrs.pImpl->getNumAttributes(); I != E; ++I)
634 if (Attrs.getSlotIndex(I) == Idx) {
Bill Wendlinge7436542013-01-30 23:07:40 +0000635 B.removeAttributes(Attrs.pImpl->getSlotAttributes(I), Idx);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000636 break;
637 }
638
639 AttrSet.push_back(AttributeSet::get(C, Idx, B));
640
641 // Add the remaining attribute slots.
642 for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
643 AttrSet.push_back(getSlotAttributes(I));
644
645 return get(C, AttrSet);
646}
647
648//===----------------------------------------------------------------------===//
649// AttributeSet Accessor Methods
650//===----------------------------------------------------------------------===//
651
652AttributeSet AttributeSet::getParamAttributes(unsigned Idx) const {
653 return pImpl && hasAttributes(Idx) ?
654 AttributeSet::get(pImpl->getContext(),
Bill Wendling606c8e32013-01-29 03:20:31 +0000655 ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000656 std::make_pair(Idx, getAttributes(Idx)))) :
657 AttributeSet();
658}
659
660AttributeSet AttributeSet::getRetAttributes() const {
661 return pImpl && hasAttributes(ReturnIndex) ?
662 AttributeSet::get(pImpl->getContext(),
Bill Wendling606c8e32013-01-29 03:20:31 +0000663 ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000664 std::make_pair(ReturnIndex,
665 getAttributes(ReturnIndex)))) :
666 AttributeSet();
667}
668
669AttributeSet AttributeSet::getFnAttributes() const {
670 return pImpl && hasAttributes(FunctionIndex) ?
671 AttributeSet::get(pImpl->getContext(),
Bill Wendling606c8e32013-01-29 03:20:31 +0000672 ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000673 std::make_pair(FunctionIndex,
674 getAttributes(FunctionIndex)))) :
675 AttributeSet();
676}
677
678bool AttributeSet::hasAttribute(unsigned Index, Attribute::AttrKind Kind) const{
Bill Wendling606c8e32013-01-29 03:20:31 +0000679 AttributeSetNode *ASN = getAttributes(Index);
680 return ASN ? ASN->hasAttribute(Kind) : false;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000681}
682
683bool AttributeSet::hasAttributes(unsigned Index) const {
Bill Wendling606c8e32013-01-29 03:20:31 +0000684 AttributeSetNode *ASN = getAttributes(Index);
685 return ASN ? ASN->hasAttributes() : false;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000686}
687
688/// \brief Return true if the specified attribute is set for at least one
689/// parameter or for the return value.
690bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const {
691 if (pImpl == 0) return false;
692
693 for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I)
694 for (AttributeSetImpl::const_iterator II = pImpl->begin(I),
695 IE = pImpl->end(I); II != IE; ++II)
NAKAMURA Takumieddab152013-01-31 03:47:28 +0000696 if (II->hasAttribute(Attr))
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000697 return true;
698
699 return false;
700}
701
Bill Wendling606c8e32013-01-29 03:20:31 +0000702unsigned AttributeSet::getParamAlignment(unsigned Index) const {
703 AttributeSetNode *ASN = getAttributes(Index);
704 return ASN ? ASN->getAlignment() : 0;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000705}
706
707unsigned AttributeSet::getStackAlignment(unsigned Index) const {
Bill Wendling606c8e32013-01-29 03:20:31 +0000708 AttributeSetNode *ASN = getAttributes(Index);
709 return ASN ? ASN->getStackAlignment() : 0;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000710}
711
712std::string AttributeSet::getAsString(unsigned Index) const {
Bill Wendling606c8e32013-01-29 03:20:31 +0000713 AttributeSetNode *ASN = getAttributes(Index);
714 return ASN ? ASN->getAsString() : std::string("");
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000715}
716
717/// \brief The attributes for the specified index are returned.
Bill Wendling606c8e32013-01-29 03:20:31 +0000718AttributeSetNode *AttributeSet::getAttributes(unsigned Idx) const {
719 if (!pImpl) return 0;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000720
Bill Wendling606c8e32013-01-29 03:20:31 +0000721 // Loop through to find the attribute node we want.
722 for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I)
723 if (pImpl->getSlotIndex(I) == Idx)
724 return pImpl->getSlotNode(I);
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000725
Bill Wendling606c8e32013-01-29 03:20:31 +0000726 return 0;
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000727}
728
Bill Wendlingf715dbd2013-02-01 00:48:14 +0000729AttributeSet::iterator AttributeSet::begin(unsigned Idx) const {
Bill Wendling16c4b3c2013-01-31 23:53:05 +0000730 if (!pImpl)
731 return ArrayRef<Attribute>().begin();
732 return pImpl->begin(Idx);
733}
734
Bill Wendlingf715dbd2013-02-01 00:48:14 +0000735AttributeSet::iterator AttributeSet::end(unsigned Idx) const {
Bill Wendling16c4b3c2013-01-31 23:53:05 +0000736 if (!pImpl)
737 return ArrayRef<Attribute>().end();
Bill Wendling30d2c762013-02-01 00:13:50 +0000738 return pImpl->end(Idx);
Bill Wendling16c4b3c2013-01-31 23:53:05 +0000739}
740
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000741//===----------------------------------------------------------------------===//
742// AttributeSet Introspection Methods
743//===----------------------------------------------------------------------===//
744
745/// \brief Return the number of slots used in this attribute list. This is the
746/// number of arguments that have an attribute set on them (including the
747/// function itself).
748unsigned AttributeSet::getNumSlots() const {
749 return pImpl ? pImpl->getNumAttributes() : 0;
750}
751
752uint64_t AttributeSet::getSlotIndex(unsigned Slot) const {
753 assert(pImpl && Slot < pImpl->getNumAttributes() &&
754 "Slot # out of range!");
755 return pImpl->getSlotIndex(Slot);
756}
757
758AttributeSet AttributeSet::getSlotAttributes(unsigned Slot) const {
759 assert(pImpl && Slot < pImpl->getNumAttributes() &&
760 "Slot # out of range!");
761 return pImpl->getSlotAttributes(Slot);
762}
763
764uint64_t AttributeSet::Raw(unsigned Index) const {
765 // FIXME: Remove this.
766 return pImpl ? pImpl->Raw(Index) : 0;
767}
768
769void AttributeSet::dump() const {
770 dbgs() << "PAL[\n";
771
772 for (unsigned i = 0, e = getNumSlots(); i < e; ++i) {
773 uint64_t Index = getSlotIndex(i);
774 dbgs() << " { ";
775 if (Index == ~0U)
776 dbgs() << "~0U";
777 else
778 dbgs() << Index;
779 dbgs() << " => " << getAsString(Index) << " }\n";
780 }
781
782 dbgs() << "]\n";
783}
784
Bill Wendlinge66f3d32012-10-05 06:44:41 +0000785//===----------------------------------------------------------------------===//
Bill Wendling03198882013-01-04 23:27:34 +0000786// AttrBuilder Method Implementations
Bill Wendlinge66f3d32012-10-05 06:44:41 +0000787//===----------------------------------------------------------------------===//
788
Bill Wendlinga90a99a2013-01-07 08:24:35 +0000789AttrBuilder::AttrBuilder(AttributeSet AS, unsigned Idx)
790 : Alignment(0), StackAlignment(0) {
Bill Wendlingec258982013-01-27 21:23:46 +0000791 AttributeSetImpl *pImpl = AS.pImpl;
Bill Wendlinga90a99a2013-01-07 08:24:35 +0000792 if (!pImpl) return;
793
Bill Wendling73bc4522013-01-28 00:21:34 +0000794 for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I) {
795 if (pImpl->getSlotIndex(I) != Idx) continue;
Bill Wendlinga90a99a2013-01-07 08:24:35 +0000796
Bill Wendling383da6b2013-01-30 21:22:59 +0000797 for (AttributeSetImpl::const_iterator II = pImpl->begin(I),
Bill Wendling73bc4522013-01-28 00:21:34 +0000798 IE = pImpl->end(I); II != IE; ++II)
Bill Wendling39da0782013-01-31 23:38:01 +0000799 addAttribute(*II);
Bill Wendling73bc4522013-01-28 00:21:34 +0000800
801 break;
802 }
Bill Wendlinga90a99a2013-01-07 08:24:35 +0000803}
804
Bill Wendling03198882013-01-04 23:27:34 +0000805void AttrBuilder::clear() {
806 Attrs.clear();
807 Alignment = StackAlignment = 0;
808}
809
810AttrBuilder &AttrBuilder::addAttribute(Attribute::AttrKind Val) {
Bill Wendling169d5272013-01-31 23:16:25 +0000811 assert(Val != Attribute::Alignment && Val != Attribute::StackAlignment &&
812 "Adding alignment attribute without adding alignment value!");
Bill Wendling03198882013-01-04 23:27:34 +0000813 Attrs.insert(Val);
Bill Wendling3a106e62012-10-09 19:01:18 +0000814 return *this;
Bill Wendlinge66f3d32012-10-05 06:44:41 +0000815}
816
Bill Wendling39da0782013-01-31 23:38:01 +0000817AttrBuilder &AttrBuilder::addAttribute(Attribute Attr) {
Bill Wendling169d5272013-01-31 23:16:25 +0000818 ConstantInt *Kind = cast<ConstantInt>(Attr.getAttributeKind());
819 Attribute::AttrKind KindVal = Attribute::AttrKind(Kind->getZExtValue());
820 Attrs.insert(KindVal);
Bill Wendling49f60602013-01-28 05:23:28 +0000821
Bill Wendling169d5272013-01-31 23:16:25 +0000822 if (KindVal == Attribute::Alignment)
Bill Wendling49f60602013-01-28 05:23:28 +0000823 Alignment = Attr.getAlignment();
Bill Wendling169d5272013-01-31 23:16:25 +0000824 else if (KindVal == Attribute::StackAlignment)
Bill Wendling49f60602013-01-28 05:23:28 +0000825 StackAlignment = Attr.getStackAlignment();
826 return *this;
827}
828
Bill Wendlingea59f892013-02-05 08:09:32 +0000829AttrBuilder &AttrBuilder::addAttribute(StringRef A, StringRef V) {
830 TargetDepAttrs[A] = V;
831 return *this;
832}
833
Bill Wendling39da0782013-01-31 23:38:01 +0000834AttrBuilder &AttrBuilder::removeAttribute(Attribute::AttrKind Val) {
835 Attrs.erase(Val);
836
837 if (Val == Attribute::Alignment)
838 Alignment = 0;
839 else if (Val == Attribute::StackAlignment)
840 StackAlignment = 0;
841
842 return *this;
843}
844
Bill Wendlinge7436542013-01-30 23:07:40 +0000845AttrBuilder &AttrBuilder::removeAttributes(AttributeSet A, uint64_t Index) {
Bill Wendling30d2c762013-02-01 00:13:50 +0000846 unsigned Idx = ~0U;
847 for (unsigned I = 0, E = A.getNumSlots(); I != E; ++I)
848 if (A.getSlotIndex(I) == Index) {
849 Idx = I;
850 break;
Bill Wendling49f60602013-01-28 05:23:28 +0000851 }
Bill Wendling30d2c762013-02-01 00:13:50 +0000852
853 assert(Idx != ~0U && "Couldn't find index in AttributeSet!");
854
855 for (AttributeSet::iterator I = A.begin(Idx), E = A.end(Idx); I != E; ++I) {
856 ConstantInt *CI = cast<ConstantInt>(I->getAttributeKind());
857 Attribute::AttrKind Kind = Attribute::AttrKind(CI->getZExtValue());
858 Attrs.erase(Kind);
859
860 if (Kind == Attribute::Alignment)
861 Alignment = 0;
862 else if (Kind == Attribute::StackAlignment)
863 StackAlignment = 0;
Bill Wendling49f60602013-01-28 05:23:28 +0000864 }
865
866 return *this;
867}
868
Bill Wendlingea59f892013-02-05 08:09:32 +0000869AttrBuilder &AttrBuilder::removeAttribute(StringRef A) {
870 std::map<std::string, std::string>::iterator I = TargetDepAttrs.find(A);
871 if (I != TargetDepAttrs.end())
872 TargetDepAttrs.erase(I);
873 return *this;
874}
875
Bill Wendling702cc912012-10-15 20:35:56 +0000876AttrBuilder &AttrBuilder::addAlignmentAttr(unsigned Align) {
Bill Wendlingda3f9d82012-10-14 03:58:29 +0000877 if (Align == 0) return *this;
Bill Wendling03198882013-01-04 23:27:34 +0000878
Bill Wendlinge66f3d32012-10-05 06:44:41 +0000879 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
880 assert(Align <= 0x40000000 && "Alignment too large.");
Bill Wendling03198882013-01-04 23:27:34 +0000881
882 Attrs.insert(Attribute::Alignment);
883 Alignment = Align;
Bill Wendlingda3f9d82012-10-14 03:58:29 +0000884 return *this;
Chris Lattner50ee9dd2008-01-02 23:42:30 +0000885}
886
Bill Wendling03198882013-01-04 23:27:34 +0000887AttrBuilder &AttrBuilder::addStackAlignmentAttr(unsigned Align) {
888 // Default alignment, allow the target to define how to align it.
889 if (Align == 0) return *this;
890
891 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
892 assert(Align <= 0x100 && "Alignment too large.");
893
894 Attrs.insert(Attribute::StackAlignment);
895 StackAlignment = Align;
896 return *this;
897}
898
Bill Wendling22bd6412013-01-03 01:54:39 +0000899bool AttrBuilder::contains(Attribute::AttrKind A) const {
Bill Wendling03198882013-01-04 23:27:34 +0000900 return Attrs.count(A);
Bill Wendling7d2f2492012-10-10 07:36:45 +0000901}
902
Bill Wendling702cc912012-10-15 20:35:56 +0000903bool AttrBuilder::hasAttributes() const {
Bill Wendling03198882013-01-04 23:27:34 +0000904 return !Attrs.empty();
Bill Wendlingf385f4c2012-10-08 23:27:46 +0000905}
Bill Wendling60507d52013-01-04 20:54:35 +0000906
Bill Wendlinge7436542013-01-30 23:07:40 +0000907bool AttrBuilder::hasAttributes(AttributeSet A, uint64_t Index) const {
Bill Wendlingbdcbccc2013-02-02 00:42:06 +0000908 unsigned Idx = ~0U;
909 for (unsigned I = 0, E = A.getNumSlots(); I != E; ++I)
910 if (A.getSlotIndex(I) == Index) {
911 Idx = I;
912 break;
913 }
914
915 assert(Idx != ~0U && "Couldn't find the index!");
916
917 for (AttributeSet::iterator I = A.begin(Idx), E = A.end(Idx);
918 I != E; ++I) {
919 Attribute Attr = *I;
920 // FIXME: Support StringRefs.
Bill Wendlingfca0ed22013-02-02 00:52:44 +0000921 ConstantInt *Kind = cast<ConstantInt>(Attr.getAttributeKind());
922 Attribute::AttrKind KindVal = Attribute::AttrKind(Kind->getZExtValue());
Bill Wendlingbdcbccc2013-02-02 00:42:06 +0000923
Bill Wendlingfca0ed22013-02-02 00:52:44 +0000924 if (Attrs.count(KindVal))
Bill Wendlingbdcbccc2013-02-02 00:42:06 +0000925 return true;
926 }
927
928 return false;
Bill Wendling8831c062012-10-09 00:01:21 +0000929}
Bill Wendling60507d52013-01-04 20:54:35 +0000930
Bill Wendling702cc912012-10-15 20:35:56 +0000931bool AttrBuilder::hasAlignmentAttr() const {
Bill Wendling03198882013-01-04 23:27:34 +0000932 return Alignment != 0;
Bill Wendlingf385f4c2012-10-08 23:27:46 +0000933}
934
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000935bool AttrBuilder::operator==(const AttrBuilder &B) {
936 SmallVector<Attribute::AttrKind, 8> This(Attrs.begin(), Attrs.end());
937 SmallVector<Attribute::AttrKind, 8> That(B.Attrs.begin(), B.Attrs.end());
938 return This == That;
939}
940
941AttrBuilder &AttrBuilder::addRawValue(uint64_t Val) {
Bill Wendlingf9271ea2013-02-04 23:32:23 +0000942 // FIXME: Remove this in 4.0.
Bill Wendling8232ece2013-01-29 01:43:29 +0000943 if (!Val) return *this;
944
Bill Wendlingc22f4aa2013-01-29 00:34:06 +0000945 for (Attribute::AttrKind I = Attribute::None; I != Attribute::EndAttrKinds;
946 I = Attribute::AttrKind(I + 1)) {
947 if (uint64_t A = (Val & AttributeImpl::getAttrMask(I))) {
948 Attrs.insert(I);
949
950 if (I == Attribute::Alignment)
951 Alignment = 1ULL << ((A >> 16) - 1);
952 else if (I == Attribute::StackAlignment)
953 StackAlignment = 1ULL << ((A >> 26)-1);
954 }
955 }
956
957 return *this;
958}
959
Bill Wendling8e47daf2013-01-25 23:09:36 +0000960//===----------------------------------------------------------------------===//
961// AttributeFuncs Function Defintions
962//===----------------------------------------------------------------------===//
963
Bill Wendling7beee282013-02-01 01:04:27 +0000964/// \brief Which attributes cannot be applied to a type.
Bill Wendlinge7436542013-01-30 23:07:40 +0000965AttributeSet AttributeFuncs::typeIncompatible(Type *Ty, uint64_t Index) {
Bill Wendling8e47daf2013-01-25 23:09:36 +0000966 AttrBuilder Incompatible;
967
968 if (!Ty->isIntegerTy())
969 // Attribute that only apply to integers.
970 Incompatible.addAttribute(Attribute::SExt)
971 .addAttribute(Attribute::ZExt);
972
973 if (!Ty->isPointerTy())
974 // Attribute that only apply to pointers.
975 Incompatible.addAttribute(Attribute::ByVal)
976 .addAttribute(Attribute::Nest)
977 .addAttribute(Attribute::NoAlias)
978 .addAttribute(Attribute::NoCapture)
979 .addAttribute(Attribute::StructRet);
980
Bill Wendlinge7436542013-01-30 23:07:40 +0000981 return AttributeSet::get(Ty->getContext(), Index, Incompatible);
Bill Wendling8e47daf2013-01-25 23:09:36 +0000982}