84d14b4419267127dad13616ada006133292362a
[oota-llvm.git] / lib / IR / Attributes.cpp
1 //===-- Attributes.cpp - Implement AttributesList -------------------------===//
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 //===----------------------------------------------------------------------===//
9 //
10 // \file
11 // \brief This file implements the Attribute, AttributeImpl, AttrBuilder,
12 // AttributeSetImpl, and AttributeSet classes.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/IR/Attributes.h"
17 #include "AttributeImpl.h"
18 #include "LLVMContextImpl.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/IR/Type.h"
21 #include "llvm/Support/Atomic.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/ManagedStatic.h"
24 #include "llvm/Support/Mutex.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include <algorithm>
27 using namespace llvm;
28
29 //===----------------------------------------------------------------------===//
30 // Attribute Construction Methods
31 //===----------------------------------------------------------------------===//
32
33 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
34                          uint64_t Val) {
35   LLVMContextImpl *pImpl = Context.pImpl;
36   FoldingSetNodeID ID;
37   ID.AddInteger(Kind);
38   if (Val) ID.AddInteger(Val);
39
40   void *InsertPoint;
41   AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
42
43   if (!PA) {
44     // If we didn't find any existing attributes of the same shape then create a
45     // new one and insert it.
46     PA = !Val ?
47       new AttributeImpl(Context, Kind) :
48       new AttributeImpl(Context, Kind, Val);
49     pImpl->AttrsSet.InsertNode(PA, InsertPoint);
50   }
51
52   // Return the Attribute that we found or created.
53   return Attribute(PA);
54 }
55
56 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) {
57   LLVMContextImpl *pImpl = Context.pImpl;
58   FoldingSetNodeID ID;
59   ID.AddString(Kind);
60   if (!Val.empty()) ID.AddString(Val);
61
62   void *InsertPoint;
63   AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
64
65   if (!PA) {
66     // If we didn't find any existing attributes of the same shape then create a
67     // new one and insert it.
68     PA = new AttributeImpl(Context, Kind, Val);
69     pImpl->AttrsSet.InsertNode(PA, InsertPoint);
70   }
71
72   // Return the Attribute that we found or created.
73   return Attribute(PA);
74 }
75
76 Attribute Attribute::getWithAlignment(LLVMContext &Context, uint64_t Align) {
77   assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
78   assert(Align <= 0x40000000 && "Alignment too large.");
79   return get(Context, Alignment, Align);
80 }
81
82 Attribute Attribute::getWithStackAlignment(LLVMContext &Context,
83                                            uint64_t Align) {
84   assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
85   assert(Align <= 0x100 && "Alignment too large.");
86   return get(Context, StackAlignment, Align);
87 }
88
89 //===----------------------------------------------------------------------===//
90 // Attribute Accessor Methods
91 //===----------------------------------------------------------------------===//
92
93 bool Attribute::isEnumAttribute() const {
94   return pImpl && pImpl->isEnumAttribute();
95 }
96
97 bool Attribute::isAlignAttribute() const {
98   return pImpl && pImpl->isAlignAttribute();
99 }
100
101 bool Attribute::isStringAttribute() const {
102   return pImpl && pImpl->isStringAttribute();
103 }
104
105 Attribute::AttrKind Attribute::getKindAsEnum() const {
106   assert((isEnumAttribute() || isAlignAttribute()) &&
107          "Invalid attribute type to get the kind as an enum!");
108   return pImpl ? pImpl->getKindAsEnum() : None;
109 }
110
111 uint64_t Attribute::getValueAsInt() const {
112   assert(isAlignAttribute() &&
113          "Expected the attribute to be an alignment attribute!");
114   return pImpl ? pImpl->getValueAsInt() : 0;
115 }
116
117 StringRef Attribute::getKindAsString() const {
118   assert(isStringAttribute() &&
119          "Invalid attribute type to get the kind as a string!");
120   return pImpl ? pImpl->getKindAsString() : StringRef();
121 }
122
123 StringRef Attribute::getValueAsString() const {
124   assert(isStringAttribute() &&
125          "Invalid attribute type to get the value as a string!");
126   return pImpl ? pImpl->getValueAsString() : StringRef();
127 }
128
129 bool Attribute::hasAttribute(AttrKind Kind) const {
130   return (pImpl && pImpl->hasAttribute(Kind)) || (!pImpl && Kind == None);
131 }
132
133 bool Attribute::hasAttribute(StringRef Kind) const {
134   if (!isStringAttribute()) return false;
135   return pImpl && pImpl->hasAttribute(Kind);
136 }
137
138 /// This returns the alignment field of an attribute as a byte alignment value.
139 unsigned Attribute::getAlignment() const {
140   assert(hasAttribute(Attribute::Alignment) &&
141          "Trying to get alignment from non-alignment attribute!");
142   return pImpl->getValueAsInt();
143 }
144
145 /// This returns the stack alignment field of an attribute as a byte alignment
146 /// value.
147 unsigned Attribute::getStackAlignment() const {
148   assert(hasAttribute(Attribute::StackAlignment) &&
149          "Trying to get alignment from non-alignment attribute!");
150   return pImpl->getValueAsInt();
151 }
152
153 std::string Attribute::getAsString(bool InAttrGrp) const {
154   if (!pImpl) return "";
155
156   if (hasAttribute(Attribute::AddressSafety))
157     return "address_safety";
158   if (hasAttribute(Attribute::AlwaysInline))
159     return "alwaysinline";
160   if (hasAttribute(Attribute::ByVal))
161     return "byval";
162   if (hasAttribute(Attribute::InlineHint))
163     return "inlinehint";
164   if (hasAttribute(Attribute::InReg))
165     return "inreg";
166   if (hasAttribute(Attribute::MinSize))
167     return "minsize";
168   if (hasAttribute(Attribute::Naked))
169     return "naked";
170   if (hasAttribute(Attribute::Nest))
171     return "nest";
172   if (hasAttribute(Attribute::NoAlias))
173     return "noalias";
174   if (hasAttribute(Attribute::NoBuiltin))
175     return "nobuiltin";
176   if (hasAttribute(Attribute::NoCapture))
177     return "nocapture";
178   if (hasAttribute(Attribute::NoDuplicate))
179     return "noduplicate";
180   if (hasAttribute(Attribute::NoImplicitFloat))
181     return "noimplicitfloat";
182   if (hasAttribute(Attribute::NoInline))
183     return "noinline";
184   if (hasAttribute(Attribute::NonLazyBind))
185     return "nonlazybind";
186   if (hasAttribute(Attribute::NoRedZone))
187     return "noredzone";
188   if (hasAttribute(Attribute::NoReturn))
189     return "noreturn";
190   if (hasAttribute(Attribute::NoUnwind))
191     return "nounwind";
192   if (hasAttribute(Attribute::OptimizeForSize))
193     return "optsize";
194   if (hasAttribute(Attribute::ReadNone))
195     return "readnone";
196   if (hasAttribute(Attribute::ReadOnly))
197     return "readonly";
198   if (hasAttribute(Attribute::ReturnsTwice))
199     return "returns_twice";
200   if (hasAttribute(Attribute::SExt))
201     return "signext";
202   if (hasAttribute(Attribute::StackProtect))
203     return "ssp";
204   if (hasAttribute(Attribute::StackProtectReq))
205     return "sspreq";
206   if (hasAttribute(Attribute::StackProtectStrong))
207     return "sspstrong";
208   if (hasAttribute(Attribute::StructRet))
209     return "sret";
210   if (hasAttribute(Attribute::ThreadSafety))
211     return "thread_safety";
212   if (hasAttribute(Attribute::UninitializedChecks))
213     return "uninitialized_checks";
214   if (hasAttribute(Attribute::UWTable))
215     return "uwtable";
216   if (hasAttribute(Attribute::ZExt))
217     return "zeroext";
218
219   // FIXME: These should be output like this:
220   //
221   //   align=4
222   //   alignstack=8
223   //
224   if (hasAttribute(Attribute::Alignment)) {
225     std::string Result;
226     Result += "align";
227     Result += (InAttrGrp) ? "=" : " ";
228     Result += utostr(getValueAsInt());
229     return Result;
230   }
231
232   if (hasAttribute(Attribute::StackAlignment)) {
233     std::string Result;
234     Result += "alignstack";
235     if (InAttrGrp) {
236       Result += "=";
237       Result += utostr(getValueAsInt());
238     } else {
239       Result += "(";
240       Result += utostr(getValueAsInt());
241       Result += ")";
242     }
243     return Result;
244   }
245
246   // Convert target-dependent attributes to strings of the form:
247   //
248   //   "kind"
249   //   "kind" = "value"
250   //
251   if (isStringAttribute()) {
252     std::string Result;
253     Result += '\"' + getKindAsString().str() + '"';
254
255     StringRef Val = pImpl->getValueAsString();
256     if (Val.empty()) return Result;
257
258     Result += "=\"" + Val.str() + '"';
259     return Result;
260   }
261
262   llvm_unreachable("Unknown attribute");
263 }
264
265 bool Attribute::operator<(Attribute A) const {
266   if (!pImpl && !A.pImpl) return false;
267   if (!pImpl) return true;
268   if (!A.pImpl) return false;
269   return *pImpl < *A.pImpl;
270 }
271
272 //===----------------------------------------------------------------------===//
273 // AttributeImpl Definition
274 //===----------------------------------------------------------------------===//
275
276 AttributeImpl::AttributeImpl(LLVMContext &C, Attribute::AttrKind Kind)
277   : Context(C), Entry(new EnumAttributeEntry(Kind)) {}
278
279 AttributeImpl::AttributeImpl(LLVMContext &C, Attribute::AttrKind Kind,
280                              unsigned Align)
281   : Context(C) {
282   assert((Kind == Attribute::Alignment || Kind == Attribute::StackAlignment) &&
283          "Wrong kind for alignment attribute!");
284   Entry = new AlignAttributeEntry(Kind, Align);
285 }
286
287 AttributeImpl::AttributeImpl(LLVMContext &C, StringRef Kind, StringRef Val)
288   : Context(C), Entry(new StringAttributeEntry(Kind, Val)) {}
289
290 AttributeImpl::~AttributeImpl() {
291   delete Entry;
292 }
293
294 bool AttributeImpl::isEnumAttribute() const {
295   return isa<EnumAttributeEntry>(Entry);
296 }
297
298 bool AttributeImpl::isAlignAttribute() const {
299   return isa<AlignAttributeEntry>(Entry);
300 }
301
302 bool AttributeImpl::isStringAttribute() const {
303   return isa<StringAttributeEntry>(Entry);
304 }
305
306 bool AttributeImpl::hasAttribute(Attribute::AttrKind A) const {
307   if (isStringAttribute()) return false;
308   return getKindAsEnum() == A;
309 }
310
311 bool AttributeImpl::hasAttribute(StringRef Kind) const {
312   if (!isStringAttribute()) return false;
313   return getKindAsString() == Kind;
314 }
315
316 Attribute::AttrKind AttributeImpl::getKindAsEnum() const {
317   if (EnumAttributeEntry *E = dyn_cast<EnumAttributeEntry>(Entry))
318     return E->getEnumKind();
319   return cast<AlignAttributeEntry>(Entry)->getEnumKind();
320 }
321
322 uint64_t AttributeImpl::getValueAsInt() const {
323   return cast<AlignAttributeEntry>(Entry)->getAlignment();
324 }
325
326 StringRef AttributeImpl::getKindAsString() const {
327   return cast<StringAttributeEntry>(Entry)->getStringKind();
328 }
329
330 StringRef AttributeImpl::getValueAsString() const {
331   return cast<StringAttributeEntry>(Entry)->getStringValue();
332 }
333
334 bool AttributeImpl::operator<(const AttributeImpl &AI) const {
335   // This sorts the attributes with Attribute::AttrKinds coming first (sorted
336   // relative to their enum value) and then strings.
337   if (isEnumAttribute()) {
338     if (AI.isEnumAttribute()) return getKindAsEnum() < AI.getKindAsEnum();
339     if (AI.isAlignAttribute()) return true;
340     if (AI.isStringAttribute()) return true;
341   }
342
343   if (isAlignAttribute()) {
344     if (AI.isEnumAttribute()) return false;
345     if (AI.isAlignAttribute()) return getValueAsInt() < AI.getValueAsInt();
346     if (AI.isStringAttribute()) return true;
347   }
348
349   if (AI.isEnumAttribute()) return false;
350   if (AI.isAlignAttribute()) return false;
351   if (getKindAsString() == AI.getKindAsString())
352     return getValueAsString() < AI.getValueAsString();
353   return getKindAsString() < AI.getKindAsString();
354 }
355
356 uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) {
357   // FIXME: Remove this.
358   switch (Val) {
359   default:
360     llvm_unreachable("Unsupported attribute type");
361   case Attribute::EndAttrKinds:
362     llvm_unreachable("Synthetic enumerators which should never get here");
363
364   case Attribute::None:            return 0;
365   case Attribute::ZExt:            return 1 << 0;
366   case Attribute::SExt:            return 1 << 1;
367   case Attribute::NoReturn:        return 1 << 2;
368   case Attribute::InReg:           return 1 << 3;
369   case Attribute::StructRet:       return 1 << 4;
370   case Attribute::NoUnwind:        return 1 << 5;
371   case Attribute::NoAlias:         return 1 << 6;
372   case Attribute::ByVal:           return 1 << 7;
373   case Attribute::Nest:            return 1 << 8;
374   case Attribute::ReadNone:        return 1 << 9;
375   case Attribute::ReadOnly:        return 1 << 10;
376   case Attribute::NoInline:        return 1 << 11;
377   case Attribute::AlwaysInline:    return 1 << 12;
378   case Attribute::OptimizeForSize: return 1 << 13;
379   case Attribute::StackProtect:    return 1 << 14;
380   case Attribute::StackProtectReq: return 1 << 15;
381   case Attribute::Alignment:       return 31 << 16;
382   case Attribute::NoCapture:       return 1 << 21;
383   case Attribute::NoRedZone:       return 1 << 22;
384   case Attribute::NoImplicitFloat: return 1 << 23;
385   case Attribute::Naked:           return 1 << 24;
386   case Attribute::InlineHint:      return 1 << 25;
387   case Attribute::StackAlignment:  return 7 << 26;
388   case Attribute::ReturnsTwice:    return 1 << 29;
389   case Attribute::UWTable:         return 1 << 30;
390   case Attribute::NonLazyBind:     return 1U << 31;
391   case Attribute::AddressSafety:   return 1ULL << 32;
392   case Attribute::MinSize:         return 1ULL << 33;
393   case Attribute::NoDuplicate:     return 1ULL << 34;
394   case Attribute::StackProtectStrong: return 1ULL << 35;
395   case Attribute::ThreadSafety:    return 1ULL << 36;
396   case Attribute::UninitializedChecks: return 1ULL << 37;
397   case Attribute::NoBuiltin:       return 1ULL << 38;
398  }
399 }
400
401 //===----------------------------------------------------------------------===//
402 // AttributeSetNode Definition
403 //===----------------------------------------------------------------------===//
404
405 AttributeSetNode *AttributeSetNode::get(LLVMContext &C,
406                                         ArrayRef<Attribute> Attrs) {
407   if (Attrs.empty())
408     return 0;
409
410   // Otherwise, build a key to look up the existing attributes.
411   LLVMContextImpl *pImpl = C.pImpl;
412   FoldingSetNodeID ID;
413
414   SmallVector<Attribute, 8> SortedAttrs(Attrs.begin(), Attrs.end());
415   array_pod_sort(SortedAttrs.begin(), SortedAttrs.end());
416
417   for (SmallVectorImpl<Attribute>::iterator I = SortedAttrs.begin(),
418          E = SortedAttrs.end(); I != E; ++I)
419     I->Profile(ID);
420
421   void *InsertPoint;
422   AttributeSetNode *PA =
423     pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
424
425   // If we didn't find any existing attributes of the same shape then create a
426   // new one and insert it.
427   if (!PA) {
428     PA = new AttributeSetNode(SortedAttrs);
429     pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
430   }
431
432   // Return the AttributesListNode that we found or created.
433   return PA;
434 }
435
436 bool AttributeSetNode::hasAttribute(Attribute::AttrKind Kind) const {
437   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
438          E = AttrList.end(); I != E; ++I)
439     if (I->hasAttribute(Kind))
440       return true;
441   return false;
442 }
443
444 bool AttributeSetNode::hasAttribute(StringRef Kind) const {
445   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
446          E = AttrList.end(); I != E; ++I)
447     if (I->hasAttribute(Kind))
448       return true;
449   return false;
450 }
451
452 Attribute AttributeSetNode::getAttribute(Attribute::AttrKind Kind) const {
453   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
454          E = AttrList.end(); I != E; ++I)
455     if (I->hasAttribute(Kind))
456       return *I;
457   return Attribute();
458 }
459
460 Attribute AttributeSetNode::getAttribute(StringRef Kind) const {
461   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
462          E = AttrList.end(); I != E; ++I)
463     if (I->hasAttribute(Kind))
464       return *I;
465   return Attribute();
466 }
467
468 unsigned AttributeSetNode::getAlignment() const {
469   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
470          E = AttrList.end(); I != E; ++I)
471     if (I->hasAttribute(Attribute::Alignment))
472       return I->getAlignment();
473   return 0;
474 }
475
476 unsigned AttributeSetNode::getStackAlignment() const {
477   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
478          E = AttrList.end(); I != E; ++I)
479     if (I->hasAttribute(Attribute::StackAlignment))
480       return I->getStackAlignment();
481   return 0;
482 }
483
484 std::string AttributeSetNode::getAsString(bool InAttrGrp) const {
485   std::string Str = "";
486   for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
487          E = AttrList.end(); I != E; ) {
488     Str += I->getAsString(InAttrGrp);
489     if (++I != E) Str += " ";
490   }
491   return Str;
492 }
493
494 //===----------------------------------------------------------------------===//
495 // AttributeSetImpl Definition
496 //===----------------------------------------------------------------------===//
497
498 uint64_t AttributeSetImpl::Raw(uint64_t Index) const {
499   for (unsigned I = 0, E = getNumAttributes(); I != E; ++I) {
500     if (getSlotIndex(I) != Index) continue;
501     const AttributeSetNode *ASN = AttrNodes[I].second;
502     uint64_t Mask = 0;
503
504     for (AttributeSetNode::const_iterator II = ASN->begin(),
505            IE = ASN->end(); II != IE; ++II) {
506       Attribute Attr = *II;
507
508       // This cannot handle string attributes.
509       if (Attr.isStringAttribute()) continue;
510
511       Attribute::AttrKind Kind = Attr.getKindAsEnum();
512
513       if (Kind == Attribute::Alignment)
514         Mask |= (Log2_32(ASN->getAlignment()) + 1) << 16;
515       else if (Kind == Attribute::StackAlignment)
516         Mask |= (Log2_32(ASN->getStackAlignment()) + 1) << 26;
517       else
518         Mask |= AttributeImpl::getAttrMask(Kind);
519     }
520
521     return Mask;
522   }
523
524   return 0;
525 }
526
527 //===----------------------------------------------------------------------===//
528 // AttributeSet Construction and Mutation Methods
529 //===----------------------------------------------------------------------===//
530
531 AttributeSet
532 AttributeSet::getImpl(LLVMContext &C,
533                       ArrayRef<std::pair<unsigned, AttributeSetNode*> > Attrs) {
534   LLVMContextImpl *pImpl = C.pImpl;
535   FoldingSetNodeID ID;
536   AttributeSetImpl::Profile(ID, Attrs);
537
538   void *InsertPoint;
539   AttributeSetImpl *PA = pImpl->AttrsLists.FindNodeOrInsertPos(ID, InsertPoint);
540
541   // If we didn't find any existing attributes of the same shape then
542   // create a new one and insert it.
543   if (!PA) {
544     PA = new AttributeSetImpl(C, Attrs);
545     pImpl->AttrsLists.InsertNode(PA, InsertPoint);
546   }
547
548   // Return the AttributesList that we found or created.
549   return AttributeSet(PA);
550 }
551
552 AttributeSet AttributeSet::get(LLVMContext &C,
553                                ArrayRef<std::pair<unsigned, Attribute> > Attrs){
554   // If there are no attributes then return a null AttributesList pointer.
555   if (Attrs.empty())
556     return AttributeSet();
557
558 #ifndef NDEBUG
559   for (unsigned i = 0, e = Attrs.size(); i != e; ++i) {
560     assert((!i || Attrs[i-1].first <= Attrs[i].first) &&
561            "Misordered Attributes list!");
562     assert(!Attrs[i].second.hasAttribute(Attribute::None) &&
563            "Pointless attribute!");
564   }
565 #endif
566
567   // Create a vector if (unsigned, AttributeSetNode*) pairs from the attributes
568   // list.
569   SmallVector<std::pair<unsigned, AttributeSetNode*>, 8> AttrPairVec;
570   for (ArrayRef<std::pair<unsigned, Attribute> >::iterator I = Attrs.begin(),
571          E = Attrs.end(); I != E; ) {
572     unsigned Index = I->first;
573     SmallVector<Attribute, 4> AttrVec;
574     while (I != E && I->first == Index) {
575       AttrVec.push_back(I->second);
576       ++I;
577     }
578
579     AttrPairVec.push_back(std::make_pair(Index,
580                                          AttributeSetNode::get(C, AttrVec)));
581   }
582
583   return getImpl(C, AttrPairVec);
584 }
585
586 AttributeSet AttributeSet::get(LLVMContext &C,
587                                ArrayRef<std::pair<unsigned,
588                                                   AttributeSetNode*> > Attrs) {
589   // If there are no attributes then return a null AttributesList pointer.
590   if (Attrs.empty())
591     return AttributeSet();
592
593   return getImpl(C, Attrs);
594 }
595
596 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx, AttrBuilder &B) {
597   if (!B.hasAttributes())
598     return AttributeSet();
599
600   // Add target-independent attributes.
601   SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
602   for (Attribute::AttrKind Kind = Attribute::None;
603        Kind != Attribute::EndAttrKinds; Kind = Attribute::AttrKind(Kind + 1)) {
604     if (!B.contains(Kind))
605       continue;
606
607     if (Kind == Attribute::Alignment)
608       Attrs.push_back(std::make_pair(Idx, Attribute::
609                                      getWithAlignment(C, B.getAlignment())));
610     else if (Kind == Attribute::StackAlignment)
611       Attrs.push_back(std::make_pair(Idx, Attribute::
612                               getWithStackAlignment(C, B.getStackAlignment())));
613     else
614       Attrs.push_back(std::make_pair(Idx, Attribute::get(C, Kind)));
615   }
616
617   // Add target-dependent (string) attributes.
618   for (AttrBuilder::td_iterator I = B.td_begin(), E = B.td_end();
619        I != E; ++I)
620     Attrs.push_back(std::make_pair(Idx, Attribute::get(C, I->first,I->second)));
621
622   return get(C, Attrs);
623 }
624
625 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx,
626                                ArrayRef<Attribute::AttrKind> Kind) {
627   SmallVector<std::pair<unsigned, Attribute>, 8> Attrs;
628   for (ArrayRef<Attribute::AttrKind>::iterator I = Kind.begin(),
629          E = Kind.end(); I != E; ++I)
630     Attrs.push_back(std::make_pair(Idx, Attribute::get(C, *I)));
631   return get(C, Attrs);
632 }
633
634 AttributeSet AttributeSet::get(LLVMContext &C, ArrayRef<AttributeSet> Attrs) {
635   if (Attrs.empty()) return AttributeSet();
636
637   SmallVector<std::pair<unsigned, AttributeSetNode*>, 8> AttrNodeVec;
638   for (unsigned I = 0, E = Attrs.size(); I != E; ++I) {
639     AttributeSet AS = Attrs[I];
640     if (!AS.pImpl) continue;
641     AttrNodeVec.append(AS.pImpl->AttrNodes.begin(), AS.pImpl->AttrNodes.end());
642   }
643
644   return getImpl(C, AttrNodeVec);
645 }
646
647 AttributeSet AttributeSet::addAttribute(LLVMContext &C, unsigned Idx,
648                                         Attribute::AttrKind Attr) const {
649   return addAttributes(C, Idx, AttributeSet::get(C, Idx, Attr));
650 }
651
652 AttributeSet AttributeSet::addAttributes(LLVMContext &C, unsigned Idx,
653                                          AttributeSet Attrs) const {
654   if (!pImpl) return Attrs;
655   if (!Attrs.pImpl) return *this;
656
657 #ifndef NDEBUG
658   // FIXME it is not obvious how this should work for alignment. For now, say
659   // we can't change a known alignment.
660   unsigned OldAlign = getParamAlignment(Idx);
661   unsigned NewAlign = Attrs.getParamAlignment(Idx);
662   assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
663          "Attempt to change alignment!");
664 #endif
665
666   // Add the attribute slots before the one we're trying to add.
667   SmallVector<AttributeSet, 4> AttrSet;
668   uint64_t NumAttrs = pImpl->getNumAttributes();
669   AttributeSet AS;
670   uint64_t LastIndex = 0;
671   for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
672     if (getSlotIndex(I) >= Idx) {
673       if (getSlotIndex(I) == Idx) AS = getSlotAttributes(LastIndex++);
674       break;
675     }
676     LastIndex = I + 1;
677     AttrSet.push_back(getSlotAttributes(I));
678   }
679
680   // Now add the attribute into the correct slot. There may already be an
681   // AttributeSet there.
682   AttrBuilder B(AS, Idx);
683
684   for (unsigned I = 0, E = Attrs.pImpl->getNumAttributes(); I != E; ++I)
685     if (Attrs.getSlotIndex(I) == Idx) {
686       for (AttributeSetImpl::const_iterator II = Attrs.pImpl->begin(I),
687              IE = Attrs.pImpl->end(I); II != IE; ++II)
688         B.addAttribute(*II);
689       break;
690     }
691
692   AttrSet.push_back(AttributeSet::get(C, Idx, B));
693
694   // Add the remaining attribute slots.
695   for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
696     AttrSet.push_back(getSlotAttributes(I));
697
698   return get(C, AttrSet);
699 }
700
701 AttributeSet AttributeSet::removeAttribute(LLVMContext &C, unsigned Idx,
702                                            Attribute::AttrKind Attr) const {
703   return removeAttributes(C, Idx, AttributeSet::get(C, Idx, Attr));
704 }
705
706 AttributeSet AttributeSet::removeAttributes(LLVMContext &C, unsigned Idx,
707                                             AttributeSet Attrs) const {
708   if (!pImpl) return AttributeSet();
709   if (!Attrs.pImpl) return *this;
710
711 #ifndef NDEBUG
712   // FIXME it is not obvious how this should work for alignment.
713   // For now, say we can't pass in alignment, which no current use does.
714   assert(!Attrs.hasAttribute(Idx, Attribute::Alignment) &&
715          "Attempt to change alignment!");
716 #endif
717
718   // Add the attribute slots before the one we're trying to add.
719   SmallVector<AttributeSet, 4> AttrSet;
720   uint64_t NumAttrs = pImpl->getNumAttributes();
721   AttributeSet AS;
722   uint64_t LastIndex = 0;
723   for (unsigned I = 0, E = NumAttrs; I != E; ++I) {
724     if (getSlotIndex(I) >= Idx) {
725       if (getSlotIndex(I) == Idx) AS = getSlotAttributes(LastIndex++);
726       break;
727     }
728     LastIndex = I + 1;
729     AttrSet.push_back(getSlotAttributes(I));
730   }
731
732   // Now remove the attribute from the correct slot. There may already be an
733   // AttributeSet there.
734   AttrBuilder B(AS, Idx);
735
736   for (unsigned I = 0, E = Attrs.pImpl->getNumAttributes(); I != E; ++I)
737     if (Attrs.getSlotIndex(I) == Idx) {
738       B.removeAttributes(Attrs.pImpl->getSlotAttributes(I), Idx);
739       break;
740     }
741
742   AttrSet.push_back(AttributeSet::get(C, Idx, B));
743
744   // Add the remaining attribute slots.
745   for (unsigned I = LastIndex, E = NumAttrs; I < E; ++I)
746     AttrSet.push_back(getSlotAttributes(I));
747
748   return get(C, AttrSet);
749 }
750
751 //===----------------------------------------------------------------------===//
752 // AttributeSet Accessor Methods
753 //===----------------------------------------------------------------------===//
754
755 LLVMContext &AttributeSet::getContext() const {
756   return pImpl->getContext();
757 }
758
759 AttributeSet AttributeSet::getParamAttributes(unsigned Idx) const {
760   return pImpl && hasAttributes(Idx) ?
761     AttributeSet::get(pImpl->getContext(),
762                       ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
763                         std::make_pair(Idx, getAttributes(Idx)))) :
764     AttributeSet();
765 }
766
767 AttributeSet AttributeSet::getRetAttributes() const {
768   return pImpl && hasAttributes(ReturnIndex) ?
769     AttributeSet::get(pImpl->getContext(),
770                       ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
771                         std::make_pair(ReturnIndex,
772                                        getAttributes(ReturnIndex)))) :
773     AttributeSet();
774 }
775
776 AttributeSet AttributeSet::getFnAttributes() const {
777   return pImpl && hasAttributes(FunctionIndex) ?
778     AttributeSet::get(pImpl->getContext(),
779                       ArrayRef<std::pair<unsigned, AttributeSetNode*> >(
780                         std::make_pair(FunctionIndex,
781                                        getAttributes(FunctionIndex)))) :
782     AttributeSet();
783 }
784
785 bool AttributeSet::hasAttribute(unsigned Index, Attribute::AttrKind Kind) const{
786   AttributeSetNode *ASN = getAttributes(Index);
787   return ASN ? ASN->hasAttribute(Kind) : false;
788 }
789
790 bool AttributeSet::hasAttribute(unsigned Index, StringRef Kind) const {
791   AttributeSetNode *ASN = getAttributes(Index);
792   return ASN ? ASN->hasAttribute(Kind) : false;
793 }
794
795 bool AttributeSet::hasAttributes(unsigned Index) const {
796   AttributeSetNode *ASN = getAttributes(Index);
797   return ASN ? ASN->hasAttributes() : false;
798 }
799
800 /// \brief Return true if the specified attribute is set for at least one
801 /// parameter or for the return value.
802 bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const {
803   if (pImpl == 0) return false;
804
805   for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I)
806     for (AttributeSetImpl::const_iterator II = pImpl->begin(I),
807            IE = pImpl->end(I); II != IE; ++II)
808       if (II->hasAttribute(Attr))
809         return true;
810
811   return false;
812 }
813
814 Attribute AttributeSet::getAttribute(unsigned Index,
815                                      Attribute::AttrKind Kind) const {
816   AttributeSetNode *ASN = getAttributes(Index);
817   return ASN ? ASN->getAttribute(Kind) : Attribute();
818 }
819
820 Attribute AttributeSet::getAttribute(unsigned Index,
821                                      StringRef Kind) const {
822   AttributeSetNode *ASN = getAttributes(Index);
823   return ASN ? ASN->getAttribute(Kind) : Attribute();
824 }
825
826 unsigned AttributeSet::getParamAlignment(unsigned Index) const {
827   AttributeSetNode *ASN = getAttributes(Index);
828   return ASN ? ASN->getAlignment() : 0;
829 }
830
831 unsigned AttributeSet::getStackAlignment(unsigned Index) const {
832   AttributeSetNode *ASN = getAttributes(Index);
833   return ASN ? ASN->getStackAlignment() : 0;
834 }
835
836 std::string AttributeSet::getAsString(unsigned Index,
837                                       bool InAttrGrp) const {
838   AttributeSetNode *ASN = getAttributes(Index);
839   return ASN ? ASN->getAsString(InAttrGrp) : std::string("");
840 }
841
842 /// \brief The attributes for the specified index are returned.
843 AttributeSetNode *AttributeSet::getAttributes(unsigned Idx) const {
844   if (!pImpl) return 0;
845
846   // Loop through to find the attribute node we want.
847   for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I)
848     if (pImpl->getSlotIndex(I) == Idx)
849       return pImpl->getSlotNode(I);
850
851   return 0;
852 }
853
854 AttributeSet::iterator AttributeSet::begin(unsigned Idx) const {
855   if (!pImpl)
856     return ArrayRef<Attribute>().begin();
857   return pImpl->begin(Idx);
858 }
859
860 AttributeSet::iterator AttributeSet::end(unsigned Idx) const {
861   if (!pImpl)
862     return ArrayRef<Attribute>().end();
863   return pImpl->end(Idx);
864 }
865
866 //===----------------------------------------------------------------------===//
867 // AttributeSet Introspection Methods
868 //===----------------------------------------------------------------------===//
869
870 /// \brief Return the number of slots used in this attribute list.  This is the
871 /// number of arguments that have an attribute set on them (including the
872 /// function itself).
873 unsigned AttributeSet::getNumSlots() const {
874   return pImpl ? pImpl->getNumAttributes() : 0;
875 }
876
877 uint64_t AttributeSet::getSlotIndex(unsigned Slot) const {
878   assert(pImpl && Slot < pImpl->getNumAttributes() &&
879          "Slot # out of range!");
880   return pImpl->getSlotIndex(Slot);
881 }
882
883 AttributeSet AttributeSet::getSlotAttributes(unsigned Slot) const {
884   assert(pImpl && Slot < pImpl->getNumAttributes() &&
885          "Slot # out of range!");
886   return pImpl->getSlotAttributes(Slot);
887 }
888
889 uint64_t AttributeSet::Raw(unsigned Index) const {
890   // FIXME: Remove this.
891   return pImpl ? pImpl->Raw(Index) : 0;
892 }
893
894 void AttributeSet::dump() const {
895   dbgs() << "PAL[\n";
896
897   for (unsigned i = 0, e = getNumSlots(); i < e; ++i) {
898     uint64_t Index = getSlotIndex(i);
899     dbgs() << "  { ";
900     if (Index == ~0U)
901       dbgs() << "~0U";
902     else
903       dbgs() << Index;
904     dbgs() << " => " << getAsString(Index) << " }\n";
905   }
906
907   dbgs() << "]\n";
908 }
909
910 //===----------------------------------------------------------------------===//
911 // AttrBuilder Method Implementations
912 //===----------------------------------------------------------------------===//
913
914 AttrBuilder::AttrBuilder(AttributeSet AS, unsigned Idx)
915   : Attrs(0), Alignment(0), StackAlignment(0) {
916   AttributeSetImpl *pImpl = AS.pImpl;
917   if (!pImpl) return;
918
919   for (unsigned I = 0, E = pImpl->getNumAttributes(); I != E; ++I) {
920     if (pImpl->getSlotIndex(I) != Idx) continue;
921
922     for (AttributeSetImpl::const_iterator II = pImpl->begin(I),
923            IE = pImpl->end(I); II != IE; ++II)
924       addAttribute(*II);
925
926     break;
927   }
928 }
929
930 void AttrBuilder::clear() {
931   Attrs.reset();
932   Alignment = StackAlignment = 0;
933 }
934
935 AttrBuilder &AttrBuilder::addAttribute(Attribute::AttrKind Val) {
936   assert((unsigned)Val < Attribute::EndAttrKinds && "Attribute out of range!");
937   assert(Val != Attribute::Alignment && Val != Attribute::StackAlignment &&
938          "Adding alignment attribute without adding alignment value!");
939   Attrs[Val] = true;
940   return *this;
941 }
942
943 AttrBuilder &AttrBuilder::addAttribute(Attribute Attr) {
944   if (Attr.isStringAttribute()) {
945     addAttribute(Attr.getKindAsString(), Attr.getValueAsString());
946     return *this;
947   }
948
949   Attribute::AttrKind Kind = Attr.getKindAsEnum();
950   Attrs[Kind] = true;
951
952   if (Kind == Attribute::Alignment)
953     Alignment = Attr.getAlignment();
954   else if (Kind == Attribute::StackAlignment)
955     StackAlignment = Attr.getStackAlignment();
956   return *this;
957 }
958
959 AttrBuilder &AttrBuilder::addAttribute(StringRef A, StringRef V) {
960   TargetDepAttrs[A] = V;
961   return *this;
962 }
963
964 AttrBuilder &AttrBuilder::removeAttribute(Attribute::AttrKind Val) {
965   assert((unsigned)Val < Attribute::EndAttrKinds && "Attribute out of range!");
966   Attrs[Val] = false;
967
968   if (Val == Attribute::Alignment)
969     Alignment = 0;
970   else if (Val == Attribute::StackAlignment)
971     StackAlignment = 0;
972
973   return *this;
974 }
975
976 AttrBuilder &AttrBuilder::removeAttributes(AttributeSet A, uint64_t Index) {
977   unsigned Idx = ~0U;
978   for (unsigned I = 0, E = A.getNumSlots(); I != E; ++I)
979     if (A.getSlotIndex(I) == Index) {
980       Idx = I;
981       break;
982     }
983
984   assert(Idx != ~0U && "Couldn't find index in AttributeSet!");
985
986   for (AttributeSet::iterator I = A.begin(Idx), E = A.end(Idx); I != E; ++I) {
987     Attribute Attr = *I;
988     if (Attr.isEnumAttribute() || Attr.isAlignAttribute()) {
989       Attribute::AttrKind Kind = I->getKindAsEnum();
990       Attrs[Kind] = false;
991
992       if (Kind == Attribute::Alignment)
993         Alignment = 0;
994       else if (Kind == Attribute::StackAlignment)
995         StackAlignment = 0;
996     } else {
997       assert(Attr.isStringAttribute() && "Invalid attribute type!");
998       std::map<std::string, std::string>::iterator
999         Iter = TargetDepAttrs.find(Attr.getKindAsString());
1000       if (Iter != TargetDepAttrs.end())
1001         TargetDepAttrs.erase(Iter);
1002     }
1003   }
1004
1005   return *this;
1006 }
1007
1008 AttrBuilder &AttrBuilder::removeAttribute(StringRef A) {
1009   std::map<std::string, std::string>::iterator I = TargetDepAttrs.find(A);
1010   if (I != TargetDepAttrs.end())
1011     TargetDepAttrs.erase(I);
1012   return *this;
1013 }
1014
1015 AttrBuilder &AttrBuilder::addAlignmentAttr(unsigned Align) {
1016   if (Align == 0) return *this;
1017
1018   assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
1019   assert(Align <= 0x40000000 && "Alignment too large.");
1020
1021   Attrs[Attribute::Alignment] = true;
1022   Alignment = Align;
1023   return *this;
1024 }
1025
1026 AttrBuilder &AttrBuilder::addStackAlignmentAttr(unsigned Align) {
1027   // Default alignment, allow the target to define how to align it.
1028   if (Align == 0) return *this;
1029
1030   assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
1031   assert(Align <= 0x100 && "Alignment too large.");
1032
1033   Attrs[Attribute::StackAlignment] = true;
1034   StackAlignment = Align;
1035   return *this;
1036 }
1037
1038 AttrBuilder &AttrBuilder::merge(const AttrBuilder &B) {
1039   // FIXME: What if both have alignments, but they don't match?!
1040   if (!Alignment)
1041     Alignment = B.Alignment;
1042
1043   if (!StackAlignment)
1044     StackAlignment = B.StackAlignment;
1045
1046   Attrs |= B.Attrs;
1047
1048   for (td_const_iterator I = B.TargetDepAttrs.begin(),
1049          E = B.TargetDepAttrs.end(); I != E; ++I)
1050     TargetDepAttrs[I->first] = I->second;
1051
1052   return *this;
1053 }
1054
1055 bool AttrBuilder::contains(StringRef A) const {
1056   return TargetDepAttrs.find(A) != TargetDepAttrs.end();
1057 }
1058
1059 bool AttrBuilder::hasAttributes() const {
1060   return !Attrs.none() || !TargetDepAttrs.empty();
1061 }
1062
1063 bool AttrBuilder::hasAttributes(AttributeSet A, uint64_t Index) const {
1064   unsigned Idx = ~0U;
1065   for (unsigned I = 0, E = A.getNumSlots(); I != E; ++I)
1066     if (A.getSlotIndex(I) == Index) {
1067       Idx = I;
1068       break;
1069     }
1070
1071   assert(Idx != ~0U && "Couldn't find the index!");
1072
1073   for (AttributeSet::iterator I = A.begin(Idx), E = A.end(Idx);
1074        I != E; ++I) {
1075     Attribute Attr = *I;
1076     if (Attr.isEnumAttribute() || Attr.isAlignAttribute()) {
1077       if (Attrs[I->getKindAsEnum()])
1078         return true;
1079     } else {
1080       assert(Attr.isStringAttribute() && "Invalid attribute kind!");
1081       return TargetDepAttrs.find(Attr.getKindAsString())!=TargetDepAttrs.end();
1082     }
1083   }
1084
1085   return false;
1086 }
1087
1088 bool AttrBuilder::hasAlignmentAttr() const {
1089   return Alignment != 0;
1090 }
1091
1092 bool AttrBuilder::operator==(const AttrBuilder &B) {
1093   if (Attrs != B.Attrs)
1094     return false;
1095
1096   for (td_const_iterator I = TargetDepAttrs.begin(),
1097          E = TargetDepAttrs.end(); I != E; ++I)
1098     if (B.TargetDepAttrs.find(I->first) == B.TargetDepAttrs.end())
1099       return false;
1100
1101   return Alignment == B.Alignment && StackAlignment == B.StackAlignment;
1102 }
1103
1104 void AttrBuilder::removeFunctionOnlyAttrs() {
1105   removeAttribute(Attribute::NoReturn)
1106     .removeAttribute(Attribute::NoUnwind)
1107     .removeAttribute(Attribute::ReadNone)
1108     .removeAttribute(Attribute::ReadOnly)
1109     .removeAttribute(Attribute::NoInline)
1110     .removeAttribute(Attribute::AlwaysInline)
1111     .removeAttribute(Attribute::OptimizeForSize)
1112     .removeAttribute(Attribute::StackProtect)
1113     .removeAttribute(Attribute::StackProtectReq)
1114     .removeAttribute(Attribute::StackProtectStrong)
1115     .removeAttribute(Attribute::NoRedZone)
1116     .removeAttribute(Attribute::NoImplicitFloat)
1117     .removeAttribute(Attribute::Naked)
1118     .removeAttribute(Attribute::InlineHint)
1119     .removeAttribute(Attribute::StackAlignment)
1120     .removeAttribute(Attribute::UWTable)
1121     .removeAttribute(Attribute::NonLazyBind)
1122     .removeAttribute(Attribute::ReturnsTwice)
1123     .removeAttribute(Attribute::AddressSafety)
1124     .removeAttribute(Attribute::ThreadSafety)
1125     .removeAttribute(Attribute::UninitializedChecks)
1126     .removeAttribute(Attribute::MinSize)
1127     .removeAttribute(Attribute::NoDuplicate)
1128     .removeAttribute(Attribute::NoBuiltin);
1129 }
1130
1131 AttrBuilder &AttrBuilder::addRawValue(uint64_t Val) {
1132   // FIXME: Remove this in 4.0.
1133   if (!Val) return *this;
1134
1135   for (Attribute::AttrKind I = Attribute::None; I != Attribute::EndAttrKinds;
1136        I = Attribute::AttrKind(I + 1)) {
1137     if (uint64_t A = (Val & AttributeImpl::getAttrMask(I))) {
1138       Attrs[I] = true;
1139  
1140       if (I == Attribute::Alignment)
1141         Alignment = 1ULL << ((A >> 16) - 1);
1142       else if (I == Attribute::StackAlignment)
1143         StackAlignment = 1ULL << ((A >> 26)-1);
1144     }
1145   }
1146  
1147   return *this;
1148 }
1149
1150 //===----------------------------------------------------------------------===//
1151 // AttributeFuncs Function Defintions
1152 //===----------------------------------------------------------------------===//
1153
1154 /// \brief Which attributes cannot be applied to a type.
1155 AttributeSet AttributeFuncs::typeIncompatible(Type *Ty, uint64_t Index) {
1156   AttrBuilder Incompatible;
1157
1158   if (!Ty->isIntegerTy())
1159     // Attribute that only apply to integers.
1160     Incompatible.addAttribute(Attribute::SExt)
1161       .addAttribute(Attribute::ZExt);
1162
1163   if (!Ty->isPointerTy())
1164     // Attribute that only apply to pointers.
1165     Incompatible.addAttribute(Attribute::ByVal)
1166       .addAttribute(Attribute::Nest)
1167       .addAttribute(Attribute::NoAlias)
1168       .addAttribute(Attribute::NoCapture)
1169       .addAttribute(Attribute::StructRet);
1170
1171   return AttributeSet::get(Ty->getContext(), Index, Incompatible);
1172 }