1 //===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
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 //  This file implements type-related semantic analysis.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Sema/SemaInternal.h"
15 #include "TypeLocBuilder.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/ASTMutationListener.h"
19 #include "clang/AST/CXXInheritance.h"
20 #include "clang/AST/DeclObjC.h"
21 #include "clang/AST/DeclTemplate.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/TypeLoc.h"
24 #include "clang/AST/TypeLocVisitor.h"
25 #include "clang/Basic/PartialDiagnostic.h"
26 #include "clang/Basic/TargetInfo.h"
27 #include "clang/Lex/Preprocessor.h"
28 #include "clang/Parse/ParseDiagnostic.h"
29 #include "clang/Sema/DeclSpec.h"
30 #include "clang/Sema/DelayedDiagnostic.h"
31 #include "clang/Sema/Lookup.h"
32 #include "clang/Sema/ScopeInfo.h"
33 #include "clang/Sema/Template.h"
34 #include "llvm/ADT/SmallPtrSet.h"
35 #include "llvm/ADT/SmallString.h"
36 #include "llvm/Support/ErrorHandling.h"
37 
38 using namespace clang;
39 
40 enum TypeDiagSelector {
41   TDS_Function,
42   TDS_Pointer,
43   TDS_ObjCObjOrBlock
44 };
45 
46 /// isOmittedBlockReturnType - Return true if this declarator is missing a
47 /// return type because this is a omitted return type on a block literal.
48 static bool isOmittedBlockReturnType(const Declarator &D) {
49   if (D.getContext() != Declarator::BlockLiteralContext ||
50       D.getDeclSpec().hasTypeSpecifier())
51     return false;
52 
53   if (D.getNumTypeObjects() == 0)
54     return true;   // ^{ ... }
55 
56   if (D.getNumTypeObjects() == 1 &&
57       D.getTypeObject(0).Kind == DeclaratorChunk::Function)
58     return true;   // ^(int X, float Y) { ... }
59 
60   return false;
61 }
62 
63 /// diagnoseBadTypeAttribute - Diagnoses a type attribute which
64 /// doesn't apply to the given type.
65 static void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
66                                      QualType type) {
67   TypeDiagSelector WhichType;
68   bool useExpansionLoc = true;
69   switch (attr.getKind()) {
70   case AttributeList::AT_ObjCGC:        WhichType = TDS_Pointer; break;
71   case AttributeList::AT_ObjCOwnership: WhichType = TDS_ObjCObjOrBlock; break;
72   default:
73     // Assume everything else was a function attribute.
74     WhichType = TDS_Function;
75     useExpansionLoc = false;
76     break;
77   }
78 
79   SourceLocation loc = attr.getLoc();
80   StringRef name = attr.getName()->getName();
81 
82   // The GC attributes are usually written with macros;  special-case them.
83   IdentifierInfo *II = attr.isArgIdent(0) ? attr.getArgAsIdent(0)->Ident : 0;
84   if (useExpansionLoc && loc.isMacroID() && II) {
85     if (II->isStr("strong")) {
86       if (S.findMacroSpelling(loc, "__strong")) name = "__strong";
87     } else if (II->isStr("weak")) {
88       if (S.findMacroSpelling(loc, "__weak")) name = "__weak";
89     }
90   }
91 
92   S.Diag(loc, diag::warn_type_attribute_wrong_type) << name << WhichType
93     << type;
94 }
95 
96 // objc_gc applies to Objective-C pointers or, otherwise, to the
97 // smallest available pointer type (i.e. 'void*' in 'void**').
98 #define OBJC_POINTER_TYPE_ATTRS_CASELIST \
99     case AttributeList::AT_ObjCGC: \
100     case AttributeList::AT_ObjCOwnership
101 
102 // Function type attributes.
103 #define FUNCTION_TYPE_ATTRS_CASELIST \
104     case AttributeList::AT_NoReturn: \
105     case AttributeList::AT_CDecl: \
106     case AttributeList::AT_FastCall: \
107     case AttributeList::AT_StdCall: \
108     case AttributeList::AT_ThisCall: \
109     case AttributeList::AT_Pascal: \
110     case AttributeList::AT_MSABI: \
111     case AttributeList::AT_SysVABI: \
112     case AttributeList::AT_Regparm: \
113     case AttributeList::AT_Pcs: \
114     case AttributeList::AT_PnaclCall: \
115     case AttributeList::AT_IntelOclBicc
116 
117 // Microsoft-specific type qualifiers.
118 #define MS_TYPE_ATTRS_CASELIST  \
119     case AttributeList::AT_Ptr32: \
120     case AttributeList::AT_Ptr64: \
121     case AttributeList::AT_SPtr: \
122     case AttributeList::AT_UPtr
123 
124 namespace {
125   /// An object which stores processing state for the entire
126   /// GetTypeForDeclarator process.
127   class TypeProcessingState {
128     Sema &sema;
129 
130     /// The declarator being processed.
131     Declarator &declarator;
132 
133     /// The index of the declarator chunk we're currently processing.
134     /// May be the total number of valid chunks, indicating the
135     /// DeclSpec.
136     unsigned chunkIndex;
137 
138     /// Whether there are non-trivial modifications to the decl spec.
139     bool trivial;
140 
141     /// Whether we saved the attributes in the decl spec.
142     bool hasSavedAttrs;
143 
144     /// The original set of attributes on the DeclSpec.
145     SmallVector<AttributeList*, 2> savedAttrs;
146 
147     /// A list of attributes to diagnose the uselessness of when the
148     /// processing is complete.
149     SmallVector<AttributeList*, 2> ignoredTypeAttrs;
150 
151   public:
152     TypeProcessingState(Sema &sema, Declarator &declarator)
153       : sema(sema), declarator(declarator),
154         chunkIndex(declarator.getNumTypeObjects()),
155         trivial(true), hasSavedAttrs(false) {}
156 
157     Sema &getSema() const {
158       return sema;
159     }
160 
161     Declarator &getDeclarator() const {
162       return declarator;
163     }
164 
165     bool isProcessingDeclSpec() const {
166       return chunkIndex == declarator.getNumTypeObjects();
167     }
168 
169     unsigned getCurrentChunkIndex() const {
170       return chunkIndex;
171     }
172 
173     void setCurrentChunkIndex(unsigned idx) {
174       assert(idx <= declarator.getNumTypeObjects());
175       chunkIndex = idx;
176     }
177 
178     AttributeList *&getCurrentAttrListRef() const {
179       if (isProcessingDeclSpec())
180         return getMutableDeclSpec().getAttributes().getListRef();
181       return declarator.getTypeObject(chunkIndex).getAttrListRef();
182     }
183 
184     /// Save the current set of attributes on the DeclSpec.
185     void saveDeclSpecAttrs() {
186       // Don't try to save them multiple times.
187       if (hasSavedAttrs) return;
188 
189       DeclSpec &spec = getMutableDeclSpec();
190       for (AttributeList *attr = spec.getAttributes().getList(); attr;
191              attr = attr->getNext())
192         savedAttrs.push_back(attr);
193       trivial &= savedAttrs.empty();
194       hasSavedAttrs = true;
195     }
196 
197     /// Record that we had nowhere to put the given type attribute.
198     /// We will diagnose such attributes later.
199     void addIgnoredTypeAttr(AttributeList &attr) {
200       ignoredTypeAttrs.push_back(&attr);
201     }
202 
203     /// Diagnose all the ignored type attributes, given that the
204     /// declarator worked out to the given type.
205     void diagnoseIgnoredTypeAttrs(QualType type) const {
206       for (SmallVectorImpl<AttributeList*>::const_iterator
207              i = ignoredTypeAttrs.begin(), e = ignoredTypeAttrs.end();
208            i != e; ++i)
209         diagnoseBadTypeAttribute(getSema(), **i, type);
210     }
211 
212     ~TypeProcessingState() {
213       if (trivial) return;
214 
215       restoreDeclSpecAttrs();
216     }
217 
218   private:
219     DeclSpec &getMutableDeclSpec() const {
220       return const_cast<DeclSpec&>(declarator.getDeclSpec());
221     }
222 
223     void restoreDeclSpecAttrs() {
224       assert(hasSavedAttrs);
225 
226       if (savedAttrs.empty()) {
227         getMutableDeclSpec().getAttributes().set(0);
228         return;
229       }
230 
231       getMutableDeclSpec().getAttributes().set(savedAttrs[0]);
232       for (unsigned i = 0, e = savedAttrs.size() - 1; i != e; ++i)
233         savedAttrs[i]->setNext(savedAttrs[i+1]);
234       savedAttrs.back()->setNext(0);
235     }
236   };
237 }
238 
239 static void spliceAttrIntoList(AttributeList &attr, AttributeList *&head) {
240   attr.setNext(head);
241   head = &attr;
242 }
243 
244 static void spliceAttrOutOfList(AttributeList &attr, AttributeList *&head) {
245   if (head == &attr) {
246     head = attr.getNext();
247     return;
248   }
249 
250   AttributeList *cur = head;
251   while (true) {
252     assert(cur && cur->getNext() && "ran out of attrs?");
253     if (cur->getNext() == &attr) {
254       cur->setNext(attr.getNext());
255       return;
256     }
257     cur = cur->getNext();
258   }
259 }
260 
261 static void moveAttrFromListToList(AttributeList &attr,
262                                    AttributeList *&fromList,
263                                    AttributeList *&toList) {
264   spliceAttrOutOfList(attr, fromList);
265   spliceAttrIntoList(attr, toList);
266 }
267 
268 /// The location of a type attribute.
269 enum TypeAttrLocation {
270   /// The attribute is in the decl-specifier-seq.
271   TAL_DeclSpec,
272   /// The attribute is part of a DeclaratorChunk.
273   TAL_DeclChunk,
274   /// The attribute is immediately after the declaration's name.
275   TAL_DeclName
276 };
277 
278 static void processTypeAttrs(TypeProcessingState &state,
279                              QualType &type, TypeAttrLocation TAL,
280                              AttributeList *attrs);
281 
282 static bool handleFunctionTypeAttr(TypeProcessingState &state,
283                                    AttributeList &attr,
284                                    QualType &type);
285 
286 static bool handleMSPointerTypeQualifierAttr(TypeProcessingState &state,
287                                              AttributeList &attr,
288                                              QualType &type);
289 
290 static bool handleObjCGCTypeAttr(TypeProcessingState &state,
291                                  AttributeList &attr, QualType &type);
292 
293 static bool handleObjCOwnershipTypeAttr(TypeProcessingState &state,
294                                        AttributeList &attr, QualType &type);
295 
296 static bool handleObjCPointerTypeAttr(TypeProcessingState &state,
297                                       AttributeList &attr, QualType &type) {
298   if (attr.getKind() == AttributeList::AT_ObjCGC)
299     return handleObjCGCTypeAttr(state, attr, type);
300   assert(attr.getKind() == AttributeList::AT_ObjCOwnership);
301   return handleObjCOwnershipTypeAttr(state, attr, type);
302 }
303 
304 /// Given the index of a declarator chunk, check whether that chunk
305 /// directly specifies the return type of a function and, if so, find
306 /// an appropriate place for it.
307 ///
308 /// \param i - a notional index which the search will start
309 ///   immediately inside
310 static DeclaratorChunk *maybeMovePastReturnType(Declarator &declarator,
311                                                 unsigned i) {
312   assert(i <= declarator.getNumTypeObjects());
313 
314   DeclaratorChunk *result = 0;
315 
316   // First, look inwards past parens for a function declarator.
317   for (; i != 0; --i) {
318     DeclaratorChunk &fnChunk = declarator.getTypeObject(i-1);
319     switch (fnChunk.Kind) {
320     case DeclaratorChunk::Paren:
321       continue;
322 
323     // If we find anything except a function, bail out.
324     case DeclaratorChunk::Pointer:
325     case DeclaratorChunk::BlockPointer:
326     case DeclaratorChunk::Array:
327     case DeclaratorChunk::Reference:
328     case DeclaratorChunk::MemberPointer:
329       return result;
330 
331     // If we do find a function declarator, scan inwards from that,
332     // looking for a block-pointer declarator.
333     case DeclaratorChunk::Function:
334       for (--i; i != 0; --i) {
335         DeclaratorChunk &blockChunk = declarator.getTypeObject(i-1);
336         switch (blockChunk.Kind) {
337         case DeclaratorChunk::Paren:
338         case DeclaratorChunk::Pointer:
339         case DeclaratorChunk::Array:
340         case DeclaratorChunk::Function:
341         case DeclaratorChunk::Reference:
342         case DeclaratorChunk::MemberPointer:
343           continue;
344         case DeclaratorChunk::BlockPointer:
345           result = &blockChunk;
346           goto continue_outer;
347         }
348         llvm_unreachable("bad declarator chunk kind");
349       }
350 
351       // If we run out of declarators doing that, we're done.
352       return result;
353     }
354     llvm_unreachable("bad declarator chunk kind");
355 
356     // Okay, reconsider from our new point.
357   continue_outer: ;
358   }
359 
360   // Ran out of chunks, bail out.
361   return result;
362 }
363 
364 /// Given that an objc_gc attribute was written somewhere on a
365 /// declaration *other* than on the declarator itself (for which, use
366 /// distributeObjCPointerTypeAttrFromDeclarator), and given that it
367 /// didn't apply in whatever position it was written in, try to move
368 /// it to a more appropriate position.
369 static void distributeObjCPointerTypeAttr(TypeProcessingState &state,
370                                           AttributeList &attr,
371                                           QualType type) {
372   Declarator &declarator = state.getDeclarator();
373 
374   // Move it to the outermost normal or block pointer declarator.
375   for (unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
376     DeclaratorChunk &chunk = declarator.getTypeObject(i-1);
377     switch (chunk.Kind) {
378     case DeclaratorChunk::Pointer:
379     case DeclaratorChunk::BlockPointer: {
380       // But don't move an ARC ownership attribute to the return type
381       // of a block.
382       DeclaratorChunk *destChunk = 0;
383       if (state.isProcessingDeclSpec() &&
384           attr.getKind() == AttributeList::AT_ObjCOwnership)
385         destChunk = maybeMovePastReturnType(declarator, i - 1);
386       if (!destChunk) destChunk = &chunk;
387 
388       moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
389                              destChunk->getAttrListRef());
390       return;
391     }
392 
393     case DeclaratorChunk::Paren:
394     case DeclaratorChunk::Array:
395       continue;
396 
397     // We may be starting at the return type of a block.
398     case DeclaratorChunk::Function:
399       if (state.isProcessingDeclSpec() &&
400           attr.getKind() == AttributeList::AT_ObjCOwnership) {
401         if (DeclaratorChunk *dest = maybeMovePastReturnType(declarator, i)) {
402           moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
403                                  dest->getAttrListRef());
404           return;
405         }
406       }
407       goto error;
408 
409     // Don't walk through these.
410     case DeclaratorChunk::Reference:
411     case DeclaratorChunk::MemberPointer:
412       goto error;
413     }
414   }
415  error:
416 
417   diagnoseBadTypeAttribute(state.getSema(), attr, type);
418 }
419 
420 /// Distribute an objc_gc type attribute that was written on the
421 /// declarator.
422 static void
423 distributeObjCPointerTypeAttrFromDeclarator(TypeProcessingState &state,
424                                             AttributeList &attr,
425                                             QualType &declSpecType) {
426   Declarator &declarator = state.getDeclarator();
427 
428   // objc_gc goes on the innermost pointer to something that's not a
429   // pointer.
430   unsigned innermost = -1U;
431   bool considerDeclSpec = true;
432   for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
433     DeclaratorChunk &chunk = declarator.getTypeObject(i);
434     switch (chunk.Kind) {
435     case DeclaratorChunk::Pointer:
436     case DeclaratorChunk::BlockPointer:
437       innermost = i;
438       continue;
439 
440     case DeclaratorChunk::Reference:
441     case DeclaratorChunk::MemberPointer:
442     case DeclaratorChunk::Paren:
443     case DeclaratorChunk::Array:
444       continue;
445 
446     case DeclaratorChunk::Function:
447       considerDeclSpec = false;
448       goto done;
449     }
450   }
451  done:
452 
453   // That might actually be the decl spec if we weren't blocked by
454   // anything in the declarator.
455   if (considerDeclSpec) {
456     if (handleObjCPointerTypeAttr(state, attr, declSpecType)) {
457       // Splice the attribute into the decl spec.  Prevents the
458       // attribute from being applied multiple times and gives
459       // the source-location-filler something to work with.
460       state.saveDeclSpecAttrs();
461       moveAttrFromListToList(attr, declarator.getAttrListRef(),
462                declarator.getMutableDeclSpec().getAttributes().getListRef());
463       return;
464     }
465   }
466 
467   // Otherwise, if we found an appropriate chunk, splice the attribute
468   // into it.
469   if (innermost != -1U) {
470     moveAttrFromListToList(attr, declarator.getAttrListRef(),
471                        declarator.getTypeObject(innermost).getAttrListRef());
472     return;
473   }
474 
475   // Otherwise, diagnose when we're done building the type.
476   spliceAttrOutOfList(attr, declarator.getAttrListRef());
477   state.addIgnoredTypeAttr(attr);
478 }
479 
480 /// A function type attribute was written somewhere in a declaration
481 /// *other* than on the declarator itself or in the decl spec.  Given
482 /// that it didn't apply in whatever position it was written in, try
483 /// to move it to a more appropriate position.
484 static void distributeFunctionTypeAttr(TypeProcessingState &state,
485                                        AttributeList &attr,
486                                        QualType type) {
487   Declarator &declarator = state.getDeclarator();
488 
489   // Try to push the attribute from the return type of a function to
490   // the function itself.
491   for (unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
492     DeclaratorChunk &chunk = declarator.getTypeObject(i-1);
493     switch (chunk.Kind) {
494     case DeclaratorChunk::Function:
495       moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
496                              chunk.getAttrListRef());
497       return;
498 
499     case DeclaratorChunk::Paren:
500     case DeclaratorChunk::Pointer:
501     case DeclaratorChunk::BlockPointer:
502     case DeclaratorChunk::Array:
503     case DeclaratorChunk::Reference:
504     case DeclaratorChunk::MemberPointer:
505       continue;
506     }
507   }
508 
509   diagnoseBadTypeAttribute(state.getSema(), attr, type);
510 }
511 
512 /// Try to distribute a function type attribute to the innermost
513 /// function chunk or type.  Returns true if the attribute was
514 /// distributed, false if no location was found.
515 static bool
516 distributeFunctionTypeAttrToInnermost(TypeProcessingState &state,
517                                       AttributeList &attr,
518                                       AttributeList *&attrList,
519                                       QualType &declSpecType) {
520   Declarator &declarator = state.getDeclarator();
521 
522   // Put it on the innermost function chunk, if there is one.
523   for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
524     DeclaratorChunk &chunk = declarator.getTypeObject(i);
525     if (chunk.Kind != DeclaratorChunk::Function) continue;
526 
527     moveAttrFromListToList(attr, attrList, chunk.getAttrListRef());
528     return true;
529   }
530 
531   return handleFunctionTypeAttr(state, attr, declSpecType);
532 }
533 
534 /// A function type attribute was written in the decl spec.  Try to
535 /// apply it somewhere.
536 static void
537 distributeFunctionTypeAttrFromDeclSpec(TypeProcessingState &state,
538                                        AttributeList &attr,
539                                        QualType &declSpecType) {
540   state.saveDeclSpecAttrs();
541 
542   // C++11 attributes before the decl specifiers actually appertain to
543   // the declarators. Move them straight there. We don't support the
544   // 'put them wherever you like' semantics we allow for GNU attributes.
545   if (attr.isCXX11Attribute()) {
546     moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
547                            state.getDeclarator().getAttrListRef());
548     return;
549   }
550 
551   // Try to distribute to the innermost.
552   if (distributeFunctionTypeAttrToInnermost(state, attr,
553                                             state.getCurrentAttrListRef(),
554                                             declSpecType))
555     return;
556 
557   // If that failed, diagnose the bad attribute when the declarator is
558   // fully built.
559   state.addIgnoredTypeAttr(attr);
560 }
561 
562 /// A function type attribute was written on the declarator.  Try to
563 /// apply it somewhere.
564 static void
565 distributeFunctionTypeAttrFromDeclarator(TypeProcessingState &state,
566                                          AttributeList &attr,
567                                          QualType &declSpecType) {
568   Declarator &declarator = state.getDeclarator();
569 
570   // Try to distribute to the innermost.
571   if (distributeFunctionTypeAttrToInnermost(state, attr,
572                                             declarator.getAttrListRef(),
573                                             declSpecType))
574     return;
575 
576   // If that failed, diagnose the bad attribute when the declarator is
577   // fully built.
578   spliceAttrOutOfList(attr, declarator.getAttrListRef());
579   state.addIgnoredTypeAttr(attr);
580 }
581 
582 /// \brief Given that there are attributes written on the declarator
583 /// itself, try to distribute any type attributes to the appropriate
584 /// declarator chunk.
585 ///
586 /// These are attributes like the following:
587 ///   int f ATTR;
588 ///   int (f ATTR)();
589 /// but not necessarily this:
590 ///   int f() ATTR;
591 static void distributeTypeAttrsFromDeclarator(TypeProcessingState &state,
592                                               QualType &declSpecType) {
593   // Collect all the type attributes from the declarator itself.
594   assert(state.getDeclarator().getAttributes() && "declarator has no attrs!");
595   AttributeList *attr = state.getDeclarator().getAttributes();
596   AttributeList *next;
597   do {
598     next = attr->getNext();
599 
600     // Do not distribute C++11 attributes. They have strict rules for what
601     // they appertain to.
602     if (attr->isCXX11Attribute())
603       continue;
604 
605     switch (attr->getKind()) {
606     OBJC_POINTER_TYPE_ATTRS_CASELIST:
607       distributeObjCPointerTypeAttrFromDeclarator(state, *attr, declSpecType);
608       break;
609 
610     case AttributeList::AT_NSReturnsRetained:
611       if (!state.getSema().getLangOpts().ObjCAutoRefCount)
612         break;
613       // fallthrough
614 
615     FUNCTION_TYPE_ATTRS_CASELIST:
616       distributeFunctionTypeAttrFromDeclarator(state, *attr, declSpecType);
617       break;
618 
619     MS_TYPE_ATTRS_CASELIST:
620       // Microsoft type attributes cannot go after the declarator-id.
621       continue;
622 
623     default:
624       break;
625     }
626   } while ((attr = next));
627 }
628 
629 /// Add a synthetic '()' to a block-literal declarator if it is
630 /// required, given the return type.
631 static void maybeSynthesizeBlockSignature(TypeProcessingState &state,
632                                           QualType declSpecType) {
633   Declarator &declarator = state.getDeclarator();
634 
635   // First, check whether the declarator would produce a function,
636   // i.e. whether the innermost semantic chunk is a function.
637   if (declarator.isFunctionDeclarator()) {
638     // If so, make that declarator a prototyped declarator.
639     declarator.getFunctionTypeInfo().hasPrototype = true;
640     return;
641   }
642 
643   // If there are any type objects, the type as written won't name a
644   // function, regardless of the decl spec type.  This is because a
645   // block signature declarator is always an abstract-declarator, and
646   // abstract-declarators can't just be parentheses chunks.  Therefore
647   // we need to build a function chunk unless there are no type
648   // objects and the decl spec type is a function.
649   if (!declarator.getNumTypeObjects() && declSpecType->isFunctionType())
650     return;
651 
652   // Note that there *are* cases with invalid declarators where
653   // declarators consist solely of parentheses.  In general, these
654   // occur only in failed efforts to make function declarators, so
655   // faking up the function chunk is still the right thing to do.
656 
657   // Otherwise, we need to fake up a function declarator.
658   SourceLocation loc = declarator.getLocStart();
659 
660   // ...and *prepend* it to the declarator.
661   SourceLocation NoLoc;
662   declarator.AddInnermostTypeInfo(DeclaratorChunk::getFunction(
663                              /*HasProto=*/true,
664                              /*IsAmbiguous=*/false,
665                              /*LParenLoc=*/NoLoc,
666                              /*ArgInfo=*/0,
667                              /*NumArgs=*/0,
668                              /*EllipsisLoc=*/NoLoc,
669                              /*RParenLoc=*/NoLoc,
670                              /*TypeQuals=*/0,
671                              /*RefQualifierIsLvalueRef=*/true,
672                              /*RefQualifierLoc=*/NoLoc,
673                              /*ConstQualifierLoc=*/NoLoc,
674                              /*VolatileQualifierLoc=*/NoLoc,
675                              /*MutableLoc=*/NoLoc,
676                              EST_None,
677                              /*ESpecLoc=*/NoLoc,
678                              /*Exceptions=*/0,
679                              /*ExceptionRanges=*/0,
680                              /*NumExceptions=*/0,
681                              /*NoexceptExpr=*/0,
682                              loc, loc, declarator));
683 
684   // For consistency, make sure the state still has us as processing
685   // the decl spec.
686   assert(state.getCurrentChunkIndex() == declarator.getNumTypeObjects() - 1);
687   state.setCurrentChunkIndex(declarator.getNumTypeObjects());
688 }
689 
690 /// \brief Convert the specified declspec to the appropriate type
691 /// object.
692 /// \param state Specifies the declarator containing the declaration specifier
693 /// to be converted, along with other associated processing state.
694 /// \returns The type described by the declaration specifiers.  This function
695 /// never returns null.
696 static QualType ConvertDeclSpecToType(TypeProcessingState &state) {
697   // FIXME: Should move the logic from DeclSpec::Finish to here for validity
698   // checking.
699 
700   Sema &S = state.getSema();
701   Declarator &declarator = state.getDeclarator();
702   const DeclSpec &DS = declarator.getDeclSpec();
703   SourceLocation DeclLoc = declarator.getIdentifierLoc();
704   if (DeclLoc.isInvalid())
705     DeclLoc = DS.getLocStart();
706 
707   ASTContext &Context = S.Context;
708 
709   QualType Result;
710   switch (DS.getTypeSpecType()) {
711   case DeclSpec::TST_void:
712     Result = Context.VoidTy;
713     break;
714   case DeclSpec::TST_char:
715     if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
716       Result = Context.CharTy;
717     else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
718       Result = Context.SignedCharTy;
719     else {
720       assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
721              "Unknown TSS value");
722       Result = Context.UnsignedCharTy;
723     }
724     break;
725   case DeclSpec::TST_wchar:
726     if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
727       Result = Context.WCharTy;
728     else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
729       S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
730         << DS.getSpecifierName(DS.getTypeSpecType(),
731                                Context.getPrintingPolicy());
732       Result = Context.getSignedWCharType();
733     } else {
734       assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
735         "Unknown TSS value");
736       S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
737         << DS.getSpecifierName(DS.getTypeSpecType(),
738                                Context.getPrintingPolicy());
739       Result = Context.getUnsignedWCharType();
740     }
741     break;
742   case DeclSpec::TST_char16:
743       assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
744         "Unknown TSS value");
745       Result = Context.Char16Ty;
746     break;
747   case DeclSpec::TST_char32:
748       assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
749         "Unknown TSS value");
750       Result = Context.Char32Ty;
751     break;
752   case DeclSpec::TST_unspecified:
753     // "<proto1,proto2>" is an objc qualified ID with a missing id.
754     if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
755       Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
756                                          (ObjCProtocolDecl*const*)PQ,
757                                          DS.getNumProtocolQualifiers());
758       Result = Context.getObjCObjectPointerType(Result);
759       break;
760     }
761 
762     // If this is a missing declspec in a block literal return context, then it
763     // is inferred from the return statements inside the block.
764     // The declspec is always missing in a lambda expr context; it is either
765     // specified with a trailing return type or inferred.
766     if (S.getLangOpts().CPlusPlus1y &&
767         declarator.getContext() == Declarator::LambdaExprContext) {
768       // In C++1y, a lambda's implicit return type is 'auto'.
769       Result = Context.getAutoDeductType();
770       break;
771     } else if (declarator.getContext() == Declarator::LambdaExprContext ||
772                isOmittedBlockReturnType(declarator)) {
773       Result = Context.DependentTy;
774       break;
775     }
776 
777     // Unspecified typespec defaults to int in C90.  However, the C90 grammar
778     // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
779     // type-qualifier, or storage-class-specifier.  If not, emit an extwarn.
780     // Note that the one exception to this is function definitions, which are
781     // allowed to be completely missing a declspec.  This is handled in the
782     // parser already though by it pretending to have seen an 'int' in this
783     // case.
784     if (S.getLangOpts().ImplicitInt) {
785       // In C89 mode, we only warn if there is a completely missing declspec
786       // when one is not allowed.
787       if (DS.isEmpty()) {
788         S.Diag(DeclLoc, diag::ext_missing_declspec)
789           << DS.getSourceRange()
790         << FixItHint::CreateInsertion(DS.getLocStart(), "int");
791       }
792     } else if (!DS.hasTypeSpecifier()) {
793       // C99 and C++ require a type specifier.  For example, C99 6.7.2p2 says:
794       // "At least one type specifier shall be given in the declaration
795       // specifiers in each declaration, and in the specifier-qualifier list in
796       // each struct declaration and type name."
797       if (S.getLangOpts().CPlusPlus) {
798         S.Diag(DeclLoc, diag::err_missing_type_specifier)
799           << DS.getSourceRange();
800 
801         // When this occurs in C++ code, often something is very broken with the
802         // value being declared, poison it as invalid so we don't get chains of
803         // errors.
804         declarator.setInvalidType(true);
805       } else {
806         S.Diag(DeclLoc, diag::ext_missing_type_specifier)
807           << DS.getSourceRange();
808       }
809     }
810 
811     // FALL THROUGH.
812   case DeclSpec::TST_int: {
813     if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
814       switch (DS.getTypeSpecWidth()) {
815       case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
816       case DeclSpec::TSW_short:       Result = Context.ShortTy; break;
817       case DeclSpec::TSW_long:        Result = Context.LongTy; break;
818       case DeclSpec::TSW_longlong:
819         Result = Context.LongLongTy;
820 
821         // 'long long' is a C99 or C++11 feature.
822         if (!S.getLangOpts().C99) {
823           if (S.getLangOpts().CPlusPlus)
824             S.Diag(DS.getTypeSpecWidthLoc(),
825                    S.getLangOpts().CPlusPlus11 ?
826                    diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
827           else
828             S.Diag(DS.getTypeSpecWidthLoc(), diag::ext_c99_longlong);
829         }
830         break;
831       }
832     } else {
833       switch (DS.getTypeSpecWidth()) {
834       case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
835       case DeclSpec::TSW_short:       Result = Context.UnsignedShortTy; break;
836       case DeclSpec::TSW_long:        Result = Context.UnsignedLongTy; break;
837       case DeclSpec::TSW_longlong:
838         Result = Context.UnsignedLongLongTy;
839 
840         // 'long long' is a C99 or C++11 feature.
841         if (!S.getLangOpts().C99) {
842           if (S.getLangOpts().CPlusPlus)
843             S.Diag(DS.getTypeSpecWidthLoc(),
844                    S.getLangOpts().CPlusPlus11 ?
845                    diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
846           else
847             S.Diag(DS.getTypeSpecWidthLoc(), diag::ext_c99_longlong);
848         }
849         break;
850       }
851     }
852     break;
853   }
854   case DeclSpec::TST_int128:
855     if (!S.PP.getTargetInfo().hasInt128Type())
856       S.Diag(DS.getTypeSpecTypeLoc(), diag::err_int128_unsupported);
857     if (DS.getTypeSpecSign() == DeclSpec::TSS_unsigned)
858       Result = Context.UnsignedInt128Ty;
859     else
860       Result = Context.Int128Ty;
861     break;
862   case DeclSpec::TST_half: Result = Context.HalfTy; break;
863   case DeclSpec::TST_float: Result = Context.FloatTy; break;
864   case DeclSpec::TST_double:
865     if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
866       Result = Context.LongDoubleTy;
867     else
868       Result = Context.DoubleTy;
869 
870     if (S.getLangOpts().OpenCL && !S.getOpenCLOptions().cl_khr_fp64) {
871       S.Diag(DS.getTypeSpecTypeLoc(), diag::err_double_requires_fp64);
872       declarator.setInvalidType(true);
873     }
874     break;
875   case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
876   case DeclSpec::TST_decimal32:    // _Decimal32
877   case DeclSpec::TST_decimal64:    // _Decimal64
878   case DeclSpec::TST_decimal128:   // _Decimal128
879     S.Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
880     Result = Context.IntTy;
881     declarator.setInvalidType(true);
882     break;
883   case DeclSpec::TST_class:
884   case DeclSpec::TST_enum:
885   case DeclSpec::TST_union:
886   case DeclSpec::TST_struct:
887   case DeclSpec::TST_interface: {
888     TypeDecl *D = dyn_cast_or_null<TypeDecl>(DS.getRepAsDecl());
889     if (!D) {
890       // This can happen in C++ with ambiguous lookups.
891       Result = Context.IntTy;
892       declarator.setInvalidType(true);
893       break;
894     }
895 
896     // If the type is deprecated or unavailable, diagnose it.
897     S.DiagnoseUseOfDecl(D, DS.getTypeSpecTypeNameLoc());
898 
899     assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
900            DS.getTypeSpecSign() == 0 && "No qualifiers on tag names!");
901 
902     // TypeQuals handled by caller.
903     Result = Context.getTypeDeclType(D);
904 
905     // In both C and C++, make an ElaboratedType.
906     ElaboratedTypeKeyword Keyword
907       = ElaboratedType::getKeywordForTypeSpec(DS.getTypeSpecType());
908     Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
909     break;
910   }
911   case DeclSpec::TST_typename: {
912     assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
913            DS.getTypeSpecSign() == 0 &&
914            "Can't handle qualifiers on typedef names yet!");
915     Result = S.GetTypeFromParser(DS.getRepAsType());
916     if (Result.isNull())
917       declarator.setInvalidType(true);
918     else if (DeclSpec::ProtocolQualifierListTy PQ
919                = DS.getProtocolQualifiers()) {
920       if (const ObjCObjectType *ObjT = Result->getAs<ObjCObjectType>()) {
921         // Silently drop any existing protocol qualifiers.
922         // TODO: determine whether that's the right thing to do.
923         if (ObjT->getNumProtocols())
924           Result = ObjT->getBaseType();
925 
926         if (DS.getNumProtocolQualifiers())
927           Result = Context.getObjCObjectType(Result,
928                                              (ObjCProtocolDecl*const*) PQ,
929                                              DS.getNumProtocolQualifiers());
930       } else if (Result->isObjCIdType()) {
931         // id<protocol-list>
932         Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
933                                            (ObjCProtocolDecl*const*) PQ,
934                                            DS.getNumProtocolQualifiers());
935         Result = Context.getObjCObjectPointerType(Result);
936       } else if (Result->isObjCClassType()) {
937         // Class<protocol-list>
938         Result = Context.getObjCObjectType(Context.ObjCBuiltinClassTy,
939                                            (ObjCProtocolDecl*const*) PQ,
940                                            DS.getNumProtocolQualifiers());
941         Result = Context.getObjCObjectPointerType(Result);
942       } else {
943         S.Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
944           << DS.getSourceRange();
945         declarator.setInvalidType(true);
946       }
947     }
948 
949     // TypeQuals handled by caller.
950     break;
951   }
952   case DeclSpec::TST_typeofType:
953     // FIXME: Preserve type source info.
954     Result = S.GetTypeFromParser(DS.getRepAsType());
955     assert(!Result.isNull() && "Didn't get a type for typeof?");
956     if (!Result->isDependentType())
957       if (const TagType *TT = Result->getAs<TagType>())
958         S.DiagnoseUseOfDecl(TT->getDecl(), DS.getTypeSpecTypeLoc());
959     // TypeQuals handled by caller.
960     Result = Context.getTypeOfType(Result);
961     break;
962   case DeclSpec::TST_typeofExpr: {
963     Expr *E = DS.getRepAsExpr();
964     assert(E && "Didn't get an expression for typeof?");
965     // TypeQuals handled by caller.
966     Result = S.BuildTypeofExprType(E, DS.getTypeSpecTypeLoc());
967     if (Result.isNull()) {
968       Result = Context.IntTy;
969       declarator.setInvalidType(true);
970     }
971     break;
972   }
973   case DeclSpec::TST_decltype: {
974     Expr *E = DS.getRepAsExpr();
975     assert(E && "Didn't get an expression for decltype?");
976     // TypeQuals handled by caller.
977     Result = S.BuildDecltypeType(E, DS.getTypeSpecTypeLoc());
978     if (Result.isNull()) {
979       Result = Context.IntTy;
980       declarator.setInvalidType(true);
981     }
982     break;
983   }
984   case DeclSpec::TST_underlyingType:
985     Result = S.GetTypeFromParser(DS.getRepAsType());
986     assert(!Result.isNull() && "Didn't get a type for __underlying_type?");
987     Result = S.BuildUnaryTransformType(Result,
988                                        UnaryTransformType::EnumUnderlyingType,
989                                        DS.getTypeSpecTypeLoc());
990     if (Result.isNull()) {
991       Result = Context.IntTy;
992       declarator.setInvalidType(true);
993     }
994     break;
995 
996   case DeclSpec::TST_auto:
997     // TypeQuals handled by caller.
998     // If auto is mentioned in a lambda parameter context, convert it to a
999     // template parameter type immediately, with the appropriate depth and
1000     // index, and update sema's state (LambdaScopeInfo) for the current lambda
1001     // being analyzed (which tracks the invented type template parameter).
1002     if (declarator.getContext() == Declarator::LambdaExprParameterContext) {
1003       sema::LambdaScopeInfo *LSI = S.getCurLambda();
1004       assert(LSI && "No LambdaScopeInfo on the stack!");
1005       const unsigned TemplateParameterDepth = LSI->AutoTemplateParameterDepth;
1006       const unsigned AutoParameterPosition = LSI->AutoTemplateParams.size();
1007       const bool IsParameterPack = declarator.hasEllipsis();
1008 
1009       // Create a name for the invented template parameter type.
1010       std::string InventedTemplateParamName = "$auto-";
1011       llvm::raw_string_ostream ss(InventedTemplateParamName);
1012       ss << TemplateParameterDepth;
1013       ss << "-" << AutoParameterPosition;
1014       ss.flush();
1015 
1016       IdentifierInfo& TemplateParamII = Context.Idents.get(
1017                                         InventedTemplateParamName.c_str());
1018       // Turns out we must create the TemplateTypeParmDecl here to
1019       // retrieve the corresponding template parameter type.
1020       TemplateTypeParmDecl *CorrespondingTemplateParam =
1021         TemplateTypeParmDecl::Create(Context,
1022         // Temporarily add to the TranslationUnit DeclContext.  When the
1023         // associated TemplateParameterList is attached to a template
1024         // declaration (such as FunctionTemplateDecl), the DeclContext
1025         // for each template parameter gets updated appropriately via
1026         // a call to AdoptTemplateParameterList.
1027         Context.getTranslationUnitDecl(),
1028         /*KeyLoc*/ SourceLocation(),
1029         /*NameLoc*/ declarator.getLocStart(),
1030         TemplateParameterDepth,
1031         AutoParameterPosition,  // our template param index
1032         /* Identifier*/ &TemplateParamII, false, IsParameterPack);
1033       LSI->AutoTemplateParams.push_back(CorrespondingTemplateParam);
1034       // Replace the 'auto' in the function parameter with this invented
1035       // template type parameter.
1036       Result = QualType(CorrespondingTemplateParam->getTypeForDecl(), 0);
1037     } else {
1038       Result = Context.getAutoType(QualType(), /*decltype(auto)*/false, false);
1039     }
1040     break;
1041 
1042   case DeclSpec::TST_decltype_auto:
1043     Result = Context.getAutoType(QualType(),
1044                                  /*decltype(auto)*/true,
1045                                  /*IsDependent*/   false);
1046     break;
1047 
1048   case DeclSpec::TST_unknown_anytype:
1049     Result = Context.UnknownAnyTy;
1050     break;
1051 
1052   case DeclSpec::TST_atomic:
1053     Result = S.GetTypeFromParser(DS.getRepAsType());
1054     assert(!Result.isNull() && "Didn't get a type for _Atomic?");
1055     Result = S.BuildAtomicType(Result, DS.getTypeSpecTypeLoc());
1056     if (Result.isNull()) {
1057       Result = Context.IntTy;
1058       declarator.setInvalidType(true);
1059     }
1060     break;
1061 
1062   case DeclSpec::TST_error:
1063     Result = Context.IntTy;
1064     declarator.setInvalidType(true);
1065     break;
1066   }
1067 
1068   // Handle complex types.
1069   if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
1070     if (S.getLangOpts().Freestanding)
1071       S.Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
1072     Result = Context.getComplexType(Result);
1073   } else if (DS.isTypeAltiVecVector()) {
1074     unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
1075     assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
1076     VectorType::VectorKind VecKind = VectorType::AltiVecVector;
1077     if (DS.isTypeAltiVecPixel())
1078       VecKind = VectorType::AltiVecPixel;
1079     else if (DS.isTypeAltiVecBool())
1080       VecKind = VectorType::AltiVecBool;
1081     Result = Context.getVectorType(Result, 128/typeSize, VecKind);
1082   }
1083 
1084   // FIXME: Imaginary.
1085   if (DS.getTypeSpecComplex() == DeclSpec::TSC_imaginary)
1086     S.Diag(DS.getTypeSpecComplexLoc(), diag::err_imaginary_not_supported);
1087 
1088   // Before we process any type attributes, synthesize a block literal
1089   // function declarator if necessary.
1090   if (declarator.getContext() == Declarator::BlockLiteralContext)
1091     maybeSynthesizeBlockSignature(state, Result);
1092 
1093   // Apply any type attributes from the decl spec.  This may cause the
1094   // list of type attributes to be temporarily saved while the type
1095   // attributes are pushed around.
1096   if (AttributeList *attrs = DS.getAttributes().getList())
1097     processTypeAttrs(state, Result, TAL_DeclSpec, attrs);
1098 
1099   // Apply const/volatile/restrict qualifiers to T.
1100   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
1101 
1102     // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
1103     // of a function type includes any type qualifiers, the behavior is
1104     // undefined."
1105     if (Result->isFunctionType() && TypeQuals) {
1106       if (TypeQuals & DeclSpec::TQ_const)
1107         S.Diag(DS.getConstSpecLoc(), diag::warn_typecheck_function_qualifiers)
1108           << Result << DS.getSourceRange();
1109       else if (TypeQuals & DeclSpec::TQ_volatile)
1110         S.Diag(DS.getVolatileSpecLoc(), diag::warn_typecheck_function_qualifiers)
1111           << Result << DS.getSourceRange();
1112       else {
1113         assert((TypeQuals & (DeclSpec::TQ_restrict | DeclSpec::TQ_atomic)) &&
1114                "Has CVRA quals but not C, V, R, or A?");
1115         // No diagnostic; we'll diagnose 'restrict' or '_Atomic' applied to a
1116         // function type later, in BuildQualifiedType.
1117       }
1118     }
1119 
1120     // C++ [dcl.ref]p1:
1121     //   Cv-qualified references are ill-formed except when the
1122     //   cv-qualifiers are introduced through the use of a typedef
1123     //   (7.1.3) or of a template type argument (14.3), in which
1124     //   case the cv-qualifiers are ignored.
1125     // FIXME: Shouldn't we be checking SCS_typedef here?
1126     if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
1127         TypeQuals && Result->isReferenceType()) {
1128       TypeQuals &= ~DeclSpec::TQ_const;
1129       TypeQuals &= ~DeclSpec::TQ_volatile;
1130       TypeQuals &= ~DeclSpec::TQ_atomic;
1131     }
1132 
1133     // C90 6.5.3 constraints: "The same type qualifier shall not appear more
1134     // than once in the same specifier-list or qualifier-list, either directly
1135     // or via one or more typedefs."
1136     if (!S.getLangOpts().C99 && !S.getLangOpts().CPlusPlus
1137         && TypeQuals & Result.getCVRQualifiers()) {
1138       if (TypeQuals & DeclSpec::TQ_const && Result.isConstQualified()) {
1139         S.Diag(DS.getConstSpecLoc(), diag::ext_duplicate_declspec)
1140           << "const";
1141       }
1142 
1143       if (TypeQuals & DeclSpec::TQ_volatile && Result.isVolatileQualified()) {
1144         S.Diag(DS.getVolatileSpecLoc(), diag::ext_duplicate_declspec)
1145           << "volatile";
1146       }
1147 
1148       // C90 doesn't have restrict nor _Atomic, so it doesn't force us to
1149       // produce a warning in this case.
1150     }
1151 
1152     QualType Qualified = S.BuildQualifiedType(Result, DeclLoc, TypeQuals, &DS);
1153 
1154     // If adding qualifiers fails, just use the unqualified type.
1155     if (Qualified.isNull())
1156       declarator.setInvalidType(true);
1157     else
1158       Result = Qualified;
1159   }
1160 
1161   return Result;
1162 }
1163 
1164 static std::string getPrintableNameForEntity(DeclarationName Entity) {
1165   if (Entity)
1166     return Entity.getAsString();
1167 
1168   return "type name";
1169 }
1170 
1171 QualType Sema::BuildQualifiedType(QualType T, SourceLocation Loc,
1172                                   Qualifiers Qs, const DeclSpec *DS) {
1173   // Enforce C99 6.7.3p2: "Types other than pointer types derived from
1174   // object or incomplete types shall not be restrict-qualified."
1175   if (Qs.hasRestrict()) {
1176     unsigned DiagID = 0;
1177     QualType ProblemTy;
1178 
1179     if (T->isAnyPointerType() || T->isReferenceType() ||
1180         T->isMemberPointerType()) {
1181       QualType EltTy;
1182       if (T->isObjCObjectPointerType())
1183         EltTy = T;
1184       else if (const MemberPointerType *PTy = T->getAs<MemberPointerType>())
1185         EltTy = PTy->getPointeeType();
1186       else
1187         EltTy = T->getPointeeType();
1188 
1189       // If we have a pointer or reference, the pointee must have an object
1190       // incomplete type.
1191       if (!EltTy->isIncompleteOrObjectType()) {
1192         DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
1193         ProblemTy = EltTy;
1194       }
1195     } else if (!T->isDependentType()) {
1196       DiagID = diag::err_typecheck_invalid_restrict_not_pointer;
1197       ProblemTy = T;
1198     }
1199 
1200     if (DiagID) {
1201       Diag(DS ? DS->getRestrictSpecLoc() : Loc, DiagID) << ProblemTy;
1202       Qs.removeRestrict();
1203     }
1204   }
1205 
1206   return Context.getQualifiedType(T, Qs);
1207 }
1208 
1209 QualType Sema::BuildQualifiedType(QualType T, SourceLocation Loc,
1210                                   unsigned CVRA, const DeclSpec *DS) {
1211   // Convert from DeclSpec::TQ to Qualifiers::TQ by just dropping TQ_atomic.
1212   unsigned CVR = CVRA & ~DeclSpec::TQ_atomic;
1213 
1214   // C11 6.7.3/5:
1215   //   If the same qualifier appears more than once in the same
1216   //   specifier-qualifier-list, either directly or via one or more typedefs,
1217   //   the behavior is the same as if it appeared only once.
1218   //
1219   // It's not specified what happens when the _Atomic qualifier is applied to
1220   // a type specified with the _Atomic specifier, but we assume that this
1221   // should be treated as if the _Atomic qualifier appeared multiple times.
1222   if (CVRA & DeclSpec::TQ_atomic && !T->isAtomicType()) {
1223     // C11 6.7.3/5:
1224     //   If other qualifiers appear along with the _Atomic qualifier in a
1225     //   specifier-qualifier-list, the resulting type is the so-qualified
1226     //   atomic type.
1227     //
1228     // Don't need to worry about array types here, since _Atomic can't be
1229     // applied to such types.
1230     SplitQualType Split = T.getSplitUnqualifiedType();
1231     T = BuildAtomicType(QualType(Split.Ty, 0),
1232                         DS ? DS->getAtomicSpecLoc() : Loc);
1233     if (T.isNull())
1234       return T;
1235     Split.Quals.addCVRQualifiers(CVR);
1236     return BuildQualifiedType(T, Loc, Split.Quals);
1237   }
1238 
1239   return BuildQualifiedType(T, Loc, Qualifiers::fromCVRMask(CVR), DS);
1240 }
1241 
1242 /// \brief Build a paren type including \p T.
1243 QualType Sema::BuildParenType(QualType T) {
1244   return Context.getParenType(T);
1245 }
1246 
1247 /// Given that we're building a pointer or reference to the given
1248 static QualType inferARCLifetimeForPointee(Sema &S, QualType type,
1249                                            SourceLocation loc,
1250                                            bool isReference) {
1251   // Bail out if retention is unrequired or already specified.
1252   if (!type->isObjCLifetimeType() ||
1253       type.getObjCLifetime() != Qualifiers::OCL_None)
1254     return type;
1255 
1256   Qualifiers::ObjCLifetime implicitLifetime = Qualifiers::OCL_None;
1257 
1258   // If the object type is const-qualified, we can safely use
1259   // __unsafe_unretained.  This is safe (because there are no read
1260   // barriers), and it'll be safe to coerce anything but __weak* to
1261   // the resulting type.
1262   if (type.isConstQualified()) {
1263     implicitLifetime = Qualifiers::OCL_ExplicitNone;
1264 
1265   // Otherwise, check whether the static type does not require
1266   // retaining.  This currently only triggers for Class (possibly
1267   // protocol-qualifed, and arrays thereof).
1268   } else if (type->isObjCARCImplicitlyUnretainedType()) {
1269     implicitLifetime = Qualifiers::OCL_ExplicitNone;
1270 
1271   // If we are in an unevaluated context, like sizeof, skip adding a
1272   // qualification.
1273   } else if (S.isUnevaluatedContext()) {
1274     return type;
1275 
1276   // If that failed, give an error and recover using __strong.  __strong
1277   // is the option most likely to prevent spurious second-order diagnostics,
1278   // like when binding a reference to a field.
1279   } else {
1280     // These types can show up in private ivars in system headers, so
1281     // we need this to not be an error in those cases.  Instead we
1282     // want to delay.
1283     if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
1284       S.DelayedDiagnostics.add(
1285           sema::DelayedDiagnostic::makeForbiddenType(loc,
1286               diag::err_arc_indirect_no_ownership, type, isReference));
1287     } else {
1288       S.Diag(loc, diag::err_arc_indirect_no_ownership) << type << isReference;
1289     }
1290     implicitLifetime = Qualifiers::OCL_Strong;
1291   }
1292   assert(implicitLifetime && "didn't infer any lifetime!");
1293 
1294   Qualifiers qs;
1295   qs.addObjCLifetime(implicitLifetime);
1296   return S.Context.getQualifiedType(type, qs);
1297 }
1298 
1299 /// \brief Build a pointer type.
1300 ///
1301 /// \param T The type to which we'll be building a pointer.
1302 ///
1303 /// \param Loc The location of the entity whose type involves this
1304 /// pointer type or, if there is no such entity, the location of the
1305 /// type that will have pointer type.
1306 ///
1307 /// \param Entity The name of the entity that involves the pointer
1308 /// type, if known.
1309 ///
1310 /// \returns A suitable pointer type, if there are no
1311 /// errors. Otherwise, returns a NULL type.
1312 QualType Sema::BuildPointerType(QualType T,
1313                                 SourceLocation Loc, DeclarationName Entity) {
1314   if (T->isReferenceType()) {
1315     // C++ 8.3.2p4: There shall be no ... pointers to references ...
1316     Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
1317       << getPrintableNameForEntity(Entity) << T;
1318     return QualType();
1319   }
1320 
1321   assert(!T->isObjCObjectType() && "Should build ObjCObjectPointerType");
1322 
1323   // In ARC, it is forbidden to build pointers to unqualified pointers.
1324   if (getLangOpts().ObjCAutoRefCount)
1325     T = inferARCLifetimeForPointee(*this, T, Loc, /*reference*/ false);
1326 
1327   // Build the pointer type.
1328   return Context.getPointerType(T);
1329 }
1330 
1331 /// \brief Build a reference type.
1332 ///
1333 /// \param T The type to which we'll be building a reference.
1334 ///
1335 /// \param Loc The location of the entity whose type involves this
1336 /// reference type or, if there is no such entity, the location of the
1337 /// type that will have reference type.
1338 ///
1339 /// \param Entity The name of the entity that involves the reference
1340 /// type, if known.
1341 ///
1342 /// \returns A suitable reference type, if there are no
1343 /// errors. Otherwise, returns a NULL type.
1344 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue,
1345                                   SourceLocation Loc,
1346                                   DeclarationName Entity) {
1347   assert(Context.getCanonicalType(T) != Context.OverloadTy &&
1348          "Unresolved overloaded function type");
1349 
1350   // C++0x [dcl.ref]p6:
1351   //   If a typedef (7.1.3), a type template-parameter (14.3.1), or a
1352   //   decltype-specifier (7.1.6.2) denotes a type TR that is a reference to a
1353   //   type T, an attempt to create the type "lvalue reference to cv TR" creates
1354   //   the type "lvalue reference to T", while an attempt to create the type
1355   //   "rvalue reference to cv TR" creates the type TR.
1356   bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
1357 
1358   // C++ [dcl.ref]p4: There shall be no references to references.
1359   //
1360   // According to C++ DR 106, references to references are only
1361   // diagnosed when they are written directly (e.g., "int & &"),
1362   // but not when they happen via a typedef:
1363   //
1364   //   typedef int& intref;
1365   //   typedef intref& intref2;
1366   //
1367   // Parser::ParseDeclaratorInternal diagnoses the case where
1368   // references are written directly; here, we handle the
1369   // collapsing of references-to-references as described in C++0x.
1370   // DR 106 and 540 introduce reference-collapsing into C++98/03.
1371 
1372   // C++ [dcl.ref]p1:
1373   //   A declarator that specifies the type "reference to cv void"
1374   //   is ill-formed.
1375   if (T->isVoidType()) {
1376     Diag(Loc, diag::err_reference_to_void);
1377     return QualType();
1378   }
1379 
1380   // In ARC, it is forbidden to build references to unqualified pointers.
1381   if (getLangOpts().ObjCAutoRefCount)
1382     T = inferARCLifetimeForPointee(*this, T, Loc, /*reference*/ true);
1383 
1384   // Handle restrict on references.
1385   if (LValueRef)
1386     return Context.getLValueReferenceType(T, SpelledAsLValue);
1387   return Context.getRValueReferenceType(T);
1388 }
1389 
1390 /// Check whether the specified array size makes the array type a VLA.  If so,
1391 /// return true, if not, return the size of the array in SizeVal.
1392 static bool isArraySizeVLA(Sema &S, Expr *ArraySize, llvm::APSInt &SizeVal) {
1393   // If the size is an ICE, it certainly isn't a VLA. If we're in a GNU mode
1394   // (like gnu99, but not c99) accept any evaluatable value as an extension.
1395   class VLADiagnoser : public Sema::VerifyICEDiagnoser {
1396   public:
1397     VLADiagnoser() : Sema::VerifyICEDiagnoser(true) {}
1398 
1399     virtual void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) {
1400     }
1401 
1402     virtual void diagnoseFold(Sema &S, SourceLocation Loc, SourceRange SR) {
1403       S.Diag(Loc, diag::ext_vla_folded_to_constant) << SR;
1404     }
1405   } Diagnoser;
1406 
1407   return S.VerifyIntegerConstantExpression(ArraySize, &SizeVal, Diagnoser,
1408                                            S.LangOpts.GNUMode).isInvalid();
1409 }
1410 
1411 
1412 /// \brief Build an array type.
1413 ///
1414 /// \param T The type of each element in the array.
1415 ///
1416 /// \param ASM C99 array size modifier (e.g., '*', 'static').
1417 ///
1418 /// \param ArraySize Expression describing the size of the array.
1419 ///
1420 /// \param Brackets The range from the opening '[' to the closing ']'.
1421 ///
1422 /// \param Entity The name of the entity that involves the array
1423 /// type, if known.
1424 ///
1425 /// \returns A suitable array type, if there are no errors. Otherwise,
1426 /// returns a NULL type.
1427 QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
1428                               Expr *ArraySize, unsigned Quals,
1429                               SourceRange Brackets, DeclarationName Entity) {
1430 
1431   SourceLocation Loc = Brackets.getBegin();
1432   if (getLangOpts().CPlusPlus) {
1433     // C++ [dcl.array]p1:
1434     //   T is called the array element type; this type shall not be a reference
1435     //   type, the (possibly cv-qualified) type void, a function type or an
1436     //   abstract class type.
1437     //
1438     // C++ [dcl.array]p3:
1439     //   When several "array of" specifications are adjacent, [...] only the
1440     //   first of the constant expressions that specify the bounds of the arrays
1441     //   may be omitted.
1442     //
1443     // Note: function types are handled in the common path with C.
1444     if (T->isReferenceType()) {
1445       Diag(Loc, diag::err_illegal_decl_array_of_references)
1446       << getPrintableNameForEntity(Entity) << T;
1447       return QualType();
1448     }
1449 
1450     if (T->isVoidType() || T->isIncompleteArrayType()) {
1451       Diag(Loc, diag::err_illegal_decl_array_incomplete_type) << T;
1452       return QualType();
1453     }
1454 
1455     if (RequireNonAbstractType(Brackets.getBegin(), T,
1456                                diag::err_array_of_abstract_type))
1457       return QualType();
1458 
1459     // Mentioning a member pointer type for an array type causes us to lock in
1460     // an inheritance model, even if it's inside an unused typedef.
1461     if (Context.getTargetInfo().getCXXABI().isMicrosoft())
1462       if (const MemberPointerType *MPTy = T->getAs<MemberPointerType>())
1463         if (!MPTy->getClass()->isDependentType())
1464           RequireCompleteType(Loc, T, 0);
1465 
1466   } else {
1467     // C99 6.7.5.2p1: If the element type is an incomplete or function type,
1468     // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
1469     if (RequireCompleteType(Loc, T,
1470                             diag::err_illegal_decl_array_incomplete_type))
1471       return QualType();
1472   }
1473 
1474   if (T->isFunctionType()) {
1475     Diag(Loc, diag::err_illegal_decl_array_of_functions)
1476       << getPrintableNameForEntity(Entity) << T;
1477     return QualType();
1478   }
1479 
1480   if (const RecordType *EltTy = T->getAs<RecordType>()) {
1481     // If the element type is a struct or union that contains a variadic
1482     // array, accept it as a GNU extension: C99 6.7.2.1p2.
1483     if (EltTy->getDecl()->hasFlexibleArrayMember())
1484       Diag(Loc, diag::ext_flexible_array_in_array) << T;
1485   } else if (T->isObjCObjectType()) {
1486     Diag(Loc, diag::err_objc_array_of_interfaces) << T;
1487     return QualType();
1488   }
1489 
1490   // Do placeholder conversions on the array size expression.
1491   if (ArraySize && ArraySize->hasPlaceholderType()) {
1492     ExprResult Result = CheckPlaceholderExpr(ArraySize);
1493     if (Result.isInvalid()) return QualType();
1494     ArraySize = Result.take();
1495   }
1496 
1497   // Do lvalue-to-rvalue conversions on the array size expression.
1498   if (ArraySize && !ArraySize->isRValue()) {
1499     ExprResult Result = DefaultLvalueConversion(ArraySize);
1500     if (Result.isInvalid())
1501       return QualType();
1502 
1503     ArraySize = Result.take();
1504   }
1505 
1506   // C99 6.7.5.2p1: The size expression shall have integer type.
1507   // C++11 allows contextual conversions to such types.
1508   if (!getLangOpts().CPlusPlus11 &&
1509       ArraySize && !ArraySize->isTypeDependent() &&
1510       !ArraySize->getType()->isIntegralOrUnscopedEnumerationType()) {
1511     Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
1512       << ArraySize->getType() << ArraySize->getSourceRange();
1513     return QualType();
1514   }
1515 
1516   llvm::APSInt ConstVal(Context.getTypeSize(Context.getSizeType()));
1517   if (!ArraySize) {
1518     if (ASM == ArrayType::Star)
1519       T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
1520     else
1521       T = Context.getIncompleteArrayType(T, ASM, Quals);
1522   } else if (ArraySize->isTypeDependent() || ArraySize->isValueDependent()) {
1523     T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
1524   } else if ((!T->isDependentType() && !T->isIncompleteType() &&
1525               !T->isConstantSizeType()) ||
1526              isArraySizeVLA(*this, ArraySize, ConstVal)) {
1527     // Even in C++11, don't allow contextual conversions in the array bound
1528     // of a VLA.
1529     if (getLangOpts().CPlusPlus11 &&
1530         !ArraySize->getType()->isIntegralOrUnscopedEnumerationType()) {
1531       Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
1532         << ArraySize->getType() << ArraySize->getSourceRange();
1533       return QualType();
1534     }
1535 
1536     // C99: an array with an element type that has a non-constant-size is a VLA.
1537     // C99: an array with a non-ICE size is a VLA.  We accept any expression
1538     // that we can fold to a non-zero positive value as an extension.
1539     T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
1540   } else {
1541     // C99 6.7.5.2p1: If the expression is a constant expression, it shall
1542     // have a value greater than zero.
1543     if (ConstVal.isSigned() && ConstVal.isNegative()) {
1544       if (Entity)
1545         Diag(ArraySize->getLocStart(), diag::err_decl_negative_array_size)
1546           << getPrintableNameForEntity(Entity) << ArraySize->getSourceRange();
1547       else
1548         Diag(ArraySize->getLocStart(), diag::err_typecheck_negative_array_size)
1549           << ArraySize->getSourceRange();
1550       return QualType();
1551     }
1552     if (ConstVal == 0) {
1553       // GCC accepts zero sized static arrays. We allow them when
1554       // we're not in a SFINAE context.
1555       Diag(ArraySize->getLocStart(),
1556            isSFINAEContext()? diag::err_typecheck_zero_array_size
1557                             : diag::ext_typecheck_zero_array_size)
1558         << ArraySize->getSourceRange();
1559 
1560       if (ASM == ArrayType::Static) {
1561         Diag(ArraySize->getLocStart(),
1562              diag::warn_typecheck_zero_static_array_size)
1563           << ArraySize->getSourceRange();
1564         ASM = ArrayType::Normal;
1565       }
1566     } else if (!T->isDependentType() && !T->isVariablyModifiedType() &&
1567                !T->isIncompleteType() && !T->isUndeducedType()) {
1568       // Is the array too large?
1569       unsigned ActiveSizeBits
1570         = ConstantArrayType::getNumAddressingBits(Context, T, ConstVal);
1571       if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
1572         Diag(ArraySize->getLocStart(), diag::err_array_too_large)
1573           << ConstVal.toString(10)
1574           << ArraySize->getSourceRange();
1575         return QualType();
1576       }
1577     }
1578 
1579     T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
1580   }
1581 
1582   // OpenCL v1.2 s6.9.d: variable length arrays are not supported.
1583   if (getLangOpts().OpenCL && T->isVariableArrayType()) {
1584     Diag(Loc, diag::err_opencl_vla);
1585     return QualType();
1586   }
1587   // If this is not C99, extwarn about VLA's and C99 array size modifiers.
1588   if (!getLangOpts().C99) {
1589     if (T->isVariableArrayType()) {
1590       // Prohibit the use of non-POD types in VLAs.
1591       QualType BaseT = Context.getBaseElementType(T);
1592       if (!T->isDependentType() &&
1593           !RequireCompleteType(Loc, BaseT, 0) &&
1594           !BaseT.isPODType(Context) &&
1595           !BaseT->isObjCLifetimeType()) {
1596         Diag(Loc, diag::err_vla_non_pod)
1597           << BaseT;
1598         return QualType();
1599       }
1600       // Prohibit the use of VLAs during template argument deduction.
1601       else if (isSFINAEContext()) {
1602         Diag(Loc, diag::err_vla_in_sfinae);
1603         return QualType();
1604       }
1605       // Just extwarn about VLAs.
1606       else
1607         Diag(Loc, diag::ext_vla);
1608     } else if (ASM != ArrayType::Normal || Quals != 0)
1609       Diag(Loc,
1610            getLangOpts().CPlusPlus? diag::err_c99_array_usage_cxx
1611                                      : diag::ext_c99_array_usage) << ASM;
1612   }
1613 
1614   if (T->isVariableArrayType()) {
1615     // Warn about VLAs for -Wvla.
1616     Diag(Loc, diag::warn_vla_used);
1617   }
1618 
1619   return T;
1620 }
1621 
1622 /// \brief Build an ext-vector type.
1623 ///
1624 /// Run the required checks for the extended vector type.
1625 QualType Sema::BuildExtVectorType(QualType T, Expr *ArraySize,
1626                                   SourceLocation AttrLoc) {
1627   // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1628   // in conjunction with complex types (pointers, arrays, functions, etc.).
1629   if (!T->isDependentType() &&
1630       !T->isIntegerType() && !T->isRealFloatingType()) {
1631     Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
1632     return QualType();
1633   }
1634 
1635   if (!ArraySize->isTypeDependent() && !ArraySize->isValueDependent()) {
1636     llvm::APSInt vecSize(32);
1637     if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) {
1638       Diag(AttrLoc, diag::err_attribute_argument_type)
1639         << "ext_vector_type" << AANT_ArgumentIntegerConstant
1640         << ArraySize->getSourceRange();
1641       return QualType();
1642     }
1643 
1644     // unlike gcc's vector_size attribute, the size is specified as the
1645     // number of elements, not the number of bytes.
1646     unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
1647 
1648     if (vectorSize == 0) {
1649       Diag(AttrLoc, diag::err_attribute_zero_size)
1650       << ArraySize->getSourceRange();
1651       return QualType();
1652     }
1653 
1654     if (VectorType::isVectorSizeTooLarge(vectorSize)) {
1655       Diag(AttrLoc, diag::err_attribute_size_too_large)
1656         << ArraySize->getSourceRange();
1657       return QualType();
1658     }
1659 
1660     return Context.getExtVectorType(T, vectorSize);
1661   }
1662 
1663   return Context.getDependentSizedExtVectorType(T, ArraySize, AttrLoc);
1664 }
1665 
1666 bool Sema::CheckFunctionReturnType(QualType T, SourceLocation Loc) {
1667   if (T->isArrayType() || T->isFunctionType()) {
1668     Diag(Loc, diag::err_func_returning_array_function)
1669       << T->isFunctionType() << T;
1670     return true;
1671   }
1672 
1673   // Functions cannot return half FP.
1674   if (T->isHalfType()) {
1675     Diag(Loc, diag::err_parameters_retval_cannot_have_fp16_type) << 1 <<
1676       FixItHint::CreateInsertion(Loc, "*");
1677     return true;
1678   }
1679 
1680   // Methods cannot return interface types. All ObjC objects are
1681   // passed by reference.
1682   if (T->isObjCObjectType()) {
1683     Diag(Loc, diag::err_object_cannot_be_passed_returned_by_value) << 0 << T;
1684     return 0;
1685   }
1686 
1687   return false;
1688 }
1689 
1690 QualType Sema::BuildFunctionType(QualType T,
1691                                  llvm::MutableArrayRef<QualType> ParamTypes,
1692                                  SourceLocation Loc, DeclarationName Entity,
1693                                  const FunctionProtoType::ExtProtoInfo &EPI) {
1694   bool Invalid = false;
1695 
1696   Invalid |= CheckFunctionReturnType(T, Loc);
1697 
1698   for (unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) {
1699     // FIXME: Loc is too inprecise here, should use proper locations for args.
1700     QualType ParamType = Context.getAdjustedParameterType(ParamTypes[Idx]);
1701     if (ParamType->isVoidType()) {
1702       Diag(Loc, diag::err_param_with_void_type);
1703       Invalid = true;
1704     } else if (ParamType->isHalfType()) {
1705       // Disallow half FP arguments.
1706       Diag(Loc, diag::err_parameters_retval_cannot_have_fp16_type) << 0 <<
1707         FixItHint::CreateInsertion(Loc, "*");
1708       Invalid = true;
1709     }
1710 
1711     ParamTypes[Idx] = ParamType;
1712   }
1713 
1714   if (Invalid)
1715     return QualType();
1716 
1717   return Context.getFunctionType(T, ParamTypes, EPI);
1718 }
1719 
1720 /// \brief Build a member pointer type \c T Class::*.
1721 ///
1722 /// \param T the type to which the member pointer refers.
1723 /// \param Class the class type into which the member pointer points.
1724 /// \param Loc the location where this type begins
1725 /// \param Entity the name of the entity that will have this member pointer type
1726 ///
1727 /// \returns a member pointer type, if successful, or a NULL type if there was
1728 /// an error.
1729 QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
1730                                       SourceLocation Loc,
1731                                       DeclarationName Entity) {
1732   // Verify that we're not building a pointer to pointer to function with
1733   // exception specification.
1734   if (CheckDistantExceptionSpec(T)) {
1735     Diag(Loc, diag::err_distant_exception_spec);
1736 
1737     // FIXME: If we're doing this as part of template instantiation,
1738     // we should return immediately.
1739 
1740     // Build the type anyway, but use the canonical type so that the
1741     // exception specifiers are stripped off.
1742     T = Context.getCanonicalType(T);
1743   }
1744 
1745   // C++ 8.3.3p3: A pointer to member shall not point to ... a member
1746   //   with reference type, or "cv void."
1747   if (T->isReferenceType()) {
1748     Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
1749       << getPrintableNameForEntity(Entity) << T;
1750     return QualType();
1751   }
1752 
1753   if (T->isVoidType()) {
1754     Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
1755       << getPrintableNameForEntity(Entity);
1756     return QualType();
1757   }
1758 
1759   if (!Class->isDependentType() && !Class->isRecordType()) {
1760     Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
1761     return QualType();
1762   }
1763 
1764   // Adjust the default free function calling convention to the default method
1765   // calling convention.
1766   if (T->isFunctionType())
1767     adjustMemberFunctionCC(T, /*IsStatic=*/false);
1768 
1769   return Context.getMemberPointerType(T, Class.getTypePtr());
1770 }
1771 
1772 /// \brief Build a block pointer type.
1773 ///
1774 /// \param T The type to which we'll be building a block pointer.
1775 ///
1776 /// \param Loc The source location, used for diagnostics.
1777 ///
1778 /// \param Entity The name of the entity that involves the block pointer
1779 /// type, if known.
1780 ///
1781 /// \returns A suitable block pointer type, if there are no
1782 /// errors. Otherwise, returns a NULL type.
1783 QualType Sema::BuildBlockPointerType(QualType T,
1784                                      SourceLocation Loc,
1785                                      DeclarationName Entity) {
1786   if (!T->isFunctionType()) {
1787     Diag(Loc, diag::err_nonfunction_block_type);
1788     return QualType();
1789   }
1790 
1791   return Context.getBlockPointerType(T);
1792 }
1793 
1794 QualType Sema::GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo) {
1795   QualType QT = Ty.get();
1796   if (QT.isNull()) {
1797     if (TInfo) *TInfo = 0;
1798     return QualType();
1799   }
1800 
1801   TypeSourceInfo *DI = 0;
1802   if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
1803     QT = LIT->getType();
1804     DI = LIT->getTypeSourceInfo();
1805   }
1806 
1807   if (TInfo) *TInfo = DI;
1808   return QT;
1809 }
1810 
1811 static void transferARCOwnershipToDeclaratorChunk(TypeProcessingState &state,
1812                                             Qualifiers::ObjCLifetime ownership,
1813                                             unsigned chunkIndex);
1814 
1815 /// Given that this is the declaration of a parameter under ARC,
1816 /// attempt to infer attributes and such for pointer-to-whatever
1817 /// types.
1818 static void inferARCWriteback(TypeProcessingState &state,
1819                               QualType &declSpecType) {
1820   Sema &S = state.getSema();
1821   Declarator &declarator = state.getDeclarator();
1822 
1823   // TODO: should we care about decl qualifiers?
1824 
1825   // Check whether the declarator has the expected form.  We walk
1826   // from the inside out in order to make the block logic work.
1827   unsigned outermostPointerIndex = 0;
1828   bool isBlockPointer = false;
1829   unsigned numPointers = 0;
1830   for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
1831     unsigned chunkIndex = i;
1832     DeclaratorChunk &chunk = declarator.getTypeObject(chunkIndex);
1833     switch (chunk.Kind) {
1834     case DeclaratorChunk::Paren:
1835       // Ignore parens.
1836       break;
1837 
1838     case DeclaratorChunk::Reference:
1839     case DeclaratorChunk::Pointer:
1840       // Count the number of pointers.  Treat references
1841       // interchangeably as pointers; if they're mis-ordered, normal
1842       // type building will discover that.
1843       outermostPointerIndex = chunkIndex;
1844       numPointers++;
1845       break;
1846 
1847     case DeclaratorChunk::BlockPointer:
1848       // If we have a pointer to block pointer, that's an acceptable
1849       // indirect reference; anything else is not an application of
1850       // the rules.
1851       if (numPointers != 1) return;
1852       numPointers++;
1853       outermostPointerIndex = chunkIndex;
1854       isBlockPointer = true;
1855 
1856       // We don't care about pointer structure in return values here.
1857       goto done;
1858 
1859     case DeclaratorChunk::Array: // suppress if written (id[])?
1860     case DeclaratorChunk::Function:
1861     case DeclaratorChunk::MemberPointer:
1862       return;
1863     }
1864   }
1865  done:
1866 
1867   // If we have *one* pointer, then we want to throw the qualifier on
1868   // the declaration-specifiers, which means that it needs to be a
1869   // retainable object type.
1870   if (numPointers == 1) {
1871     // If it's not a retainable object type, the rule doesn't apply.
1872     if (!declSpecType->isObjCRetainableType()) return;
1873 
1874     // If it already has lifetime, don't do anything.
1875     if (declSpecType.getObjCLifetime()) return;
1876 
1877     // Otherwise, modify the type in-place.
1878     Qualifiers qs;
1879 
1880     if (declSpecType->isObjCARCImplicitlyUnretainedType())
1881       qs.addObjCLifetime(Qualifiers::OCL_ExplicitNone);
1882     else
1883       qs.addObjCLifetime(Qualifiers::OCL_Autoreleasing);
1884     declSpecType = S.Context.getQualifiedType(declSpecType, qs);
1885 
1886   // If we have *two* pointers, then we want to throw the qualifier on
1887   // the outermost pointer.
1888   } else if (numPointers == 2) {
1889     // If we don't have a block pointer, we need to check whether the
1890     // declaration-specifiers gave us something that will turn into a
1891     // retainable object pointer after we slap the first pointer on it.
1892     if (!isBlockPointer && !declSpecType->isObjCObjectType())
1893       return;
1894 
1895     // Look for an explicit lifetime attribute there.
1896     DeclaratorChunk &chunk = declarator.getTypeObject(outermostPointerIndex);
1897     if (chunk.Kind != DeclaratorChunk::Pointer &&
1898         chunk.Kind != DeclaratorChunk::BlockPointer)
1899       return;
1900     for (const AttributeList *attr = chunk.getAttrs(); attr;
1901            attr = attr->getNext())
1902       if (attr->getKind() == AttributeList::AT_ObjCOwnership)
1903         return;
1904 
1905     transferARCOwnershipToDeclaratorChunk(state, Qualifiers::OCL_Autoreleasing,
1906                                           outermostPointerIndex);
1907 
1908   // Any other number of pointers/references does not trigger the rule.
1909   } else return;
1910 
1911   // TODO: mark whether we did this inference?
1912 }
1913 
1914 static void diagnoseIgnoredQualifiers(
1915     Sema &S, unsigned Quals,
1916     SourceLocation FallbackLoc,
1917     SourceLocation ConstQualLoc = SourceLocation(),
1918     SourceLocation VolatileQualLoc = SourceLocation(),
1919     SourceLocation RestrictQualLoc = SourceLocation(),
1920     SourceLocation AtomicQualLoc = SourceLocation()) {
1921   if (!Quals)
1922     return;
1923 
1924   const SourceManager &SM = S.getSourceManager();
1925 
1926   struct Qual {
1927     unsigned Mask;
1928     const char *Name;
1929     SourceLocation Loc;
1930   } const QualKinds[4] = {
1931     { DeclSpec::TQ_const, "const", ConstQualLoc },
1932     { DeclSpec::TQ_volatile, "volatile", VolatileQualLoc },
1933     { DeclSpec::TQ_restrict, "restrict", RestrictQualLoc },
1934     { DeclSpec::TQ_atomic, "_Atomic", AtomicQualLoc }
1935   };
1936 
1937   SmallString<32> QualStr;
1938   unsigned NumQuals = 0;
1939   SourceLocation Loc;
1940   FixItHint FixIts[4];
1941 
1942   // Build a string naming the redundant qualifiers.
1943   for (unsigned I = 0; I != 4; ++I) {
1944     if (Quals & QualKinds[I].Mask) {
1945       if (!QualStr.empty()) QualStr += ' ';
1946       QualStr += QualKinds[I].Name;
1947 
1948       // If we have a location for the qualifier, offer a fixit.
1949       SourceLocation QualLoc = QualKinds[I].Loc;
1950       if (!QualLoc.isInvalid()) {
1951         FixIts[NumQuals] = FixItHint::CreateRemoval(QualLoc);
1952         if (Loc.isInvalid() || SM.isBeforeInTranslationUnit(QualLoc, Loc))
1953           Loc = QualLoc;
1954       }
1955 
1956       ++NumQuals;
1957     }
1958   }
1959 
1960   S.Diag(Loc.isInvalid() ? FallbackLoc : Loc, diag::warn_qual_return_type)
1961     << QualStr << NumQuals << FixIts[0] << FixIts[1] << FixIts[2] << FixIts[3];
1962 }
1963 
1964 // Diagnose pointless type qualifiers on the return type of a function.
1965 static void diagnoseIgnoredFunctionQualifiers(Sema &S, QualType RetTy,
1966                                               Declarator &D,
1967                                               unsigned FunctionChunkIndex) {
1968   if (D.getTypeObject(FunctionChunkIndex).Fun.hasTrailingReturnType()) {
1969     // FIXME: TypeSourceInfo doesn't preserve location information for
1970     // qualifiers.
1971     diagnoseIgnoredQualifiers(S, RetTy.getLocalCVRQualifiers(),
1972                               D.getIdentifierLoc());
1973     return;
1974   }
1975 
1976   for (unsigned OuterChunkIndex = FunctionChunkIndex + 1,
1977                 End = D.getNumTypeObjects();
1978        OuterChunkIndex != End; ++OuterChunkIndex) {
1979     DeclaratorChunk &OuterChunk = D.getTypeObject(OuterChunkIndex);
1980     switch (OuterChunk.Kind) {
1981     case DeclaratorChunk::Paren:
1982       continue;
1983 
1984     case DeclaratorChunk::Pointer: {
1985       DeclaratorChunk::PointerTypeInfo &PTI = OuterChunk.Ptr;
1986       diagnoseIgnoredQualifiers(
1987           S, PTI.TypeQuals,
1988           SourceLocation(),
1989           SourceLocation::getFromRawEncoding(PTI.ConstQualLoc),
1990           SourceLocation::getFromRawEncoding(PTI.VolatileQualLoc),
1991           SourceLocation::getFromRawEncoding(PTI.RestrictQualLoc),
1992           SourceLocation::getFromRawEncoding(PTI.AtomicQualLoc));
1993       return;
1994     }
1995 
1996     case DeclaratorChunk::Function:
1997     case DeclaratorChunk::BlockPointer:
1998     case DeclaratorChunk::Reference:
1999     case DeclaratorChunk::Array:
2000     case DeclaratorChunk::MemberPointer:
2001       // FIXME: We can't currently provide an accurate source location and a
2002       // fix-it hint for these.
2003       unsigned AtomicQual = RetTy->isAtomicType() ? DeclSpec::TQ_atomic : 0;
2004       diagnoseIgnoredQualifiers(S, RetTy.getCVRQualifiers() | AtomicQual,
2005                                 D.getIdentifierLoc());
2006       return;
2007     }
2008 
2009     llvm_unreachable("unknown declarator chunk kind");
2010   }
2011 
2012   // If the qualifiers come from a conversion function type, don't diagnose
2013   // them -- they're not necessarily redundant, since such a conversion
2014   // operator can be explicitly called as "x.operator const int()".
2015   if (D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId)
2016     return;
2017 
2018   // Just parens all the way out to the decl specifiers. Diagnose any qualifiers
2019   // which are present there.
2020   diagnoseIgnoredQualifiers(S, D.getDeclSpec().getTypeQualifiers(),
2021                             D.getIdentifierLoc(),
2022                             D.getDeclSpec().getConstSpecLoc(),
2023                             D.getDeclSpec().getVolatileSpecLoc(),
2024                             D.getDeclSpec().getRestrictSpecLoc(),
2025                             D.getDeclSpec().getAtomicSpecLoc());
2026 }
2027 
2028 static QualType GetDeclSpecTypeForDeclarator(TypeProcessingState &state,
2029                                              TypeSourceInfo *&ReturnTypeInfo) {
2030   Sema &SemaRef = state.getSema();
2031   Declarator &D = state.getDeclarator();
2032   QualType T;
2033   ReturnTypeInfo = 0;
2034 
2035   // The TagDecl owned by the DeclSpec.
2036   TagDecl *OwnedTagDecl = 0;
2037 
2038   bool ContainsPlaceholderType = false;
2039 
2040   switch (D.getName().getKind()) {
2041   case UnqualifiedId::IK_ImplicitSelfParam:
2042   case UnqualifiedId::IK_OperatorFunctionId:
2043   case UnqualifiedId::IK_Identifier:
2044   case UnqualifiedId::IK_LiteralOperatorId:
2045   case UnqualifiedId::IK_TemplateId:
2046     T = ConvertDeclSpecToType(state);
2047     ContainsPlaceholderType = D.getDeclSpec().containsPlaceholderType();
2048 
2049     if (!D.isInvalidType() && D.getDeclSpec().isTypeSpecOwned()) {
2050       OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
2051       // Owned declaration is embedded in declarator.
2052       OwnedTagDecl->setEmbeddedInDeclarator(true);
2053     }
2054     break;
2055 
2056   case UnqualifiedId::IK_ConstructorName:
2057   case UnqualifiedId::IK_ConstructorTemplateId:
2058   case UnqualifiedId::IK_DestructorName:
2059     // Constructors and destructors don't have return types. Use
2060     // "void" instead.
2061     T = SemaRef.Context.VoidTy;
2062     if (AttributeList *attrs = D.getDeclSpec().getAttributes().getList())
2063       processTypeAttrs(state, T, TAL_DeclSpec, attrs);
2064     break;
2065 
2066   case UnqualifiedId::IK_ConversionFunctionId:
2067     // The result type of a conversion function is the type that it
2068     // converts to.
2069     T = SemaRef.GetTypeFromParser(D.getName().ConversionFunctionId,
2070                                   &ReturnTypeInfo);
2071     ContainsPlaceholderType = T->getContainedAutoType();
2072     break;
2073   }
2074 
2075   if (D.getAttributes())
2076     distributeTypeAttrsFromDeclarator(state, T);
2077 
2078   // C++11 [dcl.spec.auto]p5: reject 'auto' if it is not in an allowed context.
2079   // In C++11, a function declarator using 'auto' must have a trailing return
2080   // type (this is checked later) and we can skip this. In other languages
2081   // using auto, we need to check regardless.
2082   // C++14 In generic lambdas allow 'auto' in their parameters.
2083   if (ContainsPlaceholderType &&
2084       (!SemaRef.getLangOpts().CPlusPlus11 || !D.isFunctionDeclarator())) {
2085     int Error = -1;
2086 
2087     switch (D.getContext()) {
2088     case Declarator::KNRTypeListContext:
2089       llvm_unreachable("K&R type lists aren't allowed in C++");
2090     case Declarator::LambdaExprContext:
2091       llvm_unreachable("Can't specify a type specifier in lambda grammar");
2092     case Declarator::ObjCParameterContext:
2093     case Declarator::ObjCResultContext:
2094     case Declarator::PrototypeContext:
2095       Error = 0;
2096       break;
2097     case Declarator::LambdaExprParameterContext:
2098       if (!(SemaRef.getLangOpts().CPlusPlus1y
2099               && D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto))
2100         Error = 14;
2101       break;
2102     case Declarator::MemberContext:
2103       if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)
2104         break;
2105       switch (cast<TagDecl>(SemaRef.CurContext)->getTagKind()) {
2106       case TTK_Enum: llvm_unreachable("unhandled tag kind");
2107       case TTK_Struct: Error = 1; /* Struct member */ break;
2108       case TTK_Union:  Error = 2; /* Union member */ break;
2109       case TTK_Class:  Error = 3; /* Class member */ break;
2110       case TTK_Interface: Error = 4; /* Interface member */ break;
2111       }
2112       break;
2113     case Declarator::CXXCatchContext:
2114     case Declarator::ObjCCatchContext:
2115       Error = 5; // Exception declaration
2116       break;
2117     case Declarator::TemplateParamContext:
2118       Error = 6; // Template parameter
2119       break;
2120     case Declarator::BlockLiteralContext:
2121       Error = 7; // Block literal
2122       break;
2123     case Declarator::TemplateTypeArgContext:
2124       Error = 8; // Template type argument
2125       break;
2126     case Declarator::AliasDeclContext:
2127     case Declarator::AliasTemplateContext:
2128       Error = 10; // Type alias
2129       break;
2130     case Declarator::TrailingReturnContext:
2131       if (!SemaRef.getLangOpts().CPlusPlus1y)
2132         Error = 11; // Function return type
2133       break;
2134     case Declarator::ConversionIdContext:
2135       if (!SemaRef.getLangOpts().CPlusPlus1y)
2136         Error = 12; // conversion-type-id
2137       break;
2138     case Declarator::TypeNameContext:
2139       Error = 13; // Generic
2140       break;
2141     case Declarator::FileContext:
2142     case Declarator::BlockContext:
2143     case Declarator::ForContext:
2144     case Declarator::ConditionContext:
2145     case Declarator::CXXNewContext:
2146       break;
2147     }
2148 
2149     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
2150       Error = 9;
2151 
2152     // In Objective-C it is an error to use 'auto' on a function declarator.
2153     if (D.isFunctionDeclarator())
2154       Error = 11;
2155 
2156     // C++11 [dcl.spec.auto]p2: 'auto' is always fine if the declarator
2157     // contains a trailing return type. That is only legal at the outermost
2158     // level. Check all declarator chunks (outermost first) anyway, to give
2159     // better diagnostics.
2160     if (SemaRef.getLangOpts().CPlusPlus11 && Error != -1) {
2161       for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
2162         unsigned chunkIndex = e - i - 1;
2163         state.setCurrentChunkIndex(chunkIndex);
2164         DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex);
2165         if (DeclType.Kind == DeclaratorChunk::Function) {
2166           const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
2167           if (FTI.hasTrailingReturnType()) {
2168             Error = -1;
2169             break;
2170           }
2171         }
2172       }
2173     }
2174 
2175     SourceRange AutoRange = D.getDeclSpec().getTypeSpecTypeLoc();
2176     if (D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId)
2177       AutoRange = D.getName().getSourceRange();
2178 
2179     if (Error != -1) {
2180       const bool IsDeclTypeAuto =
2181           D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_decltype_auto;
2182       SemaRef.Diag(AutoRange.getBegin(), diag::err_auto_not_allowed)
2183         << IsDeclTypeAuto << Error << AutoRange;
2184       T = SemaRef.Context.IntTy;
2185       D.setInvalidType(true);
2186     } else
2187       SemaRef.Diag(AutoRange.getBegin(),
2188                    diag::warn_cxx98_compat_auto_type_specifier)
2189         << AutoRange;
2190   }
2191 
2192   if (SemaRef.getLangOpts().CPlusPlus &&
2193       OwnedTagDecl && OwnedTagDecl->isCompleteDefinition()) {
2194     // Check the contexts where C++ forbids the declaration of a new class
2195     // or enumeration in a type-specifier-seq.
2196     switch (D.getContext()) {
2197     case Declarator::TrailingReturnContext:
2198       // Class and enumeration definitions are syntactically not allowed in
2199       // trailing return types.
2200       llvm_unreachable("parser should not have allowed this");
2201       break;
2202     case Declarator::FileContext:
2203     case Declarator::MemberContext:
2204     case Declarator::BlockContext:
2205     case Declarator::ForContext:
2206     case Declarator::BlockLiteralContext:
2207     case Declarator::LambdaExprContext:
2208       // C++11 [dcl.type]p3:
2209       //   A type-specifier-seq shall not define a class or enumeration unless
2210       //   it appears in the type-id of an alias-declaration (7.1.3) that is not
2211       //   the declaration of a template-declaration.
2212     case Declarator::AliasDeclContext:
2213       break;
2214     case Declarator::AliasTemplateContext:
2215       SemaRef.Diag(OwnedTagDecl->getLocation(),
2216              diag::err_type_defined_in_alias_template)
2217         << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
2218       D.setInvalidType(true);
2219       break;
2220     case Declarator::TypeNameContext:
2221     case Declarator::ConversionIdContext:
2222     case Declarator::TemplateParamContext:
2223     case Declarator::CXXNewContext:
2224     case Declarator::CXXCatchContext:
2225     case Declarator::ObjCCatchContext:
2226     case Declarator::TemplateTypeArgContext:
2227       SemaRef.Diag(OwnedTagDecl->getLocation(),
2228              diag::err_type_defined_in_type_specifier)
2229         << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
2230       D.setInvalidType(true);
2231       break;
2232     case Declarator::PrototypeContext:
2233     case Declarator::LambdaExprParameterContext:
2234     case Declarator::ObjCParameterContext:
2235     case Declarator::ObjCResultContext:
2236     case Declarator::KNRTypeListContext:
2237       // C++ [dcl.fct]p6:
2238       //   Types shall not be defined in return or parameter types.
2239       SemaRef.Diag(OwnedTagDecl->getLocation(),
2240                    diag::err_type_defined_in_param_type)
2241         << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
2242       D.setInvalidType(true);
2243       break;
2244     case Declarator::ConditionContext:
2245       // C++ 6.4p2:
2246       // The type-specifier-seq shall not contain typedef and shall not declare
2247       // a new class or enumeration.
2248       SemaRef.Diag(OwnedTagDecl->getLocation(),
2249                    diag::err_type_defined_in_condition);
2250       D.setInvalidType(true);
2251       break;
2252     }
2253   }
2254 
2255   return T;
2256 }
2257 
2258 static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy){
2259   std::string Quals =
2260     Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString();
2261 
2262   switch (FnTy->getRefQualifier()) {
2263   case RQ_None:
2264     break;
2265 
2266   case RQ_LValue:
2267     if (!Quals.empty())
2268       Quals += ' ';
2269     Quals += '&';
2270     break;
2271 
2272   case RQ_RValue:
2273     if (!Quals.empty())
2274       Quals += ' ';
2275     Quals += "&&";
2276     break;
2277   }
2278 
2279   return Quals;
2280 }
2281 
2282 /// Check that the function type T, which has a cv-qualifier or a ref-qualifier,
2283 /// can be contained within the declarator chunk DeclType, and produce an
2284 /// appropriate diagnostic if not.
2285 static void checkQualifiedFunction(Sema &S, QualType T,
2286                                    DeclaratorChunk &DeclType) {
2287   // C++98 [dcl.fct]p4 / C++11 [dcl.fct]p6: a function type with a
2288   // cv-qualifier or a ref-qualifier can only appear at the topmost level
2289   // of a type.
2290   int DiagKind = -1;
2291   switch (DeclType.Kind) {
2292   case DeclaratorChunk::Paren:
2293   case DeclaratorChunk::MemberPointer:
2294     // These cases are permitted.
2295     return;
2296   case DeclaratorChunk::Array:
2297   case DeclaratorChunk::Function:
2298     // These cases don't allow function types at all; no need to diagnose the
2299     // qualifiers separately.
2300     return;
2301   case DeclaratorChunk::BlockPointer:
2302     DiagKind = 0;
2303     break;
2304   case DeclaratorChunk::Pointer:
2305     DiagKind = 1;
2306     break;
2307   case DeclaratorChunk::Reference:
2308     DiagKind = 2;
2309     break;
2310   }
2311 
2312   assert(DiagKind != -1);
2313   S.Diag(DeclType.Loc, diag::err_compound_qualified_function_type)
2314     << DiagKind << isa<FunctionType>(T.IgnoreParens()) << T
2315     << getFunctionQualifiersAsString(T->castAs<FunctionProtoType>());
2316 }
2317 
2318 /// Produce an approprioate diagnostic for an ambiguity between a function
2319 /// declarator and a C++ direct-initializer.
2320 static void warnAboutAmbiguousFunction(Sema &S, Declarator &D,
2321                                        DeclaratorChunk &DeclType, QualType RT) {
2322   const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
2323   assert(FTI.isAmbiguous && "no direct-initializer / function ambiguity");
2324 
2325   // If the return type is void there is no ambiguity.
2326   if (RT->isVoidType())
2327     return;
2328 
2329   // An initializer for a non-class type can have at most one argument.
2330   if (!RT->isRecordType() && FTI.NumArgs > 1)
2331     return;
2332 
2333   // An initializer for a reference must have exactly one argument.
2334   if (RT->isReferenceType() && FTI.NumArgs != 1)
2335     return;
2336 
2337   // Only warn if this declarator is declaring a function at block scope, and
2338   // doesn't have a storage class (such as 'extern') specified.
2339   if (!D.isFunctionDeclarator() ||
2340       D.getFunctionDefinitionKind() != FDK_Declaration ||
2341       !S.CurContext->isFunctionOrMethod() ||
2342       D.getDeclSpec().getStorageClassSpec()
2343         != DeclSpec::SCS_unspecified)
2344     return;
2345 
2346   // Inside a condition, a direct initializer is not permitted. We allow one to
2347   // be parsed in order to give better diagnostics in condition parsing.
2348   if (D.getContext() == Declarator::ConditionContext)
2349     return;
2350 
2351   SourceRange ParenRange(DeclType.Loc, DeclType.EndLoc);
2352 
2353   S.Diag(DeclType.Loc,
2354          FTI.NumArgs ? diag::warn_parens_disambiguated_as_function_declaration
2355                      : diag::warn_empty_parens_are_function_decl)
2356     << ParenRange;
2357 
2358   // If the declaration looks like:
2359   //   T var1,
2360   //   f();
2361   // and name lookup finds a function named 'f', then the ',' was
2362   // probably intended to be a ';'.
2363   if (!D.isFirstDeclarator() && D.getIdentifier()) {
2364     FullSourceLoc Comma(D.getCommaLoc(), S.SourceMgr);
2365     FullSourceLoc Name(D.getIdentifierLoc(), S.SourceMgr);
2366     if (Comma.getFileID() != Name.getFileID() ||
2367         Comma.getSpellingLineNumber() != Name.getSpellingLineNumber()) {
2368       LookupResult Result(S, D.getIdentifier(), SourceLocation(),
2369                           Sema::LookupOrdinaryName);
2370       if (S.LookupName(Result, S.getCurScope()))
2371         S.Diag(D.getCommaLoc(), diag::note_empty_parens_function_call)
2372           << FixItHint::CreateReplacement(D.getCommaLoc(), ";")
2373           << D.getIdentifier();
2374     }
2375   }
2376 
2377   if (FTI.NumArgs > 0) {
2378     // For a declaration with parameters, eg. "T var(T());", suggest adding parens
2379     // around the first parameter to turn the declaration into a variable
2380     // declaration.
2381     SourceRange Range = FTI.ArgInfo[0].Param->getSourceRange();
2382     SourceLocation B = Range.getBegin();
2383     SourceLocation E = S.PP.getLocForEndOfToken(Range.getEnd());
2384     // FIXME: Maybe we should suggest adding braces instead of parens
2385     // in C++11 for classes that don't have an initializer_list constructor.
2386     S.Diag(B, diag::note_additional_parens_for_variable_declaration)
2387       << FixItHint::CreateInsertion(B, "(")
2388       << FixItHint::CreateInsertion(E, ")");
2389   } else {
2390     // For a declaration without parameters, eg. "T var();", suggest replacing the
2391     // parens with an initializer to turn the declaration into a variable
2392     // declaration.
2393     const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
2394 
2395     // Empty parens mean value-initialization, and no parens mean
2396     // default initialization. These are equivalent if the default
2397     // constructor is user-provided or if zero-initialization is a
2398     // no-op.
2399     if (RD && RD->hasDefinition() &&
2400         (RD->isEmpty() || RD->hasUserProvidedDefaultConstructor()))
2401       S.Diag(DeclType.Loc, diag::note_empty_parens_default_ctor)
2402         << FixItHint::CreateRemoval(ParenRange);
2403     else {
2404       std::string Init =
2405           S.getFixItZeroInitializerForType(RT, ParenRange.getBegin());
2406       if (Init.empty() && S.LangOpts.CPlusPlus11)
2407         Init = "{}";
2408       if (!Init.empty())
2409         S.Diag(DeclType.Loc, diag::note_empty_parens_zero_initialize)
2410           << FixItHint::CreateReplacement(ParenRange, Init);
2411     }
2412   }
2413 }
2414 
2415 /// Helper for figuring out the default CC for a function declarator type.  If
2416 /// this is the outermost chunk, then we can determine the CC from the
2417 /// declarator context.  If not, then this could be either a member function
2418 /// type or normal function type.
2419 static CallingConv
2420 getCCForDeclaratorChunk(Sema &S, Declarator &D,
2421                         const DeclaratorChunk::FunctionTypeInfo &FTI,
2422                         unsigned ChunkIndex) {
2423   assert(D.getTypeObject(ChunkIndex).Kind == DeclaratorChunk::Function);
2424 
2425   bool IsCXXInstanceMethod = false;
2426 
2427   if (S.getLangOpts().CPlusPlus) {
2428     // Look inwards through parentheses to see if this chunk will form a
2429     // member pointer type or if we're the declarator.  Any type attributes
2430     // between here and there will override the CC we choose here.
2431     unsigned I = ChunkIndex;
2432     bool FoundNonParen = false;
2433     while (I && !FoundNonParen) {
2434       --I;
2435       if (D.getTypeObject(I).Kind != DeclaratorChunk::Paren)
2436         FoundNonParen = true;
2437     }
2438 
2439     if (FoundNonParen) {
2440       // If we're not the declarator, we're a regular function type unless we're
2441       // in a member pointer.
2442       IsCXXInstanceMethod =
2443           D.getTypeObject(I).Kind == DeclaratorChunk::MemberPointer;
2444     } else {
2445       // We're the innermost decl chunk, so must be a function declarator.
2446       assert(D.isFunctionDeclarator());
2447 
2448       // If we're inside a record, we're declaring a method, but it could be
2449       // explicitly or implicitly static.
2450       IsCXXInstanceMethod =
2451           D.isFirstDeclarationOfMember() &&
2452           D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
2453           !D.isStaticMember();
2454     }
2455   }
2456 
2457   return S.Context.getDefaultCallingConvention(FTI.isVariadic,
2458                                                IsCXXInstanceMethod);
2459 }
2460 
2461 static TypeSourceInfo *GetFullTypeForDeclarator(TypeProcessingState &state,
2462                                                 QualType declSpecType,
2463                                                 TypeSourceInfo *TInfo) {
2464 
2465   QualType T = declSpecType;
2466   Declarator &D = state.getDeclarator();
2467   Sema &S = state.getSema();
2468   ASTContext &Context = S.Context;
2469   const LangOptions &LangOpts = S.getLangOpts();
2470 
2471   // The name we're declaring, if any.
2472   DeclarationName Name;
2473   if (D.getIdentifier())
2474     Name = D.getIdentifier();
2475 
2476   // Does this declaration declare a typedef-name?
2477   bool IsTypedefName =
2478     D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef ||
2479     D.getContext() == Declarator::AliasDeclContext ||
2480     D.getContext() == Declarator::AliasTemplateContext;
2481 
2482   // Does T refer to a function type with a cv-qualifier or a ref-qualifier?
2483   bool IsQualifiedFunction = T->isFunctionProtoType() &&
2484       (T->castAs<FunctionProtoType>()->getTypeQuals() != 0 ||
2485        T->castAs<FunctionProtoType>()->getRefQualifier() != RQ_None);
2486 
2487   // If T is 'decltype(auto)', the only declarators we can have are parens
2488   // and at most one function declarator if this is a function declaration.
2489   if (const AutoType *AT = T->getAs<AutoType>()) {
2490     if (AT->isDecltypeAuto()) {
2491       for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
2492         unsigned Index = E - I - 1;
2493         DeclaratorChunk &DeclChunk = D.getTypeObject(Index);
2494         unsigned DiagId = diag::err_decltype_auto_compound_type;
2495         unsigned DiagKind = 0;
2496         switch (DeclChunk.Kind) {
2497         case DeclaratorChunk::Paren:
2498           continue;
2499         case DeclaratorChunk::Function: {
2500           unsigned FnIndex;
2501           if (D.isFunctionDeclarationContext() &&
2502               D.isFunctionDeclarator(FnIndex) && FnIndex == Index)
2503             continue;
2504           DiagId = diag::err_decltype_auto_function_declarator_not_declaration;
2505           break;
2506         }
2507         case DeclaratorChunk::Pointer:
2508         case DeclaratorChunk::BlockPointer:
2509         case DeclaratorChunk::MemberPointer:
2510           DiagKind = 0;
2511           break;
2512         case DeclaratorChunk::Reference:
2513           DiagKind = 1;
2514           break;
2515         case DeclaratorChunk::Array:
2516           DiagKind = 2;
2517           break;
2518         }
2519 
2520         S.Diag(DeclChunk.Loc, DiagId) << DiagKind;
2521         D.setInvalidType(true);
2522         break;
2523       }
2524     }
2525   }
2526 
2527   // Walk the DeclTypeInfo, building the recursive type as we go.
2528   // DeclTypeInfos are ordered from the identifier out, which is
2529   // opposite of what we want :).
2530   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
2531     unsigned chunkIndex = e - i - 1;
2532     state.setCurrentChunkIndex(chunkIndex);
2533     DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex);
2534     if (IsQualifiedFunction) {
2535       checkQualifiedFunction(S, T, DeclType);
2536       IsQualifiedFunction = DeclType.Kind == DeclaratorChunk::Paren;
2537     }
2538     switch (DeclType.Kind) {
2539     case DeclaratorChunk::Paren:
2540       T = S.BuildParenType(T);
2541       break;
2542     case DeclaratorChunk::BlockPointer:
2543       // If blocks are disabled, emit an error.
2544       if (!LangOpts.Blocks)
2545         S.Diag(DeclType.Loc, diag::err_blocks_disable);
2546 
2547       T = S.BuildBlockPointerType(T, D.getIdentifierLoc(), Name);
2548       if (DeclType.Cls.TypeQuals)
2549         T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Cls.TypeQuals);
2550       break;
2551     case DeclaratorChunk::Pointer:
2552       // Verify that we're not building a pointer to pointer to function with
2553       // exception specification.
2554       if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
2555         S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
2556         D.setInvalidType(true);
2557         // Build the type anyway.
2558       }
2559       if (LangOpts.ObjC1 && T->getAs<ObjCObjectType>()) {
2560         T = Context.getObjCObjectPointerType(T);
2561         if (DeclType.Ptr.TypeQuals)
2562           T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
2563         break;
2564       }
2565       T = S.BuildPointerType(T, DeclType.Loc, Name);
2566       if (DeclType.Ptr.TypeQuals)
2567         T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
2568 
2569       break;
2570     case DeclaratorChunk::Reference: {
2571       // Verify that we're not building a reference to pointer to function with
2572       // exception specification.
2573       if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
2574         S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
2575         D.setInvalidType(true);
2576         // Build the type anyway.
2577       }
2578       T = S.BuildReferenceType(T, DeclType.Ref.LValueRef, DeclType.Loc, Name);
2579 
2580       if (DeclType.Ref.HasRestrict)
2581         T = S.BuildQualifiedType(T, DeclType.Loc, Qualifiers::Restrict);
2582       break;
2583     }
2584     case DeclaratorChunk::Array: {
2585       // Verify that we're not building an array of pointers to function with
2586       // exception specification.
2587       if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
2588         S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
2589         D.setInvalidType(true);
2590         // Build the type anyway.
2591       }
2592       DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
2593       Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
2594       ArrayType::ArraySizeModifier ASM;
2595       if (ATI.isStar)
2596         ASM = ArrayType::Star;
2597       else if (ATI.hasStatic)
2598         ASM = ArrayType::Static;
2599       else
2600         ASM = ArrayType::Normal;
2601       if (ASM == ArrayType::Star && !D.isPrototypeContext()) {
2602         // FIXME: This check isn't quite right: it allows star in prototypes
2603         // for function definitions, and disallows some edge cases detailed
2604         // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
2605         S.Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
2606         ASM = ArrayType::Normal;
2607         D.setInvalidType(true);
2608       }
2609 
2610       // C99 6.7.5.2p1: The optional type qualifiers and the keyword static
2611       // shall appear only in a declaration of a function parameter with an
2612       // array type, ...
2613       if (ASM == ArrayType::Static || ATI.TypeQuals) {
2614         if (!(D.isPrototypeContext() ||
2615               D.getContext() == Declarator::KNRTypeListContext)) {
2616           S.Diag(DeclType.Loc, diag::err_array_static_outside_prototype) <<
2617               (ASM == ArrayType::Static ? "'static'" : "type qualifier");
2618           // Remove the 'static' and the type qualifiers.
2619           if (ASM == ArrayType::Static)
2620             ASM = ArrayType::Normal;
2621           ATI.TypeQuals = 0;
2622           D.setInvalidType(true);
2623         }
2624 
2625         // C99 6.7.5.2p1: ... and then only in the outermost array type
2626         // derivation.
2627         unsigned x = chunkIndex;
2628         while (x != 0) {
2629           // Walk outwards along the declarator chunks.
2630           x--;
2631           const DeclaratorChunk &DC = D.getTypeObject(x);
2632           switch (DC.Kind) {
2633           case DeclaratorChunk::Paren:
2634             continue;
2635           case DeclaratorChunk::Array:
2636           case DeclaratorChunk::Pointer:
2637           case DeclaratorChunk::Reference:
2638           case DeclaratorChunk::MemberPointer:
2639             S.Diag(DeclType.Loc, diag::err_array_static_not_outermost) <<
2640               (ASM == ArrayType::Static ? "'static'" : "type qualifier");
2641             if (ASM == ArrayType::Static)
2642               ASM = ArrayType::Normal;
2643             ATI.TypeQuals = 0;
2644             D.setInvalidType(true);
2645             break;
2646           case DeclaratorChunk::Function:
2647           case DeclaratorChunk::BlockPointer:
2648             // These are invalid anyway, so just ignore.
2649             break;
2650           }
2651         }
2652       }
2653       const AutoType *AT = T->getContainedAutoType();
2654       // Allow arrays of auto if we are a generic lambda parameter.
2655       // i.e. [](auto (&array)[5]) { return array[0]; }; OK
2656       if (AT && D.getContext() != Declarator::LambdaExprParameterContext) {
2657         // We've already diagnosed this for decltype(auto).
2658         if (!AT->isDecltypeAuto())
2659           S.Diag(DeclType.Loc, diag::err_illegal_decl_array_of_auto)
2660             << getPrintableNameForEntity(Name) << T;
2661         T = QualType();
2662         break;
2663       }
2664 
2665       T = S.BuildArrayType(T, ASM, ArraySize, ATI.TypeQuals,
2666                            SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
2667       break;
2668     }
2669     case DeclaratorChunk::Function: {
2670       // If the function declarator has a prototype (i.e. it is not () and
2671       // does not have a K&R-style identifier list), then the arguments are part
2672       // of the type, otherwise the argument list is ().
2673       const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
2674       IsQualifiedFunction = FTI.TypeQuals || FTI.hasRefQualifier();
2675 
2676       // Check for auto functions and trailing return type and adjust the
2677       // return type accordingly.
2678       if (!D.isInvalidType()) {
2679         // trailing-return-type is only required if we're declaring a function,
2680         // and not, for instance, a pointer to a function.
2681         if (D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto &&
2682             !FTI.hasTrailingReturnType() && chunkIndex == 0 &&
2683             !S.getLangOpts().CPlusPlus1y) {
2684           S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
2685                diag::err_auto_missing_trailing_return);
2686           T = Context.IntTy;
2687           D.setInvalidType(true);
2688         } else if (FTI.hasTrailingReturnType()) {
2689           // T must be exactly 'auto' at this point. See CWG issue 681.
2690           if (isa<ParenType>(T)) {
2691             S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
2692                  diag::err_trailing_return_in_parens)
2693               << T << D.getDeclSpec().getSourceRange();
2694             D.setInvalidType(true);
2695           } else if (D.getContext() != Declarator::LambdaExprContext &&
2696                      (T.hasQualifiers() || !isa<AutoType>(T) ||
2697                       cast<AutoType>(T)->isDecltypeAuto())) {
2698             S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
2699                  diag::err_trailing_return_without_auto)
2700               << T << D.getDeclSpec().getSourceRange();
2701             D.setInvalidType(true);
2702           }
2703           T = S.GetTypeFromParser(FTI.getTrailingReturnType(), &TInfo);
2704           if (T.isNull()) {
2705             // An error occurred parsing the trailing return type.
2706             T = Context.IntTy;
2707             D.setInvalidType(true);
2708           }
2709         }
2710       }
2711 
2712       // C99 6.7.5.3p1: The return type may not be a function or array type.
2713       // For conversion functions, we'll diagnose this particular error later.
2714       if ((T->isArrayType() || T->isFunctionType()) &&
2715           (D.getName().getKind() != UnqualifiedId::IK_ConversionFunctionId)) {
2716         unsigned diagID = diag::err_func_returning_array_function;
2717         // Last processing chunk in block context means this function chunk
2718         // represents the block.
2719         if (chunkIndex == 0 &&
2720             D.getContext() == Declarator::BlockLiteralContext)
2721           diagID = diag::err_block_returning_array_function;
2722         S.Diag(DeclType.Loc, diagID) << T->isFunctionType() << T;
2723         T = Context.IntTy;
2724         D.setInvalidType(true);
2725       }
2726 
2727       // Do not allow returning half FP value.
2728       // FIXME: This really should be in BuildFunctionType.
2729       if (T->isHalfType()) {
2730         if (S.getLangOpts().OpenCL) {
2731           if (!S.getOpenCLOptions().cl_khr_fp16) {
2732             S.Diag(D.getIdentifierLoc(), diag::err_opencl_half_return) << T;
2733             D.setInvalidType(true);
2734           }
2735         } else {
2736           S.Diag(D.getIdentifierLoc(),
2737             diag::err_parameters_retval_cannot_have_fp16_type) << 1;
2738           D.setInvalidType(true);
2739         }
2740       }
2741 
2742       // Methods cannot return interface types. All ObjC objects are
2743       // passed by reference.
2744       if (T->isObjCObjectType()) {
2745         SourceLocation DiagLoc, FixitLoc;
2746         if (TInfo) {
2747           DiagLoc = TInfo->getTypeLoc().getLocStart();
2748           FixitLoc = S.PP.getLocForEndOfToken(TInfo->getTypeLoc().getLocEnd());
2749         } else {
2750           DiagLoc = D.getDeclSpec().getTypeSpecTypeLoc();
2751           FixitLoc = S.PP.getLocForEndOfToken(D.getDeclSpec().getLocEnd());
2752         }
2753         S.Diag(DiagLoc, diag::err_object_cannot_be_passed_returned_by_value)
2754           << 0 << T
2755           << FixItHint::CreateInsertion(FixitLoc, "*");
2756 
2757         T = Context.getObjCObjectPointerType(T);
2758         if (TInfo) {
2759           TypeLocBuilder TLB;
2760           TLB.pushFullCopy(TInfo->getTypeLoc());
2761           ObjCObjectPointerTypeLoc TLoc = TLB.push<ObjCObjectPointerTypeLoc>(T);
2762           TLoc.setStarLoc(FixitLoc);
2763           TInfo = TLB.getTypeSourceInfo(Context, T);
2764         }
2765 
2766         D.setInvalidType(true);
2767       }
2768 
2769       // cv-qualifiers on return types are pointless except when the type is a
2770       // class type in C++.
2771       if ((T.getCVRQualifiers() || T->isAtomicType()) &&
2772           !(S.getLangOpts().CPlusPlus &&
2773             (T->isDependentType() || T->isRecordType())))
2774         diagnoseIgnoredFunctionQualifiers(S, T, D, chunkIndex);
2775 
2776       // Objective-C ARC ownership qualifiers are ignored on the function
2777       // return type (by type canonicalization). Complain if this attribute
2778       // was written here.
2779       if (T.getQualifiers().hasObjCLifetime()) {
2780         SourceLocation AttrLoc;
2781         if (chunkIndex + 1 < D.getNumTypeObjects()) {
2782           DeclaratorChunk ReturnTypeChunk = D.getTypeObject(chunkIndex + 1);
2783           for (const AttributeList *Attr = ReturnTypeChunk.getAttrs();
2784                Attr; Attr = Attr->getNext()) {
2785             if (Attr->getKind() == AttributeList::AT_ObjCOwnership) {
2786               AttrLoc = Attr->getLoc();
2787               break;
2788             }
2789           }
2790         }
2791         if (AttrLoc.isInvalid()) {
2792           for (const AttributeList *Attr
2793                  = D.getDeclSpec().getAttributes().getList();
2794                Attr; Attr = Attr->getNext()) {
2795             if (Attr->getKind() == AttributeList::AT_ObjCOwnership) {
2796               AttrLoc = Attr->getLoc();
2797               break;
2798             }
2799           }
2800         }
2801 
2802         if (AttrLoc.isValid()) {
2803           // The ownership attributes are almost always written via
2804           // the predefined
2805           // __strong/__weak/__autoreleasing/__unsafe_unretained.
2806           if (AttrLoc.isMacroID())
2807             AttrLoc = S.SourceMgr.getImmediateExpansionRange(AttrLoc).first;
2808 
2809           S.Diag(AttrLoc, diag::warn_arc_lifetime_result_type)
2810             << T.getQualifiers().getObjCLifetime();
2811         }
2812       }
2813 
2814       if (LangOpts.CPlusPlus && D.getDeclSpec().hasTagDefinition()) {
2815         // C++ [dcl.fct]p6:
2816         //   Types shall not be defined in return or parameter types.
2817         TagDecl *Tag = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
2818         S.Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
2819           << Context.getTypeDeclType(Tag);
2820       }
2821 
2822       // Exception specs are not allowed in typedefs. Complain, but add it
2823       // anyway.
2824       if (IsTypedefName && FTI.getExceptionSpecType())
2825         S.Diag(FTI.getExceptionSpecLoc(), diag::err_exception_spec_in_typedef)
2826           << (D.getContext() == Declarator::AliasDeclContext ||
2827               D.getContext() == Declarator::AliasTemplateContext);
2828 
2829       // If we see "T var();" or "T var(T());" at block scope, it is probably
2830       // an attempt to initialize a variable, not a function declaration.
2831       if (FTI.isAmbiguous)
2832         warnAboutAmbiguousFunction(S, D, DeclType, T);
2833 
2834       FunctionType::ExtInfo EI(getCCForDeclaratorChunk(S, D, FTI, chunkIndex));
2835 
2836       if (!FTI.NumArgs && !FTI.isVariadic && !LangOpts.CPlusPlus) {
2837         // Simple void foo(), where the incoming T is the result type.
2838         T = Context.getFunctionNoProtoType(T, EI);
2839       } else {
2840         // We allow a zero-parameter variadic function in C if the
2841         // function is marked with the "overloadable" attribute. Scan
2842         // for this attribute now.
2843         if (!FTI.NumArgs && FTI.isVariadic && !LangOpts.CPlusPlus) {
2844           bool Overloadable = false;
2845           for (const AttributeList *Attrs = D.getAttributes();
2846                Attrs; Attrs = Attrs->getNext()) {
2847             if (Attrs->getKind() == AttributeList::AT_Overloadable) {
2848               Overloadable = true;
2849               break;
2850             }
2851           }
2852 
2853           if (!Overloadable)
2854             S.Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
2855         }
2856 
2857         if (FTI.NumArgs && FTI.ArgInfo[0].Param == 0) {
2858           // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function
2859           // definition.
2860           S.Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
2861           D.setInvalidType(true);
2862           // Recover by creating a K&R-style function type.
2863           T = Context.getFunctionNoProtoType(T, EI);
2864           break;
2865         }
2866 
2867         FunctionProtoType::ExtProtoInfo EPI;
2868         EPI.ExtInfo = EI;
2869         EPI.Variadic = FTI.isVariadic;
2870         EPI.HasTrailingReturn = FTI.hasTrailingReturnType();
2871         EPI.TypeQuals = FTI.TypeQuals;
2872         EPI.RefQualifier = !FTI.hasRefQualifier()? RQ_None
2873                     : FTI.RefQualifierIsLValueRef? RQ_LValue
2874                     : RQ_RValue;
2875 
2876         // Otherwise, we have a function with an argument list that is
2877         // potentially variadic.
2878         SmallVector<QualType, 16> ArgTys;
2879         ArgTys.reserve(FTI.NumArgs);
2880 
2881         SmallVector<bool, 16> ConsumedParameters;
2882         ConsumedParameters.reserve(FTI.NumArgs);
2883         bool HasAnyConsumedParameters = false;
2884 
2885         for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
2886           ParmVarDecl *Param = cast<ParmVarDecl>(FTI.ArgInfo[i].Param);
2887           QualType ArgTy = Param->getType();
2888           assert(!ArgTy.isNull() && "Couldn't parse type?");
2889 
2890           // Look for 'void'.  void is allowed only as a single argument to a
2891           // function with no other parameters (C99 6.7.5.3p10).  We record
2892           // int(void) as a FunctionProtoType with an empty argument list.
2893           if (ArgTy->isVoidType()) {
2894             // If this is something like 'float(int, void)', reject it.  'void'
2895             // is an incomplete type (C99 6.2.5p19) and function decls cannot
2896             // have arguments of incomplete type.
2897             if (FTI.NumArgs != 1 || FTI.isVariadic) {
2898               S.Diag(DeclType.Loc, diag::err_void_only_param);
2899               ArgTy = Context.IntTy;
2900               Param->setType(ArgTy);
2901             } else if (FTI.ArgInfo[i].Ident) {
2902               // Reject, but continue to parse 'int(void abc)'.
2903               S.Diag(FTI.ArgInfo[i].IdentLoc,
2904                    diag::err_param_with_void_type);
2905               ArgTy = Context.IntTy;
2906               Param->setType(ArgTy);
2907             } else {
2908               // Reject, but continue to parse 'float(const void)'.
2909               if (ArgTy.hasQualifiers())
2910                 S.Diag(DeclType.Loc, diag::err_void_param_qualified);
2911 
2912               // Do not add 'void' to the ArgTys list.
2913               break;
2914             }
2915           } else if (ArgTy->isHalfType()) {
2916             // Disallow half FP arguments.
2917             // FIXME: This really should be in BuildFunctionType.
2918             if (S.getLangOpts().OpenCL) {
2919               if (!S.getOpenCLOptions().cl_khr_fp16) {
2920                 S.Diag(Param->getLocation(),
2921                   diag::err_opencl_half_argument) << ArgTy;
2922                 D.setInvalidType();
2923                 Param->setInvalidDecl();
2924               }
2925             } else {
2926               S.Diag(Param->getLocation(),
2927                 diag::err_parameters_retval_cannot_have_fp16_type) << 0;
2928               D.setInvalidType();
2929             }
2930           } else if (!FTI.hasPrototype) {
2931             if (ArgTy->isPromotableIntegerType()) {
2932               ArgTy = Context.getPromotedIntegerType(ArgTy);
2933               Param->setKNRPromoted(true);
2934             } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
2935               if (BTy->getKind() == BuiltinType::Float) {
2936                 ArgTy = Context.DoubleTy;
2937                 Param->setKNRPromoted(true);
2938               }
2939             }
2940           }
2941 
2942           if (LangOpts.ObjCAutoRefCount) {
2943             bool Consumed = Param->hasAttr<NSConsumedAttr>();
2944             ConsumedParameters.push_back(Consumed);
2945             HasAnyConsumedParameters |= Consumed;
2946           }
2947 
2948           ArgTys.push_back(ArgTy);
2949         }
2950 
2951         if (HasAnyConsumedParameters)
2952           EPI.ConsumedParameters = ConsumedParameters.data();
2953 
2954         SmallVector<QualType, 4> Exceptions;
2955         SmallVector<ParsedType, 2> DynamicExceptions;
2956         SmallVector<SourceRange, 2> DynamicExceptionRanges;
2957         Expr *NoexceptExpr = 0;
2958 
2959         if (FTI.getExceptionSpecType() == EST_Dynamic) {
2960           // FIXME: It's rather inefficient to have to split into two vectors
2961           // here.
2962           unsigned N = FTI.NumExceptions;
2963           DynamicExceptions.reserve(N);
2964           DynamicExceptionRanges.reserve(N);
2965           for (unsigned I = 0; I != N; ++I) {
2966             DynamicExceptions.push_back(FTI.Exceptions[I].Ty);
2967             DynamicExceptionRanges.push_back(FTI.Exceptions[I].Range);
2968           }
2969         } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) {
2970           NoexceptExpr = FTI.NoexceptExpr;
2971         }
2972 
2973         S.checkExceptionSpecification(FTI.getExceptionSpecType(),
2974                                       DynamicExceptions,
2975                                       DynamicExceptionRanges,
2976                                       NoexceptExpr,
2977                                       Exceptions,
2978                                       EPI);
2979 
2980         T = Context.getFunctionType(T, ArgTys, EPI);
2981       }
2982 
2983       break;
2984     }
2985     case DeclaratorChunk::MemberPointer:
2986       // The scope spec must refer to a class, or be dependent.
2987       CXXScopeSpec &SS = DeclType.Mem.Scope();
2988       QualType ClsType;
2989       if (SS.isInvalid()) {
2990         // Avoid emitting extra errors if we already errored on the scope.
2991         D.setInvalidType(true);
2992       } else if (S.isDependentScopeSpecifier(SS) ||
2993                  dyn_cast_or_null<CXXRecordDecl>(S.computeDeclContext(SS))) {
2994         NestedNameSpecifier *NNS = SS.getScopeRep();
2995         NestedNameSpecifier *NNSPrefix = NNS->getPrefix();
2996         switch (NNS->getKind()) {
2997         case NestedNameSpecifier::Identifier:
2998           ClsType = Context.getDependentNameType(ETK_None, NNSPrefix,
2999                                                  NNS->getAsIdentifier());
3000           break;
3001 
3002         case NestedNameSpecifier::Namespace:
3003         case NestedNameSpecifier::NamespaceAlias:
3004         case NestedNameSpecifier::Global:
3005           llvm_unreachable("Nested-name-specifier must name a type");
3006 
3007         case NestedNameSpecifier::TypeSpec:
3008         case NestedNameSpecifier::TypeSpecWithTemplate:
3009           ClsType = QualType(NNS->getAsType(), 0);
3010           // Note: if the NNS has a prefix and ClsType is a nondependent
3011           // TemplateSpecializationType, then the NNS prefix is NOT included
3012           // in ClsType; hence we wrap ClsType into an ElaboratedType.
3013           // NOTE: in particular, no wrap occurs if ClsType already is an
3014           // Elaborated, DependentName, or DependentTemplateSpecialization.
3015           if (NNSPrefix && isa<TemplateSpecializationType>(NNS->getAsType()))
3016             ClsType = Context.getElaboratedType(ETK_None, NNSPrefix, ClsType);
3017           break;
3018         }
3019       } else {
3020         S.Diag(DeclType.Mem.Scope().getBeginLoc(),
3021              diag::err_illegal_decl_mempointer_in_nonclass)
3022           << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
3023           << DeclType.Mem.Scope().getRange();
3024         D.setInvalidType(true);
3025       }
3026 
3027       if (!ClsType.isNull())
3028         T = S.BuildMemberPointerType(T, ClsType, DeclType.Loc, D.getIdentifier());
3029       if (T.isNull()) {
3030         T = Context.IntTy;
3031         D.setInvalidType(true);
3032       } else if (DeclType.Mem.TypeQuals) {
3033         T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Mem.TypeQuals);
3034       }
3035       break;
3036     }
3037 
3038     if (T.isNull()) {
3039       D.setInvalidType(true);
3040       T = Context.IntTy;
3041     }
3042 
3043     // See if there are any attributes on this declarator chunk.
3044     if (AttributeList *attrs = const_cast<AttributeList*>(DeclType.getAttrs()))
3045       processTypeAttrs(state, T, TAL_DeclChunk, attrs);
3046   }
3047 
3048   if (LangOpts.CPlusPlus && T->isFunctionType()) {
3049     const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
3050     assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
3051 
3052     // C++ 8.3.5p4:
3053     //   A cv-qualifier-seq shall only be part of the function type
3054     //   for a nonstatic member function, the function type to which a pointer
3055     //   to member refers, or the top-level function type of a function typedef
3056     //   declaration.
3057     //
3058     // Core issue 547 also allows cv-qualifiers on function types that are
3059     // top-level template type arguments.
3060     bool FreeFunction;
3061     if (!D.getCXXScopeSpec().isSet()) {
3062       FreeFunction = ((D.getContext() != Declarator::MemberContext &&
3063                        D.getContext() != Declarator::LambdaExprContext) ||
3064                       D.getDeclSpec().isFriendSpecified());
3065     } else {
3066       DeclContext *DC = S.computeDeclContext(D.getCXXScopeSpec());
3067       FreeFunction = (DC && !DC->isRecord());
3068     }
3069 
3070     // C++11 [dcl.fct]p6 (w/DR1417):
3071     // An attempt to specify a function type with a cv-qualifier-seq or a
3072     // ref-qualifier (including by typedef-name) is ill-formed unless it is:
3073     //  - the function type for a non-static member function,
3074     //  - the function type to which a pointer to member refers,
3075     //  - the top-level function type of a function typedef declaration or
3076     //    alias-declaration,
3077     //  - the type-id in the default argument of a type-parameter, or
3078     //  - the type-id of a template-argument for a type-parameter
3079     if (IsQualifiedFunction &&
3080         !(!FreeFunction &&
3081           D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) &&
3082         !IsTypedefName &&
3083         D.getContext() != Declarator::TemplateTypeArgContext) {
3084       SourceLocation Loc = D.getLocStart();
3085       SourceRange RemovalRange;
3086       unsigned I;
3087       if (D.isFunctionDeclarator(I)) {
3088         SmallVector<SourceLocation, 4> RemovalLocs;
3089         const DeclaratorChunk &Chunk = D.getTypeObject(I);
3090         assert(Chunk.Kind == DeclaratorChunk::Function);
3091         if (Chunk.Fun.hasRefQualifier())
3092           RemovalLocs.push_back(Chunk.Fun.getRefQualifierLoc());
3093         if (Chunk.Fun.TypeQuals & Qualifiers::Const)
3094           RemovalLocs.push_back(Chunk.Fun.getConstQualifierLoc());
3095         if (Chunk.Fun.TypeQuals & Qualifiers::Volatile)
3096           RemovalLocs.push_back(Chunk.Fun.getVolatileQualifierLoc());
3097         // FIXME: We do not track the location of the __restrict qualifier.
3098         //if (Chunk.Fun.TypeQuals & Qualifiers::Restrict)
3099         //  RemovalLocs.push_back(Chunk.Fun.getRestrictQualifierLoc());
3100         if (!RemovalLocs.empty()) {
3101           std::sort(RemovalLocs.begin(), RemovalLocs.end(),
3102                     BeforeThanCompare<SourceLocation>(S.getSourceManager()));
3103           RemovalRange = SourceRange(RemovalLocs.front(), RemovalLocs.back());
3104           Loc = RemovalLocs.front();
3105         }
3106       }
3107 
3108       S.Diag(Loc, diag::err_invalid_qualified_function_type)
3109         << FreeFunction << D.isFunctionDeclarator() << T
3110         << getFunctionQualifiersAsString(FnTy)
3111         << FixItHint::CreateRemoval(RemovalRange);
3112 
3113       // Strip the cv-qualifiers and ref-qualifiers from the type.
3114       FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
3115       EPI.TypeQuals = 0;
3116       EPI.RefQualifier = RQ_None;
3117 
3118       T = Context.getFunctionType(FnTy->getReturnType(), FnTy->getParamTypes(),
3119                                   EPI);
3120       // Rebuild any parens around the identifier in the function type.
3121       for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
3122         if (D.getTypeObject(i).Kind != DeclaratorChunk::Paren)
3123           break;
3124         T = S.BuildParenType(T);
3125       }
3126     }
3127   }
3128 
3129   // Apply any undistributed attributes from the declarator.
3130   if (!T.isNull())
3131     if (AttributeList *attrs = D.getAttributes())
3132       processTypeAttrs(state, T, TAL_DeclName, attrs);
3133 
3134   // Diagnose any ignored type attributes.
3135   if (!T.isNull()) state.diagnoseIgnoredTypeAttrs(T);
3136 
3137   // C++0x [dcl.constexpr]p9:
3138   //  A constexpr specifier used in an object declaration declares the object
3139   //  as const.
3140   if (D.getDeclSpec().isConstexprSpecified() && T->isObjectType()) {
3141     T.addConst();
3142   }
3143 
3144   // If there was an ellipsis in the declarator, the declaration declares a
3145   // parameter pack whose type may be a pack expansion type.
3146   if (D.hasEllipsis() && !T.isNull()) {
3147     // C++0x [dcl.fct]p13:
3148     //   A declarator-id or abstract-declarator containing an ellipsis shall
3149     //   only be used in a parameter-declaration. Such a parameter-declaration
3150     //   is a parameter pack (14.5.3). [...]
3151     switch (D.getContext()) {
3152     case Declarator::PrototypeContext:
3153     case Declarator::LambdaExprParameterContext:
3154       // C++0x [dcl.fct]p13:
3155       //   [...] When it is part of a parameter-declaration-clause, the
3156       //   parameter pack is a function parameter pack (14.5.3). The type T
3157       //   of the declarator-id of the function parameter pack shall contain
3158       //   a template parameter pack; each template parameter pack in T is
3159       //   expanded by the function parameter pack.
3160       //
3161       // We represent function parameter packs as function parameters whose
3162       // type is a pack expansion.
3163       if (!T->containsUnexpandedParameterPack()) {
3164         S.Diag(D.getEllipsisLoc(),
3165              diag::err_function_parameter_pack_without_parameter_packs)
3166           << T <<  D.getSourceRange();
3167         D.setEllipsisLoc(SourceLocation());
3168       } else {
3169         T = Context.getPackExpansionType(T, None);
3170       }
3171       break;
3172     case Declarator::TemplateParamContext:
3173       // C++0x [temp.param]p15:
3174       //   If a template-parameter is a [...] is a parameter-declaration that
3175       //   declares a parameter pack (8.3.5), then the template-parameter is a
3176       //   template parameter pack (14.5.3).
3177       //
3178       // Note: core issue 778 clarifies that, if there are any unexpanded
3179       // parameter packs in the type of the non-type template parameter, then
3180       // it expands those parameter packs.
3181       if (T->containsUnexpandedParameterPack())
3182         T = Context.getPackExpansionType(T, None);
3183       else
3184         S.Diag(D.getEllipsisLoc(),
3185                LangOpts.CPlusPlus11
3186                  ? diag::warn_cxx98_compat_variadic_templates
3187                  : diag::ext_variadic_templates);
3188       break;
3189 
3190     case Declarator::FileContext:
3191     case Declarator::KNRTypeListContext:
3192     case Declarator::ObjCParameterContext:  // FIXME: special diagnostic here?
3193     case Declarator::ObjCResultContext:     // FIXME: special diagnostic here?
3194     case Declarator::TypeNameContext:
3195     case Declarator::CXXNewContext:
3196     case Declarator::AliasDeclContext:
3197     case Declarator::AliasTemplateContext:
3198     case Declarator::MemberContext:
3199     case Declarator::BlockContext:
3200     case Declarator::ForContext:
3201     case Declarator::ConditionContext:
3202     case Declarator::CXXCatchContext:
3203     case Declarator::ObjCCatchContext:
3204     case Declarator::BlockLiteralContext:
3205     case Declarator::LambdaExprContext:
3206     case Declarator::ConversionIdContext:
3207     case Declarator::TrailingReturnContext:
3208     case Declarator::TemplateTypeArgContext:
3209       // FIXME: We may want to allow parameter packs in block-literal contexts
3210       // in the future.
3211       S.Diag(D.getEllipsisLoc(), diag::err_ellipsis_in_declarator_not_parameter);
3212       D.setEllipsisLoc(SourceLocation());
3213       break;
3214     }
3215   }
3216 
3217   if (T.isNull())
3218     return Context.getNullTypeSourceInfo();
3219   else if (D.isInvalidType())
3220     return Context.getTrivialTypeSourceInfo(T);
3221 
3222   return S.GetTypeSourceInfoForDeclarator(D, T, TInfo);
3223 }
3224 
3225 /// GetTypeForDeclarator - Convert the type for the specified
3226 /// declarator to Type instances.
3227 ///
3228 /// The result of this call will never be null, but the associated
3229 /// type may be a null type if there's an unrecoverable error.
3230 TypeSourceInfo *Sema::GetTypeForDeclarator(Declarator &D, Scope *S) {
3231   // Determine the type of the declarator. Not all forms of declarator
3232   // have a type.
3233 
3234   TypeProcessingState state(*this, D);
3235 
3236   TypeSourceInfo *ReturnTypeInfo = 0;
3237   QualType T = GetDeclSpecTypeForDeclarator(state, ReturnTypeInfo);
3238   if (T.isNull())
3239     return Context.getNullTypeSourceInfo();
3240 
3241   if (D.isPrototypeContext() && getLangOpts().ObjCAutoRefCount)
3242     inferARCWriteback(state, T);
3243 
3244   return GetFullTypeForDeclarator(state, T, ReturnTypeInfo);
3245 }
3246 
3247 static void transferARCOwnershipToDeclSpec(Sema &S,
3248                                            QualType &declSpecTy,
3249                                            Qualifiers::ObjCLifetime ownership) {
3250   if (declSpecTy->isObjCRetainableType() &&
3251       declSpecTy.getObjCLifetime() == Qualifiers::OCL_None) {
3252     Qualifiers qs;
3253     qs.addObjCLifetime(ownership);
3254     declSpecTy = S.Context.getQualifiedType(declSpecTy, qs);
3255   }
3256 }
3257 
3258 static void transferARCOwnershipToDeclaratorChunk(TypeProcessingState &state,
3259                                             Qualifiers::ObjCLifetime ownership,
3260                                             unsigned chunkIndex) {
3261   Sema &S = state.getSema();
3262   Declarator &D = state.getDeclarator();
3263 
3264   // Look for an explicit lifetime attribute.
3265   DeclaratorChunk &chunk = D.getTypeObject(chunkIndex);
3266   for (const AttributeList *attr = chunk.getAttrs(); attr;
3267          attr = attr->getNext())
3268     if (attr->getKind() == AttributeList::AT_ObjCOwnership)
3269       return;
3270 
3271   const char *attrStr = 0;
3272   switch (ownership) {
3273   case Qualifiers::OCL_None: llvm_unreachable("no ownership!");
3274   case Qualifiers::OCL_ExplicitNone: attrStr = "none"; break;
3275   case Qualifiers::OCL_Strong: attrStr = "strong"; break;
3276   case Qualifiers::OCL_Weak: attrStr = "weak"; break;
3277   case Qualifiers::OCL_Autoreleasing: attrStr = "autoreleasing"; break;
3278   }
3279 
3280   IdentifierLoc *Arg = new (S.Context) IdentifierLoc;
3281   Arg->Ident = &S.Context.Idents.get(attrStr);
3282   Arg->Loc = SourceLocation();
3283 
3284   ArgsUnion Args(Arg);
3285 
3286   // If there wasn't one, add one (with an invalid source location
3287   // so that we don't make an AttributedType for it).
3288   AttributeList *attr = D.getAttributePool()
3289     .create(&S.Context.Idents.get("objc_ownership"), SourceLocation(),
3290             /*scope*/ 0, SourceLocation(),
3291             /*args*/ &Args, 1, AttributeList::AS_GNU);
3292   spliceAttrIntoList(*attr, chunk.getAttrListRef());
3293 
3294   // TODO: mark whether we did this inference?
3295 }
3296 
3297 /// \brief Used for transferring ownership in casts resulting in l-values.
3298 static void transferARCOwnership(TypeProcessingState &state,
3299                                  QualType &declSpecTy,
3300                                  Qualifiers::ObjCLifetime ownership) {
3301   Sema &S = state.getSema();
3302   Declarator &D = state.getDeclarator();
3303 
3304   int inner = -1;
3305   bool hasIndirection = false;
3306   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
3307     DeclaratorChunk &chunk = D.getTypeObject(i);
3308     switch (chunk.Kind) {
3309     case DeclaratorChunk::Paren:
3310       // Ignore parens.
3311       break;
3312 
3313     case DeclaratorChunk::Array:
3314     case DeclaratorChunk::Reference:
3315     case DeclaratorChunk::Pointer:
3316       if (inner != -1)
3317         hasIndirection = true;
3318       inner = i;
3319       break;
3320 
3321     case DeclaratorChunk::BlockPointer:
3322       if (inner != -1)
3323         transferARCOwnershipToDeclaratorChunk(state, ownership, i);
3324       return;
3325 
3326     case DeclaratorChunk::Function:
3327     case DeclaratorChunk::MemberPointer:
3328       return;
3329     }
3330   }
3331 
3332   if (inner == -1)
3333     return;
3334 
3335   DeclaratorChunk &chunk = D.getTypeObject(inner);
3336   if (chunk.Kind == DeclaratorChunk::Pointer) {
3337     if (declSpecTy->isObjCRetainableType())
3338       return transferARCOwnershipToDeclSpec(S, declSpecTy, ownership);
3339     if (declSpecTy->isObjCObjectType() && hasIndirection)
3340       return transferARCOwnershipToDeclaratorChunk(state, ownership, inner);
3341   } else {
3342     assert(chunk.Kind == DeclaratorChunk::Array ||
3343            chunk.Kind == DeclaratorChunk::Reference);
3344     return transferARCOwnershipToDeclSpec(S, declSpecTy, ownership);
3345   }
3346 }
3347 
3348 TypeSourceInfo *Sema::GetTypeForDeclaratorCast(Declarator &D, QualType FromTy) {
3349   TypeProcessingState state(*this, D);
3350 
3351   TypeSourceInfo *ReturnTypeInfo = 0;
3352   QualType declSpecTy = GetDeclSpecTypeForDeclarator(state, ReturnTypeInfo);
3353   if (declSpecTy.isNull())
3354     return Context.getNullTypeSourceInfo();
3355 
3356   if (getLangOpts().ObjCAutoRefCount) {
3357     Qualifiers::ObjCLifetime ownership = Context.getInnerObjCOwnership(FromTy);
3358     if (ownership != Qualifiers::OCL_None)
3359       transferARCOwnership(state, declSpecTy, ownership);
3360   }
3361 
3362   return GetFullTypeForDeclarator(state, declSpecTy, ReturnTypeInfo);
3363 }
3364 
3365 /// Map an AttributedType::Kind to an AttributeList::Kind.
3366 static AttributeList::Kind getAttrListKind(AttributedType::Kind kind) {
3367   switch (kind) {
3368   case AttributedType::attr_address_space:
3369     return AttributeList::AT_AddressSpace;
3370   case AttributedType::attr_regparm:
3371     return AttributeList::AT_Regparm;
3372   case AttributedType::attr_vector_size:
3373     return AttributeList::AT_VectorSize;
3374   case AttributedType::attr_neon_vector_type:
3375     return AttributeList::AT_NeonVectorType;
3376   case AttributedType::attr_neon_polyvector_type:
3377     return AttributeList::AT_NeonPolyVectorType;
3378   case AttributedType::attr_objc_gc:
3379     return AttributeList::AT_ObjCGC;
3380   case AttributedType::attr_objc_ownership:
3381     return AttributeList::AT_ObjCOwnership;
3382   case AttributedType::attr_noreturn:
3383     return AttributeList::AT_NoReturn;
3384   case AttributedType::attr_cdecl:
3385     return AttributeList::AT_CDecl;
3386   case AttributedType::attr_fastcall:
3387     return AttributeList::AT_FastCall;
3388   case AttributedType::attr_stdcall:
3389     return AttributeList::AT_StdCall;
3390   case AttributedType::attr_thiscall:
3391     return AttributeList::AT_ThisCall;
3392   case AttributedType::attr_pascal:
3393     return AttributeList::AT_Pascal;
3394   case AttributedType::attr_pcs:
3395   case AttributedType::attr_pcs_vfp:
3396     return AttributeList::AT_Pcs;
3397   case AttributedType::attr_pnaclcall:
3398     return AttributeList::AT_PnaclCall;
3399   case AttributedType::attr_inteloclbicc:
3400     return AttributeList::AT_IntelOclBicc;
3401   case AttributedType::attr_ms_abi:
3402     return AttributeList::AT_MSABI;
3403   case AttributedType::attr_sysv_abi:
3404     return AttributeList::AT_SysVABI;
3405   case AttributedType::attr_ptr32:
3406     return AttributeList::AT_Ptr32;
3407   case AttributedType::attr_ptr64:
3408     return AttributeList::AT_Ptr64;
3409   case AttributedType::attr_sptr:
3410     return AttributeList::AT_SPtr;
3411   case AttributedType::attr_uptr:
3412     return AttributeList::AT_UPtr;
3413   }
3414   llvm_unreachable("unexpected attribute kind!");
3415 }
3416 
3417 static void fillAttributedTypeLoc(AttributedTypeLoc TL,
3418                                   const AttributeList *attrs) {
3419   AttributedType::Kind kind = TL.getAttrKind();
3420 
3421   assert(attrs && "no type attributes in the expected location!");
3422   AttributeList::Kind parsedKind = getAttrListKind(kind);
3423   while (attrs->getKind() != parsedKind) {
3424     attrs = attrs->getNext();
3425     assert(attrs && "no matching attribute in expected location!");
3426   }
3427 
3428   TL.setAttrNameLoc(attrs->getLoc());
3429   if (TL.hasAttrExprOperand() && attrs->isArgExpr(0))
3430     TL.setAttrExprOperand(attrs->getArgAsExpr(0));
3431   else if (TL.hasAttrEnumOperand() && attrs->isArgIdent(0))
3432     TL.setAttrEnumOperandLoc(attrs->getArgAsIdent(0)->Loc);
3433 
3434   // FIXME: preserve this information to here.
3435   if (TL.hasAttrOperand())
3436     TL.setAttrOperandParensRange(SourceRange());
3437 }
3438 
3439 namespace {
3440   class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
3441     ASTContext &Context;
3442     const DeclSpec &DS;
3443 
3444   public:
3445     TypeSpecLocFiller(ASTContext &Context, const DeclSpec &DS)
3446       : Context(Context), DS(DS) {}
3447 
3448     void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
3449       fillAttributedTypeLoc(TL, DS.getAttributes().getList());
3450       Visit(TL.getModifiedLoc());
3451     }
3452     void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
3453       Visit(TL.getUnqualifiedLoc());
3454     }
3455     void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
3456       TL.setNameLoc(DS.getTypeSpecTypeLoc());
3457     }
3458     void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
3459       TL.setNameLoc(DS.getTypeSpecTypeLoc());
3460       // FIXME. We should have DS.getTypeSpecTypeEndLoc(). But, it requires
3461       // addition field. What we have is good enough for dispay of location
3462       // of 'fixit' on interface name.
3463       TL.setNameEndLoc(DS.getLocEnd());
3464     }
3465     void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
3466       // Handle the base type, which might not have been written explicitly.
3467       if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
3468         TL.setHasBaseTypeAsWritten(false);
3469         TL.getBaseLoc().initialize(Context, SourceLocation());
3470       } else {
3471         TL.setHasBaseTypeAsWritten(true);
3472         Visit(TL.getBaseLoc());
3473       }
3474 
3475       // Protocol qualifiers.
3476       if (DS.getProtocolQualifiers()) {
3477         assert(TL.getNumProtocols() > 0);
3478         assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
3479         TL.setLAngleLoc(DS.getProtocolLAngleLoc());
3480         TL.setRAngleLoc(DS.getSourceRange().getEnd());
3481         for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
3482           TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
3483       } else {
3484         assert(TL.getNumProtocols() == 0);
3485         TL.setLAngleLoc(SourceLocation());
3486         TL.setRAngleLoc(SourceLocation());
3487       }
3488     }
3489     void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
3490       TL.setStarLoc(SourceLocation());
3491       Visit(TL.getPointeeLoc());
3492     }
3493     void VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) {
3494       TypeSourceInfo *TInfo = 0;
3495       Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3496 
3497       // If we got no declarator info from previous Sema routines,
3498       // just fill with the typespec loc.
3499       if (!TInfo) {
3500         TL.initialize(Context, DS.getTypeSpecTypeNameLoc());
3501         return;
3502       }
3503 
3504       TypeLoc OldTL = TInfo->getTypeLoc();
3505       if (TInfo->getType()->getAs<ElaboratedType>()) {
3506         ElaboratedTypeLoc ElabTL = OldTL.castAs<ElaboratedTypeLoc>();
3507         TemplateSpecializationTypeLoc NamedTL = ElabTL.getNamedTypeLoc()
3508             .castAs<TemplateSpecializationTypeLoc>();
3509         TL.copy(NamedTL);
3510       } else {
3511         TL.copy(OldTL.castAs<TemplateSpecializationTypeLoc>());
3512         assert(TL.getRAngleLoc() == OldTL.castAs<TemplateSpecializationTypeLoc>().getRAngleLoc());
3513       }
3514 
3515     }
3516     void VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
3517       assert(DS.getTypeSpecType() == DeclSpec::TST_typeofExpr);
3518       TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
3519       TL.setParensRange(DS.getTypeofParensRange());
3520     }
3521     void VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
3522       assert(DS.getTypeSpecType() == DeclSpec::TST_typeofType);
3523       TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
3524       TL.setParensRange(DS.getTypeofParensRange());
3525       assert(DS.getRepAsType());
3526       TypeSourceInfo *TInfo = 0;
3527       Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3528       TL.setUnderlyingTInfo(TInfo);
3529     }
3530     void VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
3531       // FIXME: This holds only because we only have one unary transform.
3532       assert(DS.getTypeSpecType() == DeclSpec::TST_underlyingType);
3533       TL.setKWLoc(DS.getTypeSpecTypeLoc());
3534       TL.setParensRange(DS.getTypeofParensRange());
3535       assert(DS.getRepAsType());
3536       TypeSourceInfo *TInfo = 0;
3537       Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3538       TL.setUnderlyingTInfo(TInfo);
3539     }
3540     void VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
3541       // By default, use the source location of the type specifier.
3542       TL.setBuiltinLoc(DS.getTypeSpecTypeLoc());
3543       if (TL.needsExtraLocalData()) {
3544         // Set info for the written builtin specifiers.
3545         TL.getWrittenBuiltinSpecs() = DS.getWrittenBuiltinSpecs();
3546         // Try to have a meaningful source location.
3547         if (TL.getWrittenSignSpec() != TSS_unspecified)
3548           // Sign spec loc overrides the others (e.g., 'unsigned long').
3549           TL.setBuiltinLoc(DS.getTypeSpecSignLoc());
3550         else if (TL.getWrittenWidthSpec() != TSW_unspecified)
3551           // Width spec loc overrides type spec loc (e.g., 'short int').
3552           TL.setBuiltinLoc(DS.getTypeSpecWidthLoc());
3553       }
3554     }
3555     void VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
3556       ElaboratedTypeKeyword Keyword
3557         = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
3558       if (DS.getTypeSpecType() == TST_typename) {
3559         TypeSourceInfo *TInfo = 0;
3560         Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3561         if (TInfo) {
3562           TL.copy(TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>());
3563           return;
3564         }
3565       }
3566       TL.setElaboratedKeywordLoc(Keyword != ETK_None
3567                                  ? DS.getTypeSpecTypeLoc()
3568                                  : SourceLocation());
3569       const CXXScopeSpec& SS = DS.getTypeSpecScope();
3570       TL.setQualifierLoc(SS.getWithLocInContext(Context));
3571       Visit(TL.getNextTypeLoc().getUnqualifiedLoc());
3572     }
3573     void VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
3574       assert(DS.getTypeSpecType() == TST_typename);
3575       TypeSourceInfo *TInfo = 0;
3576       Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3577       assert(TInfo);
3578       TL.copy(TInfo->getTypeLoc().castAs<DependentNameTypeLoc>());
3579     }
3580     void VisitDependentTemplateSpecializationTypeLoc(
3581                                  DependentTemplateSpecializationTypeLoc TL) {
3582       assert(DS.getTypeSpecType() == TST_typename);
3583       TypeSourceInfo *TInfo = 0;
3584       Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3585       assert(TInfo);
3586       TL.copy(
3587           TInfo->getTypeLoc().castAs<DependentTemplateSpecializationTypeLoc>());
3588     }
3589     void VisitTagTypeLoc(TagTypeLoc TL) {
3590       TL.setNameLoc(DS.getTypeSpecTypeNameLoc());
3591     }
3592     void VisitAtomicTypeLoc(AtomicTypeLoc TL) {
3593       // An AtomicTypeLoc can come from either an _Atomic(...) type specifier
3594       // or an _Atomic qualifier.
3595       if (DS.getTypeSpecType() == DeclSpec::TST_atomic) {
3596         TL.setKWLoc(DS.getTypeSpecTypeLoc());
3597         TL.setParensRange(DS.getTypeofParensRange());
3598 
3599         TypeSourceInfo *TInfo = 0;
3600         Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
3601         assert(TInfo);
3602         TL.getValueLoc().initializeFullCopy(TInfo->getTypeLoc());
3603       } else {
3604         TL.setKWLoc(DS.getAtomicSpecLoc());
3605         // No parens, to indicate this was spelled as an _Atomic qualifier.
3606         TL.setParensRange(SourceRange());
3607         Visit(TL.getValueLoc());
3608       }
3609     }
3610 
3611     void VisitTypeLoc(TypeLoc TL) {
3612       // FIXME: add other typespec types and change this to an assert.
3613       TL.initialize(Context, DS.getTypeSpecTypeLoc());
3614     }
3615   };
3616 
3617   class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
3618     ASTContext &Context;
3619     const DeclaratorChunk &Chunk;
3620 
3621   public:
3622     DeclaratorLocFiller(ASTContext &Context, const DeclaratorChunk &Chunk)
3623       : Context(Context), Chunk(Chunk) {}
3624 
3625     void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
3626       llvm_unreachable("qualified type locs not expected here!");
3627     }
3628     void VisitDecayedTypeLoc(DecayedTypeLoc TL) {
3629       llvm_unreachable("decayed type locs not expected here!");
3630     }
3631 
3632     void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
3633       fillAttributedTypeLoc(TL, Chunk.getAttrs());
3634     }
3635     void VisitAdjustedTypeLoc(AdjustedTypeLoc TL) {
3636       // nothing
3637     }
3638     void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
3639       assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
3640       TL.setCaretLoc(Chunk.Loc);
3641     }
3642     void VisitPointerTypeLoc(PointerTypeLoc TL) {
3643       assert(Chunk.Kind == DeclaratorChunk::Pointer);
3644       TL.setStarLoc(Chunk.Loc);
3645     }
3646     void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
3647       assert(Chunk.Kind == DeclaratorChunk::Pointer);
3648       TL.setStarLoc(Chunk.Loc);
3649     }
3650     void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
3651       assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
3652       const CXXScopeSpec& SS = Chunk.Mem.Scope();
3653       NestedNameSpecifierLoc NNSLoc = SS.getWithLocInContext(Context);
3654 
3655       const Type* ClsTy = TL.getClass();
3656       QualType ClsQT = QualType(ClsTy, 0);
3657       TypeSourceInfo *ClsTInfo = Context.CreateTypeSourceInfo(ClsQT, 0);
3658       // Now copy source location info into the type loc component.
3659       TypeLoc ClsTL = ClsTInfo->getTypeLoc();
3660       switch (NNSLoc.getNestedNameSpecifier()->getKind()) {
3661       case NestedNameSpecifier::Identifier:
3662         assert(isa<DependentNameType>(ClsTy) && "Unexpected TypeLoc");
3663         {
3664           DependentNameTypeLoc DNTLoc = ClsTL.castAs<DependentNameTypeLoc>();
3665           DNTLoc.setElaboratedKeywordLoc(SourceLocation());
3666           DNTLoc.setQualifierLoc(NNSLoc.getPrefix());
3667           DNTLoc.setNameLoc(NNSLoc.getLocalBeginLoc());
3668         }
3669         break;
3670 
3671       case NestedNameSpecifier::TypeSpec:
3672       case NestedNameSpecifier::TypeSpecWithTemplate:
3673         if (isa<ElaboratedType>(ClsTy)) {
3674           ElaboratedTypeLoc ETLoc = ClsTL.castAs<ElaboratedTypeLoc>();
3675           ETLoc.setElaboratedKeywordLoc(SourceLocation());
3676           ETLoc.setQualifierLoc(NNSLoc.getPrefix());
3677           TypeLoc NamedTL = ETLoc.getNamedTypeLoc();
3678           NamedTL.initializeFullCopy(NNSLoc.getTypeLoc());
3679         } else {
3680           ClsTL.initializeFullCopy(NNSLoc.getTypeLoc());
3681         }
3682         break;
3683 
3684       case NestedNameSpecifier::Namespace:
3685       case NestedNameSpecifier::NamespaceAlias:
3686       case NestedNameSpecifier::Global:
3687         llvm_unreachable("Nested-name-specifier must name a type");
3688       }
3689 
3690       // Finally fill in MemberPointerLocInfo fields.
3691       TL.setStarLoc(Chunk.Loc);
3692       TL.setClassTInfo(ClsTInfo);
3693     }
3694     void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
3695       assert(Chunk.Kind == DeclaratorChunk::Reference);
3696       // 'Amp' is misleading: this might have been originally
3697       /// spelled with AmpAmp.
3698       TL.setAmpLoc(Chunk.Loc);
3699     }
3700     void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
3701       assert(Chunk.Kind == DeclaratorChunk::Reference);
3702       assert(!Chunk.Ref.LValueRef);
3703       TL.setAmpAmpLoc(Chunk.Loc);
3704     }
3705     void VisitArrayTypeLoc(ArrayTypeLoc TL) {
3706       assert(Chunk.Kind == DeclaratorChunk::Array);
3707       TL.setLBracketLoc(Chunk.Loc);
3708       TL.setRBracketLoc(Chunk.EndLoc);
3709       TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
3710     }
3711     void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
3712       assert(Chunk.Kind == DeclaratorChunk::Function);
3713       TL.setLocalRangeBegin(Chunk.Loc);
3714       TL.setLocalRangeEnd(Chunk.EndLoc);
3715 
3716       const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
3717       TL.setLParenLoc(FTI.getLParenLoc());
3718       TL.setRParenLoc(FTI.getRParenLoc());
3719       for (unsigned i = 0, e = TL.getNumParams(), tpi = 0; i != e; ++i) {
3720         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.ArgInfo[i].Param);
3721         TL.setParam(tpi++, Param);
3722       }
3723       // FIXME: exception specs
3724     }
3725     void VisitParenTypeLoc(ParenTypeLoc TL) {
3726       assert(Chunk.Kind == DeclaratorChunk::Paren);
3727       TL.setLParenLoc(Chunk.Loc);
3728       TL.setRParenLoc(Chunk.EndLoc);
3729     }
3730 
3731     void VisitTypeLoc(TypeLoc TL) {
3732       llvm_unreachable("unsupported TypeLoc kind in declarator!");
3733     }
3734   };
3735 }
3736 
3737 static void fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk) {
3738   SourceLocation Loc;
3739   switch (Chunk.Kind) {
3740   case DeclaratorChunk::Function:
3741   case DeclaratorChunk::Array:
3742   case DeclaratorChunk::Paren:
3743     llvm_unreachable("cannot be _Atomic qualified");
3744 
3745   case DeclaratorChunk::Pointer:
3746     Loc = SourceLocation::getFromRawEncoding(Chunk.Ptr.AtomicQualLoc);
3747     break;
3748 
3749   case DeclaratorChunk::BlockPointer:
3750   case DeclaratorChunk::Reference:
3751   case DeclaratorChunk::MemberPointer:
3752     // FIXME: Provide a source location for the _Atomic keyword.
3753     break;
3754   }
3755 
3756   ATL.setKWLoc(Loc);
3757   ATL.setParensRange(SourceRange());
3758 }
3759 
3760 /// \brief Create and instantiate a TypeSourceInfo with type source information.
3761 ///
3762 /// \param T QualType referring to the type as written in source code.
3763 ///
3764 /// \param ReturnTypeInfo For declarators whose return type does not show
3765 /// up in the normal place in the declaration specifiers (such as a C++
3766 /// conversion function), this pointer will refer to a type source information
3767 /// for that return type.
3768 TypeSourceInfo *
3769 Sema::GetTypeSourceInfoForDeclarator(Declarator &D, QualType T,
3770                                      TypeSourceInfo *ReturnTypeInfo) {
3771   TypeSourceInfo *TInfo = Context.CreateTypeSourceInfo(T);
3772   UnqualTypeLoc CurrTL = TInfo->getTypeLoc().getUnqualifiedLoc();
3773 
3774   // Handle parameter packs whose type is a pack expansion.
3775   if (isa<PackExpansionType>(T)) {
3776     CurrTL.castAs<PackExpansionTypeLoc>().setEllipsisLoc(D.getEllipsisLoc());
3777     CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
3778   }
3779 
3780   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
3781     // An AtomicTypeLoc might be produced by an atomic qualifier in this
3782     // declarator chunk.
3783     if (AtomicTypeLoc ATL = CurrTL.getAs<AtomicTypeLoc>()) {
3784       fillAtomicQualLoc(ATL, D.getTypeObject(i));
3785       CurrTL = ATL.getValueLoc().getUnqualifiedLoc();
3786     }
3787 
3788     while (AttributedTypeLoc TL = CurrTL.getAs<AttributedTypeLoc>()) {
3789       fillAttributedTypeLoc(TL, D.getTypeObject(i).getAttrs());
3790       CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
3791     }
3792 
3793     // FIXME: Ordering here?
3794     while (AdjustedTypeLoc TL = CurrTL.getAs<AdjustedTypeLoc>())
3795       CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
3796 
3797     DeclaratorLocFiller(Context, D.getTypeObject(i)).Visit(CurrTL);
3798     CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
3799   }
3800 
3801   // If we have different source information for the return type, use
3802   // that.  This really only applies to C++ conversion functions.
3803   if (ReturnTypeInfo) {
3804     TypeLoc TL = ReturnTypeInfo->getTypeLoc();
3805     assert(TL.getFullDataSize() == CurrTL.getFullDataSize());
3806     memcpy(CurrTL.getOpaqueData(), TL.getOpaqueData(), TL.getFullDataSize());
3807   } else {
3808     TypeSpecLocFiller(Context, D.getDeclSpec()).Visit(CurrTL);
3809   }
3810 
3811   return TInfo;
3812 }
3813 
3814 /// \brief Create a LocInfoType to hold the given QualType and TypeSourceInfo.
3815 ParsedType Sema::CreateParsedType(QualType T, TypeSourceInfo *TInfo) {
3816   // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
3817   // and Sema during declaration parsing. Try deallocating/caching them when
3818   // it's appropriate, instead of allocating them and keeping them around.
3819   LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType),
3820                                                        TypeAlignment);
3821   new (LocT) LocInfoType(T, TInfo);
3822   assert(LocT->getTypeClass() != T->getTypeClass() &&
3823          "LocInfoType's TypeClass conflicts with an existing Type class");
3824   return ParsedType::make(QualType(LocT, 0));
3825 }
3826 
3827 void LocInfoType::getAsStringInternal(std::string &Str,
3828                                       const PrintingPolicy &Policy) const {
3829   llvm_unreachable("LocInfoType leaked into the type system; an opaque TypeTy*"
3830          " was used directly instead of getting the QualType through"
3831          " GetTypeFromParser");
3832 }
3833 
3834 TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
3835   // C99 6.7.6: Type names have no identifier.  This is already validated by
3836   // the parser.
3837   assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
3838 
3839   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
3840   QualType T = TInfo->getType();
3841   if (D.isInvalidType())
3842     return true;
3843 
3844   // Make sure there are no unused decl attributes on the declarator.
3845   // We don't want to do this for ObjC parameters because we're going
3846   // to apply them to the actual parameter declaration.
3847   // Likewise, we don't want to do this for alias declarations, because
3848   // we are actually going to build a declaration from this eventually.
3849   if (D.getContext() != Declarator::ObjCParameterContext &&
3850       D.getContext() != Declarator::AliasDeclContext &&
3851       D.getContext() != Declarator::AliasTemplateContext)
3852     checkUnusedDeclAttributes(D);
3853 
3854   if (getLangOpts().CPlusPlus) {
3855     // Check that there are no default arguments (C++ only).
3856     CheckExtraCXXDefaultArguments(D);
3857   }
3858 
3859   return CreateParsedType(T, TInfo);
3860 }
3861 
3862 ParsedType Sema::ActOnObjCInstanceType(SourceLocation Loc) {
3863   QualType T = Context.getObjCInstanceType();
3864   TypeSourceInfo *TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
3865   return CreateParsedType(T, TInfo);
3866 }
3867 
3868 
3869 //===----------------------------------------------------------------------===//
3870 // Type Attribute Processing
3871 //===----------------------------------------------------------------------===//
3872 
3873 /// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
3874 /// specified type.  The attribute contains 1 argument, the id of the address
3875 /// space for the type.
3876 static void HandleAddressSpaceTypeAttribute(QualType &Type,
3877                                             const AttributeList &Attr, Sema &S){
3878 
3879   // If this type is already address space qualified, reject it.
3880   // ISO/IEC TR 18037 S5.3 (amending C99 6.7.3): "No type shall be qualified by
3881   // qualifiers for two or more different address spaces."
3882   if (Type.getAddressSpace()) {
3883     S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
3884     Attr.setInvalid();
3885     return;
3886   }
3887 
3888   // ISO/IEC TR 18037 S5.3 (amending C99 6.7.3): "A function type shall not be
3889   // qualified by an address-space qualifier."
3890   if (Type->isFunctionType()) {
3891     S.Diag(Attr.getLoc(), diag::err_attribute_address_function_type);
3892     Attr.setInvalid();
3893     return;
3894   }
3895 
3896   unsigned ASIdx;
3897   if (Attr.getKind() == AttributeList::AT_AddressSpace) {
3898     // Check the attribute arguments.
3899     if (Attr.getNumArgs() != 1) {
3900       S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3901         << Attr.getName() << 1;
3902       Attr.setInvalid();
3903       return;
3904     }
3905     Expr *ASArgExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
3906     llvm::APSInt addrSpace(32);
3907     if (ASArgExpr->isTypeDependent() || ASArgExpr->isValueDependent() ||
3908         !ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
3909       S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3910         << Attr.getName() << AANT_ArgumentIntegerConstant
3911         << ASArgExpr->getSourceRange();
3912       Attr.setInvalid();
3913       return;
3914     }
3915 
3916     // Bounds checking.
3917     if (addrSpace.isSigned()) {
3918       if (addrSpace.isNegative()) {
3919         S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
3920           << ASArgExpr->getSourceRange();
3921         Attr.setInvalid();
3922         return;
3923       }
3924       addrSpace.setIsSigned(false);
3925     }
3926     llvm::APSInt max(addrSpace.getBitWidth());
3927     max = Qualifiers::MaxAddressSpace;
3928     if (addrSpace > max) {
3929       S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
3930         << int(Qualifiers::MaxAddressSpace) << ASArgExpr->getSourceRange();
3931       Attr.setInvalid();
3932       return;
3933     }
3934     ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
3935   } else {
3936     // The keyword-based type attributes imply which address space to use.
3937     switch (Attr.getKind()) {
3938     case AttributeList::AT_OpenCLGlobalAddressSpace:
3939       ASIdx = LangAS::opencl_global; break;
3940     case AttributeList::AT_OpenCLLocalAddressSpace:
3941       ASIdx = LangAS::opencl_local; break;
3942     case AttributeList::AT_OpenCLConstantAddressSpace:
3943       ASIdx = LangAS::opencl_constant; break;
3944     default:
3945       assert(Attr.getKind() == AttributeList::AT_OpenCLPrivateAddressSpace);
3946       ASIdx = 0; break;
3947     }
3948   }
3949 
3950   Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
3951 }
3952 
3953 /// Does this type have a "direct" ownership qualifier?  That is,
3954 /// is it written like "__strong id", as opposed to something like
3955 /// "typeof(foo)", where that happens to be strong?
3956 static bool hasDirectOwnershipQualifier(QualType type) {
3957   // Fast path: no qualifier at all.
3958   assert(type.getQualifiers().hasObjCLifetime());
3959 
3960   while (true) {
3961     // __strong id
3962     if (const AttributedType *attr = dyn_cast<AttributedType>(type)) {
3963       if (attr->getAttrKind() == AttributedType::attr_objc_ownership)
3964         return true;
3965 
3966       type = attr->getModifiedType();
3967 
3968     // X *__strong (...)
3969     } else if (const ParenType *paren = dyn_cast<ParenType>(type)) {
3970       type = paren->getInnerType();
3971 
3972     // That's it for things we want to complain about.  In particular,
3973     // we do not want to look through typedefs, typeof(expr),
3974     // typeof(type), or any other way that the type is somehow
3975     // abstracted.
3976     } else {
3977 
3978       return false;
3979     }
3980   }
3981 }
3982 
3983 /// handleObjCOwnershipTypeAttr - Process an objc_ownership
3984 /// attribute on the specified type.
3985 ///
3986 /// Returns 'true' if the attribute was handled.
3987 static bool handleObjCOwnershipTypeAttr(TypeProcessingState &state,
3988                                        AttributeList &attr,
3989                                        QualType &type) {
3990   bool NonObjCPointer = false;
3991 
3992   if (!type->isDependentType() && !type->isUndeducedType()) {
3993     if (const PointerType *ptr = type->getAs<PointerType>()) {
3994       QualType pointee = ptr->getPointeeType();
3995       if (pointee->isObjCRetainableType() || pointee->isPointerType())
3996         return false;
3997       // It is important not to lose the source info that there was an attribute
3998       // applied to non-objc pointer. We will create an attributed type but
3999       // its type will be the same as the original type.
4000       NonObjCPointer = true;
4001     } else if (!type->isObjCRetainableType()) {
4002       return false;
4003     }
4004 
4005     // Don't accept an ownership attribute in the declspec if it would
4006     // just be the return type of a block pointer.
4007     if (state.isProcessingDeclSpec()) {
4008       Declarator &D = state.getDeclarator();
4009       if (maybeMovePastReturnType(D, D.getNumTypeObjects()))
4010         return false;
4011     }
4012   }
4013 
4014   Sema &S = state.getSema();
4015   SourceLocation AttrLoc = attr.getLoc();
4016   if (AttrLoc.isMacroID())
4017     AttrLoc = S.getSourceManager().getImmediateExpansionRange(AttrLoc).first;
4018 
4019   if (!attr.isArgIdent(0)) {
4020     S.Diag(AttrLoc, diag::err_attribute_argument_type)
4021       << attr.getName() << AANT_ArgumentString;
4022     attr.setInvalid();
4023     return true;
4024   }
4025 
4026   // Consume lifetime attributes without further comment outside of
4027   // ARC mode.
4028   if (!S.getLangOpts().ObjCAutoRefCount)
4029     return true;
4030 
4031   IdentifierInfo *II = attr.getArgAsIdent(0)->Ident;
4032   Qualifiers::ObjCLifetime lifetime;
4033   if (II->isStr("none"))
4034     lifetime = Qualifiers::OCL_ExplicitNone;
4035   else if (II->isStr("strong"))
4036     lifetime = Qualifiers::OCL_Strong;
4037   else if (II->isStr("weak"))
4038     lifetime = Qualifiers::OCL_Weak;
4039   else if (II->isStr("autoreleasing"))
4040     lifetime = Qualifiers::OCL_Autoreleasing;
4041   else {
4042     S.Diag(AttrLoc, diag::warn_attribute_type_not_supported)
4043       << attr.getName() << II;
4044     attr.setInvalid();
4045     return true;
4046   }
4047 
4048   SplitQualType underlyingType = type.split();
4049 
4050   // Check for redundant/conflicting ownership qualifiers.
4051   if (Qualifiers::ObjCLifetime previousLifetime
4052         = type.getQualifiers().getObjCLifetime()) {
4053     // If it's written directly, that's an error.
4054     if (hasDirectOwnershipQualifier(type)) {
4055       S.Diag(AttrLoc, diag::err_attr_objc_ownership_redundant)
4056         << type;
4057       return true;
4058     }
4059 
4060     // Otherwise, if the qualifiers actually conflict, pull sugar off
4061     // until we reach a type that is directly qualified.
4062     if (previousLifetime != lifetime) {
4063       // This should always terminate: the canonical type is
4064       // qualified, so some bit of sugar must be hiding it.
4065       while (!underlyingType.Quals.hasObjCLifetime()) {
4066         underlyingType = underlyingType.getSingleStepDesugaredType();
4067       }
4068       underlyingType.Quals.removeObjCLifetime();
4069     }
4070   }
4071 
4072   underlyingType.Quals.addObjCLifetime(lifetime);
4073 
4074   if (NonObjCPointer) {
4075     StringRef name = attr.getName()->getName();
4076     switch (lifetime) {
4077     case Qualifiers::OCL_None:
4078     case Qualifiers::OCL_ExplicitNone:
4079       break;
4080     case Qualifiers::OCL_Strong: name = "__strong"; break;
4081     case Qualifiers::OCL_Weak: name = "__weak"; break;
4082     case Qualifiers::OCL_Autoreleasing: name = "__autoreleasing"; break;
4083     }
4084     S.Diag(AttrLoc, diag::warn_type_attribute_wrong_type) << name
4085       << TDS_ObjCObjOrBlock << type;
4086   }
4087 
4088   QualType origType = type;
4089   if (!NonObjCPointer)
4090     type = S.Context.getQualifiedType(underlyingType);
4091 
4092   // If we have a valid source location for the attribute, use an
4093   // AttributedType instead.
4094   if (AttrLoc.isValid())
4095     type = S.Context.getAttributedType(AttributedType::attr_objc_ownership,
4096                                        origType, type);
4097 
4098   // Forbid __weak if the runtime doesn't support it.
4099   if (lifetime == Qualifiers::OCL_Weak &&
4100       !S.getLangOpts().ObjCARCWeak && !NonObjCPointer) {
4101 
4102     // Actually, delay this until we know what we're parsing.
4103     if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
4104       S.DelayedDiagnostics.add(
4105           sema::DelayedDiagnostic::makeForbiddenType(
4106               S.getSourceManager().getExpansionLoc(AttrLoc),
4107               diag::err_arc_weak_no_runtime, type, /*ignored*/ 0));
4108     } else {
4109       S.Diag(AttrLoc, diag::err_arc_weak_no_runtime);
4110     }
4111 
4112     attr.setInvalid();
4113     return true;
4114   }
4115 
4116   // Forbid __weak for class objects marked as
4117   // objc_arc_weak_reference_unavailable
4118   if (lifetime == Qualifiers::OCL_Weak) {
4119     if (const ObjCObjectPointerType *ObjT =
4120           type->getAs<ObjCObjectPointerType>()) {
4121       if (ObjCInterfaceDecl *Class = ObjT->getInterfaceDecl()) {
4122         if (Class->isArcWeakrefUnavailable()) {
4123             S.Diag(AttrLoc, diag::err_arc_unsupported_weak_class);
4124             S.Diag(ObjT->getInterfaceDecl()->getLocation(),
4125                    diag::note_class_declared);
4126         }
4127       }
4128     }
4129   }
4130 
4131   return true;
4132 }
4133 
4134 /// handleObjCGCTypeAttr - Process the __attribute__((objc_gc)) type
4135 /// attribute on the specified type.  Returns true to indicate that
4136 /// the attribute was handled, false to indicate that the type does
4137 /// not permit the attribute.
4138 static bool handleObjCGCTypeAttr(TypeProcessingState &state,
4139                                  AttributeList &attr,
4140                                  QualType &type) {
4141   Sema &S = state.getSema();
4142 
4143   // Delay if this isn't some kind of pointer.
4144   if (!type->isPointerType() &&
4145       !type->isObjCObjectPointerType() &&
4146       !type->isBlockPointerType())
4147     return false;
4148 
4149   if (type.getObjCGCAttr() != Qualifiers::GCNone) {
4150     S.Diag(attr.getLoc(), diag::err_attribute_multiple_objc_gc);
4151     attr.setInvalid();
4152     return true;
4153   }
4154 
4155   // Check the attribute arguments.
4156   if (!attr.isArgIdent(0)) {
4157     S.Diag(attr.getLoc(), diag::err_attribute_argument_type)
4158       << attr.getName() << AANT_ArgumentString;
4159     attr.setInvalid();
4160     return true;
4161   }
4162   Qualifiers::GC GCAttr;
4163   if (attr.getNumArgs() > 1) {
4164     S.Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4165       << attr.getName() << 1;
4166     attr.setInvalid();
4167     return true;
4168   }
4169 
4170   IdentifierInfo *II = attr.getArgAsIdent(0)->Ident;
4171   if (II->isStr("weak"))
4172     GCAttr = Qualifiers::Weak;
4173   else if (II->isStr("strong"))
4174     GCAttr = Qualifiers::Strong;
4175   else {
4176     S.Diag(attr.getLoc(), diag::warn_attribute_type_not_supported)
4177       << attr.getName() << II;
4178     attr.setInvalid();
4179     return true;
4180   }
4181 
4182   QualType origType = type;
4183   type = S.Context.getObjCGCQualType(origType, GCAttr);
4184 
4185   // Make an attributed type to preserve the source information.
4186   if (attr.getLoc().isValid())
4187     type = S.Context.getAttributedType(AttributedType::attr_objc_gc,
4188                                        origType, type);
4189 
4190   return true;
4191 }
4192 
4193 namespace {
4194   /// A helper class to unwrap a type down to a function for the
4195   /// purposes of applying attributes there.
4196   ///
4197   /// Use:
4198   ///   FunctionTypeUnwrapper unwrapped(SemaRef, T);
4199   ///   if (unwrapped.isFunctionType()) {
4200   ///     const FunctionType *fn = unwrapped.get();
4201   ///     // change fn somehow
4202   ///     T = unwrapped.wrap(fn);
4203   ///   }
4204   struct FunctionTypeUnwrapper {
4205     enum WrapKind {
4206       Desugar,
4207       Parens,
4208       Pointer,
4209       BlockPointer,
4210       Reference,
4211       MemberPointer
4212     };
4213 
4214     QualType Original;
4215     const FunctionType *Fn;
4216     SmallVector<unsigned char /*WrapKind*/, 8> Stack;
4217 
4218     FunctionTypeUnwrapper(Sema &S, QualType T) : Original(T) {
4219       while (true) {
4220         const Type *Ty = T.getTypePtr();
4221         if (isa<FunctionType>(Ty)) {
4222           Fn = cast<FunctionType>(Ty);
4223           return;
4224         } else if (isa<ParenType>(Ty)) {
4225           T = cast<ParenType>(Ty)->getInnerType();
4226           Stack.push_back(Parens);
4227         } else if (isa<PointerType>(Ty)) {
4228           T = cast<PointerType>(Ty)->getPointeeType();
4229           Stack.push_back(Pointer);
4230         } else if (isa<BlockPointerType>(Ty)) {
4231           T = cast<BlockPointerType>(Ty)->getPointeeType();
4232           Stack.push_back(BlockPointer);
4233         } else if (isa<MemberPointerType>(Ty)) {
4234           T = cast<MemberPointerType>(Ty)->getPointeeType();
4235           Stack.push_back(MemberPointer);
4236         } else if (isa<ReferenceType>(Ty)) {
4237           T = cast<ReferenceType>(Ty)->getPointeeType();
4238           Stack.push_back(Reference);
4239         } else {
4240           const Type *DTy = Ty->getUnqualifiedDesugaredType();
4241           if (Ty == DTy) {
4242             Fn = 0;
4243             return;
4244           }
4245 
4246           T = QualType(DTy, 0);
4247           Stack.push_back(Desugar);
4248         }
4249       }
4250     }
4251 
4252     bool isFunctionType() const { return (Fn != 0); }
4253     const FunctionType *get() const { return Fn; }
4254 
4255     QualType wrap(Sema &S, const FunctionType *New) {
4256       // If T wasn't modified from the unwrapped type, do nothing.
4257       if (New == get()) return Original;
4258 
4259       Fn = New;
4260       return wrap(S.Context, Original, 0);
4261     }
4262 
4263   private:
4264     QualType wrap(ASTContext &C, QualType Old, unsigned I) {
4265       if (I == Stack.size())
4266         return C.getQualifiedType(Fn, Old.getQualifiers());
4267 
4268       // Build up the inner type, applying the qualifiers from the old
4269       // type to the new type.
4270       SplitQualType SplitOld = Old.split();
4271 
4272       // As a special case, tail-recurse if there are no qualifiers.
4273       if (SplitOld.Quals.empty())
4274         return wrap(C, SplitOld.Ty, I);
4275       return C.getQualifiedType(wrap(C, SplitOld.Ty, I), SplitOld.Quals);
4276     }
4277 
4278     QualType wrap(ASTContext &C, const Type *Old, unsigned I) {
4279       if (I == Stack.size()) return QualType(Fn, 0);
4280 
4281       switch (static_cast<WrapKind>(Stack[I++])) {
4282       case Desugar:
4283         // This is the point at which we potentially lose source
4284         // information.
4285         return wrap(C, Old->getUnqualifiedDesugaredType(), I);
4286 
4287       case Parens: {
4288         QualType New = wrap(C, cast<ParenType>(Old)->getInnerType(), I);
4289         return C.getParenType(New);
4290       }
4291 
4292       case Pointer: {
4293         QualType New = wrap(C, cast<PointerType>(Old)->getPointeeType(), I);
4294         return C.getPointerType(New);
4295       }
4296 
4297       case BlockPointer: {
4298         QualType New = wrap(C, cast<BlockPointerType>(Old)->getPointeeType(),I);
4299         return C.getBlockPointerType(New);
4300       }
4301 
4302       case MemberPointer: {
4303         const MemberPointerType *OldMPT = cast<MemberPointerType>(Old);
4304         QualType New = wrap(C, OldMPT->getPointeeType(), I);
4305         return C.getMemberPointerType(New, OldMPT->getClass());
4306       }
4307 
4308       case Reference: {
4309         const ReferenceType *OldRef = cast<ReferenceType>(Old);
4310         QualType New = wrap(C, OldRef->getPointeeType(), I);
4311         if (isa<LValueReferenceType>(OldRef))
4312           return C.getLValueReferenceType(New, OldRef->isSpelledAsLValue());
4313         else
4314           return C.getRValueReferenceType(New);
4315       }
4316       }
4317 
4318       llvm_unreachable("unknown wrapping kind");
4319     }
4320   };
4321 }
4322 
4323 static bool handleMSPointerTypeQualifierAttr(TypeProcessingState &State,
4324                                              AttributeList &Attr,
4325                                              QualType &Type) {
4326   Sema &S = State.getSema();
4327 
4328   AttributeList::Kind Kind = Attr.getKind();
4329   QualType Desugared = Type;
4330   const AttributedType *AT = dyn_cast<AttributedType>(Type);
4331   while (AT) {
4332     AttributedType::Kind CurAttrKind = AT->getAttrKind();
4333 
4334     // You cannot specify duplicate type attributes, so if the attribute has
4335     // already been applied, flag it.
4336     if (getAttrListKind(CurAttrKind) == Kind) {
4337       S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute_exact)
4338         << Attr.getName();
4339       return true;
4340     }
4341 
4342     // You cannot have both __sptr and __uptr on the same type, nor can you
4343     // have __ptr32 and __ptr64.
4344     if ((CurAttrKind == AttributedType::attr_ptr32 &&
4345          Kind == AttributeList::AT_Ptr64) ||
4346         (CurAttrKind == AttributedType::attr_ptr64 &&
4347          Kind == AttributeList::AT_Ptr32)) {
4348       S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
4349         << "'__ptr32'" << "'__ptr64'";
4350       return true;
4351     } else if ((CurAttrKind == AttributedType::attr_sptr &&
4352                 Kind == AttributeList::AT_UPtr) ||
4353                (CurAttrKind == AttributedType::attr_uptr &&
4354                 Kind == AttributeList::AT_SPtr)) {
4355       S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
4356         << "'__sptr'" << "'__uptr'";
4357       return true;
4358     }
4359 
4360     Desugared = AT->getEquivalentType();
4361     AT = dyn_cast<AttributedType>(Desugared);
4362   }
4363 
4364   // Pointer type qualifiers can only operate on pointer types, but not
4365   // pointer-to-member types.
4366   if (!isa<PointerType>(Desugared)) {
4367     S.Diag(Attr.getLoc(), Type->isMemberPointerType() ?
4368                           diag::err_attribute_no_member_pointers :
4369                           diag::err_attribute_pointers_only) << Attr.getName();
4370     return true;
4371   }
4372 
4373   AttributedType::Kind TAK;
4374   switch (Kind) {
4375   default: llvm_unreachable("Unknown attribute kind");
4376   case AttributeList::AT_Ptr32: TAK = AttributedType::attr_ptr32; break;
4377   case AttributeList::AT_Ptr64: TAK = AttributedType::attr_ptr64; break;
4378   case AttributeList::AT_SPtr: TAK = AttributedType::attr_sptr; break;
4379   case AttributeList::AT_UPtr: TAK = AttributedType::attr_uptr; break;
4380   }
4381 
4382   Type = S.Context.getAttributedType(TAK, Type, Type);
4383   return false;
4384 }
4385 
4386 static AttributedType::Kind getCCTypeAttrKind(AttributeList &Attr) {
4387   assert(!Attr.isInvalid());
4388   switch (Attr.getKind()) {
4389   default:
4390     llvm_unreachable("not a calling convention attribute");
4391   case AttributeList::AT_CDecl:
4392     return AttributedType::attr_cdecl;
4393   case AttributeList::AT_FastCall:
4394     return AttributedType::attr_fastcall;
4395   case AttributeList::AT_StdCall:
4396     return AttributedType::attr_stdcall;
4397   case AttributeList::AT_ThisCall:
4398     return AttributedType::attr_thiscall;
4399   case AttributeList::AT_Pascal:
4400     return AttributedType::attr_pascal;
4401   case AttributeList::AT_Pcs: {
4402     // The attribute may have had a fixit applied where we treated an
4403     // identifier as a string literal.  The contents of the string are valid,
4404     // but the form may not be.
4405     StringRef Str;
4406     if (Attr.isArgExpr(0))
4407       Str = cast<StringLiteral>(Attr.getArgAsExpr(0))->getString();
4408     else
4409       Str = Attr.getArgAsIdent(0)->Ident->getName();
4410     return llvm::StringSwitch<AttributedType::Kind>(Str)
4411         .Case("aapcs", AttributedType::attr_pcs)
4412         .Case("aapcs-vfp", AttributedType::attr_pcs_vfp);
4413   }
4414   case AttributeList::AT_PnaclCall:
4415     return AttributedType::attr_pnaclcall;
4416   case AttributeList::AT_IntelOclBicc:
4417     return AttributedType::attr_inteloclbicc;
4418   case AttributeList::AT_MSABI:
4419     return AttributedType::attr_ms_abi;
4420   case AttributeList::AT_SysVABI:
4421     return AttributedType::attr_sysv_abi;
4422   }
4423   llvm_unreachable("unexpected attribute kind!");
4424 }
4425 
4426 /// Process an individual function attribute.  Returns true to
4427 /// indicate that the attribute was handled, false if it wasn't.
4428 static bool handleFunctionTypeAttr(TypeProcessingState &state,
4429                                    AttributeList &attr,
4430                                    QualType &type) {
4431   Sema &S = state.getSema();
4432 
4433   FunctionTypeUnwrapper unwrapped(S, type);
4434 
4435   if (attr.getKind() == AttributeList::AT_NoReturn) {
4436     if (S.CheckNoReturnAttr(attr))
4437       return true;
4438 
4439     // Delay if this is not a function type.
4440     if (!unwrapped.isFunctionType())
4441       return false;
4442 
4443     // Otherwise we can process right away.
4444     FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true);
4445     type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4446     return true;
4447   }
4448 
4449   // ns_returns_retained is not always a type attribute, but if we got
4450   // here, we're treating it as one right now.
4451   if (attr.getKind() == AttributeList::AT_NSReturnsRetained) {
4452     assert(S.getLangOpts().ObjCAutoRefCount &&
4453            "ns_returns_retained treated as type attribute in non-ARC");
4454     if (attr.getNumArgs()) return true;
4455 
4456     // Delay if this is not a function type.
4457     if (!unwrapped.isFunctionType())
4458       return false;
4459 
4460     FunctionType::ExtInfo EI
4461       = unwrapped.get()->getExtInfo().withProducesResult(true);
4462     type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4463     return true;
4464   }
4465 
4466   if (attr.getKind() == AttributeList::AT_Regparm) {
4467     unsigned value;
4468     if (S.CheckRegparmAttr(attr, value))
4469       return true;
4470 
4471     // Delay if this is not a function type.
4472     if (!unwrapped.isFunctionType())
4473       return false;
4474 
4475     // Diagnose regparm with fastcall.
4476     const FunctionType *fn = unwrapped.get();
4477     CallingConv CC = fn->getCallConv();
4478     if (CC == CC_X86FastCall) {
4479       S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
4480         << FunctionType::getNameForCallConv(CC)
4481         << "regparm";
4482       attr.setInvalid();
4483       return true;
4484     }
4485 
4486     FunctionType::ExtInfo EI =
4487       unwrapped.get()->getExtInfo().withRegParm(value);
4488     type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4489     return true;
4490   }
4491 
4492   // Delay if the type didn't work out to a function.
4493   if (!unwrapped.isFunctionType()) return false;
4494 
4495   // Otherwise, a calling convention.
4496   CallingConv CC;
4497   if (S.CheckCallingConvAttr(attr, CC))
4498     return true;
4499 
4500   const FunctionType *fn = unwrapped.get();
4501   CallingConv CCOld = fn->getCallConv();
4502   AttributedType::Kind CCAttrKind = getCCTypeAttrKind(attr);
4503 
4504   if (CCOld != CC) {
4505     // Error out on when there's already an attribute on the type
4506     // and the CCs don't match.
4507     const AttributedType *AT = S.getCallingConvAttributedType(type);
4508     if (AT && AT->getAttrKind() != CCAttrKind) {
4509       S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
4510         << FunctionType::getNameForCallConv(CC)
4511         << FunctionType::getNameForCallConv(CCOld);
4512       attr.setInvalid();
4513       return true;
4514     }
4515   }
4516 
4517   // Diagnose use of callee-cleanup calling convention on variadic functions.
4518   if (isCalleeCleanup(CC)) {
4519     const FunctionProtoType *FnP = dyn_cast<FunctionProtoType>(fn);
4520     if (FnP && FnP->isVariadic()) {
4521       unsigned DiagID = diag::err_cconv_varargs;
4522       // stdcall and fastcall are ignored with a warning for GCC and MS
4523       // compatibility.
4524       if (CC == CC_X86StdCall || CC == CC_X86FastCall)
4525         DiagID = diag::warn_cconv_varargs;
4526 
4527       S.Diag(attr.getLoc(), DiagID) << FunctionType::getNameForCallConv(CC);
4528       attr.setInvalid();
4529       return true;
4530     }
4531   }
4532 
4533   // Diagnose the use of X86 fastcall on unprototyped functions.
4534   if (CC == CC_X86FastCall) {
4535     if (isa<FunctionNoProtoType>(fn)) {
4536       S.Diag(attr.getLoc(), diag::err_cconv_knr)
4537         << FunctionType::getNameForCallConv(CC);
4538       attr.setInvalid();
4539       return true;
4540     }
4541 
4542     // Also diagnose fastcall with regparm.
4543     if (fn->getHasRegParm()) {
4544       S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
4545         << "regparm"
4546         << FunctionType::getNameForCallConv(CC);
4547       attr.setInvalid();
4548       return true;
4549     }
4550   }
4551 
4552   // Modify the CC from the wrapped function type, wrap it all back, and then
4553   // wrap the whole thing in an AttributedType as written.  The modified type
4554   // might have a different CC if we ignored the attribute.
4555   FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withCallingConv(CC);
4556   QualType Equivalent =
4557       unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4558   type = S.Context.getAttributedType(CCAttrKind, type, Equivalent);
4559   return true;
4560 }
4561 
4562 bool Sema::hasExplicitCallingConv(QualType &T) {
4563   QualType R = T.IgnoreParens();
4564   while (const AttributedType *AT = dyn_cast<AttributedType>(R)) {
4565     if (AT->isCallingConv())
4566       return true;
4567     R = AT->getModifiedType().IgnoreParens();
4568   }
4569   return false;
4570 }
4571 
4572 void Sema::adjustMemberFunctionCC(QualType &T, bool IsStatic) {
4573   FunctionTypeUnwrapper Unwrapped(*this, T);
4574   const FunctionType *FT = Unwrapped.get();
4575   bool IsVariadic = (isa<FunctionProtoType>(FT) &&
4576                      cast<FunctionProtoType>(FT)->isVariadic());
4577 
4578   // Only adjust types with the default convention.  For example, on Windows we
4579   // should adjust a __cdecl type to __thiscall for instance methods, and a
4580   // __thiscall type to __cdecl for static methods.
4581   CallingConv CurCC = FT->getCallConv();
4582   CallingConv FromCC =
4583       Context.getDefaultCallingConvention(IsVariadic, IsStatic);
4584   CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic);
4585   if (CurCC != FromCC || FromCC == ToCC)
4586     return;
4587 
4588   if (hasExplicitCallingConv(T))
4589     return;
4590 
4591   FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(ToCC));
4592   QualType Wrapped = Unwrapped.wrap(*this, FT);
4593   T = Context.getAdjustedType(T, Wrapped);
4594 }
4595 
4596 /// HandleVectorSizeAttribute - this attribute is only applicable to integral
4597 /// and float scalars, although arrays, pointers, and function return values are
4598 /// allowed in conjunction with this construct. Aggregates with this attribute
4599 /// are invalid, even if they are of the same size as a corresponding scalar.
4600 /// The raw attribute should contain precisely 1 argument, the vector size for
4601 /// the variable, measured in bytes. If curType and rawAttr are well formed,
4602 /// this routine will return a new vector type.
4603 static void HandleVectorSizeAttr(QualType& CurType, const AttributeList &Attr,
4604                                  Sema &S) {
4605   // Check the attribute arguments.
4606   if (Attr.getNumArgs() != 1) {
4607     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4608       << Attr.getName() << 1;
4609     Attr.setInvalid();
4610     return;
4611   }
4612   Expr *sizeExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
4613   llvm::APSInt vecSize(32);
4614   if (sizeExpr->isTypeDependent() || sizeExpr->isValueDependent() ||
4615       !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
4616     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4617       << Attr.getName() << AANT_ArgumentIntegerConstant
4618       << sizeExpr->getSourceRange();
4619     Attr.setInvalid();
4620     return;
4621   }
4622   // The base type must be integer (not Boolean or enumeration) or float, and
4623   // can't already be a vector.
4624   if (!CurType->isBuiltinType() || CurType->isBooleanType() ||
4625       (!CurType->isIntegerType() && !CurType->isRealFloatingType())) {
4626     S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
4627     Attr.setInvalid();
4628     return;
4629   }
4630   unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
4631   // vecSize is specified in bytes - convert to bits.
4632   unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
4633 
4634   // the vector size needs to be an integral multiple of the type size.
4635   if (vectorSize % typeSize) {
4636     S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
4637       << sizeExpr->getSourceRange();
4638     Attr.setInvalid();
4639     return;
4640   }
4641   if (VectorType::isVectorSizeTooLarge(vectorSize / typeSize)) {
4642     S.Diag(Attr.getLoc(), diag::err_attribute_size_too_large)
4643       << sizeExpr->getSourceRange();
4644     Attr.setInvalid();
4645     return;
4646   }
4647   if (vectorSize == 0) {
4648     S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
4649       << sizeExpr->getSourceRange();
4650     Attr.setInvalid();
4651     return;
4652   }
4653 
4654   // Success! Instantiate the vector type, the number of elements is > 0, and
4655   // not required to be a power of 2, unlike GCC.
4656   CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
4657                                     VectorType::GenericVector);
4658 }
4659 
4660 /// \brief Process the OpenCL-like ext_vector_type attribute when it occurs on
4661 /// a type.
4662 static void HandleExtVectorTypeAttr(QualType &CurType,
4663                                     const AttributeList &Attr,
4664                                     Sema &S) {
4665   // check the attribute arguments.
4666   if (Attr.getNumArgs() != 1) {
4667     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4668       << Attr.getName() << 1;
4669     return;
4670   }
4671 
4672   Expr *sizeExpr;
4673 
4674   // Special case where the argument is a template id.
4675   if (Attr.isArgIdent(0)) {
4676     CXXScopeSpec SS;
4677     SourceLocation TemplateKWLoc;
4678     UnqualifiedId id;
4679     id.setIdentifier(Attr.getArgAsIdent(0)->Ident, Attr.getLoc());
4680 
4681     ExprResult Size = S.ActOnIdExpression(S.getCurScope(), SS, TemplateKWLoc,
4682                                           id, false, false);
4683     if (Size.isInvalid())
4684       return;
4685 
4686     sizeExpr = Size.get();
4687   } else {
4688     sizeExpr = Attr.getArgAsExpr(0);
4689   }
4690 
4691   // Create the vector type.
4692   QualType T = S.BuildExtVectorType(CurType, sizeExpr, Attr.getLoc());
4693   if (!T.isNull())
4694     CurType = T;
4695 }
4696 
4697 static bool isPermittedNeonBaseType(QualType &Ty,
4698                                     VectorType::VectorKind VecKind,
4699                                     bool IsAArch64) {
4700   const BuiltinType *BTy = Ty->getAs<BuiltinType>();
4701   if (!BTy)
4702     return false;
4703 
4704   if (VecKind == VectorType::NeonPolyVector) {
4705     if (IsAArch64) {
4706       // AArch64 polynomial vectors are unsigned and support poly64.
4707       return BTy->getKind() == BuiltinType::UChar ||
4708              BTy->getKind() == BuiltinType::UShort ||
4709              BTy->getKind() == BuiltinType::ULong ||
4710              BTy->getKind() == BuiltinType::ULongLong;
4711     } else {
4712       // AArch32 polynomial vector are signed.
4713       return BTy->getKind() == BuiltinType::SChar ||
4714              BTy->getKind() == BuiltinType::Short;
4715     }
4716   }
4717 
4718   // Non-polynomial vector types: the usual suspects are allowed, as well as
4719   // float64_t on AArch64.
4720   if (IsAArch64 && BTy->getKind() == BuiltinType::Double)
4721     return true;
4722 
4723   return BTy->getKind() == BuiltinType::SChar ||
4724          BTy->getKind() == BuiltinType::UChar ||
4725          BTy->getKind() == BuiltinType::Short ||
4726          BTy->getKind() == BuiltinType::UShort ||
4727          BTy->getKind() == BuiltinType::Int ||
4728          BTy->getKind() == BuiltinType::UInt ||
4729          BTy->getKind() == BuiltinType::Long ||
4730          BTy->getKind() == BuiltinType::ULong ||
4731          BTy->getKind() == BuiltinType::LongLong ||
4732          BTy->getKind() == BuiltinType::ULongLong ||
4733          BTy->getKind() == BuiltinType::Float ||
4734          BTy->getKind() == BuiltinType::Half;
4735 }
4736 
4737 /// HandleNeonVectorTypeAttr - The "neon_vector_type" and
4738 /// "neon_polyvector_type" attributes are used to create vector types that
4739 /// are mangled according to ARM's ABI.  Otherwise, these types are identical
4740 /// to those created with the "vector_size" attribute.  Unlike "vector_size"
4741 /// the argument to these Neon attributes is the number of vector elements,
4742 /// not the vector size in bytes.  The vector width and element type must
4743 /// match one of the standard Neon vector types.
4744 static void HandleNeonVectorTypeAttr(QualType& CurType,
4745                                      const AttributeList &Attr, Sema &S,
4746                                      VectorType::VectorKind VecKind) {
4747   // Target must have NEON
4748   if (!S.Context.getTargetInfo().hasFeature("neon")) {
4749     S.Diag(Attr.getLoc(), diag::err_attribute_unsupported) << Attr.getName();
4750     Attr.setInvalid();
4751     return;
4752   }
4753   // Check the attribute arguments.
4754   if (Attr.getNumArgs() != 1) {
4755     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4756       << Attr.getName() << 1;
4757     Attr.setInvalid();
4758     return;
4759   }
4760   // The number of elements must be an ICE.
4761   Expr *numEltsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
4762   llvm::APSInt numEltsInt(32);
4763   if (numEltsExpr->isTypeDependent() || numEltsExpr->isValueDependent() ||
4764       !numEltsExpr->isIntegerConstantExpr(numEltsInt, S.Context)) {
4765     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4766       << Attr.getName() << AANT_ArgumentIntegerConstant
4767       << numEltsExpr->getSourceRange();
4768     Attr.setInvalid();
4769     return;
4770   }
4771   // Only certain element types are supported for Neon vectors.
4772   llvm::Triple::ArchType Arch =
4773         S.Context.getTargetInfo().getTriple().getArch();
4774   if (!isPermittedNeonBaseType(CurType, VecKind,
4775                                Arch == llvm::Triple::aarch64)) {
4776     S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
4777     Attr.setInvalid();
4778     return;
4779   }
4780 
4781   // The total size of the vector must be 64 or 128 bits.
4782   unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
4783   unsigned numElts = static_cast<unsigned>(numEltsInt.getZExtValue());
4784   unsigned vecSize = typeSize * numElts;
4785   if (vecSize != 64 && vecSize != 128) {
4786     S.Diag(Attr.getLoc(), diag::err_attribute_bad_neon_vector_size) << CurType;
4787     Attr.setInvalid();
4788     return;
4789   }
4790 
4791   CurType = S.Context.getVectorType(CurType, numElts, VecKind);
4792 }
4793 
4794 static void processTypeAttrs(TypeProcessingState &state, QualType &type,
4795                              TypeAttrLocation TAL, AttributeList *attrs) {
4796   // Scan through and apply attributes to this type where it makes sense.  Some
4797   // attributes (such as __address_space__, __vector_size__, etc) apply to the
4798   // type, but others can be present in the type specifiers even though they
4799   // apply to the decl.  Here we apply type attributes and ignore the rest.
4800 
4801   AttributeList *next;
4802   do {
4803     AttributeList &attr = *attrs;
4804     next = attr.getNext();
4805 
4806     // Skip attributes that were marked to be invalid.
4807     if (attr.isInvalid())
4808       continue;
4809 
4810     if (attr.isCXX11Attribute()) {
4811       // [[gnu::...]] attributes are treated as declaration attributes, so may
4812       // not appertain to a DeclaratorChunk, even if we handle them as type
4813       // attributes.
4814       if (attr.getScopeName() && attr.getScopeName()->isStr("gnu")) {
4815         if (TAL == TAL_DeclChunk) {
4816           state.getSema().Diag(attr.getLoc(),
4817                                diag::warn_cxx11_gnu_attribute_on_type)
4818               << attr.getName();
4819           continue;
4820         }
4821       } else if (TAL != TAL_DeclChunk) {
4822         // Otherwise, only consider type processing for a C++11 attribute if
4823         // it's actually been applied to a type.
4824         continue;
4825       }
4826     }
4827 
4828     // If this is an attribute we can handle, do so now,
4829     // otherwise, add it to the FnAttrs list for rechaining.
4830     switch (attr.getKind()) {
4831     default:
4832       // A C++11 attribute on a declarator chunk must appertain to a type.
4833       if (attr.isCXX11Attribute() && TAL == TAL_DeclChunk) {
4834         state.getSema().Diag(attr.getLoc(), diag::err_attribute_not_type_attr)
4835           << attr.getName();
4836         attr.setUsedAsTypeAttr();
4837       }
4838       break;
4839 
4840     case AttributeList::UnknownAttribute:
4841       if (attr.isCXX11Attribute() && TAL == TAL_DeclChunk)
4842         state.getSema().Diag(attr.getLoc(),
4843                              diag::warn_unknown_attribute_ignored)
4844           << attr.getName();
4845       break;
4846 
4847     case AttributeList::IgnoredAttribute:
4848       break;
4849 
4850     case AttributeList::AT_MayAlias:
4851       // FIXME: This attribute needs to actually be handled, but if we ignore
4852       // it it breaks large amounts of Linux software.
4853       attr.setUsedAsTypeAttr();
4854       break;
4855     case AttributeList::AT_OpenCLPrivateAddressSpace:
4856     case AttributeList::AT_OpenCLGlobalAddressSpace:
4857     case AttributeList::AT_OpenCLLocalAddressSpace:
4858     case AttributeList::AT_OpenCLConstantAddressSpace:
4859     case AttributeList::AT_AddressSpace:
4860       HandleAddressSpaceTypeAttribute(type, attr, state.getSema());
4861       attr.setUsedAsTypeAttr();
4862       break;
4863     OBJC_POINTER_TYPE_ATTRS_CASELIST:
4864       if (!handleObjCPointerTypeAttr(state, attr, type))
4865         distributeObjCPointerTypeAttr(state, attr, type);
4866       attr.setUsedAsTypeAttr();
4867       break;
4868     case AttributeList::AT_VectorSize:
4869       HandleVectorSizeAttr(type, attr, state.getSema());
4870       attr.setUsedAsTypeAttr();
4871       break;
4872     case AttributeList::AT_ExtVectorType:
4873       HandleExtVectorTypeAttr(type, attr, state.getSema());
4874       attr.setUsedAsTypeAttr();
4875       break;
4876     case AttributeList::AT_NeonVectorType:
4877       HandleNeonVectorTypeAttr(type, attr, state.getSema(),
4878                                VectorType::NeonVector);
4879       attr.setUsedAsTypeAttr();
4880       break;
4881     case AttributeList::AT_NeonPolyVectorType:
4882       HandleNeonVectorTypeAttr(type, attr, state.getSema(),
4883                                VectorType::NeonPolyVector);
4884       attr.setUsedAsTypeAttr();
4885       break;
4886     case AttributeList::AT_OpenCLImageAccess:
4887       // FIXME: there should be some type checking happening here, I would
4888       // imagine, but the original handler's checking was entirely superfluous.
4889       attr.setUsedAsTypeAttr();
4890       break;
4891 
4892     MS_TYPE_ATTRS_CASELIST:
4893       if (!handleMSPointerTypeQualifierAttr(state, attr, type))
4894         attr.setUsedAsTypeAttr();
4895       break;
4896 
4897     case AttributeList::AT_NSReturnsRetained:
4898       if (!state.getSema().getLangOpts().ObjCAutoRefCount)
4899         break;
4900       // fallthrough into the function attrs
4901 
4902     FUNCTION_TYPE_ATTRS_CASELIST:
4903       attr.setUsedAsTypeAttr();
4904 
4905       // Never process function type attributes as part of the
4906       // declaration-specifiers.
4907       if (TAL == TAL_DeclSpec)
4908         distributeFunctionTypeAttrFromDeclSpec(state, attr, type);
4909 
4910       // Otherwise, handle the possible delays.
4911       else if (!handleFunctionTypeAttr(state, attr, type))
4912         distributeFunctionTypeAttr(state, attr, type);
4913       break;
4914     }
4915   } while ((attrs = next));
4916 }
4917 
4918 /// \brief Ensure that the type of the given expression is complete.
4919 ///
4920 /// This routine checks whether the expression \p E has a complete type. If the
4921 /// expression refers to an instantiable construct, that instantiation is
4922 /// performed as needed to complete its type. Furthermore
4923 /// Sema::RequireCompleteType is called for the expression's type (or in the
4924 /// case of a reference type, the referred-to type).
4925 ///
4926 /// \param E The expression whose type is required to be complete.
4927 /// \param Diagnoser The object that will emit a diagnostic if the type is
4928 /// incomplete.
4929 ///
4930 /// \returns \c true if the type of \p E is incomplete and diagnosed, \c false
4931 /// otherwise.
4932 bool Sema::RequireCompleteExprType(Expr *E, TypeDiagnoser &Diagnoser){
4933   QualType T = E->getType();
4934 
4935   // Fast path the case where the type is already complete.
4936   if (!T->isIncompleteType())
4937     // FIXME: The definition might not be visible.
4938     return false;
4939 
4940   // Incomplete array types may be completed by the initializer attached to
4941   // their definitions. For static data members of class templates and for
4942   // variable templates, we need to instantiate the definition to get this
4943   // initializer and complete the type.
4944   if (T->isIncompleteArrayType()) {
4945     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
4946       if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
4947         if (isTemplateInstantiation(Var->getTemplateSpecializationKind())) {
4948           SourceLocation PointOfInstantiation = E->getExprLoc();
4949 
4950           if (MemberSpecializationInfo *MSInfo =
4951                   Var->getMemberSpecializationInfo()) {
4952             // If we don't already have a point of instantiation, this is it.
4953             if (MSInfo->getPointOfInstantiation().isInvalid()) {
4954               MSInfo->setPointOfInstantiation(PointOfInstantiation);
4955 
4956               // This is a modification of an existing AST node. Notify
4957               // listeners.
4958               if (ASTMutationListener *L = getASTMutationListener())
4959                 L->StaticDataMemberInstantiated(Var);
4960             }
4961           } else {
4962             VarTemplateSpecializationDecl *VarSpec =
4963                 cast<VarTemplateSpecializationDecl>(Var);
4964             if (VarSpec->getPointOfInstantiation().isInvalid())
4965               VarSpec->setPointOfInstantiation(PointOfInstantiation);
4966           }
4967 
4968           InstantiateVariableDefinition(PointOfInstantiation, Var);
4969 
4970           // Update the type to the newly instantiated definition's type both
4971           // here and within the expression.
4972           if (VarDecl *Def = Var->getDefinition()) {
4973             DRE->setDecl(Def);
4974             T = Def->getType();
4975             DRE->setType(T);
4976             E->setType(T);
4977           }
4978 
4979           // We still go on to try to complete the type independently, as it
4980           // may also require instantiations or diagnostics if it remains
4981           // incomplete.
4982         }
4983       }
4984     }
4985   }
4986 
4987   // FIXME: Are there other cases which require instantiating something other
4988   // than the type to complete the type of an expression?
4989 
4990   // Look through reference types and complete the referred type.
4991   if (const ReferenceType *Ref = T->getAs<ReferenceType>())
4992     T = Ref->getPointeeType();
4993 
4994   return RequireCompleteType(E->getExprLoc(), T, Diagnoser);
4995 }
4996 
4997 namespace {
4998   struct TypeDiagnoserDiag : Sema::TypeDiagnoser {
4999     unsigned DiagID;
5000 
5001     TypeDiagnoserDiag(unsigned DiagID)
5002       : Sema::TypeDiagnoser(DiagID == 0), DiagID(DiagID) {}
5003 
5004     virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
5005       if (Suppressed) return;
5006       S.Diag(Loc, DiagID) << T;
5007     }
5008   };
5009 }
5010 
5011 bool Sema::RequireCompleteExprType(Expr *E, unsigned DiagID) {
5012   TypeDiagnoserDiag Diagnoser(DiagID);
5013   return RequireCompleteExprType(E, Diagnoser);
5014 }
5015 
5016 /// @brief Ensure that the type T is a complete type.
5017 ///
5018 /// This routine checks whether the type @p T is complete in any
5019 /// context where a complete type is required. If @p T is a complete
5020 /// type, returns false. If @p T is a class template specialization,
5021 /// this routine then attempts to perform class template
5022 /// instantiation. If instantiation fails, or if @p T is incomplete
5023 /// and cannot be completed, issues the diagnostic @p diag (giving it
5024 /// the type @p T) and returns true.
5025 ///
5026 /// @param Loc  The location in the source that the incomplete type
5027 /// diagnostic should refer to.
5028 ///
5029 /// @param T  The type that this routine is examining for completeness.
5030 ///
5031 /// @returns @c true if @p T is incomplete and a diagnostic was emitted,
5032 /// @c false otherwise.
5033 bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
5034                                TypeDiagnoser &Diagnoser) {
5035   if (RequireCompleteTypeImpl(Loc, T, Diagnoser))
5036     return true;
5037   if (const TagType *Tag = T->getAs<TagType>()) {
5038     if (!Tag->getDecl()->isCompleteDefinitionRequired()) {
5039       Tag->getDecl()->setCompleteDefinitionRequired();
5040       Consumer.HandleTagDeclRequiredDefinition(Tag->getDecl());
5041     }
5042   }
5043   return false;
5044 }
5045 
5046 /// \brief The implementation of RequireCompleteType
5047 bool Sema::RequireCompleteTypeImpl(SourceLocation Loc, QualType T,
5048                                    TypeDiagnoser &Diagnoser) {
5049   // FIXME: Add this assertion to make sure we always get instantiation points.
5050   //  assert(!Loc.isInvalid() && "Invalid location in RequireCompleteType");
5051   // FIXME: Add this assertion to help us flush out problems with
5052   // checking for dependent types and type-dependent expressions.
5053   //
5054   //  assert(!T->isDependentType() &&
5055   //         "Can't ask whether a dependent type is complete");
5056 
5057   // If we have a complete type, we're done.
5058   NamedDecl *Def = 0;
5059   if (!T->isIncompleteType(&Def)) {
5060     // If we know about the definition but it is not visible, complain.
5061     if (!Diagnoser.Suppressed && Def && !LookupResult::isVisible(*this, Def)) {
5062       // Suppress this error outside of a SFINAE context if we've already
5063       // emitted the error once for this type. There's no usefulness in
5064       // repeating the diagnostic.
5065       // FIXME: Add a Fix-It that imports the corresponding module or includes
5066       // the header.
5067       Module *Owner = Def->getOwningModule();
5068       Diag(Loc, diag::err_module_private_definition)
5069         << T << Owner->getFullModuleName();
5070       Diag(Def->getLocation(), diag::note_previous_definition);
5071 
5072       if (!isSFINAEContext()) {
5073         // Recover by implicitly importing this module.
5074         createImplicitModuleImport(Loc, Owner);
5075       }
5076     }
5077 
5078     // We lock in the inheritance model once somebody has asked us to ensure
5079     // that a pointer-to-member type is complete.
5080     if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
5081       if (const MemberPointerType *MPTy = T->getAs<MemberPointerType>()) {
5082         if (!MPTy->getClass()->isDependentType()) {
5083           RequireCompleteType(Loc, QualType(MPTy->getClass(), 0), 0);
5084 
5085           CXXRecordDecl *RD = MPTy->getMostRecentCXXRecordDecl();
5086           if (!RD->hasAttr<MSInheritanceAttr>()) {
5087             MSInheritanceAttr::Spelling InheritanceModel;
5088 
5089             switch (MSPointerToMemberRepresentationMethod) {
5090             case LangOptions::PPTMK_BestCase:
5091               InheritanceModel = RD->calculateInheritanceModel();
5092               break;
5093             case LangOptions::PPTMK_FullGeneralitySingleInheritance:
5094               InheritanceModel = MSInheritanceAttr::Keyword_single_inheritance;
5095               break;
5096             case LangOptions::PPTMK_FullGeneralityMultipleInheritance:
5097               InheritanceModel =
5098                   MSInheritanceAttr::Keyword_multiple_inheritance;
5099               break;
5100             case LangOptions::PPTMK_FullGeneralityVirtualInheritance:
5101               InheritanceModel =
5102                   MSInheritanceAttr::Keyword_unspecified_inheritance;
5103               break;
5104             }
5105 
5106             RD->addAttr(MSInheritanceAttr::CreateImplicit(
5107                 getASTContext(), InheritanceModel,
5108                 /*BestCase=*/MSPointerToMemberRepresentationMethod ==
5109                     LangOptions::PPTMK_BestCase,
5110                 ImplicitMSInheritanceAttrLoc.isValid()
5111                     ? ImplicitMSInheritanceAttrLoc
5112                     : RD->getSourceRange()));
5113           }
5114         }
5115       }
5116     }
5117 
5118     return false;
5119   }
5120 
5121   // FIXME: If there's an unimported definition of this type in a module (for
5122   // instance, because we forward declared it, then imported the definition),
5123   // import that definition now.
5124   // FIXME: What about other cases where an import extends a redeclaration
5125   // chain for a declaration that can be accessed through a mechanism other
5126   // than name lookup (eg, referenced in a template, or a variable whose type
5127   // could be completed by the module)?
5128 
5129   const TagType *Tag = T->getAs<TagType>();
5130   const ObjCInterfaceType *IFace = 0;
5131 
5132   if (Tag) {
5133     // Avoid diagnosing invalid decls as incomplete.
5134     if (Tag->getDecl()->isInvalidDecl())
5135       return true;
5136 
5137     // Give the external AST source a chance to complete the type.
5138     if (Tag->getDecl()->hasExternalLexicalStorage()) {
5139       Context.getExternalSource()->CompleteType(Tag->getDecl());
5140       if (!Tag->isIncompleteType())
5141         return false;
5142     }
5143   }
5144   else if ((IFace = T->getAs<ObjCInterfaceType>())) {
5145     // Avoid diagnosing invalid decls as incomplete.
5146     if (IFace->getDecl()->isInvalidDecl())
5147       return true;
5148 
5149     // Give the external AST source a chance to complete the type.
5150     if (IFace->getDecl()->hasExternalLexicalStorage()) {
5151       Context.getExternalSource()->CompleteType(IFace->getDecl());
5152       if (!IFace->isIncompleteType())
5153         return false;
5154     }
5155   }
5156 
5157   // If we have a class template specialization or a class member of a
5158   // class template specialization, or an array with known size of such,
5159   // try to instantiate it.
5160   QualType MaybeTemplate = T;
5161   while (const ConstantArrayType *Array
5162            = Context.getAsConstantArrayType(MaybeTemplate))
5163     MaybeTemplate = Array->getElementType();
5164   if (const RecordType *Record = MaybeTemplate->getAs<RecordType>()) {
5165     if (ClassTemplateSpecializationDecl *ClassTemplateSpec
5166           = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
5167       if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared)
5168         return InstantiateClassTemplateSpecialization(Loc, ClassTemplateSpec,
5169                                                       TSK_ImplicitInstantiation,
5170                                             /*Complain=*/!Diagnoser.Suppressed);
5171     } else if (CXXRecordDecl *Rec
5172                  = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
5173       CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass();
5174       if (!Rec->isBeingDefined() && Pattern) {
5175         MemberSpecializationInfo *MSI = Rec->getMemberSpecializationInfo();
5176         assert(MSI && "Missing member specialization information?");
5177         // This record was instantiated from a class within a template.
5178         if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
5179           return InstantiateClass(Loc, Rec, Pattern,
5180                                   getTemplateInstantiationArgs(Rec),
5181                                   TSK_ImplicitInstantiation,
5182                                   /*Complain=*/!Diagnoser.Suppressed);
5183       }
5184     }
5185   }
5186 
5187   if (Diagnoser.Suppressed)
5188     return true;
5189 
5190   // We have an incomplete type. Produce a diagnostic.
5191   if (Ident___float128 &&
5192       T == Context.getTypeDeclType(Context.getFloat128StubType())) {
5193     Diag(Loc, diag::err_typecheck_decl_incomplete_type___float128);
5194     return true;
5195   }
5196 
5197   Diagnoser.diagnose(*this, Loc, T);
5198 
5199   // If the type was a forward declaration of a class/struct/union
5200   // type, produce a note.
5201   if (Tag && !Tag->getDecl()->isInvalidDecl())
5202     Diag(Tag->getDecl()->getLocation(),
5203          Tag->isBeingDefined() ? diag::note_type_being_defined
5204                                : diag::note_forward_declaration)
5205       << QualType(Tag, 0);
5206 
5207   // If the Objective-C class was a forward declaration, produce a note.
5208   if (IFace && !IFace->getDecl()->isInvalidDecl())
5209     Diag(IFace->getDecl()->getLocation(), diag::note_forward_class);
5210 
5211   // If we have external information that we can use to suggest a fix,
5212   // produce a note.
5213   if (ExternalSource)
5214     ExternalSource->MaybeDiagnoseMissingCompleteType(Loc, T);
5215 
5216   return true;
5217 }
5218 
5219 bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
5220                                unsigned DiagID) {
5221   TypeDiagnoserDiag Diagnoser(DiagID);
5222   return RequireCompleteType(Loc, T, Diagnoser);
5223 }
5224 
5225 /// \brief Get diagnostic %select index for tag kind for
5226 /// literal type diagnostic message.
5227 /// WARNING: Indexes apply to particular diagnostics only!
5228 ///
5229 /// \returns diagnostic %select index.
5230 static unsigned getLiteralDiagFromTagKind(TagTypeKind Tag) {
5231   switch (Tag) {
5232   case TTK_Struct: return 0;
5233   case TTK_Interface: return 1;
5234   case TTK_Class:  return 2;
5235   default: llvm_unreachable("Invalid tag kind for literal type diagnostic!");
5236   }
5237 }
5238 
5239 /// @brief Ensure that the type T is a literal type.
5240 ///
5241 /// This routine checks whether the type @p T is a literal type. If @p T is an
5242 /// incomplete type, an attempt is made to complete it. If @p T is a literal
5243 /// type, or @p AllowIncompleteType is true and @p T is an incomplete type,
5244 /// returns false. Otherwise, this routine issues the diagnostic @p PD (giving
5245 /// it the type @p T), along with notes explaining why the type is not a
5246 /// literal type, and returns true.
5247 ///
5248 /// @param Loc  The location in the source that the non-literal type
5249 /// diagnostic should refer to.
5250 ///
5251 /// @param T  The type that this routine is examining for literalness.
5252 ///
5253 /// @param Diagnoser Emits a diagnostic if T is not a literal type.
5254 ///
5255 /// @returns @c true if @p T is not a literal type and a diagnostic was emitted,
5256 /// @c false otherwise.
5257 bool Sema::RequireLiteralType(SourceLocation Loc, QualType T,
5258                               TypeDiagnoser &Diagnoser) {
5259   assert(!T->isDependentType() && "type should not be dependent");
5260 
5261   QualType ElemType = Context.getBaseElementType(T);
5262   RequireCompleteType(Loc, ElemType, 0);
5263 
5264   if (T->isLiteralType(Context))
5265     return false;
5266 
5267   if (Diagnoser.Suppressed)
5268     return true;
5269 
5270   Diagnoser.diagnose(*this, Loc, T);
5271 
5272   if (T->isVariableArrayType())
5273     return true;
5274 
5275   const RecordType *RT = ElemType->getAs<RecordType>();
5276   if (!RT)
5277     return true;
5278 
5279   const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
5280 
5281   // A partially-defined class type can't be a literal type, because a literal
5282   // class type must have a trivial destructor (which can't be checked until
5283   // the class definition is complete).
5284   if (!RD->isCompleteDefinition()) {
5285     RequireCompleteType(Loc, ElemType, diag::note_non_literal_incomplete, T);
5286     return true;
5287   }
5288 
5289   // If the class has virtual base classes, then it's not an aggregate, and
5290   // cannot have any constexpr constructors or a trivial default constructor,
5291   // so is non-literal. This is better to diagnose than the resulting absence
5292   // of constexpr constructors.
5293   if (RD->getNumVBases()) {
5294     Diag(RD->getLocation(), diag::note_non_literal_virtual_base)
5295       << getLiteralDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
5296     for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
5297            E = RD->vbases_end(); I != E; ++I)
5298       Diag(I->getLocStart(),
5299            diag::note_constexpr_virtual_base_here) << I->getSourceRange();
5300   } else if (!RD->isAggregate() && !RD->hasConstexprNonCopyMoveConstructor() &&
5301              !RD->hasTrivialDefaultConstructor()) {
5302     Diag(RD->getLocation(), diag::note_non_literal_no_constexpr_ctors) << RD;
5303   } else if (RD->hasNonLiteralTypeFieldsOrBases()) {
5304     for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
5305          E = RD->bases_end(); I != E; ++I) {
5306       if (!I->getType()->isLiteralType(Context)) {
5307         Diag(I->getLocStart(),
5308              diag::note_non_literal_base_class)
5309           << RD << I->getType() << I->getSourceRange();
5310         return true;
5311       }
5312     }
5313     for (CXXRecordDecl::field_iterator I = RD->field_begin(),
5314          E = RD->field_end(); I != E; ++I) {
5315       if (!I->getType()->isLiteralType(Context) ||
5316           I->getType().isVolatileQualified()) {
5317         Diag(I->getLocation(), diag::note_non_literal_field)
5318           << RD << *I << I->getType()
5319           << I->getType().isVolatileQualified();
5320         return true;
5321       }
5322     }
5323   } else if (!RD->hasTrivialDestructor()) {
5324     // All fields and bases are of literal types, so have trivial destructors.
5325     // If this class's destructor is non-trivial it must be user-declared.
5326     CXXDestructorDecl *Dtor = RD->getDestructor();
5327     assert(Dtor && "class has literal fields and bases but no dtor?");
5328     if (!Dtor)
5329       return true;
5330 
5331     Diag(Dtor->getLocation(), Dtor->isUserProvided() ?
5332          diag::note_non_literal_user_provided_dtor :
5333          diag::note_non_literal_nontrivial_dtor) << RD;
5334     if (!Dtor->isUserProvided())
5335       SpecialMemberIsTrivial(Dtor, CXXDestructor, /*Diagnose*/true);
5336   }
5337 
5338   return true;
5339 }
5340 
5341 bool Sema::RequireLiteralType(SourceLocation Loc, QualType T, unsigned DiagID) {
5342   TypeDiagnoserDiag Diagnoser(DiagID);
5343   return RequireLiteralType(Loc, T, Diagnoser);
5344 }
5345 
5346 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
5347 /// and qualified by the nested-name-specifier contained in SS.
5348 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword,
5349                                  const CXXScopeSpec &SS, QualType T) {
5350   if (T.isNull())
5351     return T;
5352   NestedNameSpecifier *NNS;
5353   if (SS.isValid())
5354     NNS = SS.getScopeRep();
5355   else {
5356     if (Keyword == ETK_None)
5357       return T;
5358     NNS = 0;
5359   }
5360   return Context.getElaboratedType(Keyword, NNS, T);
5361 }
5362 
5363 QualType Sema::BuildTypeofExprType(Expr *E, SourceLocation Loc) {
5364   ExprResult ER = CheckPlaceholderExpr(E);
5365   if (ER.isInvalid()) return QualType();
5366   E = ER.take();
5367 
5368   if (!E->isTypeDependent()) {
5369     QualType T = E->getType();
5370     if (const TagType *TT = T->getAs<TagType>())
5371       DiagnoseUseOfDecl(TT->getDecl(), E->getExprLoc());
5372   }
5373   return Context.getTypeOfExprType(E);
5374 }
5375 
5376 /// getDecltypeForExpr - Given an expr, will return the decltype for
5377 /// that expression, according to the rules in C++11
5378 /// [dcl.type.simple]p4 and C++11 [expr.lambda.prim]p18.
5379 static QualType getDecltypeForExpr(Sema &S, Expr *E) {
5380   if (E->isTypeDependent())
5381     return S.Context.DependentTy;
5382 
5383   // C++11 [dcl.type.simple]p4:
5384   //   The type denoted by decltype(e) is defined as follows:
5385   //
5386   //     - if e is an unparenthesized id-expression or an unparenthesized class
5387   //       member access (5.2.5), decltype(e) is the type of the entity named
5388   //       by e. If there is no such entity, or if e names a set of overloaded
5389   //       functions, the program is ill-formed;
5390   //
5391   // We apply the same rules for Objective-C ivar and property references.
5392   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
5393     if (const ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl()))
5394       return VD->getType();
5395   } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
5396     if (const FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
5397       return FD->getType();
5398   } else if (const ObjCIvarRefExpr *IR = dyn_cast<ObjCIvarRefExpr>(E)) {
5399     return IR->getDecl()->getType();
5400   } else if (const ObjCPropertyRefExpr *PR = dyn_cast<ObjCPropertyRefExpr>(E)) {
5401     if (PR->isExplicitProperty())
5402       return PR->getExplicitProperty()->getType();
5403   }
5404 
5405   // C++11 [expr.lambda.prim]p18:
5406   //   Every occurrence of decltype((x)) where x is a possibly
5407   //   parenthesized id-expression that names an entity of automatic
5408   //   storage duration is treated as if x were transformed into an
5409   //   access to a corresponding data member of the closure type that
5410   //   would have been declared if x were an odr-use of the denoted
5411   //   entity.
5412   using namespace sema;
5413   if (S.getCurLambda()) {
5414     if (isa<ParenExpr>(E)) {
5415       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
5416         if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
5417           QualType T = S.getCapturedDeclRefType(Var, DRE->getLocation());
5418           if (!T.isNull())
5419             return S.Context.getLValueReferenceType(T);
5420         }
5421       }
5422     }
5423   }
5424 
5425 
5426   // C++11 [dcl.type.simple]p4:
5427   //   [...]
5428   QualType T = E->getType();
5429   switch (E->getValueKind()) {
5430   //     - otherwise, if e is an xvalue, decltype(e) is T&&, where T is the
5431   //       type of e;
5432   case VK_XValue: T = S.Context.getRValueReferenceType(T); break;
5433   //     - otherwise, if e is an lvalue, decltype(e) is T&, where T is the
5434   //       type of e;
5435   case VK_LValue: T = S.Context.getLValueReferenceType(T); break;
5436   //  - otherwise, decltype(e) is the type of e.
5437   case VK_RValue: break;
5438   }
5439 
5440   return T;
5441 }
5442 
5443 QualType Sema::BuildDecltypeType(Expr *E, SourceLocation Loc) {
5444   ExprResult ER = CheckPlaceholderExpr(E);
5445   if (ER.isInvalid()) return QualType();
5446   E = ER.take();
5447 
5448   return Context.getDecltypeType(E, getDecltypeForExpr(*this, E));
5449 }
5450 
5451 QualType Sema::BuildUnaryTransformType(QualType BaseType,
5452                                        UnaryTransformType::UTTKind UKind,
5453                                        SourceLocation Loc) {
5454   switch (UKind) {
5455   case UnaryTransformType::EnumUnderlyingType:
5456     if (!BaseType->isDependentType() && !BaseType->isEnumeralType()) {
5457       Diag(Loc, diag::err_only_enums_have_underlying_types);
5458       return QualType();
5459     } else {
5460       QualType Underlying = BaseType;
5461       if (!BaseType->isDependentType()) {
5462         EnumDecl *ED = BaseType->getAs<EnumType>()->getDecl();
5463         assert(ED && "EnumType has no EnumDecl");
5464         DiagnoseUseOfDecl(ED, Loc);
5465         Underlying = ED->getIntegerType();
5466       }
5467       assert(!Underlying.isNull());
5468       return Context.getUnaryTransformType(BaseType, Underlying,
5469                                         UnaryTransformType::EnumUnderlyingType);
5470     }
5471   }
5472   llvm_unreachable("unknown unary transform type");
5473 }
5474 
5475 QualType Sema::BuildAtomicType(QualType T, SourceLocation Loc) {
5476   if (!T->isDependentType()) {
5477     // FIXME: It isn't entirely clear whether incomplete atomic types
5478     // are allowed or not; for simplicity, ban them for the moment.
5479     if (RequireCompleteType(Loc, T, diag::err_atomic_specifier_bad_type, 0))
5480       return QualType();
5481 
5482     int DisallowedKind = -1;
5483     if (T->isArrayType())
5484       DisallowedKind = 1;
5485     else if (T->isFunctionType())
5486       DisallowedKind = 2;
5487     else if (T->isReferenceType())
5488       DisallowedKind = 3;
5489     else if (T->isAtomicType())
5490       DisallowedKind = 4;
5491     else if (T.hasQualifiers())
5492       DisallowedKind = 5;
5493     else if (!T.isTriviallyCopyableType(Context))
5494       // Some other non-trivially-copyable type (probably a C++ class)
5495       DisallowedKind = 6;
5496 
5497     if (DisallowedKind != -1) {
5498       Diag(Loc, diag::err_atomic_specifier_bad_type) << DisallowedKind << T;
5499       return QualType();
5500     }
5501 
5502     // FIXME: Do we need any handling for ARC here?
5503   }
5504 
5505   // Build the pointer type.
5506   return Context.getAtomicType(T);
5507 }
5508