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