SemaType.cpp revision 98a5403ecf1d2b60ae8cbf43e54194bd762cacaa
15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
25f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
35f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//                     The LLVM Compiler Infrastructure
45f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
75f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
85f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
95f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//  This file implements type-related semantic analysis.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
142d88708cbe4e4ec5e04e4acb6bd7f5be68557379John McCall#include "clang/Sema/SemaInternal.h"
157cd088e519d7e6caa4c4c12db52e0e4ae35d25c2John McCall#include "clang/Sema/Template.h"
16207f4d8543529221932af82836016a2ef066c917Peter Collingbourne#include "clang/Basic/OpenCL.h"
175f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include "clang/AST/ASTContext.h"
1836f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor#include "clang/AST/ASTMutationListener.h"
19a8f32e0965ee19ecc53cd796e34268377a20357cDouglas Gregor#include "clang/AST/CXXInheritance.h"
20980e508ca70d6de75d2abfd96b4681fc98bb2698Steve Naroff#include "clang/AST/DeclObjC.h"
212943aed177b33ae3f14273b11a7b398e5276ec62Douglas Gregor#include "clang/AST/DeclTemplate.h"
224adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis#include "clang/AST/TypeLoc.h"
2351bd803fbdade51d674598ed45da3d54190a656cJohn McCall#include "clang/AST/TypeLocVisitor.h"
24e91593ef084479340582b2ba177b44be50a717b7Daniel Dunbar#include "clang/AST/Expr.h"
2591a0cc913ecc5619b76d2e40742fd09725be8c56Anders Carlsson#include "clang/Basic/PartialDiagnostic.h"
26d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis#include "clang/Basic/TargetInfo.h"
272792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall#include "clang/Lex/Preprocessor.h"
2819510856727e0e14a3696b2a72c35163bff2a71fJohn McCall#include "clang/Sema/DeclSpec.h"
29f85e193739c953358c865005855253af4f68a497John McCall#include "clang/Sema/DelayedDiagnostic.h"
304994d2d50ceacdc8908f750c55589c0a20942a0aSebastian Redl#include "llvm/ADT/SmallPtrSet.h"
3187c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor#include "llvm/Support/ErrorHandling.h"
325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerusing namespace clang;
335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
345db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner/// isOmittedBlockReturnType - Return true if this declarator is missing a
355db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner/// return type because this is a omitted return type on a block literal.
368ce35b095e8fca45e04c1bda14ed0548ce7536adSebastian Redlstatic bool isOmittedBlockReturnType(const Declarator &D) {
375db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  if (D.getContext() != Declarator::BlockLiteralContext ||
388ce35b095e8fca45e04c1bda14ed0548ce7536adSebastian Redl      D.getDeclSpec().hasTypeSpecifier())
395db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner    return false;
405db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
415db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  if (D.getNumTypeObjects() == 0)
42a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner    return true;   // ^{ ... }
435db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
445db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  if (D.getNumTypeObjects() == 1 &&
455db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner      D.getTypeObject(0).Kind == DeclaratorChunk::Function)
46a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner    return true;   // ^(int X, float Y) { ... }
475db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
485db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  return false;
495db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner}
505db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
512792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall/// diagnoseBadTypeAttribute - Diagnoses a type attribute which
522792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall/// doesn't apply to the given type.
532792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCallstatic void diagnoseBadTypeAttribute(Sema &S, const AttributeList &attr,
542792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall                                     QualType type) {
552792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  bool useInstantiationLoc = false;
562792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
572792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  unsigned diagID = 0;
582792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  switch (attr.getKind()) {
592792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  case AttributeList::AT_objc_gc:
602792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    diagID = diag::warn_pointer_attribute_wrong_type;
612792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    useInstantiationLoc = true;
622792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    break;
632792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
6405d4876a64865e34366b58fc8a6848c3cde895d9Argyrios Kyrtzidis  case AttributeList::AT_objc_ownership:
6505d4876a64865e34366b58fc8a6848c3cde895d9Argyrios Kyrtzidis    diagID = diag::warn_objc_object_attribute_wrong_type;
6605d4876a64865e34366b58fc8a6848c3cde895d9Argyrios Kyrtzidis    useInstantiationLoc = true;
6705d4876a64865e34366b58fc8a6848c3cde895d9Argyrios Kyrtzidis    break;
6805d4876a64865e34366b58fc8a6848c3cde895d9Argyrios Kyrtzidis
692792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  default:
702792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    // Assume everything else was a function attribute.
712792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    diagID = diag::warn_function_attribute_wrong_type;
722792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    break;
732792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  }
742792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
752792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  SourceLocation loc = attr.getLoc();
762792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  llvm::StringRef name = attr.getName()->getName();
772792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
782792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  // The GC attributes are usually written with macros;  special-case them.
792792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  if (useInstantiationLoc && loc.isMacroID() && attr.getParameterName()) {
80834e3f6c77d9ac03997a3f0c56934edcf406a355John McCall    if (attr.getParameterName()->isStr("strong")) {
81834e3f6c77d9ac03997a3f0c56934edcf406a355John McCall      if (S.findMacroSpelling(loc, "__strong")) name = "__strong";
82834e3f6c77d9ac03997a3f0c56934edcf406a355John McCall    } else if (attr.getParameterName()->isStr("weak")) {
83834e3f6c77d9ac03997a3f0c56934edcf406a355John McCall      if (S.findMacroSpelling(loc, "__weak")) name = "__weak";
842792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall    }
852792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  }
862792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
872792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  S.Diag(loc, diagID) << name << type;
882792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall}
892792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
90711c52bb20d0c69063b52a99826fb7d2835501f1John McCall// objc_gc applies to Objective-C pointers or, otherwise, to the
91711c52bb20d0c69063b52a99826fb7d2835501f1John McCall// smallest available pointer type (i.e. 'void*' in 'void**').
92711c52bb20d0c69063b52a99826fb7d2835501f1John McCall#define OBJC_POINTER_TYPE_ATTRS_CASELIST \
93f85e193739c953358c865005855253af4f68a497John McCall    case AttributeList::AT_objc_gc: \
94b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis    case AttributeList::AT_objc_ownership
95711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
96711c52bb20d0c69063b52a99826fb7d2835501f1John McCall// Function type attributes.
97711c52bb20d0c69063b52a99826fb7d2835501f1John McCall#define FUNCTION_TYPE_ATTRS_CASELIST \
98711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_noreturn: \
99711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_cdecl: \
100711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_fastcall: \
101711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_stdcall: \
102711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_thiscall: \
103711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case AttributeList::AT_pascal: \
104414d8967e1d760ea1e19a4aca96b13777a8cf8c5Anton Korobeynikov    case AttributeList::AT_regparm: \
105414d8967e1d760ea1e19a4aca96b13777a8cf8c5Anton Korobeynikov    case AttributeList::AT_pcs \
106711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
107711c52bb20d0c69063b52a99826fb7d2835501f1John McCallnamespace {
108711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  /// An object which stores processing state for the entire
109711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  /// GetTypeForDeclarator process.
110711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  class TypeProcessingState {
111711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Sema &sema;
112711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
113711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// The declarator being processed.
114711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Declarator &declarator;
115711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
116711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// The index of the declarator chunk we're currently processing.
117711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// May be the total number of valid chunks, indicating the
118711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// DeclSpec.
119711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    unsigned chunkIndex;
120711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
121711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// Whether there are non-trivial modifications to the decl spec.
122711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    bool trivial;
123711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
1247ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall    /// Whether we saved the attributes in the decl spec.
1257ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall    bool hasSavedAttrs;
1267ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall
127711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// The original set of attributes on the DeclSpec.
128711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    llvm::SmallVector<AttributeList*, 2> savedAttrs;
129711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
130711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// A list of attributes to diagnose the uselessness of when the
131711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// processing is complete.
132711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    llvm::SmallVector<AttributeList*, 2> ignoredTypeAttrs;
133711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
134711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  public:
135711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    TypeProcessingState(Sema &sema, Declarator &declarator)
136711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      : sema(sema), declarator(declarator),
137711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        chunkIndex(declarator.getNumTypeObjects()),
1387ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall        trivial(true), hasSavedAttrs(false) {}
139711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
140711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Sema &getSema() const {
141711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return sema;
142711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
143711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
144711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Declarator &getDeclarator() const {
145711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return declarator;
146711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
147711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
148711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    unsigned getCurrentChunkIndex() const {
149711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return chunkIndex;
150711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
151711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
152711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    void setCurrentChunkIndex(unsigned idx) {
153711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      assert(idx <= declarator.getNumTypeObjects());
154711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      chunkIndex = idx;
155711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
156711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
157711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    AttributeList *&getCurrentAttrListRef() const {
158711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      assert(chunkIndex <= declarator.getNumTypeObjects());
159711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      if (chunkIndex == declarator.getNumTypeObjects())
160711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        return getMutableDeclSpec().getAttributes().getListRef();
161711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return declarator.getTypeObject(chunkIndex).getAttrListRef();
162711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
163711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
164711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// Save the current set of attributes on the DeclSpec.
165711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    void saveDeclSpecAttrs() {
166711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      // Don't try to save them multiple times.
1677ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      if (hasSavedAttrs) return;
168711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
169711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      DeclSpec &spec = getMutableDeclSpec();
170711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      for (AttributeList *attr = spec.getAttributes().getList(); attr;
171711c52bb20d0c69063b52a99826fb7d2835501f1John McCall             attr = attr->getNext())
172711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        savedAttrs.push_back(attr);
173711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      trivial &= savedAttrs.empty();
1747ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      hasSavedAttrs = true;
175711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
176711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
177711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// Record that we had nowhere to put the given type attribute.
178711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// We will diagnose such attributes later.
179711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    void addIgnoredTypeAttr(AttributeList &attr) {
180711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      ignoredTypeAttrs.push_back(&attr);
181711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
182711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
183711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// Diagnose all the ignored type attributes, given that the
184711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// declarator worked out to the given type.
185711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    void diagnoseIgnoredTypeAttrs(QualType type) const {
186711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      for (llvm::SmallVectorImpl<AttributeList*>::const_iterator
187711c52bb20d0c69063b52a99826fb7d2835501f1John McCall             i = ignoredTypeAttrs.begin(), e = ignoredTypeAttrs.end();
1882792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall           i != e; ++i)
1892792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall        diagnoseBadTypeAttribute(getSema(), **i, type);
190711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
191711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
192711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    ~TypeProcessingState() {
193711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      if (trivial) return;
194711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
195711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      restoreDeclSpecAttrs();
196711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
197711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
198711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  private:
199711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclSpec &getMutableDeclSpec() const {
200711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return const_cast<DeclSpec&>(declarator.getDeclSpec());
201711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
202711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
203711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    void restoreDeclSpecAttrs() {
2047ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      assert(hasSavedAttrs);
2057ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall
2067ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      if (savedAttrs.empty()) {
2077ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall        getMutableDeclSpec().getAttributes().set(0);
2087ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall        return;
2097ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      }
2107ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall
211711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      getMutableDeclSpec().getAttributes().set(savedAttrs[0]);
212711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      for (unsigned i = 0, e = savedAttrs.size() - 1; i != e; ++i)
213711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        savedAttrs[i]->setNext(savedAttrs[i+1]);
214711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      savedAttrs.back()->setNext(0);
215711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
216711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  };
217711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
218711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  /// Basically std::pair except that we really want to avoid an
219711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  /// implicit operator= for safety concerns.  It's also a minor
220711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  /// link-time optimization for this to be a private type.
221711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  struct AttrAndList {
222711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// The attribute.
223711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    AttributeList &first;
224711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
225711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    /// The head of the list the attribute is currently in.
226711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    AttributeList *&second;
227711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
228711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    AttrAndList(AttributeList &attr, AttributeList *&head)
229711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      : first(attr), second(head) {}
230711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  };
23104a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall}
23204a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
233711c52bb20d0c69063b52a99826fb7d2835501f1John McCallnamespace llvm {
234711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  template <> struct isPodLike<AttrAndList> {
235711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    static const bool value = true;
236711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  };
237711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
238711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
239711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void spliceAttrIntoList(AttributeList &attr, AttributeList *&head) {
240711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  attr.setNext(head);
241711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  head = &attr;
242711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
243711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
244711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void spliceAttrOutOfList(AttributeList &attr, AttributeList *&head) {
245711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (head == &attr) {
246711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    head = attr.getNext();
247711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
24804a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  }
249711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
250711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  AttributeList *cur = head;
251711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  while (true) {
252711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    assert(cur && cur->getNext() && "ran out of attrs?");
253711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (cur->getNext() == &attr) {
254711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      cur->setNext(attr.getNext());
255711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return;
256711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
257711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    cur = cur->getNext();
258711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
259711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
260711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
261711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void moveAttrFromListToList(AttributeList &attr,
262711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   AttributeList *&fromList,
263711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   AttributeList *&toList) {
264711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  spliceAttrOutOfList(attr, fromList);
265711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  spliceAttrIntoList(attr, toList);
266711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
267711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
268711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void processTypeAttrs(TypeProcessingState &state,
269711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             QualType &type, bool isDeclSpec,
270711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             AttributeList *attrs);
271711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
272711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool handleFunctionTypeAttr(TypeProcessingState &state,
273711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   AttributeList &attr,
274711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   QualType &type);
275711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
276711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool handleObjCGCTypeAttr(TypeProcessingState &state,
277711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                 AttributeList &attr, QualType &type);
278711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
279b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidisstatic bool handleObjCOwnershipTypeAttr(TypeProcessingState &state,
280f85e193739c953358c865005855253af4f68a497John McCall                                       AttributeList &attr, QualType &type);
281f85e193739c953358c865005855253af4f68a497John McCall
282711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool handleObjCPointerTypeAttr(TypeProcessingState &state,
283711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                      AttributeList &attr, QualType &type) {
284f85e193739c953358c865005855253af4f68a497John McCall  if (attr.getKind() == AttributeList::AT_objc_gc)
285f85e193739c953358c865005855253af4f68a497John McCall    return handleObjCGCTypeAttr(state, attr, type);
286b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis  assert(attr.getKind() == AttributeList::AT_objc_ownership);
287b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis  return handleObjCOwnershipTypeAttr(state, attr, type);
288711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
289711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
290711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// Given that an objc_gc attribute was written somewhere on a
291711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// declaration *other* than on the declarator itself (for which, use
292711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// distributeObjCPointerTypeAttrFromDeclarator), and given that it
293711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// didn't apply in whatever position it was written in, try to move
294711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// it to a more appropriate position.
295711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void distributeObjCPointerTypeAttr(TypeProcessingState &state,
296711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                          AttributeList &attr,
297711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                          QualType type) {
298711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
299711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  for (unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
300711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(i-1);
301711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    switch (chunk.Kind) {
302711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Pointer:
303711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::BlockPointer:
304711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
305711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             chunk.getAttrListRef());
306711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return;
307711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
308711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Paren:
309711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Array:
310711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      continue;
311711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
312711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    // Don't walk through these.
313711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Reference:
314711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Function:
315711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::MemberPointer:
316711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      goto error;
317711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
318711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
319711c52bb20d0c69063b52a99826fb7d2835501f1John McCall error:
3202792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall
3212792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  diagnoseBadTypeAttribute(state.getSema(), attr, type);
322711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
323711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
324711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// Distribute an objc_gc type attribute that was written on the
325711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// declarator.
326711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void
327711c52bb20d0c69063b52a99826fb7d2835501f1John McCalldistributeObjCPointerTypeAttrFromDeclarator(TypeProcessingState &state,
328711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            AttributeList &attr,
329711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            QualType &declSpecType) {
330711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
331711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
332711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // objc_gc goes on the innermost pointer to something that's not a
333711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // pointer.
334711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  unsigned innermost = -1U;
335711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  bool considerDeclSpec = true;
336711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
337711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(i);
338711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    switch (chunk.Kind) {
339711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Pointer:
340711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::BlockPointer:
341711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      innermost = i;
342ae278a3a57595349a411f6474938d4dd1b263a0eJohn McCall      continue;
343711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
344711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Reference:
345711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::MemberPointer:
346711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Paren:
347711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Array:
348711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      continue;
349711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
350711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Function:
351711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      considerDeclSpec = false;
352711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      goto done;
353711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
354711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
355711c52bb20d0c69063b52a99826fb7d2835501f1John McCall done:
356711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
357711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // That might actually be the decl spec if we weren't blocked by
358711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // anything in the declarator.
359711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (considerDeclSpec) {
3607ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall    if (handleObjCPointerTypeAttr(state, attr, declSpecType)) {
3617ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      // Splice the attribute into the decl spec.  Prevents the
3627ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      // attribute from being applied multiple times and gives
3637ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      // the source-location-filler something to work with.
3647ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      state.saveDeclSpecAttrs();
3657ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall      moveAttrFromListToList(attr, declarator.getAttrListRef(),
3667ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall               declarator.getMutableDeclSpec().getAttributes().getListRef());
367711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return;
3687ea21937de6f849a7f44f10549c3d69c5a8cb3f3John McCall    }
369711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
370711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
371711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Otherwise, if we found an appropriate chunk, splice the attribute
372711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // into it.
373711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (innermost != -1U) {
374711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    moveAttrFromListToList(attr, declarator.getAttrListRef(),
375711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                       declarator.getTypeObject(innermost).getAttrListRef());
376711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
377711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
378711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
379711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Otherwise, diagnose when we're done building the type.
380711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  spliceAttrOutOfList(attr, declarator.getAttrListRef());
381711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  state.addIgnoredTypeAttr(attr);
382711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
383711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
384711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// A function type attribute was written somewhere in a declaration
385711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// *other* than on the declarator itself or in the decl spec.  Given
386711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// that it didn't apply in whatever position it was written in, try
387711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// to move it to a more appropriate position.
388711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void distributeFunctionTypeAttr(TypeProcessingState &state,
389711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                       AttributeList &attr,
390711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                       QualType type) {
391711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
392711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
393711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Try to push the attribute from the return type of a function to
394711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // the function itself.
395711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  for (unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
396711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(i-1);
397711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    switch (chunk.Kind) {
398711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Function:
399711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      moveAttrFromListToList(attr, state.getCurrentAttrListRef(),
400711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             chunk.getAttrListRef());
401711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return;
402711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
403711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Paren:
404711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Pointer:
405711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::BlockPointer:
406711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Array:
407711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::Reference:
408711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    case DeclaratorChunk::MemberPointer:
409711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      continue;
410711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
411711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
412711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
4132792fa5115c5de7cbe11d99d23663c569bfb4caeJohn McCall  diagnoseBadTypeAttribute(state.getSema(), attr, type);
414711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
415711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
416711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// Try to distribute a function type attribute to the innermost
417711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// function chunk or type.  Returns true if the attribute was
418711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// distributed, false if no location was found.
419711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool
420711c52bb20d0c69063b52a99826fb7d2835501f1John McCalldistributeFunctionTypeAttrToInnermost(TypeProcessingState &state,
421711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                      AttributeList &attr,
422711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                      AttributeList *&attrList,
423711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                      QualType &declSpecType) {
424711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
425711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
426711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Put it on the innermost function chunk, if there is one.
427711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
428711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(i);
429711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (chunk.Kind != DeclaratorChunk::Function) continue;
430711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
431711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    moveAttrFromListToList(attr, attrList, chunk.getAttrListRef());
432711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
433711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
434711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
435f85e193739c953358c865005855253af4f68a497John McCall  if (handleFunctionTypeAttr(state, attr, declSpecType)) {
436f85e193739c953358c865005855253af4f68a497John McCall    spliceAttrOutOfList(attr, attrList);
437f85e193739c953358c865005855253af4f68a497John McCall    return true;
438f85e193739c953358c865005855253af4f68a497John McCall  }
439f85e193739c953358c865005855253af4f68a497John McCall
440f85e193739c953358c865005855253af4f68a497John McCall  return false;
441711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
442711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
443711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// A function type attribute was written in the decl spec.  Try to
444711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// apply it somewhere.
445711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void
446711c52bb20d0c69063b52a99826fb7d2835501f1John McCalldistributeFunctionTypeAttrFromDeclSpec(TypeProcessingState &state,
447711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                       AttributeList &attr,
448711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                       QualType &declSpecType) {
449711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  state.saveDeclSpecAttrs();
450711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
451711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Try to distribute to the innermost.
452711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (distributeFunctionTypeAttrToInnermost(state, attr,
453711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            state.getCurrentAttrListRef(),
454711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            declSpecType))
455711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
456711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
457711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // If that failed, diagnose the bad attribute when the declarator is
458711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // fully built.
459711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  state.addIgnoredTypeAttr(attr);
460711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
461711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
462711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// A function type attribute was written on the declarator.  Try to
463711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// apply it somewhere.
464711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void
465711c52bb20d0c69063b52a99826fb7d2835501f1John McCalldistributeFunctionTypeAttrFromDeclarator(TypeProcessingState &state,
466711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                         AttributeList &attr,
467711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                         QualType &declSpecType) {
468711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
469711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
470711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Try to distribute to the innermost.
471711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (distributeFunctionTypeAttrToInnermost(state, attr,
472711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            declarator.getAttrListRef(),
473711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                            declSpecType))
474711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
475711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
476711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // If that failed, diagnose the bad attribute when the declarator is
477711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // fully built.
478711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  spliceAttrOutOfList(attr, declarator.getAttrListRef());
479711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  state.addIgnoredTypeAttr(attr);
480711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
481711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
482711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// \brief Given that there are attributes written on the declarator
483711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// itself, try to distribute any type attributes to the appropriate
484711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// declarator chunk.
485711c52bb20d0c69063b52a99826fb7d2835501f1John McCall///
486711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// These are attributes like the following:
487711c52bb20d0c69063b52a99826fb7d2835501f1John McCall///   int f ATTR;
488711c52bb20d0c69063b52a99826fb7d2835501f1John McCall///   int (f ATTR)();
489711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// but not necessarily this:
490711c52bb20d0c69063b52a99826fb7d2835501f1John McCall///   int f() ATTR;
491711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void distributeTypeAttrsFromDeclarator(TypeProcessingState &state,
492711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                              QualType &declSpecType) {
493711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Collect all the type attributes from the declarator itself.
494711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  assert(state.getDeclarator().getAttributes() && "declarator has no attrs!");
495711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  AttributeList *attr = state.getDeclarator().getAttributes();
496711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  AttributeList *next;
497711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  do {
498711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    next = attr->getNext();
499711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
500711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    switch (attr->getKind()) {
501711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    OBJC_POINTER_TYPE_ATTRS_CASELIST:
502711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      distributeObjCPointerTypeAttrFromDeclarator(state, *attr, declSpecType);
503711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      break;
504711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
505f85e193739c953358c865005855253af4f68a497John McCall    case AttributeList::AT_ns_returns_retained:
506f85e193739c953358c865005855253af4f68a497John McCall      if (!state.getSema().getLangOptions().ObjCAutoRefCount)
507f85e193739c953358c865005855253af4f68a497John McCall        break;
508f85e193739c953358c865005855253af4f68a497John McCall      // fallthrough
509f85e193739c953358c865005855253af4f68a497John McCall
510711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    FUNCTION_TYPE_ATTRS_CASELIST:
511711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      distributeFunctionTypeAttrFromDeclarator(state, *attr, declSpecType);
512711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      break;
513711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
514711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    default:
515711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      break;
516711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    }
517711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  } while ((attr = next));
518711c52bb20d0c69063b52a99826fb7d2835501f1John McCall}
519711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
520711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// Add a synthetic '()' to a block-literal declarator if it is
521711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// required, given the return type.
522711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void maybeSynthesizeBlockSignature(TypeProcessingState &state,
523711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                          QualType declSpecType) {
524711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
525711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
526711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // First, check whether the declarator would produce a function,
527711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // i.e. whether the innermost semantic chunk is a function.
528711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (declarator.isFunctionDeclarator()) {
529711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    // If so, make that declarator a prototyped declarator.
530711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    declarator.getFunctionTypeInfo().hasPrototype = true;
531711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
532711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
533711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
534da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // If there are any type objects, the type as written won't name a
535da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // function, regardless of the decl spec type.  This is because a
536da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // block signature declarator is always an abstract-declarator, and
537da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // abstract-declarators can't just be parentheses chunks.  Therefore
538da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // we need to build a function chunk unless there are no type
539da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // objects and the decl spec type is a function.
540711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!declarator.getNumTypeObjects() && declSpecType->isFunctionType())
541711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return;
542711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
543da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // Note that there *are* cases with invalid declarators where
544da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // declarators consist solely of parentheses.  In general, these
545da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // occur only in failed efforts to make function declarators, so
546da263795abd39437d73d23fcf34dcd3afc1d7df3John McCall  // faking up the function chunk is still the right thing to do.
547711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
548711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Otherwise, we need to fake up a function declarator.
549711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  SourceLocation loc = declarator.getSourceRange().getBegin();
550711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
551711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // ...and *prepend* it to the declarator.
552711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  declarator.AddInnermostTypeInfo(DeclaratorChunk::getFunction(
553711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             /*proto*/ true,
554711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             /*variadic*/ false, SourceLocation(),
555711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             /*args*/ 0, 0,
556711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             /*type quals*/ 0,
55783f51722ed2b8134810cb178f39e44da811de7cdDouglas Gregor                             /*ref-qualifier*/true, SourceLocation(),
5586e5d319b671dbb0ecf70619834aa23c853d17621Sebastian Redl                             /*EH*/ EST_None, SourceLocation(), 0, 0, 0, 0,
559711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             /*parens*/ loc, loc,
560711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             declarator));
561711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
562711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // For consistency, make sure the state still has us as processing
563711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // the decl spec.
564711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  assert(state.getCurrentChunkIndex() == declarator.getNumTypeObjects() - 1);
565711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  state.setCurrentChunkIndex(declarator.getNumTypeObjects());
56604a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall}
56704a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
568930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor/// \brief Convert the specified declspec to the appropriate type
569930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor/// object.
5705db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner/// \param D  the declarator containing the declaration specifier.
5715153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner/// \returns The type described by the declaration specifiers.  This function
5725153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner/// never returns null.
5738cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidisstatic QualType ConvertDeclSpecToType(TypeProcessingState &state) {
5745f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // FIXME: Should move the logic from DeclSpec::Finish to here for validity
5755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // checking.
576711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
5778cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  Sema &S = state.getSema();
578711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Declarator &declarator = state.getDeclarator();
579711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  const DeclSpec &DS = declarator.getDeclSpec();
580711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  SourceLocation DeclLoc = declarator.getIdentifierLoc();
5815db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  if (DeclLoc.isInvalid())
5825db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner    DeclLoc = DS.getSourceRange().getBegin();
5831564e3906cad604a42bd131e584751a75589a9c4Chris Lattner
584711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  ASTContext &Context = S.Context;
5851eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5865db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner  QualType Result;
5875f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  switch (DS.getTypeSpecType()) {
58896b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner  case DeclSpec::TST_void:
58996b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    Result = Context.VoidTy;
59096b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    break;
5915f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_char:
5925f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
593fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      Result = Context.CharTy;
5945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
595fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      Result = Context.SignedCharTy;
5965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    else {
5975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
5985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer             "Unknown TSS value");
599fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      Result = Context.UnsignedCharTy;
6005f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
601958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
60264c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis  case DeclSpec::TST_wchar:
60364c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis    if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
60464c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis      Result = Context.WCharTy;
60564c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis    else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
606711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
607f3a41af4d5c98a72a1d6720bbbfd658e57ef2541Chris Lattner        << DS.getSpecifierName(DS.getTypeSpecType());
60864c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis      Result = Context.getSignedWCharType();
60964c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis    } else {
61064c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
61164c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis        "Unknown TSS value");
612711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
613f3a41af4d5c98a72a1d6720bbbfd658e57ef2541Chris Lattner        << DS.getSpecifierName(DS.getTypeSpecType());
61464c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis      Result = Context.getUnsignedWCharType();
61564c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis    }
61664c438a4be2a871fa43c78264663ba1e9788b94dArgyrios Kyrtzidis    break;
617f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case DeclSpec::TST_char16:
618f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
619f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith        "Unknown TSS value");
620f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith      Result = Context.Char16Ty;
621f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
622f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith  case DeclSpec::TST_char32:
623f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
624f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith        "Unknown TSS value");
625f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith      Result = Context.Char32Ty;
626f5c209d23b20ada4a9b6235db50317239cbf6ae1Alisdair Meredith    break;
627d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner  case DeclSpec::TST_unspecified:
62862f5f7ffad57e0c2af2b308af3735351505937cbChris Lattner    // "<proto1,proto2>" is an objc qualified ID with a missing id.
629097e916b617bb4a069a03764024c310ed42a6424Chris Lattner    if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
630c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
631c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                         (ObjCProtocolDecl**)PQ,
632c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                         DS.getNumProtocolQualifiers());
633c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      Result = Context.getObjCObjectPointerType(Result);
63462f5f7ffad57e0c2af2b308af3735351505937cbChris Lattner      break;
63562f5f7ffad57e0c2af2b308af3735351505937cbChris Lattner    }
6365db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
6375db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner    // If this is a missing declspec in a block literal return context, then it
6385db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner    // is inferred from the return statements inside the block.
639711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (isOmittedBlockReturnType(declarator)) {
6405db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner      Result = Context.DependentTy;
6415db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner      break;
6425db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner    }
6431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
644d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // Unspecified typespec defaults to int in C90.  However, the C90 grammar
645d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
646d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // type-qualifier, or storage-class-specifier.  If not, emit an extwarn.
647d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // Note that the one exception to this is function definitions, which are
648d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // allowed to be completely missing a declspec.  This is handled in the
649d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // parser already though by it pretending to have seen an 'int' in this
650d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    // case.
651711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (S.getLangOptions().ImplicitInt) {
65235d276f443462249b436951c1c663820569e1768Chris Lattner      // In C89 mode, we only warn if there is a completely missing declspec
65335d276f443462249b436951c1c663820569e1768Chris Lattner      // when one is not allowed.
6543f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner      if (DS.isEmpty()) {
655711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.Diag(DeclLoc, diag::ext_missing_declspec)
6563f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner          << DS.getSourceRange()
657849b243d4065f56742a4677d6dc8277609a151f8Douglas Gregor        << FixItHint::CreateInsertion(DS.getSourceRange().getBegin(), "int");
6583f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner      }
6594310f4ee260e6c7ceeaf299e240f4d789ecc730dDouglas Gregor    } else if (!DS.hasTypeSpecifier()) {
660d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner      // C99 and C++ require a type specifier.  For example, C99 6.7.2p2 says:
661d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner      // "At least one type specifier shall be given in the declaration
662d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner      // specifiers in each declaration, and in the specifier-qualifier list in
663d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner      // each struct declaration and type name."
6644310f4ee260e6c7ceeaf299e240f4d789ecc730dDouglas Gregor      // FIXME: Does Microsoft really have the implicit int extension in C++?
665711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      if (S.getLangOptions().CPlusPlus &&
666711c52bb20d0c69063b52a99826fb7d2835501f1John McCall          !S.getLangOptions().Microsoft) {
667711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.Diag(DeclLoc, diag::err_missing_type_specifier)
6683f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner          << DS.getSourceRange();
6691eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
670b78d833b12f7c4baab138f305f72efd49455a3f9Chris Lattner        // When this occurs in C++ code, often something is very broken with the
671b78d833b12f7c4baab138f305f72efd49455a3f9Chris Lattner        // value being declared, poison it as invalid so we don't get chains of
672b78d833b12f7c4baab138f305f72efd49455a3f9Chris Lattner        // errors.
673711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        declarator.setInvalidType(true);
674b78d833b12f7c4baab138f305f72efd49455a3f9Chris Lattner      } else {
675711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.Diag(DeclLoc, diag::ext_missing_type_specifier)
6763f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner          << DS.getSourceRange();
677b78d833b12f7c4baab138f305f72efd49455a3f9Chris Lattner      }
678d658b562e80d6ef7a1118e34ff12802c6e2fccedChris Lattner    }
6791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    // FALL THROUGH.
6813cbc38bd3569d37f53bd76fa89d24803f48f5036Chris Lattner  case DeclSpec::TST_int: {
6825f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
6835f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      switch (DS.getTypeSpecWidth()) {
684fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
685fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_short:       Result = Context.ShortTy; break;
686fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_long:        Result = Context.LongTy; break;
687311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner      case DeclSpec::TSW_longlong:
688311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        Result = Context.LongLongTy;
689311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner
690311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        // long long is a C99 feature.
691711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        if (!S.getLangOptions().C99 &&
692711c52bb20d0c69063b52a99826fb7d2835501f1John McCall            !S.getLangOptions().CPlusPlus0x)
693711c52bb20d0c69063b52a99826fb7d2835501f1John McCall          S.Diag(DS.getTypeSpecWidthLoc(), diag::ext_longlong);
694311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        break;
6955f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      }
6965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    } else {
6975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      switch (DS.getTypeSpecWidth()) {
698fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
699fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_short:       Result = Context.UnsignedShortTy; break;
700fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      case DeclSpec::TSW_long:        Result = Context.UnsignedLongTy; break;
701311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner      case DeclSpec::TSW_longlong:
702311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        Result = Context.UnsignedLongLongTy;
703311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner
704311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        // long long is a C99 feature.
705711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        if (!S.getLangOptions().C99 &&
706711c52bb20d0c69063b52a99826fb7d2835501f1John McCall            !S.getLangOptions().CPlusPlus0x)
707711c52bb20d0c69063b52a99826fb7d2835501f1John McCall          S.Diag(DS.getTypeSpecWidthLoc(), diag::ext_longlong);
708311157fa6be96e2769bf317390dc9fb85087d5faChris Lattner        break;
7095f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      }
7105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
711958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
7123cbc38bd3569d37f53bd76fa89d24803f48f5036Chris Lattner  }
713fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner  case DeclSpec::TST_float: Result = Context.FloatTy; break;
714958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner  case DeclSpec::TST_double:
715958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
716fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      Result = Context.LongDoubleTy;
717958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    else
718fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner      Result = Context.DoubleTy;
71939d3e7a26c1969fcb76bceb4ee0a410c60ea5954Peter Collingbourne
72039d3e7a26c1969fcb76bceb4ee0a410c60ea5954Peter Collingbourne    if (S.getLangOptions().OpenCL && !S.getOpenCLOptions().cl_khr_fp64) {
72139d3e7a26c1969fcb76bceb4ee0a410c60ea5954Peter Collingbourne      S.Diag(DS.getTypeSpecTypeLoc(), diag::err_double_requires_fp64);
72239d3e7a26c1969fcb76bceb4ee0a410c60ea5954Peter Collingbourne      declarator.setInvalidType(true);
72339d3e7a26c1969fcb76bceb4ee0a410c60ea5954Peter Collingbourne    }
724958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
725fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner  case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
7265f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_decimal32:    // _Decimal32
7275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_decimal64:    // _Decimal64
7285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_decimal128:   // _Decimal128
729711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
7308f12f65fad7bfbbdbd4234efe0d484f68c3924b6Chris Lattner    Result = Context.IntTy;
731711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    declarator.setInvalidType(true);
7328f12f65fad7bfbbdbd4234efe0d484f68c3924b6Chris Lattner    break;
73399dc91422144483c20d1c7381bc9ac634b646b04Chris Lattner  case DeclSpec::TST_class:
7345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_enum:
7355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_union:
7365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  case DeclSpec::TST_struct: {
737b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall    TypeDecl *D = dyn_cast_or_null<TypeDecl>(DS.getRepAsDecl());
7386e24726524c2b51b31bb4b622aa678a46b024f42John McCall    if (!D) {
7396e24726524c2b51b31bb4b622aa678a46b024f42John McCall      // This can happen in C++ with ambiguous lookups.
7406e24726524c2b51b31bb4b622aa678a46b024f42John McCall      Result = Context.IntTy;
741711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      declarator.setInvalidType(true);
7426e24726524c2b51b31bb4b622aa678a46b024f42John McCall      break;
7436e24726524c2b51b31bb4b622aa678a46b024f42John McCall    }
7446e24726524c2b51b31bb4b622aa678a46b024f42John McCall
745a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner    // If the type is deprecated or unavailable, diagnose it.
7460daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    S.DiagnoseUseOfDecl(D, DS.getTypeSpecTypeNameLoc());
747a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner
7485f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
749a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner           DS.getTypeSpecSign() == 0 && "No qualifiers on tag names!");
750a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner
7515f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    // TypeQuals handled by caller.
752a64ef0ab5cb6ac9cfb7d40661a9152c4aa488386Chris Lattner    Result = Context.getTypeDeclType(D);
7532191b20bfb31fc0e22a158f6b4204cd0b7dbd0fdJohn McCall
7540daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    // In both C and C++, make an ElaboratedType.
7550daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    ElaboratedTypeKeyword Keyword
7560daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara      = ElaboratedType::getKeywordForTypeSpec(DS.getTypeSpecType());
7570daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
7580daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara
7595153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner    if (D->isInvalidDecl())
760711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      declarator.setInvalidType(true);
761958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
7621eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
7631a51b4a11b7db25cac2134249711ecaaf9d1c0a8Douglas Gregor  case DeclSpec::TST_typename: {
7645f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
7655f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer           DS.getTypeSpecSign() == 0 &&
7665f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer           "Can't handle qualifiers on typedef names yet!");
767711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Result = S.GetTypeFromParser(DS.getRepAsType());
76827940d2fb346325d6001a7661e4ada099cd8e59cJohn McCall    if (Result.isNull())
769711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      declarator.setInvalidType(true);
77027940d2fb346325d6001a7661e4ada099cd8e59cJohn McCall    else if (DeclSpec::ProtocolQualifierListTy PQ
77127940d2fb346325d6001a7661e4ada099cd8e59cJohn McCall               = DS.getProtocolQualifiers()) {
772c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      if (const ObjCObjectType *ObjT = Result->getAs<ObjCObjectType>()) {
773c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        // Silently drop any existing protocol qualifiers.
774c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        // TODO: determine whether that's the right thing to do.
775c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        if (ObjT->getNumProtocols())
776c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall          Result = ObjT->getBaseType();
777c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall
778c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        if (DS.getNumProtocolQualifiers())
779c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall          Result = Context.getObjCObjectType(Result,
780c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                             (ObjCProtocolDecl**) PQ,
781c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                             DS.getNumProtocolQualifiers());
782c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      } else if (Result->isObjCIdType()) {
783ae4da6150bb837311a2f0f958b01a2989066ba90Chris Lattner        // id<protocol-list>
784c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
785c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                           (ObjCProtocolDecl**) PQ,
786c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                           DS.getNumProtocolQualifiers());
787c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        Result = Context.getObjCObjectPointerType(Result);
788c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      } else if (Result->isObjCClassType()) {
7894262a07621043c19292f5fd90b1e426d65cd366cSteve Naroff        // Class<protocol-list>
790c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        Result = Context.getObjCObjectType(Context.ObjCBuiltinClassTy,
791c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                           (ObjCProtocolDecl**) PQ,
792c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall                                           DS.getNumProtocolQualifiers());
793c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        Result = Context.getObjCObjectPointerType(Result);
7943f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner      } else {
795711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
7963f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner          << DS.getSourceRange();
797711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        declarator.setInvalidType(true);
7983f84ad22acc25353a47ee88f55ab05dffef5d9a9Chris Lattner      }
799c569249ca0ab755ac79d8cbbfcb2bcae19743624Fariborz Jahanian    }
8001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8015f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    // TypeQuals handled by caller.
802958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
8035f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
804958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner  case DeclSpec::TST_typeofType:
805e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis    // FIXME: Preserve type source info.
806711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Result = S.GetTypeFromParser(DS.getRepAsType());
807958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    assert(!Result.isNull() && "Didn't get a type for typeof?");
808730e175910936eae49e65caea8b2ba81c67edff7Fariborz Jahanian    if (!Result->isDependentType())
809730e175910936eae49e65caea8b2ba81c67edff7Fariborz Jahanian      if (const TagType *TT = Result->getAs<TagType>())
810711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.DiagnoseUseOfDecl(TT->getDecl(), DS.getTypeSpecTypeLoc());
811d1861fd633d5096a00777c918eb8575ea7162fe7Steve Naroff    // TypeQuals handled by caller.
812fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner    Result = Context.getTypeOfType(Result);
813958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
814d1861fd633d5096a00777c918eb8575ea7162fe7Steve Naroff  case DeclSpec::TST_typeofExpr: {
815b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall    Expr *E = DS.getRepAsExpr();
816d1861fd633d5096a00777c918eb8575ea7162fe7Steve Naroff    assert(E && "Didn't get an expression for typeof?");
817d1861fd633d5096a00777c918eb8575ea7162fe7Steve Naroff    // TypeQuals handled by caller.
818711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Result = S.BuildTypeofExprType(E, DS.getTypeSpecTypeLoc());
8194b52e25f3b05ab0f9d2492276a52323a50a84fb7Douglas Gregor    if (Result.isNull()) {
8204b52e25f3b05ab0f9d2492276a52323a50a84fb7Douglas Gregor      Result = Context.IntTy;
821711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      declarator.setInvalidType(true);
8224b52e25f3b05ab0f9d2492276a52323a50a84fb7Douglas Gregor    }
823958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner    break;
824d1861fd633d5096a00777c918eb8575ea7162fe7Steve Naroff  }
8256fd634f4ac59f5923cffadadb99d19f23c18707aAnders Carlsson  case DeclSpec::TST_decltype: {
826b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall    Expr *E = DS.getRepAsExpr();
8276fd634f4ac59f5923cffadadb99d19f23c18707aAnders Carlsson    assert(E && "Didn't get an expression for decltype?");
8286fd634f4ac59f5923cffadadb99d19f23c18707aAnders Carlsson    // TypeQuals handled by caller.
829711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    Result = S.BuildDecltypeType(E, DS.getTypeSpecTypeLoc());
830af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson    if (Result.isNull()) {
831af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson      Result = Context.IntTy;
832711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      declarator.setInvalidType(true);
833af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson    }
8346fd634f4ac59f5923cffadadb99d19f23c18707aAnders Carlsson    break;
8356fd634f4ac59f5923cffadadb99d19f23c18707aAnders Carlsson  }
836ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt  case DeclSpec::TST_underlyingType:
837db5d44b775c60166074acd184ca9f1981c10c2a7Sean Hunt    Result = S.GetTypeFromParser(DS.getRepAsType());
838db5d44b775c60166074acd184ca9f1981c10c2a7Sean Hunt    assert(!Result.isNull() && "Didn't get a type for __underlying_type?");
839ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    Result = S.BuildUnaryTransformType(Result,
840ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt                                       UnaryTransformType::EnumUnderlyingType,
841ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt                                       DS.getTypeSpecTypeLoc());
842ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    if (Result.isNull()) {
843ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      Result = Context.IntTy;
844ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      declarator.setInvalidType(true);
845db5d44b775c60166074acd184ca9f1981c10c2a7Sean Hunt    }
846db5d44b775c60166074acd184ca9f1981c10c2a7Sean Hunt    break;
847db5d44b775c60166074acd184ca9f1981c10c2a7Sean Hunt
848e89d15944dd3be750a09805ad21222d2fa9321faAnders Carlsson  case DeclSpec::TST_auto: {
849e89d15944dd3be750a09805ad21222d2fa9321faAnders Carlsson    // TypeQuals handled by caller.
85034b41d939a1328f484511c6002ba2456db879a29Richard Smith    Result = Context.getAutoType(QualType());
851e89d15944dd3be750a09805ad21222d2fa9321faAnders Carlsson    break;
852e89d15944dd3be750a09805ad21222d2fa9321faAnders Carlsson  }
8531eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
854a5fc472b353b88be3b4981da946fb01f5a5cc0c6John McCall  case DeclSpec::TST_unknown_anytype:
855a5fc472b353b88be3b4981da946fb01f5a5cc0c6John McCall    Result = Context.UnknownAnyTy;
856a5fc472b353b88be3b4981da946fb01f5a5cc0c6John McCall    break;
857a5fc472b353b88be3b4981da946fb01f5a5cc0c6John McCall
858809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor  case DeclSpec::TST_error:
8595153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner    Result = Context.IntTy;
860711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    declarator.setInvalidType(true);
8615153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner    break;
8625f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
8631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
864958858e04e9f98a42031ba69779e49c21f01ca6cChris Lattner  // Handle complex types.
865f244cd7e54753caf6edb76df430dea2f43bb82a8Douglas Gregor  if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
866711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (S.getLangOptions().Freestanding)
867711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
868fab5b45729db4e24ba43bb94d1bce5f73106be78Chris Lattner    Result = Context.getComplexType(Result);
86982287d19ded35248c4ce6a425ce74116a13ce44eJohn Thompson  } else if (DS.isTypeAltiVecVector()) {
87082287d19ded35248c4ce6a425ce74116a13ce44eJohn Thompson    unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
87182287d19ded35248c4ce6a425ce74116a13ce44eJohn Thompson    assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
872e86d78cf4754a6aef2cf9a33d847aa15338e276fBob Wilson    VectorType::VectorKind VecKind = VectorType::AltiVecVector;
873788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner    if (DS.isTypeAltiVecPixel())
874e86d78cf4754a6aef2cf9a33d847aa15338e276fBob Wilson      VecKind = VectorType::AltiVecPixel;
875788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner    else if (DS.isTypeAltiVecBool())
876e86d78cf4754a6aef2cf9a33d847aa15338e276fBob Wilson      VecKind = VectorType::AltiVecBool;
877e86d78cf4754a6aef2cf9a33d847aa15338e276fBob Wilson    Result = Context.getVectorType(Result, 128/typeSize, VecKind);
878f244cd7e54753caf6edb76df430dea2f43bb82a8Douglas Gregor  }
8791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
88047423bdaa06a3b9c2a859b57c17fc570094dad1cArgyrios Kyrtzidis  // FIXME: Imaginary.
88147423bdaa06a3b9c2a859b57c17fc570094dad1cArgyrios Kyrtzidis  if (DS.getTypeSpecComplex() == DeclSpec::TSC_imaginary)
882711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(DS.getTypeSpecComplexLoc(), diag::err_imaginary_not_supported);
8831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
884711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Before we process any type attributes, synthesize a block literal
885711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // function declarator if necessary.
886711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (declarator.getContext() == Declarator::BlockLiteralContext)
887711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    maybeSynthesizeBlockSignature(state, Result);
888711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
889711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Apply any type attributes from the decl spec.  This may cause the
890711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // list of type attributes to be temporarily saved while the type
891711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // attributes are pushed around.
892711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (AttributeList *attrs = DS.getAttributes().getList())
893711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    processTypeAttrs(state, Result, true, attrs);
8941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
89596b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner  // Apply const/volatile/restrict qualifiers to T.
89696b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner  if (unsigned TypeQuals = DS.getTypeQualifiers()) {
89796b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner
89896b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
89996b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // or incomplete types shall not be restrict-qualified."  C++ also allows
90096b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // restrict-qualified references.
9010953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    if (TypeQuals & DeclSpec::TQ_restrict) {
9022b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian      if (Result->isAnyPointerType() || Result->isReferenceType()) {
9032b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian        QualType EltTy;
9042b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian        if (Result->isObjCObjectPointerType())
9052b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian          EltTy = Result;
9062b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian        else
9072b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian          EltTy = Result->isPointerType() ?
9082b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian                    Result->getAs<PointerType>()->getPointeeType() :
9092b5ff1a1471819192ae805b51b888030ecb52914Fariborz Jahanian                    Result->getAs<ReferenceType>()->getPointeeType();
9101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
911bad0e656c3732e3539a9cd6525de721d7e47408bDouglas Gregor        // If we have a pointer or reference, the pointee must have an object
912bdcd637c29ec1540f912ea6860c88b910e78c329Chris Lattner        // incomplete type.
913bdcd637c29ec1540f912ea6860c88b910e78c329Chris Lattner        if (!EltTy->isIncompleteOrObjectType()) {
914711c52bb20d0c69063b52a99826fb7d2835501f1John McCall          S.Diag(DS.getRestrictSpecLoc(),
915d3a94e24ddf3fb90de76b17bd176d9ed61e66f2cChris Lattner               diag::err_typecheck_invalid_restrict_invalid_pointee)
916d162584991885ab004a02573a73ce06422b921fcChris Lattner            << EltTy << DS.getSourceRange();
9170953e767ff7817f97b3ab20896b229891eeff45bJohn McCall          TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
918bdcd637c29ec1540f912ea6860c88b910e78c329Chris Lattner        }
919bdcd637c29ec1540f912ea6860c88b910e78c329Chris Lattner      } else {
920711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        S.Diag(DS.getRestrictSpecLoc(),
921711c52bb20d0c69063b52a99826fb7d2835501f1John McCall               diag::err_typecheck_invalid_restrict_not_pointer)
922d162584991885ab004a02573a73ce06422b921fcChris Lattner          << Result << DS.getSourceRange();
9230953e767ff7817f97b3ab20896b229891eeff45bJohn McCall        TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
92496b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner      }
92596b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    }
9261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
92796b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
92896b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // of a function type includes any type qualifiers, the behavior is
92996b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    // undefined."
93096b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    if (Result->isFunctionType() && TypeQuals) {
93196b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner      // Get some location to point at, either the C or V location.
93296b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner      SourceLocation Loc;
9330953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      if (TypeQuals & DeclSpec::TQ_const)
93496b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner        Loc = DS.getConstSpecLoc();
9350953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      else if (TypeQuals & DeclSpec::TQ_volatile)
93696b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner        Loc = DS.getVolatileSpecLoc();
9370953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      else {
9380953e767ff7817f97b3ab20896b229891eeff45bJohn McCall        assert((TypeQuals & DeclSpec::TQ_restrict) &&
9390953e767ff7817f97b3ab20896b229891eeff45bJohn McCall               "Has CVR quals but not C, V, or R?");
9400953e767ff7817f97b3ab20896b229891eeff45bJohn McCall        Loc = DS.getRestrictSpecLoc();
94196b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner      }
942711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(Loc, diag::warn_typecheck_function_qualifiers)
943d162584991885ab004a02573a73ce06422b921fcChris Lattner        << Result << DS.getSourceRange();
94496b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner    }
9451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
946f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor    // C++ [dcl.ref]p1:
947f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor    //   Cv-qualified references are ill-formed except when the
948f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor    //   cv-qualifiers are introduced through the use of a typedef
949f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor    //   (7.1.3) or of a template type argument (14.3), in which
950f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor    //   case the cv-qualifiers are ignored.
9511a51b4a11b7db25cac2134249711ecaaf9d1c0a8Douglas Gregor    // FIXME: Shouldn't we be checking SCS_typedef here?
9521a51b4a11b7db25cac2134249711ecaaf9d1c0a8Douglas Gregor    if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
953f1f9b4e5c7fd087e78f2e387c01098d49d41e784Douglas Gregor        TypeQuals && Result->isReferenceType()) {
9540953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      TypeQuals &= ~DeclSpec::TQ_const;
9550953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      TypeQuals &= ~DeclSpec::TQ_volatile;
9561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    }
9571eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9580953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
9590953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    Result = Context.getQualifiedType(Result, Quals);
96096b77fc05ed4a052a9e614f72b0e83572408ce48Chris Lattner  }
9610953e767ff7817f97b3ab20896b229891eeff45bJohn McCall
962f1d705c3e2276f7f5b97b8b3394b9b3068fdf25bChris Lattner  return Result;
963f1d705c3e2276f7f5b97b8b3394b9b3068fdf25bChris Lattner}
964f1d705c3e2276f7f5b97b8b3394b9b3068fdf25bChris Lattner
965cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregorstatic std::string getPrintableNameForEntity(DeclarationName Entity) {
966cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (Entity)
967cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    return Entity.getAsString();
9681eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
969cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  return "type name";
970cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor}
971cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
9722865474261a608c7873b87ba4af110d17907896dJohn McCallQualType Sema::BuildQualifiedType(QualType T, SourceLocation Loc,
9732865474261a608c7873b87ba4af110d17907896dJohn McCall                                  Qualifiers Qs) {
9742865474261a608c7873b87ba4af110d17907896dJohn McCall  // Enforce C99 6.7.3p2: "Types other than pointer types derived from
9752865474261a608c7873b87ba4af110d17907896dJohn McCall  // object or incomplete types shall not be restrict-qualified."
9762865474261a608c7873b87ba4af110d17907896dJohn McCall  if (Qs.hasRestrict()) {
9772865474261a608c7873b87ba4af110d17907896dJohn McCall    unsigned DiagID = 0;
9782865474261a608c7873b87ba4af110d17907896dJohn McCall    QualType ProblemTy;
9792865474261a608c7873b87ba4af110d17907896dJohn McCall
9802865474261a608c7873b87ba4af110d17907896dJohn McCall    const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
9812865474261a608c7873b87ba4af110d17907896dJohn McCall    if (const ReferenceType *RTy = dyn_cast<ReferenceType>(Ty)) {
9822865474261a608c7873b87ba4af110d17907896dJohn McCall      if (!RTy->getPointeeType()->isIncompleteOrObjectType()) {
9832865474261a608c7873b87ba4af110d17907896dJohn McCall        DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
9842865474261a608c7873b87ba4af110d17907896dJohn McCall        ProblemTy = T->getAs<ReferenceType>()->getPointeeType();
9852865474261a608c7873b87ba4af110d17907896dJohn McCall      }
9862865474261a608c7873b87ba4af110d17907896dJohn McCall    } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
9872865474261a608c7873b87ba4af110d17907896dJohn McCall      if (!PTy->getPointeeType()->isIncompleteOrObjectType()) {
9882865474261a608c7873b87ba4af110d17907896dJohn McCall        DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
9892865474261a608c7873b87ba4af110d17907896dJohn McCall        ProblemTy = T->getAs<PointerType>()->getPointeeType();
9902865474261a608c7873b87ba4af110d17907896dJohn McCall      }
9912865474261a608c7873b87ba4af110d17907896dJohn McCall    } else if (const MemberPointerType *PTy = dyn_cast<MemberPointerType>(Ty)) {
9922865474261a608c7873b87ba4af110d17907896dJohn McCall      if (!PTy->getPointeeType()->isIncompleteOrObjectType()) {
9932865474261a608c7873b87ba4af110d17907896dJohn McCall        DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
9942865474261a608c7873b87ba4af110d17907896dJohn McCall        ProblemTy = T->getAs<PointerType>()->getPointeeType();
9952865474261a608c7873b87ba4af110d17907896dJohn McCall      }
9962865474261a608c7873b87ba4af110d17907896dJohn McCall    } else if (!Ty->isDependentType()) {
9972865474261a608c7873b87ba4af110d17907896dJohn McCall      // FIXME: this deserves a proper diagnostic
9982865474261a608c7873b87ba4af110d17907896dJohn McCall      DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
9992865474261a608c7873b87ba4af110d17907896dJohn McCall      ProblemTy = T;
10002865474261a608c7873b87ba4af110d17907896dJohn McCall    }
10012865474261a608c7873b87ba4af110d17907896dJohn McCall
10022865474261a608c7873b87ba4af110d17907896dJohn McCall    if (DiagID) {
10032865474261a608c7873b87ba4af110d17907896dJohn McCall      Diag(Loc, DiagID) << ProblemTy;
10042865474261a608c7873b87ba4af110d17907896dJohn McCall      Qs.removeRestrict();
10052865474261a608c7873b87ba4af110d17907896dJohn McCall    }
10062865474261a608c7873b87ba4af110d17907896dJohn McCall  }
10072865474261a608c7873b87ba4af110d17907896dJohn McCall
10082865474261a608c7873b87ba4af110d17907896dJohn McCall  return Context.getQualifiedType(T, Qs);
10092865474261a608c7873b87ba4af110d17907896dJohn McCall}
10102865474261a608c7873b87ba4af110d17907896dJohn McCall
1011075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara/// \brief Build a paren type including \p T.
1012075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo BagnaraQualType Sema::BuildParenType(QualType T) {
1013075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara  return Context.getParenType(T);
1014075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara}
1015075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara
1016f85e193739c953358c865005855253af4f68a497John McCall/// Given that we're building a pointer or reference to the given
1017f85e193739c953358c865005855253af4f68a497John McCallstatic QualType inferARCLifetimeForPointee(Sema &S, QualType type,
1018f85e193739c953358c865005855253af4f68a497John McCall                                           SourceLocation loc,
1019f85e193739c953358c865005855253af4f68a497John McCall                                           bool isReference) {
1020f85e193739c953358c865005855253af4f68a497John McCall  // Bail out if retention is unrequired or already specified.
1021f85e193739c953358c865005855253af4f68a497John McCall  if (!type->isObjCLifetimeType() ||
1022f85e193739c953358c865005855253af4f68a497John McCall      type.getObjCLifetime() != Qualifiers::OCL_None)
1023f85e193739c953358c865005855253af4f68a497John McCall    return type;
1024f85e193739c953358c865005855253af4f68a497John McCall
1025f85e193739c953358c865005855253af4f68a497John McCall  Qualifiers::ObjCLifetime implicitLifetime = Qualifiers::OCL_None;
1026f85e193739c953358c865005855253af4f68a497John McCall
1027f85e193739c953358c865005855253af4f68a497John McCall  // If the object type is const-qualified, we can safely use
1028f85e193739c953358c865005855253af4f68a497John McCall  // __unsafe_unretained.  This is safe (because there are no read
1029f85e193739c953358c865005855253af4f68a497John McCall  // barriers), and it'll be safe to coerce anything but __weak* to
1030f85e193739c953358c865005855253af4f68a497John McCall  // the resulting type.
1031f85e193739c953358c865005855253af4f68a497John McCall  if (type.isConstQualified()) {
1032f85e193739c953358c865005855253af4f68a497John McCall    implicitLifetime = Qualifiers::OCL_ExplicitNone;
1033f85e193739c953358c865005855253af4f68a497John McCall
1034f85e193739c953358c865005855253af4f68a497John McCall  // Otherwise, check whether the static type does not require
1035f85e193739c953358c865005855253af4f68a497John McCall  // retaining.  This currently only triggers for Class (possibly
1036f85e193739c953358c865005855253af4f68a497John McCall  // protocol-qualifed, and arrays thereof).
1037f85e193739c953358c865005855253af4f68a497John McCall  } else if (type->isObjCARCImplicitlyUnretainedType()) {
1038f85e193739c953358c865005855253af4f68a497John McCall    implicitLifetime = Qualifiers::OCL_ExplicitNone;
1039f85e193739c953358c865005855253af4f68a497John McCall
1040f85e193739c953358c865005855253af4f68a497John McCall  // If that failed, give an error and recover using __autoreleasing.
1041f85e193739c953358c865005855253af4f68a497John McCall  } else {
1042f85e193739c953358c865005855253af4f68a497John McCall    // These types can show up in private ivars in system headers, so
1043f85e193739c953358c865005855253af4f68a497John McCall    // we need this to not be an error in those cases.  Instead we
1044f85e193739c953358c865005855253af4f68a497John McCall    // want to delay.
1045f85e193739c953358c865005855253af4f68a497John McCall    if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
1046f85e193739c953358c865005855253af4f68a497John McCall      S.DelayedDiagnostics.add(
1047f85e193739c953358c865005855253af4f68a497John McCall          sema::DelayedDiagnostic::makeForbiddenType(loc,
1048b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis              diag::err_arc_indirect_no_ownership, type, isReference));
1049f85e193739c953358c865005855253af4f68a497John McCall    } else {
1050b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis      S.Diag(loc, diag::err_arc_indirect_no_ownership) << type << isReference;
1051f85e193739c953358c865005855253af4f68a497John McCall    }
1052f85e193739c953358c865005855253af4f68a497John McCall    implicitLifetime = Qualifiers::OCL_Autoreleasing;
1053f85e193739c953358c865005855253af4f68a497John McCall  }
1054f85e193739c953358c865005855253af4f68a497John McCall  assert(implicitLifetime && "didn't infer any lifetime!");
1055f85e193739c953358c865005855253af4f68a497John McCall
1056f85e193739c953358c865005855253af4f68a497John McCall  Qualifiers qs;
1057f85e193739c953358c865005855253af4f68a497John McCall  qs.addObjCLifetime(implicitLifetime);
1058f85e193739c953358c865005855253af4f68a497John McCall  return S.Context.getQualifiedType(type, qs);
1059f85e193739c953358c865005855253af4f68a497John McCall}
1060f85e193739c953358c865005855253af4f68a497John McCall
1061cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \brief Build a pointer type.
1062cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1063cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param T The type to which we'll be building a pointer.
1064cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1065cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Loc The location of the entity whose type involves this
1066cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// pointer type or, if there is no such entity, the location of the
1067cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type that will have pointer type.
1068cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1069cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Entity The name of the entity that involves the pointer
1070cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type, if known.
1071cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1072cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \returns A suitable pointer type, if there are no
1073cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// errors. Otherwise, returns a NULL type.
10742865474261a608c7873b87ba4af110d17907896dJohn McCallQualType Sema::BuildPointerType(QualType T,
1075cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor                                SourceLocation Loc, DeclarationName Entity) {
1076cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (T->isReferenceType()) {
1077cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    // C++ 8.3.2p4: There shall be no ... pointers to references ...
1078cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
1079ac406052f7b980f8caa6b07b4a8d0867d53852c4John McCall      << getPrintableNameForEntity(Entity) << T;
1080cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    return QualType();
1081cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
1082cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1083c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall  assert(!T->isObjCObjectType() && "Should build ObjCObjectPointerType");
108492e986e0adb79e8a47f738bd608e6c97c547641dDouglas Gregor
1085f85e193739c953358c865005855253af4f68a497John McCall  // In ARC, it is forbidden to build pointers to unqualified pointers.
1086f85e193739c953358c865005855253af4f68a497John McCall  if (getLangOptions().ObjCAutoRefCount)
1087f85e193739c953358c865005855253af4f68a497John McCall    T = inferARCLifetimeForPointee(*this, T, Loc, /*reference*/ false);
1088f85e193739c953358c865005855253af4f68a497John McCall
1089cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  // Build the pointer type.
10902865474261a608c7873b87ba4af110d17907896dJohn McCall  return Context.getPointerType(T);
1091cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor}
1092cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1093cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \brief Build a reference type.
1094cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1095cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param T The type to which we'll be building a reference.
1096cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1097cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Loc The location of the entity whose type involves this
1098cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// reference type or, if there is no such entity, the location of the
1099cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type that will have reference type.
1100cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1101cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Entity The name of the entity that involves the reference
1102cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type, if known.
1103cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1104cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \returns A suitable reference type, if there are no
1105cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// errors. Otherwise, returns a NULL type.
110654e14c4db764c0636160d26c5bbf491637c83a76John McCallQualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue,
11072865474261a608c7873b87ba4af110d17907896dJohn McCall                                  SourceLocation Loc,
110854e14c4db764c0636160d26c5bbf491637c83a76John McCall                                  DeclarationName Entity) {
11099625e44c0252485277a340746ed8ac950686156fDouglas Gregor  assert(Context.getCanonicalType(T) != Context.OverloadTy &&
11109625e44c0252485277a340746ed8ac950686156fDouglas Gregor         "Unresolved overloaded function type");
11119625e44c0252485277a340746ed8ac950686156fDouglas Gregor
111269d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  // C++0x [dcl.ref]p6:
111369d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  //   If a typedef (7.1.3), a type template-parameter (14.3.1), or a
111469d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  //   decltype-specifier (7.1.6.2) denotes a type TR that is a reference to a
111569d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  //   type T, an attempt to create the type "lvalue reference to cv TR" creates
111669d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  //   the type "lvalue reference to T", while an attempt to create the type
111769d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  //   "rvalue reference to cv TR" creates the type TR.
111854e14c4db764c0636160d26c5bbf491637c83a76John McCall  bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
111954e14c4db764c0636160d26c5bbf491637c83a76John McCall
112054e14c4db764c0636160d26c5bbf491637c83a76John McCall  // C++ [dcl.ref]p4: There shall be no references to references.
112154e14c4db764c0636160d26c5bbf491637c83a76John McCall  //
112254e14c4db764c0636160d26c5bbf491637c83a76John McCall  // According to C++ DR 106, references to references are only
112354e14c4db764c0636160d26c5bbf491637c83a76John McCall  // diagnosed when they are written directly (e.g., "int & &"),
112454e14c4db764c0636160d26c5bbf491637c83a76John McCall  // but not when they happen via a typedef:
112554e14c4db764c0636160d26c5bbf491637c83a76John McCall  //
112654e14c4db764c0636160d26c5bbf491637c83a76John McCall  //   typedef int& intref;
112754e14c4db764c0636160d26c5bbf491637c83a76John McCall  //   typedef intref& intref2;
112854e14c4db764c0636160d26c5bbf491637c83a76John McCall  //
112954e14c4db764c0636160d26c5bbf491637c83a76John McCall  // Parser::ParseDeclaratorInternal diagnoses the case where
113054e14c4db764c0636160d26c5bbf491637c83a76John McCall  // references are written directly; here, we handle the
113169d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  // collapsing of references-to-references as described in C++0x.
113269d831645f429d3b806d2ae220aee45ca44f8c6cDouglas Gregor  // DR 106 and 540 introduce reference-collapsing into C++98/03.
1133cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1134cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  // C++ [dcl.ref]p1:
113533a3138a0862cafdd9ff1332b834454a79cd2cdcEli Friedman  //   A declarator that specifies the type "reference to cv void"
1136cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  //   is ill-formed.
1137cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (T->isVoidType()) {
1138cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    Diag(Loc, diag::err_reference_to_void);
1139cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    return QualType();
1140cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
1141cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1142f85e193739c953358c865005855253af4f68a497John McCall  // In ARC, it is forbidden to build references to unqualified pointers.
1143f85e193739c953358c865005855253af4f68a497John McCall  if (getLangOptions().ObjCAutoRefCount)
1144f85e193739c953358c865005855253af4f68a497John McCall    T = inferARCLifetimeForPointee(*this, T, Loc, /*reference*/ true);
1145f85e193739c953358c865005855253af4f68a497John McCall
1146cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  // Handle restrict on references.
11477c80bd64032e610c0dbd74fc0ef6ea334447f2fdSebastian Redl  if (LValueRef)
11482865474261a608c7873b87ba4af110d17907896dJohn McCall    return Context.getLValueReferenceType(T, SpelledAsLValue);
11492865474261a608c7873b87ba4af110d17907896dJohn McCall  return Context.getRValueReferenceType(T);
1150cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor}
1151cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1152e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner/// Check whether the specified array size makes the array type a VLA.  If so,
1153e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner/// return true, if not, return the size of the array in SizeVal.
1154e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattnerstatic bool isArraySizeVLA(Expr *ArraySize, llvm::APSInt &SizeVal, Sema &S) {
1155e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  // If the size is an ICE, it certainly isn't a VLA.
1156e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  if (ArraySize->isIntegerConstantExpr(SizeVal, S.Context))
1157e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    return false;
1158e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner
1159e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  // If we're in a GNU mode (like gnu99, but not c99) accept any evaluatable
1160e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  // value as an extension.
1161e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  Expr::EvalResult Result;
1162e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  if (S.LangOpts.GNUMode && ArraySize->Evaluate(Result, S.Context)) {
1163e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    if (!Result.hasSideEffects() && Result.Val.isInt()) {
1164e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner      SizeVal = Result.Val.getInt();
1165e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner      S.Diag(ArraySize->getLocStart(), diag::ext_vla_folded_to_constant);
1166e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner      return false;
1167e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    }
1168e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  }
1169e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner
1170e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  return true;
1171e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner}
1172e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner
1173e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner
1174cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \brief Build an array type.
1175cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1176cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param T The type of each element in the array.
1177cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1178cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param ASM C99 array size modifier (e.g., '*', 'static').
11791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump///
11801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// \param ArraySize Expression describing the size of the array.
1181cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1182cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Loc The location of the entity whose type involves this
1183cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// array type or, if there is no such entity, the location of the
1184cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type that will have array type.
1185cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1186cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \param Entity The name of the entity that involves the array
1187cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// type, if known.
1188cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor///
1189cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// \returns A suitable array type, if there are no errors. Otherwise,
1190cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor/// returns a NULL type.
1191cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas GregorQualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
1192cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor                              Expr *ArraySize, unsigned Quals,
11937e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor                              SourceRange Brackets, DeclarationName Entity) {
11940953e767ff7817f97b3ab20896b229891eeff45bJohn McCall
11957e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  SourceLocation Loc = Brackets.getBegin();
1196923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  if (getLangOptions().CPlusPlus) {
1197138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    // C++ [dcl.array]p1:
1198138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    //   T is called the array element type; this type shall not be a reference
1199138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    //   type, the (possibly cv-qualified) type void, a function type or an
1200138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    //   abstract class type.
1201138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    //
1202138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    // Note: function types are handled in the common path with C.
1203138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    if (T->isReferenceType()) {
1204138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor      Diag(Loc, diag::err_illegal_decl_array_of_references)
1205138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor      << getPrintableNameForEntity(Entity) << T;
1206138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor      return QualType();
1207138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    }
1208138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor
1209923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    if (T->isVoidType()) {
1210923d56d436f750bc1f29db50e641078725558a1bSebastian Redl      Diag(Loc, diag::err_illegal_decl_array_incomplete_type) << T;
1211923d56d436f750bc1f29db50e641078725558a1bSebastian Redl      return QualType();
1212923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    }
1213138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor
1214138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    if (RequireNonAbstractType(Brackets.getBegin(), T,
1215138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor                               diag::err_array_of_abstract_type))
1216138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor      return QualType();
1217138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor
1218923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  } else {
1219138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    // C99 6.7.5.2p1: If the element type is an incomplete or function type,
1220138bb2366baa3856088bae94f36f2d96b2c995b9Douglas Gregor    // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
1221923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    if (RequireCompleteType(Loc, T,
1222923d56d436f750bc1f29db50e641078725558a1bSebastian Redl                            diag::err_illegal_decl_array_incomplete_type))
1223923d56d436f750bc1f29db50e641078725558a1bSebastian Redl      return QualType();
1224923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  }
1225cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1226cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (T->isFunctionType()) {
1227cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    Diag(Loc, diag::err_illegal_decl_array_of_functions)
1228ac406052f7b980f8caa6b07b4a8d0867d53852c4John McCall      << getPrintableNameForEntity(Entity) << T;
1229cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    return QualType();
1230cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
12311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
123234b41d939a1328f484511c6002ba2456db879a29Richard Smith  if (T->getContainedAutoType()) {
123334b41d939a1328f484511c6002ba2456db879a29Richard Smith    Diag(Loc, diag::err_illegal_decl_array_of_auto)
123434b41d939a1328f484511c6002ba2456db879a29Richard Smith      << getPrintableNameForEntity(Entity) << T;
1235e7cf07d8df83e083505c7105c50b2797493008a6Anders Carlsson    return QualType();
1236e7cf07d8df83e083505c7105c50b2797493008a6Anders Carlsson  }
12371eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
12386217b80b7a1379b74cced1c076338262c3c980b3Ted Kremenek  if (const RecordType *EltTy = T->getAs<RecordType>()) {
1239cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    // If the element type is a struct or union that contains a variadic
1240cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    // array, accept it as a GNU extension: C99 6.7.2.1p2.
1241cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    if (EltTy->getDecl()->hasFlexibleArrayMember())
1242cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor      Diag(Loc, diag::ext_flexible_array_in_array) << T;
1243c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall  } else if (T->isObjCObjectType()) {
1244c7c11b1ba6a110f2416889cc3576fe33277b2a33Chris Lattner    Diag(Loc, diag::err_objc_array_of_interfaces) << T;
1245c7c11b1ba6a110f2416889cc3576fe33277b2a33Chris Lattner    return QualType();
1246cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
12471eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
12485e3c67b4bd894a926282d24b4d0cbc0e123c9f4aJohn McCall  // Do lvalue-to-rvalue conversions on the array size expression.
1249429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley  if (ArraySize && !ArraySize->isRValue()) {
1250429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley    ExprResult Result = DefaultLvalueConversion(ArraySize);
1251429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley    if (Result.isInvalid())
1252429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley      return QualType();
1253429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley
1254429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley    ArraySize = Result.take();
1255429bb276991ff2dbc7c5b438828b9b7737cb15ebJohn Wiegley  }
12565e3c67b4bd894a926282d24b4d0cbc0e123c9f4aJohn McCall
1257cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  // C99 6.7.5.2p1: The size expression shall have integer type.
12585e3c67b4bd894a926282d24b4d0cbc0e123c9f4aJohn McCall  // TODO: in theory, if we were insane, we could allow contextual
12595e3c67b4bd894a926282d24b4d0cbc0e123c9f4aJohn McCall  // conversions to integer type here.
1260cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (ArraySize && !ArraySize->isTypeDependent() &&
12611274ccd90aec0b205fc838c3d504821ccfb55482Douglas Gregor      !ArraySize->getType()->isIntegralOrUnscopedEnumerationType()) {
1262cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
1263cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor      << ArraySize->getType() << ArraySize->getSourceRange();
1264cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    return QualType();
1265cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
12662767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor  llvm::APSInt ConstVal(Context.getTypeSize(Context.getSizeType()));
1267cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (!ArraySize) {
1268f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman    if (ASM == ArrayType::Star)
12697e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor      T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
1270f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman    else
1271f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman      T = Context.getIncompleteArrayType(T, ASM, Quals);
1272ac06a0e1e3feb95c2ffd352c086882b492a65b99Douglas Gregor  } else if (ArraySize->isTypeDependent() || ArraySize->isValueDependent()) {
12737e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor    T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
1274e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  } else if (!T->isDependentType() && !T->isIncompleteType() &&
1275e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner             !T->isConstantSizeType()) {
1276e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    // C99: an array with an element type that has a non-constant-size is a VLA.
1277e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
1278e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner  } else if (isArraySizeVLA(ArraySize, ConstVal, *this)) {
1279e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    // C99: an array with a non-ICE size is a VLA.  We accept any expression
1280e1eed38733ed47d44f9d8c7731817c411eaf4141Chris Lattner    // that we can fold to a non-zero positive value as an extension.
12817e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor    T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
1282cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  } else {
1283cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    // C99 6.7.5.2p1: If the expression is a constant expression, it shall
1284cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    // have a value greater than zero.
1285923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    if (ConstVal.isSigned() && ConstVal.isNegative()) {
1286b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth      if (Entity)
1287b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth        Diag(ArraySize->getLocStart(), diag::err_decl_negative_array_size)
1288b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth          << getPrintableNameForEntity(Entity) << ArraySize->getSourceRange();
1289b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth      else
1290b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth        Diag(ArraySize->getLocStart(), diag::err_typecheck_negative_array_size)
1291b2b5cc0cf908d516a107d373db963f692449a8a8Chandler Carruth          << ArraySize->getSourceRange();
1292923d56d436f750bc1f29db50e641078725558a1bSebastian Redl      return QualType();
1293923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    }
1294923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    if (ConstVal == 0) {
129502024a9f0d8e6c898de276193af604c42ee41269Douglas Gregor      // GCC accepts zero sized static arrays. We allow them when
129602024a9f0d8e6c898de276193af604c42ee41269Douglas Gregor      // we're not in a SFINAE context.
129702024a9f0d8e6c898de276193af604c42ee41269Douglas Gregor      Diag(ArraySize->getLocStart(),
129802024a9f0d8e6c898de276193af604c42ee41269Douglas Gregor           isSFINAEContext()? diag::err_typecheck_zero_array_size
129902024a9f0d8e6c898de276193af604c42ee41269Douglas Gregor                            : diag::ext_typecheck_zero_array_size)
1300923d56d436f750bc1f29db50e641078725558a1bSebastian Redl        << ArraySize->getSourceRange();
13012767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor    } else if (!T->isDependentType() && !T->isVariablyModifiedType() &&
13022767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor               !T->isIncompleteType()) {
13032767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor      // Is the array too large?
13042767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor      unsigned ActiveSizeBits
13052767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor        = ConstantArrayType::getNumAddressingBits(Context, T, ConstVal);
13062767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor      if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context))
13072767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor        Diag(ArraySize->getLocStart(), diag::err_array_too_large)
13082767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor          << ConstVal.toString(10)
13092767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor          << ArraySize->getSourceRange();
13101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    }
13112767ce2e21d8bc17869b8436220bce719b3369e4Douglas Gregor
131246a617a792bfab0d9b1e057371ea3b9540802226John McCall    T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
1313cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
1314af40776922bc5c28e740adb0342faa09f35b0068David Chisnall  // If this is not C99, extwarn about VLA's and C99 array size modifiers.
1315af40776922bc5c28e740adb0342faa09f35b0068David Chisnall  if (!getLangOptions().C99) {
13160fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor    if (T->isVariableArrayType()) {
13170fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor      // Prohibit the use of non-POD types in VLAs.
1318f85e193739c953358c865005855253af4f68a497John McCall      QualType BaseT = Context.getBaseElementType(T);
1319204ce17e0cfd9bbe229627e1e5a20c3f2f587c8cDouglas Gregor      if (!T->isDependentType() &&
1320f85e193739c953358c865005855253af4f68a497John McCall          !BaseT.isPODType(Context) &&
1321f85e193739c953358c865005855253af4f68a497John McCall          !BaseT->isObjCLifetimeType()) {
13220fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor        Diag(Loc, diag::err_vla_non_pod)
1323f85e193739c953358c865005855253af4f68a497John McCall          << BaseT;
13240fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor        return QualType();
13250fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor      }
1326a481ec4150ad203440852a2bfee0883dd26f7530Douglas Gregor      // Prohibit the use of VLAs during template argument deduction.
1327a481ec4150ad203440852a2bfee0883dd26f7530Douglas Gregor      else if (isSFINAEContext()) {
1328a481ec4150ad203440852a2bfee0883dd26f7530Douglas Gregor        Diag(Loc, diag::err_vla_in_sfinae);
1329a481ec4150ad203440852a2bfee0883dd26f7530Douglas Gregor        return QualType();
1330a481ec4150ad203440852a2bfee0883dd26f7530Douglas Gregor      }
13310fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor      // Just extwarn about VLAs.
13320fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor      else
13330fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor        Diag(Loc, diag::ext_vla);
13340fddb97901dbe36a8253dee29961cba8e0a87cf6Douglas Gregor    } else if (ASM != ArrayType::Normal || Quals != 0)
1335043cad21b78c6b02597cdc7b6ead32388e27ebc7Douglas Gregor      Diag(Loc,
1336043cad21b78c6b02597cdc7b6ead32388e27ebc7Douglas Gregor           getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
1337043cad21b78c6b02597cdc7b6ead32388e27ebc7Douglas Gregor                                     : diag::ext_c99_array_usage);
1338cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  }
1339cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
1340cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  return T;
1341cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor}
13429cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor
13439cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor/// \brief Build an ext-vector type.
13449cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor///
13459cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor/// Run the required checks for the extended vector type.
13469ae2f076ca5ab1feb3ba95629099ec2319833701John McCallQualType Sema::BuildExtVectorType(QualType T, Expr *ArraySize,
13479cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor                                  SourceLocation AttrLoc) {
13489cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor  // unlike gcc's vector_size attribute, we do not allow vectors to be defined
13499cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor  // in conjunction with complex types (pointers, arrays, functions, etc.).
13501eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  if (!T->isDependentType() &&
13519cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor      !T->isIntegerType() && !T->isRealFloatingType()) {
13529cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
13539cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    return QualType();
13549cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor  }
13559cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor
13569ae2f076ca5ab1feb3ba95629099ec2319833701John McCall  if (!ArraySize->isTypeDependent() && !ArraySize->isValueDependent()) {
13579cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    llvm::APSInt vecSize(32);
13589ae2f076ca5ab1feb3ba95629099ec2319833701John McCall    if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) {
13599cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor      Diag(AttrLoc, diag::err_attribute_argument_not_int)
13609ae2f076ca5ab1feb3ba95629099ec2319833701John McCall        << "ext_vector_type" << ArraySize->getSourceRange();
13619cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor      return QualType();
13629cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    }
13631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    // unlike gcc's vector_size attribute, the size is specified as the
13659cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    // number of elements, not the number of bytes.
13661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
13671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13689cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    if (vectorSize == 0) {
13699cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor      Diag(AttrLoc, diag::err_attribute_zero_size)
13709ae2f076ca5ab1feb3ba95629099ec2319833701John McCall      << ArraySize->getSourceRange();
13719cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor      return QualType();
13729cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor    }
13731eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13744ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    return Context.getExtVectorType(T, vectorSize);
13751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
13761eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13779ae2f076ca5ab1feb3ba95629099ec2319833701John McCall  return Context.getDependentSizedExtVectorType(T, ArraySize, AttrLoc);
13789cdda0cf8528e3d595be9bfa002f0450074beb4dDouglas Gregor}
13791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1380724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \brief Build a function type.
1381724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1382724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// This routine checks the function type according to C++ rules and
1383724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// under the assumption that the result type and parameter types have
1384724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// just been instantiated from a template. It therefore duplicates
13852943aed177b33ae3f14273b11a7b398e5276ec62Douglas Gregor/// some of the behavior of GetTypeForDeclarator, but in a much
1386724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// simpler form that is only suitable for this narrow use case.
1387724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1388724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param T The return type of the function.
1389724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1390724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param ParamTypes The parameter types of the function. This array
1391724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// will be modified to account for adjustments to the types of the
1392724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// function parameters.
1393724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1394724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param NumParamTypes The number of parameter types in ParamTypes.
1395724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1396724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param Variadic Whether this is a variadic function type.
1397724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1398724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param Quals The cvr-qualifiers to be applied to the function type.
1399724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1400724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param Loc The location of the entity whose type involves this
1401724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// function type or, if there is no such entity, the location of the
1402724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// type that will have function type.
1403724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1404724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \param Entity The name of the entity that involves the function
1405724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// type, if known.
1406724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor///
1407724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// \returns A suitable function type, if there are no
1408724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor/// errors. Otherwise, returns a NULL type.
1409724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas GregorQualType Sema::BuildFunctionType(QualType T,
14101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump                                 QualType *ParamTypes,
1411724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor                                 unsigned NumParamTypes,
1412724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor                                 bool Variadic, unsigned Quals,
1413c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor                                 RefQualifierKind RefQualifier,
1414fa869547eb1cab12d7e0c0dfa8ba594e336b9b32Eli Friedman                                 SourceLocation Loc, DeclarationName Entity,
1415e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall                                 FunctionType::ExtInfo Info) {
1416724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  if (T->isArrayType() || T->isFunctionType()) {
141758408bc4ead86b08af56cd06fc966fd858b48b2dDouglas Gregor    Diag(Loc, diag::err_func_returning_array_function)
141858408bc4ead86b08af56cd06fc966fd858b48b2dDouglas Gregor      << T->isFunctionType() << T;
1419724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor    return QualType();
1420724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  }
14215291c3cec0dbe8ad1d8e7e67e93af2b1586d5400Douglas Gregor
1422724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  bool Invalid = false;
1423724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
142479e6bd379773447a74cc3e579d9081e4c5cb6d63Douglas Gregor    QualType ParamType = Context.getAdjustedParameterType(ParamTypes[Idx]);
14252dc0e64e57b2a1786fa53a7dbd1d5c8e255eadb0Douglas Gregor    if (ParamType->isVoidType()) {
1426724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor      Diag(Loc, diag::err_param_with_void_type);
1427724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor      Invalid = true;
1428724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor    }
1429cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
143054e14c4db764c0636160d26c5bbf491637c83a76John McCall    ParamTypes[Idx] = ParamType;
1431724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  }
1432724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor
1433724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor  if (Invalid)
1434724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor    return QualType();
1435724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor
1436e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall  FunctionProtoType::ExtProtoInfo EPI;
1437e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall  EPI.Variadic = Variadic;
1438e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall  EPI.TypeQuals = Quals;
1439c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor  EPI.RefQualifier = RefQualifier;
1440e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall  EPI.ExtInfo = Info;
1441e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall
1442e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall  return Context.getFunctionType(T, ParamTypes, NumParamTypes, EPI);
1443724651c3523e25fbf2f6cd0419bc3466e0afdb07Douglas Gregor}
14441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1445949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \brief Build a member pointer type \c T Class::*.
1446949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor///
1447949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \param T the type to which the member pointer refers.
1448949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \param Class the class type into which the member pointer points.
14490953e767ff7817f97b3ab20896b229891eeff45bJohn McCall/// \param CVR Qualifiers applied to the member pointer type
1450949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \param Loc the location where this type begins
1451949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \param Entity the name of the entity that will have this member pointer type
1452949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor///
1453949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// \returns a member pointer type, if successful, or a NULL type if there was
1454949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor/// an error.
14551eb4433ac451dc16f4133a88af2d002ac26c58efMike StumpQualType Sema::BuildMemberPointerType(QualType T, QualType Class,
14562865474261a608c7873b87ba4af110d17907896dJohn McCall                                      SourceLocation Loc,
1457949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor                                      DeclarationName Entity) {
1458949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  // Verify that we're not building a pointer to pointer to function with
1459949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  // exception specification.
1460949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  if (CheckDistantExceptionSpec(T)) {
1461949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    Diag(Loc, diag::err_distant_exception_spec);
1462949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1463949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    // FIXME: If we're doing this as part of template instantiation,
1464949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    // we should return immediately.
1465949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1466949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    // Build the type anyway, but use the canonical type so that the
1467949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    // exception specifiers are stripped off.
1468949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    T = Context.getCanonicalType(T);
1469949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  }
1470949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1471737801257f795632175517ffce4a80c62fc7bff7Sebastian Redl  // C++ 8.3.3p3: A pointer to member shall not point to ... a member
1472949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  //   with reference type, or "cv void."
1473949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  if (T->isReferenceType()) {
14748d4655d3b966da02fe0588767160448594cddd61Anders Carlsson    Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
1475ac406052f7b980f8caa6b07b4a8d0867d53852c4John McCall      << (Entity? Entity.getAsString() : "type name") << T;
1476949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    return QualType();
1477949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  }
1478949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1479949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  if (T->isVoidType()) {
1480949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
1481949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor      << (Entity? Entity.getAsString() : "type name");
1482949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    return QualType();
1483949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  }
1484949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1485949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  if (!Class->isDependentType() && !Class->isRecordType()) {
1486949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
1487949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor    return QualType();
1488949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor  }
1489949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor
1490d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis  // In the Microsoft ABI, the class is allowed to be an incomplete
1491d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis  // type. In such cases, the compiler makes a worst-case assumption.
1492d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis  // We make no such assumption right now, so emit an error if the
1493d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis  // class isn't a complete type.
149420cf717034ba1f20fc47c025ecb72ed9b631ad13Charles Davis  if (Context.Target.getCXXABI() == CXXABI_Microsoft &&
1495d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis      RequireCompleteType(Loc, Class, diag::err_incomplete_type))
1496d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis    return QualType();
1497d18f9f965bcfe56edcdf9b0d8375ffaad9866b3fCharles Davis
14982865474261a608c7873b87ba4af110d17907896dJohn McCall  return Context.getMemberPointerType(T, Class.getTypePtr());
1499949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor}
15001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
15019a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// \brief Build a block pointer type.
15029a917e4fac79aba20fbd25983c78396475078918Anders Carlsson///
15039a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// \param T The type to which we'll be building a block pointer.
15049a917e4fac79aba20fbd25983c78396475078918Anders Carlsson///
15050953e767ff7817f97b3ab20896b229891eeff45bJohn McCall/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
15069a917e4fac79aba20fbd25983c78396475078918Anders Carlsson///
15079a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// \param Loc The location of the entity whose type involves this
15089a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// block pointer type or, if there is no such entity, the location of the
15099a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// type that will have block pointer type.
15109a917e4fac79aba20fbd25983c78396475078918Anders Carlsson///
15119a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// \param Entity The name of the entity that involves the block pointer
15129a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// type, if known.
15139a917e4fac79aba20fbd25983c78396475078918Anders Carlsson///
15149a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// \returns A suitable block pointer type, if there are no
15159a917e4fac79aba20fbd25983c78396475078918Anders Carlsson/// errors. Otherwise, returns a NULL type.
15162865474261a608c7873b87ba4af110d17907896dJohn McCallQualType Sema::BuildBlockPointerType(QualType T,
15171eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump                                     SourceLocation Loc,
15189a917e4fac79aba20fbd25983c78396475078918Anders Carlsson                                     DeclarationName Entity) {
15190953e767ff7817f97b3ab20896b229891eeff45bJohn McCall  if (!T->isFunctionType()) {
15209a917e4fac79aba20fbd25983c78396475078918Anders Carlsson    Diag(Loc, diag::err_nonfunction_block_type);
15219a917e4fac79aba20fbd25983c78396475078918Anders Carlsson    return QualType();
15229a917e4fac79aba20fbd25983c78396475078918Anders Carlsson  }
15231eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
15242865474261a608c7873b87ba4af110d17907896dJohn McCall  return Context.getBlockPointerType(T);
15259a917e4fac79aba20fbd25983c78396475078918Anders Carlsson}
15269a917e4fac79aba20fbd25983c78396475078918Anders Carlsson
1527b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCallQualType Sema::GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo) {
1528b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  QualType QT = Ty.get();
15293f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  if (QT.isNull()) {
1530a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall    if (TInfo) *TInfo = 0;
15313f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor    return QualType();
15323f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  }
15333f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor
1534a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  TypeSourceInfo *DI = 0;
1535f4c7371fb1d3cebcfb40abad4537bb82515704eaJohn McCall  if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
1536e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis    QT = LIT->getType();
1537a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall    DI = LIT->getTypeSourceInfo();
1538e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis  }
15391eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1540a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  if (TInfo) *TInfo = DI;
1541e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis  return QT;
1542e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis}
1543e8661906d49ef6c9694a9cc845ca62a85dbc016dArgyrios Kyrtzidis
1544a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidisstatic void transferARCOwnershipToDeclaratorChunk(TypeProcessingState &state,
1545a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidis                                            Qualifiers::ObjCLifetime ownership,
1546a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidis                                            unsigned chunkIndex);
1547a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidis
1548f85e193739c953358c865005855253af4f68a497John McCall/// Given that this is the declaration of a parameter under ARC,
1549f85e193739c953358c865005855253af4f68a497John McCall/// attempt to infer attributes and such for pointer-to-whatever
1550f85e193739c953358c865005855253af4f68a497John McCall/// types.
1551f85e193739c953358c865005855253af4f68a497John McCallstatic void inferARCWriteback(TypeProcessingState &state,
1552f85e193739c953358c865005855253af4f68a497John McCall                              QualType &declSpecType) {
1553f85e193739c953358c865005855253af4f68a497John McCall  Sema &S = state.getSema();
1554f85e193739c953358c865005855253af4f68a497John McCall  Declarator &declarator = state.getDeclarator();
1555f85e193739c953358c865005855253af4f68a497John McCall
1556f85e193739c953358c865005855253af4f68a497John McCall  // TODO: should we care about decl qualifiers?
1557f85e193739c953358c865005855253af4f68a497John McCall
1558f85e193739c953358c865005855253af4f68a497John McCall  // Check whether the declarator has the expected form.  We walk
1559f85e193739c953358c865005855253af4f68a497John McCall  // from the inside out in order to make the block logic work.
1560f85e193739c953358c865005855253af4f68a497John McCall  unsigned outermostPointerIndex = 0;
1561f85e193739c953358c865005855253af4f68a497John McCall  bool isBlockPointer = false;
1562f85e193739c953358c865005855253af4f68a497John McCall  unsigned numPointers = 0;
1563f85e193739c953358c865005855253af4f68a497John McCall  for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) {
1564f85e193739c953358c865005855253af4f68a497John McCall    unsigned chunkIndex = i;
1565f85e193739c953358c865005855253af4f68a497John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(chunkIndex);
1566f85e193739c953358c865005855253af4f68a497John McCall    switch (chunk.Kind) {
1567f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::Paren:
1568f85e193739c953358c865005855253af4f68a497John McCall      // Ignore parens.
1569f85e193739c953358c865005855253af4f68a497John McCall      break;
1570f85e193739c953358c865005855253af4f68a497John McCall
1571f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::Reference:
1572f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::Pointer:
1573f85e193739c953358c865005855253af4f68a497John McCall      // Count the number of pointers.  Treat references
1574f85e193739c953358c865005855253af4f68a497John McCall      // interchangeably as pointers; if they're mis-ordered, normal
1575f85e193739c953358c865005855253af4f68a497John McCall      // type building will discover that.
1576f85e193739c953358c865005855253af4f68a497John McCall      outermostPointerIndex = chunkIndex;
1577f85e193739c953358c865005855253af4f68a497John McCall      numPointers++;
1578f85e193739c953358c865005855253af4f68a497John McCall      break;
1579f85e193739c953358c865005855253af4f68a497John McCall
1580f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::BlockPointer:
1581f85e193739c953358c865005855253af4f68a497John McCall      // If we have a pointer to block pointer, that's an acceptable
1582f85e193739c953358c865005855253af4f68a497John McCall      // indirect reference; anything else is not an application of
1583f85e193739c953358c865005855253af4f68a497John McCall      // the rules.
1584f85e193739c953358c865005855253af4f68a497John McCall      if (numPointers != 1) return;
1585f85e193739c953358c865005855253af4f68a497John McCall      numPointers++;
1586f85e193739c953358c865005855253af4f68a497John McCall      outermostPointerIndex = chunkIndex;
1587f85e193739c953358c865005855253af4f68a497John McCall      isBlockPointer = true;
1588f85e193739c953358c865005855253af4f68a497John McCall
1589f85e193739c953358c865005855253af4f68a497John McCall      // We don't care about pointer structure in return values here.
1590f85e193739c953358c865005855253af4f68a497John McCall      goto done;
1591f85e193739c953358c865005855253af4f68a497John McCall
1592f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::Array: // suppress if written (id[])?
1593f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::Function:
1594f85e193739c953358c865005855253af4f68a497John McCall    case DeclaratorChunk::MemberPointer:
1595f85e193739c953358c865005855253af4f68a497John McCall      return;
1596f85e193739c953358c865005855253af4f68a497John McCall    }
1597f85e193739c953358c865005855253af4f68a497John McCall  }
1598f85e193739c953358c865005855253af4f68a497John McCall done:
1599f85e193739c953358c865005855253af4f68a497John McCall
1600f85e193739c953358c865005855253af4f68a497John McCall  // If we have *one* pointer, then we want to throw the qualifier on
1601f85e193739c953358c865005855253af4f68a497John McCall  // the declaration-specifiers, which means that it needs to be a
1602f85e193739c953358c865005855253af4f68a497John McCall  // retainable object type.
1603f85e193739c953358c865005855253af4f68a497John McCall  if (numPointers == 1) {
1604f85e193739c953358c865005855253af4f68a497John McCall    // If it's not a retainable object type, the rule doesn't apply.
1605f85e193739c953358c865005855253af4f68a497John McCall    if (!declSpecType->isObjCRetainableType()) return;
1606f85e193739c953358c865005855253af4f68a497John McCall
1607f85e193739c953358c865005855253af4f68a497John McCall    // If it already has lifetime, don't do anything.
1608f85e193739c953358c865005855253af4f68a497John McCall    if (declSpecType.getObjCLifetime()) return;
1609f85e193739c953358c865005855253af4f68a497John McCall
1610f85e193739c953358c865005855253af4f68a497John McCall    // Otherwise, modify the type in-place.
1611f85e193739c953358c865005855253af4f68a497John McCall    Qualifiers qs;
1612f85e193739c953358c865005855253af4f68a497John McCall
1613f85e193739c953358c865005855253af4f68a497John McCall    if (declSpecType->isObjCARCImplicitlyUnretainedType())
1614f85e193739c953358c865005855253af4f68a497John McCall      qs.addObjCLifetime(Qualifiers::OCL_ExplicitNone);
1615f85e193739c953358c865005855253af4f68a497John McCall    else
1616f85e193739c953358c865005855253af4f68a497John McCall      qs.addObjCLifetime(Qualifiers::OCL_Autoreleasing);
1617f85e193739c953358c865005855253af4f68a497John McCall    declSpecType = S.Context.getQualifiedType(declSpecType, qs);
1618f85e193739c953358c865005855253af4f68a497John McCall
1619f85e193739c953358c865005855253af4f68a497John McCall  // If we have *two* pointers, then we want to throw the qualifier on
1620f85e193739c953358c865005855253af4f68a497John McCall  // the outermost pointer.
1621f85e193739c953358c865005855253af4f68a497John McCall  } else if (numPointers == 2) {
1622f85e193739c953358c865005855253af4f68a497John McCall    // If we don't have a block pointer, we need to check whether the
1623f85e193739c953358c865005855253af4f68a497John McCall    // declaration-specifiers gave us something that will turn into a
1624f85e193739c953358c865005855253af4f68a497John McCall    // retainable object pointer after we slap the first pointer on it.
1625f85e193739c953358c865005855253af4f68a497John McCall    if (!isBlockPointer && !declSpecType->isObjCObjectType())
1626f85e193739c953358c865005855253af4f68a497John McCall      return;
1627f85e193739c953358c865005855253af4f68a497John McCall
1628f85e193739c953358c865005855253af4f68a497John McCall    // Look for an explicit lifetime attribute there.
1629f85e193739c953358c865005855253af4f68a497John McCall    DeclaratorChunk &chunk = declarator.getTypeObject(outermostPointerIndex);
16301c73dcbe1f1921bad8311cfb5089d30b4bd75b66Argyrios Kyrtzidis    if (chunk.Kind != DeclaratorChunk::Pointer &&
16311c73dcbe1f1921bad8311cfb5089d30b4bd75b66Argyrios Kyrtzidis        chunk.Kind != DeclaratorChunk::BlockPointer)
16321c73dcbe1f1921bad8311cfb5089d30b4bd75b66Argyrios Kyrtzidis      return;
1633f85e193739c953358c865005855253af4f68a497John McCall    for (const AttributeList *attr = chunk.getAttrs(); attr;
1634f85e193739c953358c865005855253af4f68a497John McCall           attr = attr->getNext())
1635b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis      if (attr->getKind() == AttributeList::AT_objc_ownership)
1636f85e193739c953358c865005855253af4f68a497John McCall        return;
1637f85e193739c953358c865005855253af4f68a497John McCall
1638a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidis    transferARCOwnershipToDeclaratorChunk(state, Qualifiers::OCL_Autoreleasing,
1639a8349f5e60d1b5b0e658195a60d385b56ed440ecArgyrios Kyrtzidis                                          outermostPointerIndex);
1640f85e193739c953358c865005855253af4f68a497John McCall
1641f85e193739c953358c865005855253af4f68a497John McCall  // Any other number of pointers/references does not trigger the rule.
1642f85e193739c953358c865005855253af4f68a497John McCall  } else return;
1643f85e193739c953358c865005855253af4f68a497John McCall
1644f85e193739c953358c865005855253af4f68a497John McCall  // TODO: mark whether we did this inference?
1645f85e193739c953358c865005855253af4f68a497John McCall}
1646f85e193739c953358c865005855253af4f68a497John McCall
1647d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruthstatic void DiagnoseIgnoredQualifiers(unsigned Quals,
1648d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                      SourceLocation ConstQualLoc,
1649d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                      SourceLocation VolatileQualLoc,
1650d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                      SourceLocation RestrictQualLoc,
1651d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                      Sema& S) {
1652d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  std::string QualStr;
1653d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  unsigned NumQuals = 0;
1654d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  SourceLocation Loc;
1655d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
1656d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  FixItHint ConstFixIt;
1657d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  FixItHint VolatileFixIt;
1658d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  FixItHint RestrictFixIt;
1659d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
1660a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg  const SourceManager &SM = S.getSourceManager();
1661a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg
1662d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  // FIXME: The locations here are set kind of arbitrarily. It'd be nicer to
1663d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  // find a range and grow it to encompass all the qualifiers, regardless of
1664d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  // the order in which they textually appear.
1665d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  if (Quals & Qualifiers::Const) {
1666d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    ConstFixIt = FixItHint::CreateRemoval(ConstQualLoc);
1667d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    QualStr = "const";
1668a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    ++NumQuals;
1669a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    if (!Loc.isValid() || SM.isBeforeInTranslationUnit(ConstQualLoc, Loc))
1670a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg      Loc = ConstQualLoc;
1671d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  }
1672d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  if (Quals & Qualifiers::Volatile) {
1673d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    VolatileFixIt = FixItHint::CreateRemoval(VolatileQualLoc);
1674a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    QualStr += (NumQuals == 0 ? "volatile" : " volatile");
1675d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    ++NumQuals;
1676a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    if (!Loc.isValid() || SM.isBeforeInTranslationUnit(VolatileQualLoc, Loc))
1677a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg      Loc = VolatileQualLoc;
1678d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  }
1679d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  if (Quals & Qualifiers::Restrict) {
1680d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    RestrictFixIt = FixItHint::CreateRemoval(RestrictQualLoc);
1681a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    QualStr += (NumQuals == 0 ? "restrict" : " restrict");
1682d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth    ++NumQuals;
1683a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    if (!Loc.isValid() || SM.isBeforeInTranslationUnit(RestrictQualLoc, Loc))
1684a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg      Loc = RestrictQualLoc;
1685d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  }
1686d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
1687d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  assert(NumQuals > 0 && "No known qualifiers?");
1688d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
1689d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth  S.Diag(Loc, diag::warn_qual_return_type)
1690a08fcb8105bf53f3640ad17f61bdcde2d8ace78aHans Wennborg    << QualStr << NumQuals << ConstFixIt << VolatileFixIt << RestrictFixIt;
1691d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth}
1692d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
16938cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidisstatic QualType GetDeclSpecTypeForDeclarator(TypeProcessingState &state,
16948cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                                             TypeSourceInfo *&ReturnTypeInfo) {
16958cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  Sema &SemaRef = state.getSema();
16968cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  Declarator &D = state.getDeclarator();
1697930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor  QualType T;
16988cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  ReturnTypeInfo = 0;
1699711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
17008cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  // The TagDecl owned by the DeclSpec.
17018cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  TagDecl *OwnedTagDecl = 0;
17028999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl
17033f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  switch (D.getName().getKind()) {
170498a5403ecf1d2b60ae8cbf43e54194bd762cacaaFariborz Jahanian  case UnqualifiedId::IK_ImplicitSelfParam:
17053f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_OperatorFunctionId:
17068999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl  case UnqualifiedId::IK_Identifier:
17070486d746019f8310589b1f0d92edcc4bb3916b33Sean Hunt  case UnqualifiedId::IK_LiteralOperatorId:
17083f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_TemplateId:
17098cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    T = ConvertDeclSpecToType(state);
17105db2bb1cb0c040dcbca1b5000f091d6d225b4bfeChris Lattner
1711591bd3cb605f1f0229b4b1d8a4b8183377064ec5Douglas Gregor    if (!D.isInvalidType() && D.getDeclSpec().isTypeSpecOwned()) {
1712d3880f8458bb6a03818ee01f758c32f945de3eaaArgyrios Kyrtzidis      OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
171315987970eeaa1842c29ec8797affd1c1dea05585Abramo Bagnara      // Owned declaration is embedded in declarator.
1714d3880f8458bb6a03818ee01f758c32f945de3eaaArgyrios Kyrtzidis      OwnedTagDecl->setEmbeddedInDeclarator(true);
1715591bd3cb605f1f0229b4b1d8a4b8183377064ec5Douglas Gregor    }
1716930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor    break;
1717930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor
17183f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_ConstructorName:
17190efc2c1716be4f1c5f1343cad3b047e74861f030Douglas Gregor  case UnqualifiedId::IK_ConstructorTemplateId:
17203f9a0566e6793151b99a65ab936220971cf96c1bDouglas Gregor  case UnqualifiedId::IK_DestructorName:
1721930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor    // Constructors and destructors don't have return types. Use
172248026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor    // "void" instead.
17238cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    T = SemaRef.Context.VoidTy;
1724930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor    break;
172548026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor
172648026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor  case UnqualifiedId::IK_ConversionFunctionId:
172748026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor    // The result type of a conversion function is the type that it
172848026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor    // converts to.
17298cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    T = SemaRef.GetTypeFromParser(D.getName().ConversionFunctionId,
17308cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                                  &ReturnTypeInfo);
173148026d26fb58e413544874eead5491b1452e2ebfDouglas Gregor    break;
1732930d8b5ecc074cca01ecd9a522a55f55f3b72396Douglas Gregor  }
1733dab60ad68a3a98d687305941a3852e793705f945Douglas Gregor
1734711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (D.getAttributes())
1735711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    distributeTypeAttrsFromDeclarator(state, T);
1736711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
1737e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith  // C++0x [dcl.spec.auto]p5: reject 'auto' if it is not in an allowed context.
17388110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith  // In C++0x, a function declarator using 'auto' must have a trailing return
17398110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith  // type (this is checked later) and we can skip this. In other languages
17408110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith  // using auto, we need to check regardless.
174134b41d939a1328f484511c6002ba2456db879a29Richard Smith  if (D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto &&
17428cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      (!SemaRef.getLangOptions().CPlusPlus0x || !D.isFunctionDeclarator())) {
1743baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    int Error = -1;
17441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1745baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    switch (D.getContext()) {
1746baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::KNRTypeListContext:
1747baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      assert(0 && "K&R type lists aren't allowed in C++");
1748baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1749c05a94b7accd4035bf5d5897c434c445b22da855John McCall    case Declarator::ObjCPrototypeContext:
1750baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::PrototypeContext:
1751baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      Error = 0; // Function prototype
1752baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1753baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::MemberContext:
17547a614d8380297fcd2bc23986241905d97222948cRichard Smith      if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)
17557a614d8380297fcd2bc23986241905d97222948cRichard Smith        break;
17568cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      switch (cast<TagDecl>(SemaRef.CurContext)->getTagKind()) {
1757465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara      case TTK_Enum: assert(0 && "unhandled tag kind"); break;
1758465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara      case TTK_Struct: Error = 1; /* Struct member */ break;
1759465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara      case TTK_Union:  Error = 2; /* Union member */ break;
1760465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara      case TTK_Class:  Error = 3; /* Class member */ break;
17611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      }
1762baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1763baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::CXXCatchContext:
176417b6399f8461c5b7e1c6f367b0a0dde49f921240Argyrios Kyrtzidis    case Declarator::ObjCCatchContext:
1765baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      Error = 4; // Exception declaration
1766baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1767baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::TemplateParamContext:
1768baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      Error = 5; // Template parameter
1769baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1770baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::BlockLiteralContext:
177134b41d939a1328f484511c6002ba2456db879a29Richard Smith      Error = 6; // Block literal
177234b41d939a1328f484511c6002ba2456db879a29Richard Smith      break;
177334b41d939a1328f484511c6002ba2456db879a29Richard Smith    case Declarator::TemplateTypeArgContext:
177434b41d939a1328f484511c6002ba2456db879a29Richard Smith      Error = 7; // Template type argument
177534b41d939a1328f484511c6002ba2456db879a29Richard Smith      break;
1776162e1c1b487352434552147967c3dd296ebee2f7Richard Smith    case Declarator::AliasDeclContext:
17773e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith    case Declarator::AliasTemplateContext:
1778162e1c1b487352434552147967c3dd296ebee2f7Richard Smith      Error = 9; // Type alias
1779162e1c1b487352434552147967c3dd296ebee2f7Richard Smith      break;
178034b41d939a1328f484511c6002ba2456db879a29Richard Smith    case Declarator::TypeNameContext:
17810b8c98f3ddf83adcb9e9d98b68ce38e970cdee73Argyrios Kyrtzidis      Error = 11; // Generic
1782baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1783baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::FileContext:
1784baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::BlockContext:
1785baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::ForContext:
1786baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    case Declarator::ConditionContext:
17870b8c98f3ddf83adcb9e9d98b68ce38e970cdee73Argyrios Kyrtzidis    case Declarator::CXXNewContext:
1788baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      break;
1789baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    }
1790baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson
1791ddc83f9255834217f0559b09ff75a1c50b8ce457Richard Smith    if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1792ddc83f9255834217f0559b09ff75a1c50b8ce457Richard Smith      Error = 8;
1793ddc83f9255834217f0559b09ff75a1c50b8ce457Richard Smith
17948110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith    // In Objective-C it is an error to use 'auto' on a function declarator.
17958110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith    if (D.isFunctionDeclarator())
1796162e1c1b487352434552147967c3dd296ebee2f7Richard Smith      Error = 10;
17978110f04b39fd028496dd6bf9e3a78278c3e0a6adRichard Smith
1798e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith    // C++0x [dcl.spec.auto]p2: 'auto' is always fine if the declarator
1799e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith    // contains a trailing return type. That is only legal at the outermost
1800e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith    // level. Check all declarator chunks (outermost first) anyway, to give
1801e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith    // better diagnostics.
18028cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    if (SemaRef.getLangOptions().CPlusPlus0x && Error != -1) {
1803e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
1804e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        unsigned chunkIndex = e - i - 1;
1805e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        state.setCurrentChunkIndex(chunkIndex);
1806e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex);
1807e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        if (DeclType.Kind == DeclaratorChunk::Function) {
1808e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1809e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          if (FTI.TrailingReturnType) {
1810e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith            Error = -1;
1811e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith            break;
1812e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          }
1813e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        }
1814e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      }
1815e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith    }
1816e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith
1817baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    if (Error != -1) {
18188cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      SemaRef.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
18198cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                   diag::err_auto_not_allowed)
1820baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson        << Error;
18218cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = SemaRef.Context.IntTy;
1822baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson      D.setInvalidType(true);
1823baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson    }
1824baf45d31f18e6d5b3d2a33695c2af6e6cbc4ee29Anders Carlsson  }
18258cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
18268cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  if (SemaRef.getLangOptions().CPlusPlus &&
18278cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      OwnedTagDecl && OwnedTagDecl->isDefinition()) {
18288cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    // Check the contexts where C++ forbids the declaration of a new class
18298cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    // or enumeration in a type-specifier-seq.
18308cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    switch (D.getContext()) {
18318cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::FileContext:
18328cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::MemberContext:
18338cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::BlockContext:
18348cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::ForContext:
18358cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::BlockLiteralContext:
18368cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      // C++0x [dcl.type]p3:
18378cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      //   A type-specifier-seq shall not define a class or enumeration unless
18388cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      //   it appears in the type-id of an alias-declaration (7.1.3) that is not
18398cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      //   the declaration of a template-declaration.
18408cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::AliasDeclContext:
18418cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      break;
18428cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::AliasTemplateContext:
18438cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      SemaRef.Diag(OwnedTagDecl->getLocation(),
18448cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis             diag::err_type_defined_in_alias_template)
18458cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
18468cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      break;
18478cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::TypeNameContext:
18488cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::TemplateParamContext:
18498cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::CXXNewContext:
18508cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::CXXCatchContext:
18518cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::ObjCCatchContext:
18528cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::TemplateTypeArgContext:
18538cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      SemaRef.Diag(OwnedTagDecl->getLocation(),
18548cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis             diag::err_type_defined_in_type_specifier)
18558cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
18568cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      break;
18578cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::PrototypeContext:
18588cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::ObjCPrototypeContext:
18598cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::KNRTypeListContext:
18608cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      // C++ [dcl.fct]p6:
18618cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      //   Types shall not be defined in return or parameter types.
18628cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      SemaRef.Diag(OwnedTagDecl->getLocation(),
18638cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                   diag::err_type_defined_in_param_type)
18648cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        << SemaRef.Context.getTypeDeclType(OwnedTagDecl);
18658cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      break;
18668cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    case Declarator::ConditionContext:
18678cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      // C++ 6.4p2:
18688cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      // The type-specifier-seq shall not contain typedef and shall not declare
18698cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      // a new class or enumeration.
18708cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      SemaRef.Diag(OwnedTagDecl->getLocation(),
18718cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                   diag::err_type_defined_in_condition);
18728cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      break;
18738cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    }
18748cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  }
18758cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
18768cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  return T;
18778cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis}
18788cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
18798cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidisstatic TypeSourceInfo *GetFullTypeForDeclarator(TypeProcessingState &state,
18808cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                                                QualType declSpecType,
18818cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                                                TypeSourceInfo *TInfo) {
18828cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
18838cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  QualType T = declSpecType;
18848cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  Declarator &D = state.getDeclarator();
18858cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  Sema &S = state.getSema();
18868cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  ASTContext &Context = S.Context;
18878cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  const LangOptions &LangOpts = S.getLangOptions();
18888cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
18898cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  bool ImplicitlyNoexcept = false;
18908cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  if (D.getName().getKind() == UnqualifiedId::IK_OperatorFunctionId &&
18918cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      LangOpts.CPlusPlus0x) {
18928cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    OverloadedOperatorKind OO = D.getName().OperatorFunctionId.Operator;
18938cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    /// In C++0x, deallocation functions (normal and array operator delete)
18948cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    /// are implicitly noexcept.
18958cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    if (OO == OO_Delete || OO == OO_Array_Delete)
18968cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      ImplicitlyNoexcept = true;
18978cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  }
189834b41d939a1328f484511c6002ba2456db879a29Richard Smith
1899cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  // The name we're declaring, if any.
1900cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  DeclarationName Name;
1901cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor  if (D.getIdentifier())
1902cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    Name = D.getIdentifier();
19031eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1904162e1c1b487352434552147967c3dd296ebee2f7Richard Smith  // Does this declaration declare a typedef-name?
1905162e1c1b487352434552147967c3dd296ebee2f7Richard Smith  bool IsTypedefName =
1906162e1c1b487352434552147967c3dd296ebee2f7Richard Smith    D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef ||
19073e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith    D.getContext() == Declarator::AliasDeclContext ||
19083e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith    D.getContext() == Declarator::AliasTemplateContext;
1909162e1c1b487352434552147967c3dd296ebee2f7Richard Smith
191098eb8a7a702b95183ed015706b1f1c66f5cb27a4Mike Stump  // Walk the DeclTypeInfo, building the recursive type as we go.
191198eb8a7a702b95183ed015706b1f1c66f5cb27a4Mike Stump  // DeclTypeInfos are ordered from the identifier out, which is
191298eb8a7a702b95183ed015706b1f1c66f5cb27a4Mike Stump  // opposite of what we want :).
19138ce35b095e8fca45e04c1bda14ed0548ce7536adSebastian Redl  for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
1914711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    unsigned chunkIndex = e - i - 1;
1915711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    state.setCurrentChunkIndex(chunkIndex);
1916711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex);
19175f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    switch (DeclType.Kind) {
19185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    default: assert(0 && "Unknown decltype!");
1919075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara    case DeclaratorChunk::Paren:
19208cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = S.BuildParenType(T);
1921075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara      break;
19225618bd4a52c45fbbb605e3ba885663b2164db8a3Steve Naroff    case DeclaratorChunk::BlockPointer:
19239af5500f3f132f9a2f9abbe82113a7c7bb751472Chris Lattner      // If blocks are disabled, emit an error.
19249af5500f3f132f9a2f9abbe82113a7c7bb751472Chris Lattner      if (!LangOpts.Blocks)
19258cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(DeclType.Loc, diag::err_blocks_disable);
19261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
19278cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = S.BuildBlockPointerType(T, D.getIdentifierLoc(), Name);
19282865474261a608c7873b87ba4af110d17907896dJohn McCall      if (DeclType.Cls.TypeQuals)
19298cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Cls.TypeQuals);
19305618bd4a52c45fbbb605e3ba885663b2164db8a3Steve Naroff      break;
19315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    case DeclaratorChunk::Pointer:
19326a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // Verify that we're not building a pointer to pointer to function with
19336a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // exception specification.
19348cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
19358cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
19366a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        D.setInvalidType(true);
19376a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        // Build the type anyway.
19386a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      }
19398cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (LangOpts.ObjC1 && T->getAs<ObjCObjectType>()) {
1940c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        T = Context.getObjCObjectPointerType(T);
19412865474261a608c7873b87ba4af110d17907896dJohn McCall        if (DeclType.Ptr.TypeQuals)
19428cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
194314108da7f7fc059772711e4ffee1322a27b152a7Steve Naroff        break;
194414108da7f7fc059772711e4ffee1322a27b152a7Steve Naroff      }
19458cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = S.BuildPointerType(T, DeclType.Loc, Name);
19462865474261a608c7873b87ba4af110d17907896dJohn McCall      if (DeclType.Ptr.TypeQuals)
19478cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
1948711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
19495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      break;
19500953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    case DeclaratorChunk::Reference: {
19516a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // Verify that we're not building a reference to pointer to function with
19526a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // exception specification.
19538cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
19548cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
19556a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        D.setInvalidType(true);
19566a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        // Build the type anyway.
19576a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      }
19588cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = S.BuildReferenceType(T, DeclType.Ref.LValueRef, DeclType.Loc, Name);
19592865474261a608c7873b87ba4af110d17907896dJohn McCall
19602865474261a608c7873b87ba4af110d17907896dJohn McCall      Qualifiers Quals;
19612865474261a608c7873b87ba4af110d17907896dJohn McCall      if (DeclType.Ref.HasRestrict)
19628cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        T = S.BuildQualifiedType(T, DeclType.Loc, Qualifiers::Restrict);
19635f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      break;
19640953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    }
19655f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    case DeclaratorChunk::Array: {
19666a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // Verify that we're not building an array of pointers to function with
19676a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      // exception specification.
19688cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (LangOpts.CPlusPlus && S.CheckDistantExceptionSpec(T)) {
19698cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
19706a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        D.setInvalidType(true);
19716a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl        // Build the type anyway.
19726a7330c20cabf1cf1cd46f5dfc183ec3a72add66Sebastian Redl      }
1973fd89bc825026e44c68a68db72d4012fd6752e70fChris Lattner      DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
197494f81fd0b0f81a99d215b225c8c5616295b063f6Chris Lattner      Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
19755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      ArrayType::ArraySizeModifier ASM;
19765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      if (ATI.isStar)
19775f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        ASM = ArrayType::Star;
19785f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      else if (ATI.hasStatic)
19795f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        ASM = ArrayType::Static;
19805f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      else
19815f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        ASM = ArrayType::Normal;
1982c05a94b7accd4035bf5d5897c434c445b22da855John McCall      if (ASM == ArrayType::Star && !D.isPrototypeContext()) {
1983f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman        // FIXME: This check isn't quite right: it allows star in prototypes
1984f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman        // for function definitions, and disallows some edge cases detailed
1985f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman        // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
19868cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1987f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman        ASM = ArrayType::Normal;
1988f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman        D.setInvalidType(true);
1989f91f5c8a66ffd812f61819836529f8ad437f7e2bEli Friedman      }
19908cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      T = S.BuildArrayType(T, ASM, ArraySize,
19918cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                           Qualifiers::fromCVRMask(ATI.TypeQuals),
19928cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                           SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
19935f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      break;
19945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
1995f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl    case DeclaratorChunk::Function: {
19965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      // If the function declarator has a prototype (i.e. it is not () and
19975f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      // does not have a K&R-style identifier list), then the arguments are part
19985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      // of the type, otherwise the argument list is ().
19995f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
20003cc9726a493d90bd8faf094986a59352fd3461cbSebastian Redl
200134b41d939a1328f484511c6002ba2456db879a29Richard Smith      // Check for auto functions and trailing return type and adjust the
200234b41d939a1328f484511c6002ba2456db879a29Richard Smith      // return type accordingly.
200334b41d939a1328f484511c6002ba2456db879a29Richard Smith      if (!D.isInvalidType()) {
200434b41d939a1328f484511c6002ba2456db879a29Richard Smith        // trailing-return-type is only required if we're declaring a function,
200534b41d939a1328f484511c6002ba2456db879a29Richard Smith        // and not, for instance, a pointer to a function.
200634b41d939a1328f484511c6002ba2456db879a29Richard Smith        if (D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto &&
200734b41d939a1328f484511c6002ba2456db879a29Richard Smith            !FTI.TrailingReturnType && chunkIndex == 0) {
20088cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
200934b41d939a1328f484511c6002ba2456db879a29Richard Smith               diag::err_auto_missing_trailing_return);
201034b41d939a1328f484511c6002ba2456db879a29Richard Smith          T = Context.IntTy;
201134b41d939a1328f484511c6002ba2456db879a29Richard Smith          D.setInvalidType(true);
201234b41d939a1328f484511c6002ba2456db879a29Richard Smith        } else if (FTI.TrailingReturnType) {
2013e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          // T must be exactly 'auto' at this point. See CWG issue 681.
2014e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          if (isa<ParenType>(T)) {
20158cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
2016e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith                 diag::err_trailing_return_in_parens)
2017e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith              << T << D.getDeclSpec().getSourceRange();
2018e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith            D.setInvalidType(true);
2019e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          } else if (T.hasQualifiers() || !isa<AutoType>(T)) {
20208cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(D.getDeclSpec().getTypeSpecTypeLoc(),
202134b41d939a1328f484511c6002ba2456db879a29Richard Smith                 diag::err_trailing_return_without_auto)
202234b41d939a1328f484511c6002ba2456db879a29Richard Smith              << T << D.getDeclSpec().getSourceRange();
202334b41d939a1328f484511c6002ba2456db879a29Richard Smith            D.setInvalidType(true);
202434b41d939a1328f484511c6002ba2456db879a29Richard Smith          }
202534b41d939a1328f484511c6002ba2456db879a29Richard Smith
20268cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          T = S.GetTypeFromParser(
202734b41d939a1328f484511c6002ba2456db879a29Richard Smith            ParsedType::getFromOpaquePtr(FTI.TrailingReturnType),
20288cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            &TInfo);
202934b41d939a1328f484511c6002ba2456db879a29Richard Smith        }
203034b41d939a1328f484511c6002ba2456db879a29Richard Smith      }
203134b41d939a1328f484511c6002ba2456db879a29Richard Smith
2032e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      // C99 6.7.5.3p1: The return type may not be a function or array type.
2033e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      // For conversion functions, we'll diagnose this particular error later.
2034e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      if ((T->isArrayType() || T->isFunctionType()) &&
2035e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          (D.getName().getKind() != UnqualifiedId::IK_ConversionFunctionId)) {
2036e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        unsigned diagID = diag::err_func_returning_array_function;
2037e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        // Last processing chunk in block context means this function chunk
2038e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        // represents the block.
2039e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        if (chunkIndex == 0 &&
2040e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith            D.getContext() == Declarator::BlockLiteralContext)
2041e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith          diagID = diag::err_block_returning_array_function;
20428cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(DeclType.Loc, diagID) << T->isFunctionType() << T;
2043e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        T = Context.IntTy;
2044e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith        D.setInvalidType(true);
2045e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith      }
2046e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith
20475291c3cec0dbe8ad1d8e7e67e93af2b1586d5400Douglas Gregor      // cv-qualifiers on return types are pointless except when the type is a
20485291c3cec0dbe8ad1d8e7e67e93af2b1586d5400Douglas Gregor      // class type in C++.
2049fff951371dfc309160a99d423e43a7841aeb35aaDouglas Gregor      if (isa<PointerType>(T) && T.getLocalCVRQualifiers() &&
20501e15394853bfae25112d9cc6b445504905e1f34aRafael Espindola          (D.getName().getKind() != UnqualifiedId::IK_ConversionFunctionId) &&
20518cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          (!LangOpts.CPlusPlus || !T->isDependentType())) {
2052d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        assert(chunkIndex + 1 < e && "No DeclaratorChunk for the return type?");
2053d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        DeclaratorChunk ReturnTypeChunk = D.getTypeObject(chunkIndex + 1);
2054d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        assert(ReturnTypeChunk.Kind == DeclaratorChunk::Pointer);
2055d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
2056d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        DeclaratorChunk::PointerTypeInfo &PTI = ReturnTypeChunk.Ptr;
2057d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
2058d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        DiagnoseIgnoredQualifiers(PTI.TypeQuals,
2059d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth            SourceLocation::getFromRawEncoding(PTI.ConstQualLoc),
2060d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth            SourceLocation::getFromRawEncoding(PTI.VolatileQualLoc),
2061d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth            SourceLocation::getFromRawEncoding(PTI.RestrictQualLoc),
20628cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S);
2063d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
2064d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth      } else if (T.getCVRQualifiers() && D.getDeclSpec().getTypeQualifiers() &&
20658cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          (!LangOpts.CPlusPlus ||
20665291c3cec0dbe8ad1d8e7e67e93af2b1586d5400Douglas Gregor           (!T->isDependentType() && !T->isRecordType()))) {
2067d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
2068d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth        DiagnoseIgnoredQualifiers(D.getDeclSpec().getTypeQualifiers(),
2069d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                  D.getDeclSpec().getConstSpecLoc(),
2070d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                  D.getDeclSpec().getVolatileSpecLoc(),
2071d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth                                  D.getDeclSpec().getRestrictSpecLoc(),
20728cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                                  S);
20735291c3cec0dbe8ad1d8e7e67e93af2b1586d5400Douglas Gregor      }
2074d067c07c6cbf099b25aba38bcb66f38e79d0c420Chandler Carruth
20758cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (LangOpts.CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
2076402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor        // C++ [dcl.fct]p6:
2077402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor        //   Types shall not be defined in return or parameter types.
2078b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall        TagDecl *Tag = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
2079402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor        if (Tag->isDefinition())
20808cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          S.Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
2081402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor            << Context.getTypeDeclType(Tag);
2082402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor      }
2083402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor
20843cc9726a493d90bd8faf094986a59352fd3461cbSebastian Redl      // Exception specs are not allowed in typedefs. Complain, but add it
20853cc9726a493d90bd8faf094986a59352fd3461cbSebastian Redl      // anyway.
2086162e1c1b487352434552147967c3dd296ebee2f7Richard Smith      if (IsTypedefName && FTI.getExceptionSpecType())
20878cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(FTI.getExceptionSpecLoc(), diag::err_exception_spec_in_typedef)
20883e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith          << (D.getContext() == Declarator::AliasDeclContext ||
20893e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith              D.getContext() == Declarator::AliasTemplateContext);
20903cc9726a493d90bd8faf094986a59352fd3461cbSebastian Redl
20918cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      if (!FTI.NumArgs && !FTI.isVariadic && !LangOpts.CPlusPlus) {
20922865474261a608c7873b87ba4af110d17907896dJohn McCall        // Simple void foo(), where the incoming T is the result type.
20932865474261a608c7873b87ba4af110d17907896dJohn McCall        T = Context.getFunctionNoProtoType(T);
20942865474261a608c7873b87ba4af110d17907896dJohn McCall      } else {
20952865474261a608c7873b87ba4af110d17907896dJohn McCall        // We allow a zero-parameter variadic function in C if the
20962865474261a608c7873b87ba4af110d17907896dJohn McCall        // function is marked with the "overloadable" attribute. Scan
20972865474261a608c7873b87ba4af110d17907896dJohn McCall        // for this attribute now.
20988cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        if (!FTI.NumArgs && FTI.isVariadic && !LangOpts.CPlusPlus) {
2099965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor          bool Overloadable = false;
2100965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor          for (const AttributeList *Attrs = D.getAttributes();
2101965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor               Attrs; Attrs = Attrs->getNext()) {
2102965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor            if (Attrs->getKind() == AttributeList::AT_overloadable) {
2103965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor              Overloadable = true;
2104965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor              break;
2105965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor            }
2106965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor          }
2107965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor
2108965acbb321e94e36aa5365126eee46b97745fdbbDouglas Gregor          if (!Overloadable)
21098cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
2110c6f7345e44e079f373d6bdecaa06c7e06574dc27Argyrios Kyrtzidis        }
21112865474261a608c7873b87ba4af110d17907896dJohn McCall
21122865474261a608c7873b87ba4af110d17907896dJohn McCall        if (FTI.NumArgs && FTI.ArgInfo[0].Param == 0) {
2113788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner          // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function
2114788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner          // definition.
21158cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          S.Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
21162865474261a608c7873b87ba4af110d17907896dJohn McCall          D.setInvalidType(true);
21172865474261a608c7873b87ba4af110d17907896dJohn McCall          break;
21182865474261a608c7873b87ba4af110d17907896dJohn McCall        }
21192865474261a608c7873b87ba4af110d17907896dJohn McCall
2120e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall        FunctionProtoType::ExtProtoInfo EPI;
2121e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall        EPI.Variadic = FTI.isVariadic;
2122e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall        EPI.TypeQuals = FTI.TypeQuals;
2123c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor        EPI.RefQualifier = !FTI.hasRefQualifier()? RQ_None
2124c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor                    : FTI.RefQualifierIsLValueRef? RQ_LValue
2125c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor                    : RQ_RValue;
2126c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor
21275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        // Otherwise, we have a function with an argument list that is
21285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        // potentially variadic.
21295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        llvm::SmallVector<QualType, 16> ArgTys;
21302865474261a608c7873b87ba4af110d17907896dJohn McCall        ArgTys.reserve(FTI.NumArgs);
21311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2132f85e193739c953358c865005855253af4f68a497John McCall        llvm::SmallVector<bool, 16> ConsumedArguments;
2133f85e193739c953358c865005855253af4f68a497John McCall        ConsumedArguments.reserve(FTI.NumArgs);
2134f85e193739c953358c865005855253af4f68a497John McCall        bool HasAnyConsumedArguments = false;
2135f85e193739c953358c865005855253af4f68a497John McCall
21365f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
2137d226f65006733ed7f709c3174f22ce33391cb58fJohn McCall          ParmVarDecl *Param = cast<ParmVarDecl>(FTI.ArgInfo[i].Param);
21388123a95c33b792d35c2e4992ba6e27882748fb0dChris Lattner          QualType ArgTy = Param->getType();
213978c75fb3d275079c5fab30eeb33077958f2b0265Chris Lattner          assert(!ArgTy.isNull() && "Couldn't parse type?");
21402dc0e64e57b2a1786fa53a7dbd1d5c8e255eadb0Douglas Gregor
21412dc0e64e57b2a1786fa53a7dbd1d5c8e255eadb0Douglas Gregor          // Adjust the parameter type.
214279e6bd379773447a74cc3e579d9081e4c5cb6d63Douglas Gregor          assert((ArgTy == Context.getAdjustedParameterType(ArgTy)) &&
214379e6bd379773447a74cc3e579d9081e4c5cb6d63Douglas Gregor                 "Unadjusted type?");
21442dc0e64e57b2a1786fa53a7dbd1d5c8e255eadb0Douglas Gregor
21455f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer          // Look for 'void'.  void is allowed only as a single argument to a
21465f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer          // function with no other parameters (C99 6.7.5.3p10).  We record
214772564e73277e29f6db3305d1f27ba408abb7ed88Douglas Gregor          // int(void) as a FunctionProtoType with an empty argument list.
21482dc0e64e57b2a1786fa53a7dbd1d5c8e255eadb0Douglas Gregor          if (ArgTy->isVoidType()) {
21495f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer            // If this is something like 'float(int, void)', reject it.  'void'
21505f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer            // is an incomplete type (C99 6.2.5p19) and function decls cannot
21515f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer            // have arguments of incomplete type.
21525f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer            if (FTI.NumArgs != 1 || FTI.isVariadic) {
21538cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis              S.Diag(DeclType.Loc, diag::err_void_only_param);
21542ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              ArgTy = Context.IntTy;
21558123a95c33b792d35c2e4992ba6e27882748fb0dChris Lattner              Param->setType(ArgTy);
21562ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner            } else if (FTI.ArgInfo[i].Ident) {
21572ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              // Reject, but continue to parse 'int(void abc)'.
21588cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis              S.Diag(FTI.ArgInfo[i].IdentLoc,
21594565d4e83cec55356fe9c75929579eacced9da36Chris Lattner                   diag::err_param_with_void_type);
21602ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              ArgTy = Context.IntTy;
21618123a95c33b792d35c2e4992ba6e27882748fb0dChris Lattner              Param->setType(ArgTy);
21622ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner            } else {
21632ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              // Reject, but continue to parse 'float(const void)'.
21640953e767ff7817f97b3ab20896b229891eeff45bJohn McCall              if (ArgTy.hasQualifiers())
21658cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                S.Diag(DeclType.Loc, diag::err_void_param_qualified);
21661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
21672ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              // Do not add 'void' to the ArgTys list.
21682ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner              break;
21692ff5426cd83ae02378efacdfeb70d6785eb09a30Chris Lattner            }
2170eb4b7051a596560ef4a1846e3714707f44e9dc30Eli Friedman          } else if (!FTI.hasPrototype) {
2171eb4b7051a596560ef4a1846e3714707f44e9dc30Eli Friedman            if (ArgTy->isPromotableIntegerType()) {
2172a95d75769edae299816ec7fd9bbcdf1ef617c5c9Eli Friedman              ArgTy = Context.getPromotedIntegerType(ArgTy);
2173eecf5fa12d5426637c47d7072f0c193a8d7ff68bJohn McCall              Param->setKNRPromoted(true);
2174183700f494ec9b6701b6efe82bcb25f4c79ba561John McCall            } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
2175eecf5fa12d5426637c47d7072f0c193a8d7ff68bJohn McCall              if (BTy->getKind() == BuiltinType::Float) {
2176eb4b7051a596560ef4a1846e3714707f44e9dc30Eli Friedman                ArgTy = Context.DoubleTy;
2177eecf5fa12d5426637c47d7072f0c193a8d7ff68bJohn McCall                Param->setKNRPromoted(true);
2178eecf5fa12d5426637c47d7072f0c193a8d7ff68bJohn McCall              }
2179eb4b7051a596560ef4a1846e3714707f44e9dc30Eli Friedman            }
21805f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer          }
218156a965c0f77c9e6bffd65cc8f8796442a8527381Fariborz Jahanian
21828cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis          if (LangOpts.ObjCAutoRefCount) {
2183f85e193739c953358c865005855253af4f68a497John McCall            bool Consumed = Param->hasAttr<NSConsumedAttr>();
2184f85e193739c953358c865005855253af4f68a497John McCall            ConsumedArguments.push_back(Consumed);
2185f85e193739c953358c865005855253af4f68a497John McCall            HasAnyConsumedArguments |= Consumed;
2186f85e193739c953358c865005855253af4f68a497John McCall          }
2187f85e193739c953358c865005855253af4f68a497John McCall
218854e14c4db764c0636160d26c5bbf491637c83a76John McCall          ArgTys.push_back(ArgTy);
21895f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer        }
2190465226e23a3008bd68973513dda1f9e3cd27dbddSebastian Redl
2191f85e193739c953358c865005855253af4f68a497John McCall        if (HasAnyConsumedArguments)
2192f85e193739c953358c865005855253af4f68a497John McCall          EPI.ConsumedArguments = ConsumedArguments.data();
2193f85e193739c953358c865005855253af4f68a497John McCall
2194465226e23a3008bd68973513dda1f9e3cd27dbddSebastian Redl        llvm::SmallVector<QualType, 4> Exceptions;
21958b5b4099c61a136e9a1714c4d8a593febe942268Sebastian Redl        EPI.ExceptionSpecType = FTI.getExceptionSpecType();
21968b5b4099c61a136e9a1714c4d8a593febe942268Sebastian Redl        if (FTI.getExceptionSpecType() == EST_Dynamic) {
2197e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall          Exceptions.reserve(FTI.NumExceptions);
2198e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall          for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
2199e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall            // FIXME: Preserve type source info.
22008cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            QualType ET = S.GetTypeFromParser(FTI.Exceptions[ei].Ty);
2201e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall            // Check that the type is valid for an exception spec, and
2202e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall            // drop it if not.
22038cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            if (!S.CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
2204e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall              Exceptions.push_back(ET);
2205e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall          }
2206373920bd733b1d28fe7bf209945a62eb9248d948John McCall          EPI.NumExceptions = Exceptions.size();
2207e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall          EPI.Exceptions = Exceptions.data();
22088b5b4099c61a136e9a1714c4d8a593febe942268Sebastian Redl        } else if (FTI.getExceptionSpecType() == EST_ComputedNoexcept) {
220960618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl          // If an error occurred, there's no expression here.
221060618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl          if (Expr *NoexceptExpr = FTI.NoexceptExpr) {
221160618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl            assert((NoexceptExpr->isTypeDependent() ||
221260618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                    NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
221360618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                        Context.BoolTy) &&
221460618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                 "Parser should have made sure that the expression is boolean");
221560618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl            SourceLocation ErrLoc;
221660618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl            llvm::APSInt Dummy;
221760618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl            if (!NoexceptExpr->isValueDependent() &&
221860618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                !NoexceptExpr->isIntegerConstantExpr(Dummy, Context, &ErrLoc,
221960618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                                                     /*evaluated*/false))
22208cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis              S.Diag(ErrLoc, diag::err_noexcept_needs_constant_expression)
222160618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl                  << NoexceptExpr->getSourceRange();
222260618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl            else
222360618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl              EPI.NoexceptExpr = NoexceptExpr;
222460618fa7f88d5162bb5b40988b6b38d4d75d6fc6Sebastian Redl          }
22258999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl        } else if (FTI.getExceptionSpecType() == EST_None &&
22268999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl                   ImplicitlyNoexcept && chunkIndex == 0) {
22278999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl          // Only the outermost chunk is marked noexcept, of course.
22288999fe1bc367b3ecc878d135c7b31e3479da56f4Sebastian Redl          EPI.ExceptionSpecType = EST_BasicNoexcept;
2229ef65f06e8e440aec541442cfd73a8a836e9bc842Sebastian Redl        }
2230465226e23a3008bd68973513dda1f9e3cd27dbddSebastian Redl
2231e23cf437fe76b1ed02d63c3f61b456fd48a915f5John McCall        T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(), EPI);
22325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      }
223304a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
22345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      break;
22355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
2236f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl    case DeclaratorChunk::MemberPointer:
2237f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      // The scope spec must refer to a class, or be dependent.
22387bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara      CXXScopeSpec &SS = DeclType.Mem.Scope();
2239f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      QualType ClsType;
22407bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara      if (SS.isInvalid()) {
2241edc287751a4b05e3b4d8ff2b38fa30c5b59a548bJeffrey Yasskin        // Avoid emitting extra errors if we already errored on the scope.
2242edc287751a4b05e3b4d8ff2b38fa30c5b59a548bJeffrey Yasskin        D.setInvalidType(true);
22438cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      } else if (S.isDependentScopeSpecifier(SS) ||
22448cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis                 dyn_cast_or_null<CXXRecordDecl>(S.computeDeclContext(SS))) {
22451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump        NestedNameSpecifier *NNS
22467bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara          = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
224787c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        NestedNameSpecifier *NNSPrefix = NNS->getPrefix();
224887c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        switch (NNS->getKind()) {
224987c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        case NestedNameSpecifier::Identifier:
22507bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara          ClsType = Context.getDependentNameType(ETK_None, NNSPrefix,
22514a2023f5014e82389d5980d307b89c545dbbac81Douglas Gregor                                                 NNS->getAsIdentifier());
225287c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor          break;
225387c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor
225487c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        case NestedNameSpecifier::Namespace:
225514aba76042e041b2c5e439bf4ae353a0a3c7fd73Douglas Gregor        case NestedNameSpecifier::NamespaceAlias:
225687c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        case NestedNameSpecifier::Global:
22579f61aa9e280adea9fbf3365f0e4f6ed568c9885aJeffrey Yasskin          llvm_unreachable("Nested-name-specifier must name a type");
225887c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor          break;
22597bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara
226087c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        case NestedNameSpecifier::TypeSpec:
226187c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        case NestedNameSpecifier::TypeSpecWithTemplate:
226287c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor          ClsType = QualType(NNS->getAsType(), 0);
226391ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          // Note: if the NNS has a prefix and ClsType is a nondependent
226491ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          // TemplateSpecializationType, then the NNS prefix is NOT included
226591ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          // in ClsType; hence we wrap ClsType into an ElaboratedType.
226691ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          // NOTE: in particular, no wrap occurs if ClsType already is an
226791ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          // Elaborated, DependentName, or DependentTemplateSpecialization.
226891ce2c4484e56cdc8068cebaaf2bb42362b0e1a6Abramo Bagnara          if (NNSPrefix && isa<TemplateSpecializationType>(NNS->getAsType()))
22697bd067635df79f6ce4b9ffee394ea6d9e86e4290Abramo Bagnara            ClsType = Context.getElaboratedType(ETK_None, NNSPrefix, ClsType);
227087c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor          break;
227187c12c4a4667279dacb3d4a93c64b49148a0ff79Douglas Gregor        }
2272f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      } else {
22738cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(DeclType.Mem.Scope().getBeginLoc(),
2274949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor             diag::err_illegal_decl_mempointer_in_nonclass)
2275949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor          << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
2276949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor          << DeclType.Mem.Scope().getRange();
2277f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl        D.setInvalidType(true);
2278f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      }
2279f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl
2280949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor      if (!ClsType.isNull())
22818cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        T = S.BuildMemberPointerType(T, ClsType, DeclType.Loc, D.getIdentifier());
2282949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor      if (T.isNull()) {
2283f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl        T = Context.IntTy;
2284949bf69136e07fb7968d84bc21d9272ff343ffdbDouglas Gregor        D.setInvalidType(true);
22852865474261a608c7873b87ba4af110d17907896dJohn McCall      } else if (DeclType.Mem.TypeQuals) {
22868cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Mem.TypeQuals);
2287f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      }
2288f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl      break;
2289f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl    }
2290f30208ad5b334e93582e846a2a0c92f38a607b8aSebastian Redl
2291cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    if (T.isNull()) {
2292cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor      D.setInvalidType(true);
2293cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor      T = Context.IntTy;
2294cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor    }
2295cd281c3ded486ced5aad29dd7c3fa22b7514c3d8Douglas Gregor
2296c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    // See if there are any attributes on this declarator chunk.
2297711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (AttributeList *attrs = const_cast<AttributeList*>(DeclType.getAttrs()))
2298711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      processTypeAttrs(state, T, false, attrs);
22995f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
2300971c4fae6092976338b755af1d47dac07c8f16e3Argyrios Kyrtzidis
23018cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  if (LangOpts.CPlusPlus && T->isFunctionType()) {
2302183700f494ec9b6701b6efe82bcb25f4c79ba561John McCall    const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
2303778ed741de8ada0049b89608af0abdb5ae6e106eChris Lattner    assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
2304971c4fae6092976338b755af1d47dac07c8f16e3Argyrios Kyrtzidis
2305708f3b8e350a5c0605889a4f32b26686864495caDouglas Gregor    // C++ 8.3.5p4:
2306708f3b8e350a5c0605889a4f32b26686864495caDouglas Gregor    //   A cv-qualifier-seq shall only be part of the function type
2307708f3b8e350a5c0605889a4f32b26686864495caDouglas Gregor    //   for a nonstatic member function, the function type to which a pointer
2308708f3b8e350a5c0605889a4f32b26686864495caDouglas Gregor    //   to member refers, or the top-level function type of a function typedef
2309708f3b8e350a5c0605889a4f32b26686864495caDouglas Gregor    //   declaration.
2310683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor    //
2311683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor    // Core issue 547 also allows cv-qualifiers on function types that are
2312683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor    // top-level template type arguments.
2313613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall    bool FreeFunction;
2314613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall    if (!D.getCXXScopeSpec().isSet()) {
2315613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall      FreeFunction = (D.getContext() != Declarator::MemberContext ||
2316613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall                      D.getDeclSpec().isFriendSpecified());
2317613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall    } else {
23188cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      DeclContext *DC = S.computeDeclContext(D.getCXXScopeSpec());
2319613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall      FreeFunction = (DC && !DC->isRecord());
2320613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall    }
2321613ef3d4c144f8c35224daf28a187426d2044aeeJohn McCall
2322c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    // C++0x [dcl.fct]p6:
2323c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    //   A ref-qualifier shall only be part of the function type for a
2324c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    //   non-static member function, the function type to which a pointer to
2325c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    //   member refers, or the top-level function type of a function typedef
2326c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    //   declaration.
2327c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor    if ((FnTy->getTypeQuals() != 0 || FnTy->getRefQualifier()) &&
2328683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        !(D.getContext() == Declarator::TemplateTypeArgContext &&
2329162e1c1b487352434552147967c3dd296ebee2f7Richard Smith          !D.isFunctionDeclarator()) && !IsTypedefName &&
2330c61bb2056148891375bfa591fa2859b9b6ec2734Sebastian Redl        (FreeFunction ||
2331971c4fae6092976338b755af1d47dac07c8f16e3Argyrios Kyrtzidis         D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
2332683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor      if (D.getContext() == Declarator::TemplateTypeArgContext) {
2333683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        // Accept qualified function types as template type arguments as a GNU
2334683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        // extension. This is also the subject of C++ core issue 547.
2335683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        std::string Quals;
2336683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        if (FnTy->getTypeQuals() != 0)
2337683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          Quals = Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString();
2338683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor
2339683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        switch (FnTy->getRefQualifier()) {
2340683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        case RQ_None:
2341683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          break;
2342683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor
2343683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        case RQ_LValue:
2344683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          if (!Quals.empty())
2345683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor            Quals += ' ';
2346683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          Quals += '&';
2347683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          break;
2348c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor
2349683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        case RQ_RValue:
2350683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          if (!Quals.empty())
2351683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor            Quals += ' ';
2352683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          Quals += "&&";
2353683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          break;
2354683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        }
2355683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor
23568cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getIdentifierLoc(),
2357683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor             diag::ext_qualified_function_type_template_arg)
2358683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          << Quals;
2359683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor      } else {
2360683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        if (FnTy->getTypeQuals() != 0) {
2361683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          if (D.isFunctionDeclarator())
23628cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(D.getIdentifierLoc(),
2363683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                 diag::err_invalid_qualified_function_type);
2364683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          else
23658cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(D.getIdentifierLoc(),
2366683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                 diag::err_invalid_qualified_typedef_function_type_use)
2367683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              << FreeFunction;
2368683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        }
2369683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor
2370683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        if (FnTy->getRefQualifier()) {
2371683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          if (D.isFunctionDeclarator()) {
2372683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor            SourceLocation Loc = D.getIdentifierLoc();
2373683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor            for (unsigned I = 0, N = D.getNumTypeObjects(); I != N; ++I) {
2374683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              const DeclaratorChunk &Chunk = D.getTypeObject(N-I-1);
2375683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              if (Chunk.Kind == DeclaratorChunk::Function &&
2376683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                  Chunk.Fun.hasRefQualifier()) {
2377683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                Loc = Chunk.Fun.getRefQualifierLoc();
2378683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                break;
2379683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              }
2380944aa60777e6ea1015c9423107f7925f6d91f4a0Douglas Gregor            }
2381944aa60777e6ea1015c9423107f7925f6d91f4a0Douglas Gregor
23828cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(Loc, diag::err_invalid_ref_qualifier_function_type)
2383683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              << (FnTy->getRefQualifier() == RQ_LValue)
2384683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              << FixItHint::CreateRemoval(Loc);
2385683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          } else {
23868cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis            S.Diag(D.getIdentifierLoc(),
2387683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                 diag::err_invalid_ref_qualifier_typedef_function_type_use)
2388683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              << FreeFunction
2389683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor              << (FnTy->getRefQualifier() == RQ_LValue);
2390683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor          }
2391c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor        }
2392c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor
2393683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        // Strip the cv-qualifiers and ref-qualifiers from the type.
2394683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2395683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        EPI.TypeQuals = 0;
2396683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        EPI.RefQualifier = RQ_None;
2397c938c1668b4fd12af154e965dd935a89e4801a70Douglas Gregor
2398683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor        T = Context.getFunctionType(FnTy->getResultType(),
2399683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                                    FnTy->arg_type_begin(),
2400683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor                                    FnTy->getNumArgs(), EPI);
2401683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor      }
2402971c4fae6092976338b755af1d47dac07c8f16e3Argyrios Kyrtzidis    }
2403971c4fae6092976338b755af1d47dac07c8f16e3Argyrios Kyrtzidis  }
24041eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2405711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Apply any undistributed attributes from the declarator.
2406711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!T.isNull())
2407711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (AttributeList *attrs = D.getAttributes())
2408711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      processTypeAttrs(state, T, false, attrs);
2409711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
2410711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Diagnose any ignored type attributes.
2411711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!T.isNull()) state.diagnoseIgnoredTypeAttrs(T);
2412711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
2413148f1f7936afd718bac7be95089e77673e43f16fPeter Collingbourne  // C++0x [dcl.constexpr]p9:
2414148f1f7936afd718bac7be95089e77673e43f16fPeter Collingbourne  //  A constexpr specifier used in an object declaration declares the object
2415148f1f7936afd718bac7be95089e77673e43f16fPeter Collingbourne  //  as const.
2416148f1f7936afd718bac7be95089e77673e43f16fPeter Collingbourne  if (D.getDeclSpec().isConstexprSpecified() && T->isObjectType()) {
2417737801257f795632175517ffce4a80c62fc7bff7Sebastian Redl    T.addConst();
2418737801257f795632175517ffce4a80c62fc7bff7Sebastian Redl  }
2419737801257f795632175517ffce4a80c62fc7bff7Sebastian Redl
2420a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  // If there was an ellipsis in the declarator, the declaration declares a
2421a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  // parameter pack whose type may be a pack expansion type.
2422a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  if (D.hasEllipsis() && !T.isNull()) {
2423a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    // C++0x [dcl.fct]p13:
2424a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    //   A declarator-id or abstract-declarator containing an ellipsis shall
2425a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    //   only be used in a parameter-declaration. Such a parameter-declaration
2426a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    //   is a parameter pack (14.5.3). [...]
2427a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    switch (D.getContext()) {
2428a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::PrototypeContext:
2429a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // C++0x [dcl.fct]p13:
2430a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   [...] When it is part of a parameter-declaration-clause, the
2431a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   parameter pack is a function parameter pack (14.5.3). The type T
2432a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   of the declarator-id of the function parameter pack shall contain
2433a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   a template parameter pack; each template parameter pack in T is
2434a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   expanded by the function parameter pack.
2435a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //
2436a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // We represent function parameter packs as function parameters whose
2437a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // type is a pack expansion.
2438a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      if (!T->containsUnexpandedParameterPack()) {
24398cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getEllipsisLoc(),
2440a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor             diag::err_function_parameter_pack_without_parameter_packs)
2441a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor          << T <<  D.getSourceRange();
2442a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor        D.setEllipsisLoc(SourceLocation());
2443a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      } else {
2444cded4f649cd4b7ba7d461c25c6482ef52b8d3a2aDouglas Gregor        T = Context.getPackExpansionType(T, llvm::Optional<unsigned>());
2445a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      }
2446a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      break;
2447a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor
2448a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::TemplateParamContext:
2449a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // C++0x [temp.param]p15:
2450a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   If a template-parameter is a [...] is a parameter-declaration that
2451a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   declares a parameter pack (8.3.5), then the template-parameter is a
2452a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //   template parameter pack (14.5.3).
2453a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      //
2454a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // Note: core issue 778 clarifies that, if there are any unexpanded
2455a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // parameter packs in the type of the non-type template parameter, then
2456a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // it expands those parameter packs.
2457a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      if (T->containsUnexpandedParameterPack())
2458cded4f649cd4b7ba7d461c25c6482ef52b8d3a2aDouglas Gregor        T = Context.getPackExpansionType(T, llvm::Optional<unsigned>());
24598cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      else if (!LangOpts.CPlusPlus0x)
24608cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis        S.Diag(D.getEllipsisLoc(), diag::ext_variadic_templates);
2461a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      break;
2462a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor
2463a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::FileContext:
2464a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::KNRTypeListContext:
2465c05a94b7accd4035bf5d5897c434c445b22da855John McCall    case Declarator::ObjCPrototypeContext: // FIXME: special diagnostic here?
2466a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::TypeNameContext:
24670b8c98f3ddf83adcb9e9d98b68ce38e970cdee73Argyrios Kyrtzidis    case Declarator::CXXNewContext:
2468162e1c1b487352434552147967c3dd296ebee2f7Richard Smith    case Declarator::AliasDeclContext:
24693e4c6c4c79a03f5cb0c4671d7c282d623c6dc35eRichard Smith    case Declarator::AliasTemplateContext:
2470a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::MemberContext:
2471a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::BlockContext:
2472a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::ForContext:
2473a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::ConditionContext:
2474a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::CXXCatchContext:
247517b6399f8461c5b7e1c6f367b0a0dde49f921240Argyrios Kyrtzidis    case Declarator::ObjCCatchContext:
2476a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    case Declarator::BlockLiteralContext:
2477683a81f4373cf1fa9d41a751dca6f7c36125b058Douglas Gregor    case Declarator::TemplateTypeArgContext:
2478a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // FIXME: We may want to allow parameter packs in block-literal contexts
2479a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      // in the future.
24808cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis      S.Diag(D.getEllipsisLoc(), diag::err_ellipsis_in_declarator_not_parameter);
2481a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      D.setEllipsisLoc(SourceLocation());
2482a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor      break;
2483a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    }
2484a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  }
2485e7397c6a1bb2b205c5fe678e26199eb26d22e38eRichard Smith
2486bf1a028246d884a540aeafa38e89be59a269b072John McCall  if (T.isNull())
2487bf1a028246d884a540aeafa38e89be59a269b072John McCall    return Context.getNullTypeSourceInfo();
2488bf1a028246d884a540aeafa38e89be59a269b072John McCall  else if (D.isInvalidType())
2489bf1a028246d884a540aeafa38e89be59a269b072John McCall    return Context.getTrivialTypeSourceInfo(T);
2490db7abf78dedc2ef6ccb42b3dac6ab330fe2ea469Argyrios Kyrtzidis
24918cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  return S.GetTypeSourceInfoForDeclarator(D, T, TInfo);
24928cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis}
24938cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
24948cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis/// GetTypeForDeclarator - Convert the type for the specified
24958cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis/// declarator to Type instances.
24968cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis///
24978cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis/// The result of this call will never be null, but the associated
24988cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis/// type may be a null type if there's an unrecoverable error.
24998cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios KyrtzidisTypeSourceInfo *Sema::GetTypeForDeclarator(Declarator &D, Scope *S) {
25008cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  // Determine the type of the declarator. Not all forms of declarator
25018cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  // have a type.
25028cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
25038cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  TypeProcessingState state(*this, D);
25048cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
25058cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  TypeSourceInfo *ReturnTypeInfo = 0;
25068cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  QualType T = GetDeclSpecTypeForDeclarator(state, ReturnTypeInfo);
25078cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  if (T.isNull())
25088cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    return Context.getNullTypeSourceInfo();
25098cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis
25108cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  if (D.isPrototypeContext() && getLangOptions().ObjCAutoRefCount)
25118cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis    inferARCWriteback(state, T);
2512db7abf78dedc2ef6ccb42b3dac6ab330fe2ea469Argyrios Kyrtzidis
25138cfa57b348d4d5a58d92764a60280bf88e4e49aeArgyrios Kyrtzidis  return GetFullTypeForDeclarator(state, T, ReturnTypeInfo);
25145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
25155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
251631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidisstatic void transferARCOwnershipToDeclSpec(Sema &S,
251731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                           QualType &declSpecTy,
251831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                           Qualifiers::ObjCLifetime ownership) {
251931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (declSpecTy->isObjCRetainableType() &&
252031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      declSpecTy.getObjCLifetime() == Qualifiers::OCL_None) {
252131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    Qualifiers qs;
252231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    qs.addObjCLifetime(ownership);
252331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    declSpecTy = S.Context.getQualifiedType(declSpecTy, qs);
252431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  }
252531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis}
252631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
252731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidisstatic void transferARCOwnershipToDeclaratorChunk(TypeProcessingState &state,
252831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                            Qualifiers::ObjCLifetime ownership,
252931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                            unsigned chunkIndex) {
253031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  Sema &S = state.getSema();
253131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  Declarator &D = state.getDeclarator();
253231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
253331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // Look for an explicit lifetime attribute.
253431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  DeclaratorChunk &chunk = D.getTypeObject(chunkIndex);
253531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  for (const AttributeList *attr = chunk.getAttrs(); attr;
253631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis         attr = attr->getNext())
253731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    if (attr->getKind() == AttributeList::AT_objc_ownership)
253831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      return;
253931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
254031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  const char *attrStr = 0;
254131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  switch (ownership) {
254231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  case Qualifiers::OCL_None: llvm_unreachable("no ownership!"); break;
254331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  case Qualifiers::OCL_ExplicitNone: attrStr = "none"; break;
254431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  case Qualifiers::OCL_Strong: attrStr = "strong"; break;
254531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  case Qualifiers::OCL_Weak: attrStr = "weak"; break;
254631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  case Qualifiers::OCL_Autoreleasing: attrStr = "autoreleasing"; break;
254731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  }
254831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
254931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // If there wasn't one, add one (with an invalid source location
255031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // so that we don't make an AttributedType for it).
255131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  AttributeList *attr = D.getAttributePool()
255231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    .create(&S.Context.Idents.get("objc_ownership"), SourceLocation(),
255331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis            /*scope*/ 0, SourceLocation(),
255431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis            &S.Context.Idents.get(attrStr), SourceLocation(),
255531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis            /*args*/ 0, 0,
255631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis            /*declspec*/ false, /*C++0x*/ false);
255731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  spliceAttrIntoList(*attr, chunk.getAttrListRef());
255831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
255931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  // TODO: mark whether we did this inference?
256031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis}
256131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
256231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidisstatic void transferARCOwnership(TypeProcessingState &state,
256331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                 QualType &declSpecTy,
256431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis                                 Qualifiers::ObjCLifetime ownership) {
256531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  Sema &S = state.getSema();
256631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  Declarator &D = state.getDeclarator();
256731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
256831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  int inner = -1;
256931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
257031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    DeclaratorChunk &chunk = D.getTypeObject(i);
257131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    switch (chunk.Kind) {
257231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::Paren:
257331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      // Ignore parens.
257431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      break;
257531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
257631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::Array:
257731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::Reference:
257831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::Pointer:
257931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      inner = i;
258031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      break;
258131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
258231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::BlockPointer:
258331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      return transferARCOwnershipToDeclaratorChunk(state, ownership, i);
258431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
258531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::Function:
258631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    case DeclaratorChunk::MemberPointer:
258731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      return;
258831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    }
258931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  }
259031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
259131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (inner == -1)
259231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    return transferARCOwnershipToDeclSpec(S, declSpecTy, ownership);
259331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
259431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  DeclaratorChunk &chunk = D.getTypeObject(inner);
259531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (chunk.Kind == DeclaratorChunk::Pointer) {
259631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    if (declSpecTy->isObjCRetainableType())
259731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      return transferARCOwnershipToDeclSpec(S, declSpecTy, ownership);
259831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    if (declSpecTy->isObjCObjectType())
259931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      return transferARCOwnershipToDeclaratorChunk(state, ownership, inner);
260031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  } else {
260131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    assert(chunk.Kind == DeclaratorChunk::Array ||
260231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis           chunk.Kind == DeclaratorChunk::Reference);
260331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    return transferARCOwnershipToDeclSpec(S, declSpecTy, ownership);
260431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  }
260531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis}
260631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
260731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios KyrtzidisTypeSourceInfo *Sema::GetTypeForDeclaratorCast(Declarator &D, QualType FromTy) {
260831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  TypeProcessingState state(*this, D);
260931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
261031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  TypeSourceInfo *ReturnTypeInfo = 0;
261131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  QualType declSpecTy = GetDeclSpecTypeForDeclarator(state, ReturnTypeInfo);
261231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (declSpecTy.isNull())
261331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    return Context.getNullTypeSourceInfo();
261431862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
261531862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  if (getLangOptions().ObjCAutoRefCount) {
261631862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    Qualifiers::ObjCLifetime ownership = Context.getInnerObjCOwnership(FromTy);
261731862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis    if (ownership != Qualifiers::OCL_None)
261831862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis      transferARCOwnership(state, declSpecTy, ownership);
261931862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  }
262031862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
262131862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis  return GetFullTypeForDeclarator(state, declSpecTy, ReturnTypeInfo);
262231862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis}
262331862ba5ea70b1f2c81d03f8a0100b61cd6f06f6Argyrios Kyrtzidis
262414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall/// Map an AttributedType::Kind to an AttributeList::Kind.
262514aa2175416f79ef17811282afbf425f87d54ebfJohn McCallstatic AttributeList::Kind getAttrListKind(AttributedType::Kind kind) {
262614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  switch (kind) {
262714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_address_space:
262814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_address_space;
262914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_regparm:
263014aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_regparm;
263114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_vector_size:
263214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_vector_size;
263314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_neon_vector_type:
263414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_neon_vector_type;
263514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_neon_polyvector_type:
263614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_neon_polyvector_type;
263714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_objc_gc:
263814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_objc_gc;
2639b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis  case AttributedType::attr_objc_ownership:
2640b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis    return AttributeList::AT_objc_ownership;
264114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_noreturn:
264214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_noreturn;
264314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_cdecl:
264414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_cdecl;
264514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_fastcall:
264614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_fastcall;
264714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_stdcall:
264814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_stdcall;
264914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_thiscall:
265014aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_thiscall;
265114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  case AttributedType::attr_pascal:
265214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    return AttributeList::AT_pascal;
2653414d8967e1d760ea1e19a4aca96b13777a8cf8c5Anton Korobeynikov  case AttributedType::attr_pcs:
2654414d8967e1d760ea1e19a4aca96b13777a8cf8c5Anton Korobeynikov    return AttributeList::AT_pcs;
265514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  }
265614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  llvm_unreachable("unexpected attribute kind!");
265714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  return AttributeList::Kind();
265814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall}
265914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
266014aa2175416f79ef17811282afbf425f87d54ebfJohn McCallstatic void fillAttributedTypeLoc(AttributedTypeLoc TL,
266114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall                                  const AttributeList *attrs) {
266214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  AttributedType::Kind kind = TL.getAttrKind();
266314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
266414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  assert(attrs && "no type attributes in the expected location!");
266514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  AttributeList::Kind parsedKind = getAttrListKind(kind);
266614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  while (attrs->getKind() != parsedKind) {
266714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    attrs = attrs->getNext();
266814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    assert(attrs && "no matching attribute in expected location!");
266914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  }
267014aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
267114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  TL.setAttrNameLoc(attrs->getLoc());
267214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  if (TL.hasAttrExprOperand())
267314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    TL.setAttrExprOperand(attrs->getArg(0));
267414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  else if (TL.hasAttrEnumOperand())
267514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    TL.setAttrEnumOperandLoc(attrs->getParameterLoc());
267614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
267714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  // FIXME: preserve this information to here.
267814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  if (TL.hasAttrOperand())
267914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    TL.setAttrOperandParensRange(SourceRange());
268014aa2175416f79ef17811282afbf425f87d54ebfJohn McCall}
268114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
268251bd803fbdade51d674598ed45da3d54190a656cJohn McCallnamespace {
268351bd803fbdade51d674598ed45da3d54190a656cJohn McCall  class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
2684c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor    ASTContext &Context;
268551bd803fbdade51d674598ed45da3d54190a656cJohn McCall    const DeclSpec &DS;
2686f352bddf015e537350416c296dd2963524f554f9Argyrios Kyrtzidis
268751bd803fbdade51d674598ed45da3d54190a656cJohn McCall  public:
2688c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor    TypeSpecLocFiller(ASTContext &Context, const DeclSpec &DS)
2689c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor      : Context(Context), DS(DS) {}
2690f352bddf015e537350416c296dd2963524f554f9Argyrios Kyrtzidis
269114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
269214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall      fillAttributedTypeLoc(TL, DS.getAttributes().getList());
269314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall      Visit(TL.getModifiedLoc());
269414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    }
269551bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
269651bd803fbdade51d674598ed45da3d54190a656cJohn McCall      Visit(TL.getUnqualifiedLoc());
269751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
269851bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
269951bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setNameLoc(DS.getTypeSpecTypeLoc());
270051bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
270151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
270251bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setNameLoc(DS.getTypeSpecTypeLoc());
2703c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall    }
2704c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall    void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
2705c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      // Handle the base type, which might not have been written explicitly.
2706c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
2707c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        TL.setHasBaseTypeAsWritten(false);
2708c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor        TL.getBaseLoc().initialize(Context, SourceLocation());
2709c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      } else {
2710c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        TL.setHasBaseTypeAsWritten(true);
2711c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall        Visit(TL.getBaseLoc());
2712c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      }
271354e14c4db764c0636160d26c5bbf491637c83a76John McCall
2714c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      // Protocol qualifiers.
271554e14c4db764c0636160d26c5bbf491637c83a76John McCall      if (DS.getProtocolQualifiers()) {
271654e14c4db764c0636160d26c5bbf491637c83a76John McCall        assert(TL.getNumProtocols() > 0);
271754e14c4db764c0636160d26c5bbf491637c83a76John McCall        assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
271854e14c4db764c0636160d26c5bbf491637c83a76John McCall        TL.setLAngleLoc(DS.getProtocolLAngleLoc());
271954e14c4db764c0636160d26c5bbf491637c83a76John McCall        TL.setRAngleLoc(DS.getSourceRange().getEnd());
272054e14c4db764c0636160d26c5bbf491637c83a76John McCall        for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
272154e14c4db764c0636160d26c5bbf491637c83a76John McCall          TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
272254e14c4db764c0636160d26c5bbf491637c83a76John McCall      } else {
272354e14c4db764c0636160d26c5bbf491637c83a76John McCall        assert(TL.getNumProtocols() == 0);
272454e14c4db764c0636160d26c5bbf491637c83a76John McCall        TL.setLAngleLoc(SourceLocation());
272554e14c4db764c0636160d26c5bbf491637c83a76John McCall        TL.setRAngleLoc(SourceLocation());
272654e14c4db764c0636160d26c5bbf491637c83a76John McCall      }
272751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
272854e14c4db764c0636160d26c5bbf491637c83a76John McCall    void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
272954e14c4db764c0636160d26c5bbf491637c83a76John McCall      TL.setStarLoc(SourceLocation());
2730c12c5bba6ceb6acd4e51e7a0fc03257da9cfd44eJohn McCall      Visit(TL.getPointeeLoc());
273151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
2732833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall    void VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) {
2733a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall      TypeSourceInfo *TInfo = 0;
2734b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
2735833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall
2736833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall      // If we got no declarator info from previous Sema routines,
2737833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall      // just fill with the typespec loc.
2738a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall      if (!TInfo) {
27390daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara        TL.initialize(Context, DS.getTypeSpecTypeNameLoc());
2740833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall        return;
2741833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall      }
2742833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall
2743e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      TypeLoc OldTL = TInfo->getTypeLoc();
2744e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      if (TInfo->getType()->getAs<ElaboratedType>()) {
2745e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        ElaboratedTypeLoc ElabTL = cast<ElaboratedTypeLoc>(OldTL);
2746e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        TemplateSpecializationTypeLoc NamedTL =
2747e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara          cast<TemplateSpecializationTypeLoc>(ElabTL.getNamedTypeLoc());
2748e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        TL.copy(NamedTL);
2749e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      }
2750e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      else
2751e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        TL.copy(cast<TemplateSpecializationTypeLoc>(OldTL));
2752833ca991c1bfc967f0995974ca86f66ba1f666b5John McCall    }
2753cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall    void VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
2754cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      assert(DS.getTypeSpecType() == DeclSpec::TST_typeofExpr);
2755cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
2756cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TL.setParensRange(DS.getTypeofParensRange());
2757cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall    }
2758cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall    void VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
2759cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      assert(DS.getTypeSpecType() == DeclSpec::TST_typeofType);
2760cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
2761cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TL.setParensRange(DS.getTypeofParensRange());
2762b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      assert(DS.getRepAsType());
2763cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TypeSourceInfo *TInfo = 0;
2764b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall      Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
2765cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall      TL.setUnderlyingTInfo(TInfo);
2766cfb708c354e2f30ccc5cba9d644650f408a1ec3eJohn McCall    }
2767ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    void VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
2768ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      // FIXME: This holds only because we only have one unary transform.
2769ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      assert(DS.getTypeSpecType() == DeclSpec::TST_underlyingType);
2770ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      TL.setKWLoc(DS.getTypeSpecTypeLoc());
2771ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      TL.setParensRange(DS.getTypeofParensRange());
2772ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      assert(DS.getRepAsType());
2773ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      TypeSourceInfo *TInfo = 0;
2774ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
2775ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      TL.setUnderlyingTInfo(TInfo);
2776ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    }
2777ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor    void VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
2778ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor      // By default, use the source location of the type specifier.
2779ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor      TL.setBuiltinLoc(DS.getTypeSpecTypeLoc());
2780ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor      if (TL.needsExtraLocalData()) {
2781ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor        // Set info for the written builtin specifiers.
2782ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor        TL.getWrittenBuiltinSpecs() = DS.getWrittenBuiltinSpecs();
2783ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor        // Try to have a meaningful source location.
2784ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor        if (TL.getWrittenSignSpec() != TSS_unspecified)
2785ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor          // Sign spec loc overrides the others (e.g., 'unsigned long').
2786ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor          TL.setBuiltinLoc(DS.getTypeSpecSignLoc());
2787ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor        else if (TL.getWrittenWidthSpec() != TSW_unspecified)
2788ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor          // Width spec loc overrides type spec loc (e.g., 'short int').
2789ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor          TL.setBuiltinLoc(DS.getTypeSpecWidthLoc());
2790ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor      }
2791ddf889a2ad2888f1dea573987bbe952d9912c1a0Douglas Gregor    }
2792e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara    void VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
2793e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      ElaboratedTypeKeyword Keyword
2794e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
2795253e80b019727451edb4cbcad71277fcbe05ff0eNico Weber      if (DS.getTypeSpecType() == TST_typename) {
2796e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        TypeSourceInfo *TInfo = 0;
2797b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall        Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
2798e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        if (TInfo) {
2799e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara          TL.copy(cast<ElaboratedTypeLoc>(TInfo->getTypeLoc()));
2800e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara          return;
2801e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        }
2802e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      }
2803e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      TL.setKeywordLoc(Keyword != ETK_None
2804e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara                       ? DS.getTypeSpecTypeLoc()
2805e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara                       : SourceLocation());
2806e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      const CXXScopeSpec& SS = DS.getTypeSpecScope();
28079e876876afc13aa671cc11a17c19907c599b9ab9Douglas Gregor      TL.setQualifierLoc(SS.getWithLocInContext(Context));
2808e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      Visit(TL.getNextTypeLoc().getUnqualifiedLoc());
2809e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara    }
2810e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara    void VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
2811e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      ElaboratedTypeKeyword Keyword
2812e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
2813253e80b019727451edb4cbcad71277fcbe05ff0eNico Weber      if (DS.getTypeSpecType() == TST_typename) {
2814e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        TypeSourceInfo *TInfo = 0;
2815b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall        Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
2816e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        if (TInfo) {
2817e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara          TL.copy(cast<DependentNameTypeLoc>(TInfo->getTypeLoc()));
2818e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara          return;
2819e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara        }
2820e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      }
2821e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      TL.setKeywordLoc(Keyword != ETK_None
2822e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara                       ? DS.getTypeSpecTypeLoc()
2823e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara                       : SourceLocation());
2824e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara      const CXXScopeSpec& SS = DS.getTypeSpecScope();
28252494dd024b392b8def58bf067cc94b51c214cf77Douglas Gregor      TL.setQualifierLoc(SS.getWithLocInContext(Context));
28260daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara      TL.setNameLoc(DS.getTypeSpecTypeNameLoc());
282733500955d731c73717af52088b7fc0e7a85681e7John McCall    }
282833500955d731c73717af52088b7fc0e7a85681e7John McCall    void VisitDependentTemplateSpecializationTypeLoc(
282933500955d731c73717af52088b7fc0e7a85681e7John McCall                                 DependentTemplateSpecializationTypeLoc TL) {
283033500955d731c73717af52088b7fc0e7a85681e7John McCall      ElaboratedTypeKeyword Keyword
283133500955d731c73717af52088b7fc0e7a85681e7John McCall        = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
283233500955d731c73717af52088b7fc0e7a85681e7John McCall      if (Keyword == ETK_Typename) {
283333500955d731c73717af52088b7fc0e7a85681e7John McCall        TypeSourceInfo *TInfo = 0;
2834b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall        Sema::GetTypeFromParser(DS.getRepAsType(), &TInfo);
283533500955d731c73717af52088b7fc0e7a85681e7John McCall        if (TInfo) {
283633500955d731c73717af52088b7fc0e7a85681e7John McCall          TL.copy(cast<DependentTemplateSpecializationTypeLoc>(
283733500955d731c73717af52088b7fc0e7a85681e7John McCall                    TInfo->getTypeLoc()));
283833500955d731c73717af52088b7fc0e7a85681e7John McCall          return;
283933500955d731c73717af52088b7fc0e7a85681e7John McCall        }
284033500955d731c73717af52088b7fc0e7a85681e7John McCall      }
2841c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor      TL.initializeLocal(Context, SourceLocation());
284233500955d731c73717af52088b7fc0e7a85681e7John McCall      TL.setKeywordLoc(Keyword != ETK_None
284333500955d731c73717af52088b7fc0e7a85681e7John McCall                       ? DS.getTypeSpecTypeLoc()
284433500955d731c73717af52088b7fc0e7a85681e7John McCall                       : SourceLocation());
284533500955d731c73717af52088b7fc0e7a85681e7John McCall      const CXXScopeSpec& SS = DS.getTypeSpecScope();
284694fdffa4a572fc14ac296f5f1aae9db3734c72f1Douglas Gregor      TL.setQualifierLoc(SS.getWithLocInContext(Context));
28470daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara      TL.setNameLoc(DS.getTypeSpecTypeNameLoc());
28480daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    }
28490daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara    void VisitTagTypeLoc(TagTypeLoc TL) {
28500daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara      TL.setNameLoc(DS.getTypeSpecTypeNameLoc());
2851e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara    }
2852e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara
285351bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitTypeLoc(TypeLoc TL) {
285451bd803fbdade51d674598ed45da3d54190a656cJohn McCall      // FIXME: add other typespec types and change this to an assert.
2855c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor      TL.initialize(Context, DS.getTypeSpecTypeLoc());
285651bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
285751bd803fbdade51d674598ed45da3d54190a656cJohn McCall  };
2858eb66759e9a1d7c041354d132a14674b2d948059bArgyrios Kyrtzidis
285951bd803fbdade51d674598ed45da3d54190a656cJohn McCall  class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
2860b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara    ASTContext &Context;
286151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    const DeclaratorChunk &Chunk;
2862f352bddf015e537350416c296dd2963524f554f9Argyrios Kyrtzidis
286351bd803fbdade51d674598ed45da3d54190a656cJohn McCall  public:
2864b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara    DeclaratorLocFiller(ASTContext &Context, const DeclaratorChunk &Chunk)
2865b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      : Context(Context), Chunk(Chunk) {}
28664adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis
286751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
28689f61aa9e280adea9fbf3365f0e4f6ed568c9885aJeffrey Yasskin      llvm_unreachable("qualified type locs not expected here!");
286951bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
28704adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis
2871f85e193739c953358c865005855253af4f68a497John McCall    void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
2872f85e193739c953358c865005855253af4f68a497John McCall      fillAttributedTypeLoc(TL, Chunk.getAttrs());
2873f85e193739c953358c865005855253af4f68a497John McCall    }
287451bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
287551bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
287651bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setCaretLoc(Chunk.Loc);
28774adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
287851bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitPointerTypeLoc(PointerTypeLoc TL) {
287951bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Pointer);
288051bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setStarLoc(Chunk.Loc);
28814adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
288251bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
288351bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Pointer);
288451bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setStarLoc(Chunk.Loc);
28854adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
288651bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
288751bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
2888b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      const CXXScopeSpec& SS = Chunk.Mem.Scope();
2889b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      NestedNameSpecifierLoc NNSLoc = SS.getWithLocInContext(Context);
2890b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara
2891b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      const Type* ClsTy = TL.getClass();
2892b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      QualType ClsQT = QualType(ClsTy, 0);
2893b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      TypeSourceInfo *ClsTInfo = Context.CreateTypeSourceInfo(ClsQT, 0);
2894b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      // Now copy source location info into the type loc component.
2895b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      TypeLoc ClsTL = ClsTInfo->getTypeLoc();
2896b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      switch (NNSLoc.getNestedNameSpecifier()->getKind()) {
2897b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::Identifier:
2898b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        assert(isa<DependentNameType>(ClsTy) && "Unexpected TypeLoc");
2899b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        {
2900fd9c42ed22fb4f7f865f7d8f8848df84ddf8262cAbramo Bagnara          DependentNameTypeLoc DNTLoc = cast<DependentNameTypeLoc>(ClsTL);
2901b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          DNTLoc.setKeywordLoc(SourceLocation());
2902b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          DNTLoc.setQualifierLoc(NNSLoc.getPrefix());
2903b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          DNTLoc.setNameLoc(NNSLoc.getLocalBeginLoc());
2904b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        }
2905b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        break;
2906b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara
2907b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::TypeSpec:
2908b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::TypeSpecWithTemplate:
2909b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        if (isa<ElaboratedType>(ClsTy)) {
2910b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          ElaboratedTypeLoc ETLoc = *cast<ElaboratedTypeLoc>(&ClsTL);
2911b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          ETLoc.setKeywordLoc(SourceLocation());
2912b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          ETLoc.setQualifierLoc(NNSLoc.getPrefix());
2913b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          TypeLoc NamedTL = ETLoc.getNamedTypeLoc();
2914b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          NamedTL.initializeFullCopy(NNSLoc.getTypeLoc());
2915b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        } else {
2916b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara          ClsTL.initializeFullCopy(NNSLoc.getTypeLoc());
2917b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        }
2918b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        break;
2919b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara
2920b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::Namespace:
2921b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::NamespaceAlias:
2922b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      case NestedNameSpecifier::Global:
2923b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        llvm_unreachable("Nested-name-specifier must name a type");
2924b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara        break;
2925b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      }
2926b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara
2927b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      // Finally fill in MemberPointerLocInfo fields.
292851bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setStarLoc(Chunk.Loc);
2929b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara      TL.setClassTInfo(ClsTInfo);
29304adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
293151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
293251bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Reference);
293354e14c4db764c0636160d26c5bbf491637c83a76John McCall      // 'Amp' is misleading: this might have been originally
293454e14c4db764c0636160d26c5bbf491637c83a76John McCall      /// spelled with AmpAmp.
293551bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setAmpLoc(Chunk.Loc);
293651bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
293751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
293851bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Reference);
293951bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(!Chunk.Ref.LValueRef);
294051bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setAmpAmpLoc(Chunk.Loc);
294151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
294251bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitArrayTypeLoc(ArrayTypeLoc TL) {
294351bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Array);
294451bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setLBracketLoc(Chunk.Loc);
294551bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setRBracketLoc(Chunk.EndLoc);
294651bd803fbdade51d674598ed45da3d54190a656cJohn McCall      TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
294751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    }
294851bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
294951bd803fbdade51d674598ed45da3d54190a656cJohn McCall      assert(Chunk.Kind == DeclaratorChunk::Function);
2950796aa443ab5ed036f42ef33fed629e1b4b34871bAbramo Bagnara      TL.setLocalRangeBegin(Chunk.Loc);
2951796aa443ab5ed036f42ef33fed629e1b4b34871bAbramo Bagnara      TL.setLocalRangeEnd(Chunk.EndLoc);
2952dab60ad68a3a98d687305941a3852e793705f945Douglas Gregor      TL.setTrailingReturn(!!Chunk.Fun.TrailingReturnType);
295351bd803fbdade51d674598ed45da3d54190a656cJohn McCall
295451bd803fbdade51d674598ed45da3d54190a656cJohn McCall      const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
295554e14c4db764c0636160d26c5bbf491637c83a76John McCall      for (unsigned i = 0, e = TL.getNumArgs(), tpi = 0; i != e; ++i) {
2956d226f65006733ed7f709c3174f22ce33391cb58fJohn McCall        ParmVarDecl *Param = cast<ParmVarDecl>(FTI.ArgInfo[i].Param);
295754e14c4db764c0636160d26c5bbf491637c83a76John McCall        TL.setArg(tpi++, Param);
29584adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis      }
295951bd803fbdade51d674598ed45da3d54190a656cJohn McCall      // FIXME: exception specs
29604adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
2961075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara    void VisitParenTypeLoc(ParenTypeLoc TL) {
2962075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara      assert(Chunk.Kind == DeclaratorChunk::Paren);
2963075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara      TL.setLParenLoc(Chunk.Loc);
2964075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara      TL.setRParenLoc(Chunk.EndLoc);
2965075f8f1b6bed4d1b224c74f87508534cc6392ce6Abramo Bagnara    }
29661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
296751bd803fbdade51d674598ed45da3d54190a656cJohn McCall    void VisitTypeLoc(TypeLoc TL) {
29689f61aa9e280adea9fbf3365f0e4f6ed568c9885aJeffrey Yasskin      llvm_unreachable("unsupported TypeLoc kind in declarator!");
29694adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis    }
297051bd803fbdade51d674598ed45da3d54190a656cJohn McCall  };
297151bd803fbdade51d674598ed45da3d54190a656cJohn McCall}
29724adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis
2973a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall/// \brief Create and instantiate a TypeSourceInfo with type source information.
297451bd803fbdade51d674598ed45da3d54190a656cJohn McCall///
297551bd803fbdade51d674598ed45da3d54190a656cJohn McCall/// \param T QualType referring to the type as written in source code.
297605baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor///
297705baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor/// \param ReturnTypeInfo For declarators whose return type does not show
297805baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor/// up in the normal place in the declaration specifiers (such as a C++
297905baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor/// conversion function), this pointer will refer to a type source information
298005baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor/// for that return type.
2981a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCallTypeSourceInfo *
298205baacbfd67017b2724f3e0503fd23609f5d32bcDouglas GregorSema::GetTypeSourceInfoForDeclarator(Declarator &D, QualType T,
298305baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor                                     TypeSourceInfo *ReturnTypeInfo) {
2984a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  TypeSourceInfo *TInfo = Context.CreateTypeSourceInfo(T);
2985a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  UnqualTypeLoc CurrTL = TInfo->getTypeLoc().getUnqualifiedLoc();
298651bd803fbdade51d674598ed45da3d54190a656cJohn McCall
2987a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  // Handle parameter packs whose type is a pack expansion.
2988a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  if (isa<PackExpansionType>(T)) {
2989a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    cast<PackExpansionTypeLoc>(CurrTL).setEllipsisLoc(D.getEllipsisLoc());
2990a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor    CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
2991a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor  }
2992a8bc8c9e9ba5bffebde00340786fe8542469c435Douglas Gregor
29938ce35b095e8fca45e04c1bda14ed0548ce7536adSebastian Redl  for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
299414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    while (isa<AttributedTypeLoc>(CurrTL)) {
299514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall      AttributedTypeLoc TL = cast<AttributedTypeLoc>(CurrTL);
299614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall      fillAttributedTypeLoc(TL, D.getTypeObject(i).getAttrs());
299714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall      CurrTL = TL.getNextTypeLoc().getUnqualifiedLoc();
299814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    }
299914aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
3000b6ab6c1ca733fda2302a1c5066bdfc6218c89e41Abramo Bagnara    DeclaratorLocFiller(Context, D.getTypeObject(i)).Visit(CurrTL);
300151bd803fbdade51d674598ed45da3d54190a656cJohn McCall    CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
30024adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis  }
3003f352bddf015e537350416c296dd2963524f554f9Argyrios Kyrtzidis
3004b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  // If we have different source information for the return type, use
3005b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  // that.  This really only applies to C++ conversion functions.
3006b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  if (ReturnTypeInfo) {
300705baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor    TypeLoc TL = ReturnTypeInfo->getTypeLoc();
300805baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor    assert(TL.getFullDataSize() == CurrTL.getFullDataSize());
300905baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor    memcpy(CurrTL.getOpaqueData(), TL.getOpaqueData(), TL.getFullDataSize());
3010b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  } else {
3011c21c7e9c2cded68f91be15be6847c9649242dc17Douglas Gregor    TypeSpecLocFiller(Context, D.getDeclSpec()).Visit(CurrTL);
301205baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor  }
301305baacbfd67017b2724f3e0503fd23609f5d32bcDouglas Gregor
3014a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  return TInfo;
30154adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis}
30164adab7fcb4cb1e23622f4849f7ef7981ff169616Argyrios Kyrtzidis
3017a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall/// \brief Create a LocInfoType to hold the given QualType and TypeSourceInfo.
3018b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCallParsedType Sema::CreateParsedType(QualType T, TypeSourceInfo *TInfo) {
30191bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis  // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
30201bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis  // and Sema during declaration parsing. Try deallocating/caching them when
30211bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis  // it's appropriate, instead of allocating them and keeping them around.
3022eb0eb49ce5f5294902769702b9322e42e89e972eDouglas Gregor  LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType),
3023eb0eb49ce5f5294902769702b9322e42e89e972eDouglas Gregor                                                       TypeAlignment);
3024a93c934af4fbf97cbe8e649d82e68ccacfe57c95John McCall  new (LocT) LocInfoType(T, TInfo);
30251bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis  assert(LocT->getTypeClass() != T->getTypeClass() &&
30261bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis         "LocInfoType's TypeClass conflicts with an existing Type class");
3027b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  return ParsedType::make(QualType(LocT, 0));
30281bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis}
30291bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis
30301bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidisvoid LocInfoType::getAsStringInternal(std::string &Str,
30311bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis                                      const PrintingPolicy &Policy) const {
303235d44e5673e772d1cc7eab66818de8d9796b89caArgyrios Kyrtzidis  assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
303335d44e5673e772d1cc7eab66818de8d9796b89caArgyrios Kyrtzidis         " was used directly instead of getting the QualType through"
303435d44e5673e772d1cc7eab66818de8d9796b89caArgyrios Kyrtzidis         " GetTypeFromParser");
30351bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis}
30361bb8a45f7386a23871598d05141a07af03067925Argyrios Kyrtzidis
3037f312b1ea179f1c44371f9ee0cd0bc006f612de11John McCallTypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
30385f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // C99 6.7.6: Type names have no identifier.  This is already validated by
30395f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  // the parser.
30405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
30411eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3042d3880f8458bb6a03818ee01f758c32f945de3eaaArgyrios Kyrtzidis  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
3043bf1a028246d884a540aeafa38e89be59a269b072John McCall  QualType T = TInfo->getType();
30445153ee66d6d4fb37b02f85df38e48dc8b46660dfChris Lattner  if (D.isInvalidType())
3045809070a886684cb5b92eb0e00a6581ab1fa6b17aDouglas Gregor    return true;
30465912a3544e438a92832b8c52c13f48d4f54795dcSteve Naroff
3047402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor  if (getLangOptions().CPlusPlus) {
3048402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor    // Check that there are no default arguments (C++ only).
30496d6eb57225b53fb627c565861d1d0e90645400d1Douglas Gregor    CheckExtraCXXDefaultArguments(D);
3050402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor  }
3051402abb55fc2e0cdda5fb1ac90009b1f5f6774906Douglas Gregor
3052b3d8748e797c6c2f1dc01186c8eeb3b1b5fe970cJohn McCall  return CreateParsedType(T, TInfo);
30535f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
30545f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
3055c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner//===----------------------------------------------------------------------===//
3056c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner// Type Attribute Processing
3057c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner//===----------------------------------------------------------------------===//
3058232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner
3059232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
3060c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner/// specified type.  The attribute contains 1 argument, the id of the address
3061c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner/// space for the type.
30621eb4433ac451dc16f4133a88af2d002ac26c58efMike Stumpstatic void HandleAddressSpaceTypeAttribute(QualType &Type,
3063c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner                                            const AttributeList &Attr, Sema &S){
30640953e767ff7817f97b3ab20896b229891eeff45bJohn McCall
3065232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  // If this type is already address space qualified, reject it.
3066232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
3067232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  // for two or more different address spaces."
3068232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  if (Type.getAddressSpace()) {
3069c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
3070e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
3071c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    return;
3072232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  }
30731eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3074232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  // Check the attribute arguments.
3075545dd3401e7f31c256d69cb948a45d5ca781064cChris Lattner  if (Attr.getNumArgs() != 1) {
3076f3a41af4d5c98a72a1d6720bbbfd658e57ef2541Chris Lattner    S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3077e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
3078c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    return;
3079232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  }
3080545dd3401e7f31c256d69cb948a45d5ca781064cChris Lattner  Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
3081232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  llvm::APSInt addrSpace(32);
3082ac06a0e1e3feb95c2ffd352c086882b492a65b99Douglas Gregor  if (ASArgExpr->isTypeDependent() || ASArgExpr->isValueDependent() ||
3083ac06a0e1e3feb95c2ffd352c086882b492a65b99Douglas Gregor      !ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
3084dcd5ef12488e4c7ea844327835896ca86b609a97Chris Lattner    S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
3085dcd5ef12488e4c7ea844327835896ca86b609a97Chris Lattner      << ASArgExpr->getSourceRange();
3086e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
3087c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    return;
3088232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner  }
3089232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner
3090efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  // Bounds checking.
3091efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  if (addrSpace.isSigned()) {
3092efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall    if (addrSpace.isNegative()) {
3093efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall      S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
3094efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall        << ASArgExpr->getSourceRange();
3095e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara      Attr.setInvalid();
3096efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall      return;
3097efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall    }
3098efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall    addrSpace.setIsSigned(false);
3099efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  }
3100efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  llvm::APSInt max(addrSpace.getBitWidth());
31010953e767ff7817f97b3ab20896b229891eeff45bJohn McCall  max = Qualifiers::MaxAddressSpace;
3102efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  if (addrSpace > max) {
3103efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall    S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
31040953e767ff7817f97b3ab20896b229891eeff45bJohn McCall      << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
3105e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
3106efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall    return;
3107efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall  }
3108efadb7768e7c7418185f5a4010ecd8b21ca9731bJohn McCall
31091eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
3110f11284ac87daa613bc7b30db9f54bd716d123222Fariborz Jahanian  Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
3111c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner}
3112c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner
3113b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis/// handleObjCOwnershipTypeAttr - Process an objc_ownership
3114f85e193739c953358c865005855253af4f68a497John McCall/// attribute on the specified type.
3115f85e193739c953358c865005855253af4f68a497John McCall///
3116f85e193739c953358c865005855253af4f68a497John McCall/// Returns 'true' if the attribute was handled.
3117b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidisstatic bool handleObjCOwnershipTypeAttr(TypeProcessingState &state,
3118f85e193739c953358c865005855253af4f68a497John McCall                                       AttributeList &attr,
3119f85e193739c953358c865005855253af4f68a497John McCall                                       QualType &type) {
3120f85e193739c953358c865005855253af4f68a497John McCall  if (!type->isObjCRetainableType() && !type->isDependentType())
3121f85e193739c953358c865005855253af4f68a497John McCall    return false;
3122f85e193739c953358c865005855253af4f68a497John McCall
3123f85e193739c953358c865005855253af4f68a497John McCall  Sema &S = state.getSema();
3124f85e193739c953358c865005855253af4f68a497John McCall
3125f85e193739c953358c865005855253af4f68a497John McCall  if (type.getQualifiers().getObjCLifetime()) {
3126b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis    S.Diag(attr.getLoc(), diag::err_attr_objc_ownership_redundant)
3127f85e193739c953358c865005855253af4f68a497John McCall      << type;
3128f85e193739c953358c865005855253af4f68a497John McCall    return true;
3129f85e193739c953358c865005855253af4f68a497John McCall  }
3130f85e193739c953358c865005855253af4f68a497John McCall
3131f85e193739c953358c865005855253af4f68a497John McCall  if (!attr.getParameterName()) {
3132f85e193739c953358c865005855253af4f68a497John McCall    S.Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3133b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis      << "objc_ownership" << 1;
3134f85e193739c953358c865005855253af4f68a497John McCall    attr.setInvalid();
3135f85e193739c953358c865005855253af4f68a497John McCall    return true;
3136f85e193739c953358c865005855253af4f68a497John McCall  }
3137f85e193739c953358c865005855253af4f68a497John McCall
3138f85e193739c953358c865005855253af4f68a497John McCall  Qualifiers::ObjCLifetime lifetime;
3139f85e193739c953358c865005855253af4f68a497John McCall  if (attr.getParameterName()->isStr("none"))
3140f85e193739c953358c865005855253af4f68a497John McCall    lifetime = Qualifiers::OCL_ExplicitNone;
3141f85e193739c953358c865005855253af4f68a497John McCall  else if (attr.getParameterName()->isStr("strong"))
3142f85e193739c953358c865005855253af4f68a497John McCall    lifetime = Qualifiers::OCL_Strong;
3143f85e193739c953358c865005855253af4f68a497John McCall  else if (attr.getParameterName()->isStr("weak"))
3144f85e193739c953358c865005855253af4f68a497John McCall    lifetime = Qualifiers::OCL_Weak;
3145f85e193739c953358c865005855253af4f68a497John McCall  else if (attr.getParameterName()->isStr("autoreleasing"))
3146f85e193739c953358c865005855253af4f68a497John McCall    lifetime = Qualifiers::OCL_Autoreleasing;
3147f85e193739c953358c865005855253af4f68a497John McCall  else {
3148f85e193739c953358c865005855253af4f68a497John McCall    S.Diag(attr.getLoc(), diag::warn_attribute_type_not_supported)
3149b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis      << "objc_ownership" << attr.getParameterName();
3150f85e193739c953358c865005855253af4f68a497John McCall    attr.setInvalid();
3151f85e193739c953358c865005855253af4f68a497John McCall    return true;
3152f85e193739c953358c865005855253af4f68a497John McCall  }
3153f85e193739c953358c865005855253af4f68a497John McCall
3154f85e193739c953358c865005855253af4f68a497John McCall  // Consume lifetime attributes without further comment outside of
3155f85e193739c953358c865005855253af4f68a497John McCall  // ARC mode.
3156f85e193739c953358c865005855253af4f68a497John McCall  if (!S.getLangOptions().ObjCAutoRefCount)
3157f85e193739c953358c865005855253af4f68a497John McCall    return true;
3158f85e193739c953358c865005855253af4f68a497John McCall
3159f85e193739c953358c865005855253af4f68a497John McCall  Qualifiers qs;
3160f85e193739c953358c865005855253af4f68a497John McCall  qs.setObjCLifetime(lifetime);
3161f85e193739c953358c865005855253af4f68a497John McCall  QualType origType = type;
3162f85e193739c953358c865005855253af4f68a497John McCall  type = S.Context.getQualifiedType(type, qs);
3163f85e193739c953358c865005855253af4f68a497John McCall
3164f85e193739c953358c865005855253af4f68a497John McCall  // If we have a valid source location for the attribute, use an
3165f85e193739c953358c865005855253af4f68a497John McCall  // AttributedType instead.
3166f85e193739c953358c865005855253af4f68a497John McCall  if (attr.getLoc().isValid())
3167b8b0313e84700b5c6d597b3be4de41c97b7550f1Argyrios Kyrtzidis    type = S.Context.getAttributedType(AttributedType::attr_objc_ownership,
3168f85e193739c953358c865005855253af4f68a497John McCall                                       origType, type);
3169f85e193739c953358c865005855253af4f68a497John McCall
31709f084a3166b684573ba49df28fc5792bc37d92e1John McCall  // Forbid __weak if the runtime doesn't support it.
3171f85e193739c953358c865005855253af4f68a497John McCall  if (lifetime == Qualifiers::OCL_Weak &&
31729f084a3166b684573ba49df28fc5792bc37d92e1John McCall      !S.getLangOptions().ObjCRuntimeHasWeak) {
3173f85e193739c953358c865005855253af4f68a497John McCall
3174f85e193739c953358c865005855253af4f68a497John McCall    // Actually, delay this until we know what we're parsing.
3175f85e193739c953358c865005855253af4f68a497John McCall    if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
3176f85e193739c953358c865005855253af4f68a497John McCall      S.DelayedDiagnostics.add(
3177f85e193739c953358c865005855253af4f68a497John McCall          sema::DelayedDiagnostic::makeForbiddenType(attr.getLoc(),
3178f85e193739c953358c865005855253af4f68a497John McCall              diag::err_arc_weak_no_runtime, type, /*ignored*/ 0));
3179f85e193739c953358c865005855253af4f68a497John McCall    } else {
3180f85e193739c953358c865005855253af4f68a497John McCall      S.Diag(attr.getLoc(), diag::err_arc_weak_no_runtime);
3181f85e193739c953358c865005855253af4f68a497John McCall    }
3182f85e193739c953358c865005855253af4f68a497John McCall
3183f85e193739c953358c865005855253af4f68a497John McCall    attr.setInvalid();
3184f85e193739c953358c865005855253af4f68a497John McCall    return true;
3185f85e193739c953358c865005855253af4f68a497John McCall  }
3186742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian
3187742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian  // Forbid __weak for class objects marked as
3188742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian  // objc_arc_weak_reference_unavailable
3189742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian  if (lifetime == Qualifiers::OCL_Weak) {
3190742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian    QualType T = type;
3191742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian    while (const PointerType *ptr = T->getAs<PointerType>())
3192742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian      T = ptr->getPointeeType();
3193742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian    if (const ObjCObjectPointerType *ObjT = T->getAs<ObjCObjectPointerType>()) {
3194742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian      ObjCInterfaceDecl *Class = ObjT->getInterfaceDecl();
31957263feeb367ab55af7e9a6fd701148b1b8264dbaFariborz Jahanian      if (Class->isArcWeakrefUnavailable()) {
3196742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian          S.Diag(attr.getLoc(), diag::err_arc_unsupported_weak_class);
3197742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian          S.Diag(ObjT->getInterfaceDecl()->getLocation(),
3198742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian                 diag::note_class_declared);
3199742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian      }
3200742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian    }
3201742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian  }
3202742352a3984aeef9ecf911be23e673e97b34595fFariborz Jahanian
3203f85e193739c953358c865005855253af4f68a497John McCall  return true;
3204f85e193739c953358c865005855253af4f68a497John McCall}
3205f85e193739c953358c865005855253af4f68a497John McCall
3206711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// handleObjCGCTypeAttr - Process the __attribute__((objc_gc)) type
3207711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// attribute on the specified type.  Returns true to indicate that
3208711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// the attribute was handled, false to indicate that the type does
3209711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// not permit the attribute.
3210711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool handleObjCGCTypeAttr(TypeProcessingState &state,
3211711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                 AttributeList &attr,
3212711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                 QualType &type) {
3213711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Sema &S = state.getSema();
3214711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
3215711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  // Delay if this isn't some kind of pointer.
3216711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!type->isPointerType() &&
3217711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      !type->isObjCObjectPointerType() &&
3218711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      !type->isBlockPointerType())
3219711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return false;
3220711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
3221711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (type.getObjCGCAttr() != Qualifiers::GCNone) {
3222711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(attr.getLoc(), diag::err_attribute_multiple_objc_gc);
3223711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    attr.setInvalid();
3224711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3225d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian  }
32261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3227d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian  // Check the attribute arguments.
3228711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!attr.getParameterName()) {
3229711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3230ba372b85524f712e5b97a176f6ce0197d365835dFariborz Jahanian      << "objc_gc" << 1;
3231711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    attr.setInvalid();
3232711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3233ba372b85524f712e5b97a176f6ce0197d365835dFariborz Jahanian  }
32340953e767ff7817f97b3ab20896b229891eeff45bJohn McCall  Qualifiers::GC GCAttr;
3235711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (attr.getNumArgs() != 0) {
3236711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3237711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    attr.setInvalid();
3238711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3239d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian  }
3240711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (attr.getParameterName()->isStr("weak"))
32410953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    GCAttr = Qualifiers::Weak;
3242711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  else if (attr.getParameterName()->isStr("strong"))
32430953e767ff7817f97b3ab20896b229891eeff45bJohn McCall    GCAttr = Qualifiers::Strong;
3244d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian  else {
3245711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(attr.getLoc(), diag::warn_attribute_type_not_supported)
3246711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      << "objc_gc" << attr.getParameterName();
3247711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    attr.setInvalid();
3248711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3249d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian  }
32501eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
325114aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  QualType origType = type;
325214aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  type = S.Context.getObjCGCQualType(origType, GCAttr);
325314aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
325414aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  // Make an attributed type to preserve the source information.
325514aa2175416f79ef17811282afbf425f87d54ebfJohn McCall  if (attr.getLoc().isValid())
325614aa2175416f79ef17811282afbf425f87d54ebfJohn McCall    type = S.Context.getAttributedType(AttributedType::attr_objc_gc,
325714aa2175416f79ef17811282afbf425f87d54ebfJohn McCall                                       origType, type);
325814aa2175416f79ef17811282afbf425f87d54ebfJohn McCall
3259711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  return true;
3260d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian}
3261d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian
3262e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCallnamespace {
3263e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  /// A helper class to unwrap a type down to a function for the
3264e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  /// purposes of applying attributes there.
3265e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///
3266e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  /// Use:
3267e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///   FunctionTypeUnwrapper unwrapped(SemaRef, T);
3268e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///   if (unwrapped.isFunctionType()) {
3269e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///     const FunctionType *fn = unwrapped.get();
3270e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///     // change fn somehow
3271e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///     T = unwrapped.wrap(fn);
3272e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  ///   }
3273e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  struct FunctionTypeUnwrapper {
3274e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    enum WrapKind {
3275e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      Desugar,
3276e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      Parens,
3277e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      Pointer,
3278e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      BlockPointer,
3279e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      Reference,
3280e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      MemberPointer
3281e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    };
3282e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3283e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    QualType Original;
3284e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    const FunctionType *Fn;
3285e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    llvm::SmallVector<unsigned char /*WrapKind*/, 8> Stack;
3286e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3287e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    FunctionTypeUnwrapper(Sema &S, QualType T) : Original(T) {
3288e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      while (true) {
3289e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        const Type *Ty = T.getTypePtr();
3290e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        if (isa<FunctionType>(Ty)) {
3291e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Fn = cast<FunctionType>(Ty);
3292e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          return;
3293e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else if (isa<ParenType>(Ty)) {
3294e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = cast<ParenType>(Ty)->getInnerType();
3295e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(Parens);
3296e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else if (isa<PointerType>(Ty)) {
3297e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = cast<PointerType>(Ty)->getPointeeType();
3298e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(Pointer);
3299e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else if (isa<BlockPointerType>(Ty)) {
3300e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = cast<BlockPointerType>(Ty)->getPointeeType();
3301e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(BlockPointer);
3302e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else if (isa<MemberPointerType>(Ty)) {
3303e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = cast<MemberPointerType>(Ty)->getPointeeType();
3304e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(MemberPointer);
3305e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else if (isa<ReferenceType>(Ty)) {
3306e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = cast<ReferenceType>(Ty)->getPointeeType();
3307e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(Reference);
3308e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        } else {
3309e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          const Type *DTy = Ty->getUnqualifiedDesugaredType();
3310e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          if (Ty == DTy) {
3311e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall            Fn = 0;
3312e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall            return;
3313e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          }
3314e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3315e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          T = QualType(DTy, 0);
3316e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          Stack.push_back(Desugar);
3317e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        }
3318e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3319e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    }
3320e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3321e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    bool isFunctionType() const { return (Fn != 0); }
3322e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    const FunctionType *get() const { return Fn; }
3323e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3324e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    QualType wrap(Sema &S, const FunctionType *New) {
3325e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      // If T wasn't modified from the unwrapped type, do nothing.
3326e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      if (New == get()) return Original;
3327e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3328e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      Fn = New;
3329e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      return wrap(S.Context, Original, 0);
3330e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    }
3331e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3332e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  private:
3333e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    QualType wrap(ASTContext &C, QualType Old, unsigned I) {
3334e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      if (I == Stack.size())
3335e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return C.getQualifiedType(Fn, Old.getQualifiers());
3336e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3337e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      // Build up the inner type, applying the qualifiers from the old
3338e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      // type to the new type.
3339e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      SplitQualType SplitOld = Old.split();
3340e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3341e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      // As a special case, tail-recurse if there are no qualifiers.
3342e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      if (SplitOld.second.empty())
3343e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return wrap(C, SplitOld.first, I);
3344e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      return C.getQualifiedType(wrap(C, SplitOld.first, I), SplitOld.second);
3345e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    }
3346e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3347e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    QualType wrap(ASTContext &C, const Type *Old, unsigned I) {
3348e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      if (I == Stack.size()) return QualType(Fn, 0);
3349e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3350e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      switch (static_cast<WrapKind>(Stack[I++])) {
3351e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case Desugar:
3352e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        // This is the point at which we potentially lose source
3353e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        // information.
3354e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return wrap(C, Old->getUnqualifiedDesugaredType(), I);
3355e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3356e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case Parens: {
3357e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        QualType New = wrap(C, cast<ParenType>(Old)->getInnerType(), I);
3358e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return C.getParenType(New);
3359e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3360e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3361e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case Pointer: {
3362e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        QualType New = wrap(C, cast<PointerType>(Old)->getPointeeType(), I);
3363e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return C.getPointerType(New);
3364e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3365e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3366e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case BlockPointer: {
3367e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        QualType New = wrap(C, cast<BlockPointerType>(Old)->getPointeeType(),I);
3368e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return C.getBlockPointerType(New);
3369e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3370e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3371e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case MemberPointer: {
3372e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        const MemberPointerType *OldMPT = cast<MemberPointerType>(Old);
3373e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        QualType New = wrap(C, OldMPT->getPointeeType(), I);
3374e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        return C.getMemberPointerType(New, OldMPT->getClass());
3375e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3376e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3377e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      case Reference: {
3378e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        const ReferenceType *OldRef = cast<ReferenceType>(Old);
3379e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        QualType New = wrap(C, OldRef->getPointeeType(), I);
3380e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        if (isa<LValueReferenceType>(OldRef))
3381e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          return C.getLValueReferenceType(New, OldRef->isSpelledAsLValue());
3382e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall        else
3383e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall          return C.getRValueReferenceType(New);
3384e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3385e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      }
3386e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3387e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      llvm_unreachable("unknown wrapping kind");
3388e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall      return QualType();
3389e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    }
3390e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall  };
3391e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall}
3392e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3393711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// Process an individual function attribute.  Returns true to
3394711c52bb20d0c69063b52a99826fb7d2835501f1John McCall/// indicate that the attribute was handled, false if it wasn't.
3395711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic bool handleFunctionTypeAttr(TypeProcessingState &state,
3396711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   AttributeList &attr,
3397711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                                   QualType &type) {
3398711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  Sema &S = state.getSema();
3399e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3400711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  FunctionTypeUnwrapper unwrapped(S, type);
34012455636163fdd18581d7fdae816433f886d88213Mike Stump
3402711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (attr.getKind() == AttributeList::AT_noreturn) {
3403711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (S.CheckNoReturnAttr(attr))
340404a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall      return true;
3405e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall
3406e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    // Delay if this is not a function type.
3407711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (!unwrapped.isFunctionType())
3408711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return false;
3409425ef72306d4ff6b3698b744353e5f0e56b4b884Rafael Espindola
3410425ef72306d4ff6b3698b744353e5f0e56b4b884Rafael Espindola    // Otherwise we can process right away.
3411711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true);
3412711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
3413711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3414711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  }
3415425ef72306d4ff6b3698b744353e5f0e56b4b884Rafael Espindola
3416f85e193739c953358c865005855253af4f68a497John McCall  // ns_returns_retained is not always a type attribute, but if we got
3417f85e193739c953358c865005855253af4f68a497John McCall  // here, we're treating it as one right now.
3418f85e193739c953358c865005855253af4f68a497John McCall  if (attr.getKind() == AttributeList::AT_ns_returns_retained) {
3419f85e193739c953358c865005855253af4f68a497John McCall    assert(S.getLangOptions().ObjCAutoRefCount &&
3420f85e193739c953358c865005855253af4f68a497John McCall           "ns_returns_retained treated as type attribute in non-ARC");
3421f85e193739c953358c865005855253af4f68a497John McCall    if (attr.getNumArgs()) return true;
3422f85e193739c953358c865005855253af4f68a497John McCall
3423f85e193739c953358c865005855253af4f68a497John McCall    // Delay if this is not a function type.
3424f85e193739c953358c865005855253af4f68a497John McCall    if (!unwrapped.isFunctionType())
3425f85e193739c953358c865005855253af4f68a497John McCall      return false;
3426f85e193739c953358c865005855253af4f68a497John McCall
3427f85e193739c953358c865005855253af4f68a497John McCall    FunctionType::ExtInfo EI
3428f85e193739c953358c865005855253af4f68a497John McCall      = unwrapped.get()->getExtInfo().withProducesResult(true);
3429f85e193739c953358c865005855253af4f68a497John McCall    type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
3430f85e193739c953358c865005855253af4f68a497John McCall    return true;
3431f85e193739c953358c865005855253af4f68a497John McCall  }
3432f85e193739c953358c865005855253af4f68a497John McCall
3433711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (attr.getKind() == AttributeList::AT_regparm) {
3434711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    unsigned value;
3435711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (S.CheckRegparmAttr(attr, value))
3436711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return true;
34371e030eb1194763b42c1752723be23b1515f48981John McCall
3438711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    // Delay if this is not a function type.
3439711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (!unwrapped.isFunctionType())
3440008df5dce3938456ae7ea2e7ab3b2d12391ebf3eJohn McCall      return false;
34411e030eb1194763b42c1752723be23b1515f48981John McCall
3442ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    // Diagnose regparm with fastcall.
3443ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    const FunctionType *fn = unwrapped.get();
3444ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    CallingConv CC = fn->getCallConv();
3445ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    if (CC == CC_X86FastCall) {
3446ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
3447ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis        << FunctionType::getNameForCallConv(CC)
3448ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis        << "regparm";
3449ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      attr.setInvalid();
3450ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      return true;
3451ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    }
3452ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis
3453e6a365d772a6b455f1e23ac9ae5f40d65a55a18cJohn McCall    FunctionType::ExtInfo EI =
3454711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      unwrapped.get()->getExtInfo().withRegParm(value);
3455711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
3456711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3457425ef72306d4ff6b3698b744353e5f0e56b4b884Rafael Espindola  }
3458425ef72306d4ff6b3698b744353e5f0e56b4b884Rafael Espindola
345904a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  // Otherwise, a calling convention.
3460711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  CallingConv CC;
3461711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (S.CheckCallingConvAttr(attr, CC))
3462711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3463f82b4e85b1219295cad4b5851b035575bc293010John McCall
346404a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  // Delay if the type didn't work out to a function.
3465711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  if (!unwrapped.isFunctionType()) return false;
346604a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
3467711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  const FunctionType *fn = unwrapped.get();
3468711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  CallingConv CCOld = fn->getCallConv();
3469064f7db69def9299f5f4d9a32114afc10b6a6420Charles Davis  if (S.Context.getCanonicalCallConv(CC) ==
3470e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara      S.Context.getCanonicalCallConv(CCOld)) {
3471ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    FunctionType::ExtInfo EI= unwrapped.get()->getExtInfo().withCallingConv(CC);
3472ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
3473711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
3474e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara  }
347504a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
347604a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  if (CCOld != CC_Default) {
347704a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall    // Should we diagnose reapplications of the same convention?
3478711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
347904a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall      << FunctionType::getNameForCallConv(CC)
348004a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall      << FunctionType::getNameForCallConv(CCOld);
3481711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    attr.setInvalid();
3482711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    return true;
348304a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  }
348404a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
348504a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  // Diagnose the use of X86 fastcall on varargs or unprototyped functions.
348604a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  if (CC == CC_X86FastCall) {
3487711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (isa<FunctionNoProtoType>(fn)) {
3488711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(attr.getLoc(), diag::err_cconv_knr)
348904a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall        << FunctionType::getNameForCallConv(CC);
3490711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      attr.setInvalid();
3491711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return true;
349204a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall    }
349304a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
3494711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    const FunctionProtoType *FnP = cast<FunctionProtoType>(fn);
349504a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall    if (FnP->isVariadic()) {
3496711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      S.Diag(attr.getLoc(), diag::err_cconv_varargs)
349704a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall        << FunctionType::getNameForCallConv(CC);
3498711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      attr.setInvalid();
3499711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      return true;
350004a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall    }
3501ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis
3502ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    // Also diagnose fastcall with regparm.
3503a49218e17bcbb1acde0245773173e2c0c42f4f19Eli Friedman    if (fn->getHasRegParm()) {
3504ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      S.Diag(attr.getLoc(), diag::err_attributes_are_not_compatible)
3505ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis        << "regparm"
3506ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis        << FunctionType::getNameForCallConv(CC);
3507ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      attr.setInvalid();
3508ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis      return true;
3509ce95566b36a4ff16e90507633dad8b7a76572999Argyrios Kyrtzidis    }
351004a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall  }
3511f82b4e85b1219295cad4b5851b035575bc293010John McCall
3512711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withCallingConv(CC);
3513711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
3514711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  return true;
3515f82b4e85b1219295cad4b5851b035575bc293010John McCall}
3516f82b4e85b1219295cad4b5851b035575bc293010John McCall
3517207f4d8543529221932af82836016a2ef066c917Peter Collingbourne/// Handle OpenCL image access qualifiers: read_only, write_only, read_write
3518207f4d8543529221932af82836016a2ef066c917Peter Collingbournestatic void HandleOpenCLImageAccessAttribute(QualType& CurType,
3519207f4d8543529221932af82836016a2ef066c917Peter Collingbourne                                             const AttributeList &Attr,
3520207f4d8543529221932af82836016a2ef066c917Peter Collingbourne                                             Sema &S) {
3521207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  // Check the attribute arguments.
3522207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  if (Attr.getNumArgs() != 1) {
3523207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3524207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    Attr.setInvalid();
3525207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    return;
3526207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  }
3527207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
3528207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  llvm::APSInt arg(32);
3529207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  if (sizeExpr->isTypeDependent() || sizeExpr->isValueDependent() ||
3530207f4d8543529221932af82836016a2ef066c917Peter Collingbourne      !sizeExpr->isIntegerConstantExpr(arg, S.Context)) {
3531207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3532207f4d8543529221932af82836016a2ef066c917Peter Collingbourne      << "opencl_image_access" << sizeExpr->getSourceRange();
3533207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    Attr.setInvalid();
3534207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    return;
3535207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  }
3536207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  unsigned iarg = static_cast<unsigned>(arg.getZExtValue());
3537207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  switch (iarg) {
3538207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  case CLIA_read_only:
3539207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  case CLIA_write_only:
3540207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  case CLIA_read_write:
3541207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    // Implemented in a separate patch
3542207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    break;
3543207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  default:
3544207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    // Implemented in a separate patch
3545207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
3546207f4d8543529221932af82836016a2ef066c917Peter Collingbourne      << sizeExpr->getSourceRange();
3547207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    Attr.setInvalid();
3548207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    break;
3549207f4d8543529221932af82836016a2ef066c917Peter Collingbourne  }
3550207f4d8543529221932af82836016a2ef066c917Peter Collingbourne}
3551207f4d8543529221932af82836016a2ef066c917Peter Collingbourne
35526e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// HandleVectorSizeAttribute - this attribute is only applicable to integral
35536e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// and float scalars, although arrays, pointers, and function return values are
35546e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// allowed in conjunction with this construct. Aggregates with this attribute
35556e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// are invalid, even if they are of the same size as a corresponding scalar.
35566e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// The raw attribute should contain precisely 1 argument, the vector size for
35576e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// the variable, measured in bytes. If curType and rawAttr are well formed,
35586e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson/// this routine will return a new vector type.
3559788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattnerstatic void HandleVectorSizeAttr(QualType& CurType, const AttributeList &Attr,
3560788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner                                 Sema &S) {
356156affbcaeff9a01caa70b2a237f7e6ac31c8ded6Bob Wilson  // Check the attribute arguments.
35626e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  if (Attr.getNumArgs() != 1) {
35636e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3564e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
35656e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    return;
35666e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  }
35676e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
35686e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  llvm::APSInt vecSize(32);
3569ac06a0e1e3feb95c2ffd352c086882b492a65b99Douglas Gregor  if (sizeExpr->isTypeDependent() || sizeExpr->isValueDependent() ||
3570ac06a0e1e3feb95c2ffd352c086882b492a65b99Douglas Gregor      !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
35716e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
35726e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson      << "vector_size" << sizeExpr->getSourceRange();
3573e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
35746e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    return;
35756e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  }
35766e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  // the base type must be integer or float, and can't already be a vector.
3577f60946222721d9ba3c059563935c17b84703187aDouglas Gregor  if (!CurType->isIntegerType() && !CurType->isRealFloatingType()) {
35786e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
3579e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
35806e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    return;
35816e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  }
35826e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
35836e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  // vecSize is specified in bytes - convert to bits.
35846e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
35856e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson
35866e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  // the vector size needs to be an integral multiple of the type size.
35876e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  if (vectorSize % typeSize) {
35886e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
35896e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson      << sizeExpr->getSourceRange();
3590e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
35916e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    return;
35926e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  }
35936e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  if (vectorSize == 0) {
35946e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
35956e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson      << sizeExpr->getSourceRange();
3596e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    Attr.setInvalid();
35976e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson    return;
35986e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  }
35996e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson
36006e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  // Success! Instantiate the vector type, the number of elements is > 0, and
36016e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson  // not required to be a power of 2, unlike GCC.
3602788b0fd67e1992f23555454efcdb16a19dfefac3Chris Lattner  CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
3603e86d78cf4754a6aef2cf9a33d847aa15338e276fBob Wilson                                    VectorType::GenericVector);
36046e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson}
36056e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson
36064ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor/// \brief Process the OpenCL-like ext_vector_type attribute when it occurs on
36074ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor/// a type.
36084ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregorstatic void HandleExtVectorTypeAttr(QualType &CurType,
36094ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor                                    const AttributeList &Attr,
36104ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor                                    Sema &S) {
36114ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  Expr *sizeExpr;
36124ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor
36134ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  // Special case where the argument is a template id.
36144ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  if (Attr.getParameterName()) {
36154ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    CXXScopeSpec SS;
36164ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    UnqualifiedId id;
36174ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
36184ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor
36194ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    ExprResult Size = S.ActOnIdExpression(S.getCurScope(), SS, id, false,
36204ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor                                          false);
36214ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    if (Size.isInvalid())
36224ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor      return;
36234ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor
36244ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    sizeExpr = Size.get();
36254ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  } else {
36264ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    // check the attribute arguments.
36274ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    if (Attr.getNumArgs() != 1) {
36284ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor      S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
36294ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor      return;
36304ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    }
36314ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    sizeExpr = Attr.getArg(0);
36324ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  }
36334ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor
36344ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  // Create the vector type.
36354ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  QualType T = S.BuildExtVectorType(CurType, sizeExpr, Attr.getLoc());
36364ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor  if (!T.isNull())
36374ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    CurType = T;
36384ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor}
36394ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor
36404211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// HandleNeonVectorTypeAttr - The "neon_vector_type" and
36414211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// "neon_polyvector_type" attributes are used to create vector types that
36424211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// are mangled according to ARM's ABI.  Otherwise, these types are identical
36434211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// to those created with the "vector_size" attribute.  Unlike "vector_size"
36444211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// the argument to these Neon attributes is the number of vector elements,
36454211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// not the vector size in bytes.  The vector width and element type must
36464211bb68cff1f310be280f66a59520548ef99d8fBob Wilson/// match one of the standard Neon vector types.
36474211bb68cff1f310be280f66a59520548ef99d8fBob Wilsonstatic void HandleNeonVectorTypeAttr(QualType& CurType,
36484211bb68cff1f310be280f66a59520548ef99d8fBob Wilson                                     const AttributeList &Attr, Sema &S,
36494211bb68cff1f310be280f66a59520548ef99d8fBob Wilson                                     VectorType::VectorKind VecKind,
36504211bb68cff1f310be280f66a59520548ef99d8fBob Wilson                                     const char *AttrName) {
36514211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  // Check the attribute arguments.
36524211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  if (Attr.getNumArgs() != 1) {
36534211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
36544211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    Attr.setInvalid();
36554211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    return;
36564211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  }
36574211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  // The number of elements must be an ICE.
36584211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  Expr *numEltsExpr = static_cast<Expr *>(Attr.getArg(0));
36594211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  llvm::APSInt numEltsInt(32);
36604211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  if (numEltsExpr->isTypeDependent() || numEltsExpr->isValueDependent() ||
36614211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      !numEltsExpr->isIntegerConstantExpr(numEltsInt, S.Context)) {
36624211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
36634211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      << AttrName << numEltsExpr->getSourceRange();
36644211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    Attr.setInvalid();
36654211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    return;
36664211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  }
36674211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  // Only certain element types are supported for Neon vectors.
36684211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  const BuiltinType* BTy = CurType->getAs<BuiltinType>();
36694211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  if (!BTy ||
36704211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      (VecKind == VectorType::NeonPolyVector &&
36714211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::SChar &&
36724211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::Short) ||
36734211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      (BTy->getKind() != BuiltinType::SChar &&
36744211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::UChar &&
36754211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::Short &&
36764211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::UShort &&
36774211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::Int &&
36784211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::UInt &&
36794211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::LongLong &&
36804211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::ULongLong &&
36814211bb68cff1f310be280f66a59520548ef99d8fBob Wilson       BTy->getKind() != BuiltinType::Float)) {
36824211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) <<CurType;
36834211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    Attr.setInvalid();
36844211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    return;
36854211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  }
36864211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  // The total size of the vector must be 64 or 128 bits.
36874211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
36884211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  unsigned numElts = static_cast<unsigned>(numEltsInt.getZExtValue());
36894211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  unsigned vecSize = typeSize * numElts;
36904211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  if (vecSize != 64 && vecSize != 128) {
36914211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    S.Diag(Attr.getLoc(), diag::err_attribute_bad_neon_vector_size) << CurType;
36924211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    Attr.setInvalid();
36934211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    return;
36944211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  }
36954211bb68cff1f310be280f66a59520548ef99d8fBob Wilson
36964211bb68cff1f310be280f66a59520548ef99d8fBob Wilson  CurType = S.Context.getVectorType(CurType, numElts, VecKind);
36974211bb68cff1f310be280f66a59520548ef99d8fBob Wilson}
36984211bb68cff1f310be280f66a59520548ef99d8fBob Wilson
3699711c52bb20d0c69063b52a99826fb7d2835501f1John McCallstatic void processTypeAttrs(TypeProcessingState &state, QualType &type,
3700711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                             bool isDeclSpec, AttributeList *attrs) {
3701c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner  // Scan through and apply attributes to this type where it makes sense.  Some
3702c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner  // attributes (such as __address_space__, __vector_size__, etc) apply to the
3703c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner  // type, but others can be present in the type specifiers even though they
3704c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner  // apply to the decl.  Here we apply type attributes and ignore the rest.
3705711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
3706711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  AttributeList *next;
3707711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  do {
3708711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    AttributeList &attr = *attrs;
3709711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    next = attr.getNext();
3710711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
3711e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara    // Skip attributes that were marked to be invalid.
3712711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    if (attr.isInvalid())
3713e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara      continue;
3714e215f7232dd4aa65ebf2a1ecd07cd95fe1ce3481Abramo Bagnara
3715b1f1b267351be74013f966f4834cde1eddbe0233Abramo Bagnara    // If this is an attribute we can handle, do so now,
3716b1f1b267351be74013f966f4834cde1eddbe0233Abramo Bagnara    // otherwise, add it to the FnAttrs list for rechaining.
3717711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    switch (attr.getKind()) {
3718c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    default: break;
371904a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall
3720c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    case AttributeList::AT_address_space:
3721711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      HandleAddressSpaceTypeAttribute(type, attr, state.getSema());
3722c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner      break;
3723711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    OBJC_POINTER_TYPE_ATTRS_CASELIST:
3724711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      if (!handleObjCPointerTypeAttr(state, attr, type))
3725711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        distributeObjCPointerTypeAttr(state, attr, type);
3726d33d9c0cc0cfdcd0b10f35a6acdfb25da4a64f19Fariborz Jahanian      break;
372704a67a6aa3dfdc92d57f7f8d93ba397348c868a4John McCall    case AttributeList::AT_vector_size:
3728711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      HandleVectorSizeAttr(type, attr, state.getSema());
3729f82b4e85b1219295cad4b5851b035575bc293010John McCall      break;
37304ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor    case AttributeList::AT_ext_vector_type:
37314ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor      if (state.getDeclarator().getDeclSpec().getStorageClassSpec()
37324ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor            != DeclSpec::SCS_typedef)
37334ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor        HandleExtVectorTypeAttr(type, attr, state.getSema());
37344ac01401b1ec602a1f58c217544d3dcb5fcbd7f1Douglas Gregor      break;
37354211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    case AttributeList::AT_neon_vector_type:
3736711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      HandleNeonVectorTypeAttr(type, attr, state.getSema(),
3737711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                               VectorType::NeonVector, "neon_vector_type");
37384211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      break;
37394211bb68cff1f310be280f66a59520548ef99d8fBob Wilson    case AttributeList::AT_neon_polyvector_type:
3740711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      HandleNeonVectorTypeAttr(type, attr, state.getSema(),
3741711c52bb20d0c69063b52a99826fb7d2835501f1John McCall                               VectorType::NeonPolyVector,
37424211bb68cff1f310be280f66a59520548ef99d8fBob Wilson                               "neon_polyvector_type");
37434211bb68cff1f310be280f66a59520548ef99d8fBob Wilson      break;
3744207f4d8543529221932af82836016a2ef066c917Peter Collingbourne    case AttributeList::AT_opencl_image_access:
3745207f4d8543529221932af82836016a2ef066c917Peter Collingbourne      HandleOpenCLImageAccessAttribute(type, attr, state.getSema());
3746207f4d8543529221932af82836016a2ef066c917Peter Collingbourne      break;
3747207f4d8543529221932af82836016a2ef066c917Peter Collingbourne
3748f85e193739c953358c865005855253af4f68a497John McCall    case AttributeList::AT_ns_returns_retained:
3749f85e193739c953358c865005855253af4f68a497John McCall      if (!state.getSema().getLangOptions().ObjCAutoRefCount)
3750f85e193739c953358c865005855253af4f68a497John McCall	break;
3751f85e193739c953358c865005855253af4f68a497John McCall      // fallthrough into the function attrs
3752f85e193739c953358c865005855253af4f68a497John McCall
3753711c52bb20d0c69063b52a99826fb7d2835501f1John McCall    FUNCTION_TYPE_ATTRS_CASELIST:
3754711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      // Never process function type attributes as part of the
3755711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      // declaration-specifiers.
3756711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      if (isDeclSpec)
3757711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        distributeFunctionTypeAttrFromDeclSpec(state, attr, type);
3758711c52bb20d0c69063b52a99826fb7d2835501f1John McCall
3759711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      // Otherwise, handle the possible delays.
3760711c52bb20d0c69063b52a99826fb7d2835501f1John McCall      else if (!handleFunctionTypeAttr(state, attr, type))
3761711c52bb20d0c69063b52a99826fb7d2835501f1John McCall        distributeFunctionTypeAttr(state, attr, type);
37626e132aab867c189b1c3ee7463ef9d2b1f03a294dJohn Thompson      break;
3763c9b346d7b3b24f8bf940735cc812893dfcef1d4bChris Lattner    }
3764711c52bb20d0c69063b52a99826fb7d2835501f1John McCall  } while ((attrs = next));
3765232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner}
3766232e882226aa116807ee08a700dfc2350fbfabb1Chris Lattner
3767e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// \brief Ensure that the type of the given expression is complete.
3768e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth///
3769e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// This routine checks whether the expression \p E has a complete type. If the
3770e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// expression refers to an instantiable construct, that instantiation is
3771e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// performed as needed to complete its type. Furthermore
3772e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// Sema::RequireCompleteType is called for the expression's type (or in the
3773e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// case of a reference type, the referred-to type).
3774e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth///
3775e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// \param E The expression whose type is required to be complete.
3776e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// \param PD The partial diagnostic that will be printed out if the type cannot
3777e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// be completed.
3778e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth///
3779e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// \returns \c true if the type of \p E is incomplete and diagnosed, \c false
3780e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth/// otherwise.
3781e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruthbool Sema::RequireCompleteExprType(Expr *E, const PartialDiagnostic &PD,
3782e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth                                   std::pair<SourceLocation,
3783e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth                                             PartialDiagnostic> Note) {
3784e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  QualType T = E->getType();
3785e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
3786e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // Fast path the case where the type is already complete.
3787e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  if (!T->isIncompleteType())
3788e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth    return false;
3789e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
3790e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // Incomplete array types may be completed by the initializer attached to
3791e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // their definitions. For static data members of class templates we need to
3792e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // instantiate the definition to get this initializer and complete the type.
3793e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  if (T->isIncompleteArrayType()) {
3794e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth    if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
3795e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth      if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
3796e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth        if (Var->isStaticDataMember() &&
3797e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth            Var->getInstantiatedFromStaticDataMember()) {
379836f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor
379936f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor          MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
380036f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor          assert(MSInfo && "Missing member specialization information?");
380136f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor          if (MSInfo->getTemplateSpecializationKind()
380236f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor                != TSK_ExplicitSpecialization) {
380336f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            // If we don't already have a point of instantiation, this is it.
380436f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            if (MSInfo->getPointOfInstantiation().isInvalid()) {
380536f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              MSInfo->setPointOfInstantiation(E->getLocStart());
380636f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor
380736f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              // This is a modification of an existing AST node. Notify
380836f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              // listeners.
380936f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              if (ASTMutationListener *L = getASTMutationListener())
381036f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor                L->StaticDataMemberInstantiated(Var);
381136f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            }
381236f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor
381336f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            InstantiateStaticDataMemberDefinition(E->getExprLoc(), Var);
381436f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor
381536f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            // Update the type to the newly instantiated definition's type both
381636f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            // here and within the expression.
381736f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            if (VarDecl *Def = Var->getDefinition()) {
381836f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              DRE->setDecl(Def);
381936f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              T = Def->getType();
382036f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              DRE->setType(T);
382136f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor              E->setType(T);
382236f255c324d37dd8e0e5ab2e026814e8396a05aaDouglas Gregor            }
3823f15748a28c8443eef2924ef83689c358c661e9c5Douglas Gregor          }
3824f15748a28c8443eef2924ef83689c358c661e9c5Douglas Gregor
3825e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth          // We still go on to try to complete the type independently, as it
3826e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth          // may also require instantiations or diagnostics if it remains
3827e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth          // incomplete.
3828e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth        }
3829e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth      }
3830e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth    }
3831e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  }
3832e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
3833e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // FIXME: Are there other cases which require instantiating something other
3834e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // than the type to complete the type of an expression?
3835e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
3836e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  // Look through reference types and complete the referred type.
3837e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  if (const ReferenceType *Ref = T->getAs<ReferenceType>())
3838e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth    T = Ref->getPointeeType();
3839e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
3840e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth  return RequireCompleteType(E->getExprLoc(), T, PD, Note);
3841e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth}
3842e4d645cbe073042d8abc1a4eb600af4ff7a8dffbChandler Carruth
38431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// @brief Ensure that the type T is a complete type.
38444ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor///
38454ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// This routine checks whether the type @p T is complete in any
38464ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// context where a complete type is required. If @p T is a complete
384786447ec25fa34aa3c2f48ebc49ec09bc1f03f002Douglas Gregor/// type, returns false. If @p T is a class template specialization,
384886447ec25fa34aa3c2f48ebc49ec09bc1f03f002Douglas Gregor/// this routine then attempts to perform class template
384986447ec25fa34aa3c2f48ebc49ec09bc1f03f002Douglas Gregor/// instantiation. If instantiation fails, or if @p T is incomplete
385086447ec25fa34aa3c2f48ebc49ec09bc1f03f002Douglas Gregor/// and cannot be completed, issues the diagnostic @p diag (giving it
385186447ec25fa34aa3c2f48ebc49ec09bc1f03f002Douglas Gregor/// the type @p T) and returns true.
38524ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor///
38534ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// @param Loc  The location in the source that the incomplete type
38544ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// diagnostic should refer to.
38554ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor///
38564ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// @param T  The type that this routine is examining for completeness.
38574ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor///
38581eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump/// @param PD The partial diagnostic that will be printed out if T is not a
3859b790661a15d93941d2c33a0ea328254277b3d7e3Anders Carlsson/// complete type.
38604ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor///
38614ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
38624ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor/// @c false otherwise.
386391a0cc913ecc5619b76d2e40742fd09725be8c56Anders Carlssonbool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
38648c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson                               const PartialDiagnostic &PD,
38658c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson                               std::pair<SourceLocation,
38668c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson                                         PartialDiagnostic> Note) {
386791a0cc913ecc5619b76d2e40742fd09725be8c56Anders Carlsson  unsigned diag = PD.getDiagID();
38681eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3869573d9c325279b6e156c7fde163ffe3629c62d596Douglas Gregor  // FIXME: Add this assertion to make sure we always get instantiation points.
3870573d9c325279b6e156c7fde163ffe3629c62d596Douglas Gregor  //  assert(!Loc.isInvalid() && "Invalid location in RequireCompleteType");
3871690dc7f4f2c0fe87409839b7560c19dee7832195Douglas Gregor  // FIXME: Add this assertion to help us flush out problems with
3872690dc7f4f2c0fe87409839b7560c19dee7832195Douglas Gregor  // checking for dependent types and type-dependent expressions.
3873690dc7f4f2c0fe87409839b7560c19dee7832195Douglas Gregor  //
38741eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  //  assert(!T->isDependentType() &&
3875690dc7f4f2c0fe87409839b7560c19dee7832195Douglas Gregor  //         "Can't ask whether a dependent type is complete");
3876690dc7f4f2c0fe87409839b7560c19dee7832195Douglas Gregor
38774ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  // If we have a complete type, we're done.
38784ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  if (!T->isIncompleteType())
38794ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor    return false;
38804ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor
3881d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor  // If we have a class template specialization or a class member of a
3882923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  // class template specialization, or an array with known size of such,
3883923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  // try to instantiate it.
3884923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  QualType MaybeTemplate = T;
388589c49f09b0292dc7c03885f6c765d667a9837597Douglas Gregor  if (const ConstantArrayType *Array = Context.getAsConstantArrayType(T))
3886923d56d436f750bc1f29db50e641078725558a1bSebastian Redl    MaybeTemplate = Array->getElementType();
3887923d56d436f750bc1f29db50e641078725558a1bSebastian Redl  if (const RecordType *Record = MaybeTemplate->getAs<RecordType>()) {
38882943aed177b33ae3f14273b11a7b398e5276ec62Douglas Gregor    if (ClassTemplateSpecializationDecl *ClassTemplateSpec
3889d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor          = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
3890972e6ce33c7e307f4b0da12bd6079bbd6ef76948Douglas Gregor      if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared)
3891972e6ce33c7e307f4b0da12bd6079bbd6ef76948Douglas Gregor        return InstantiateClassTemplateSpecialization(Loc, ClassTemplateSpec,
3892d0e3daf2b980b505e535d35b432c938c6d0208efDouglas Gregor                                                      TSK_ImplicitInstantiation,
38935842ba9fd482bb2fe5198b32c2ae549cd5474e6dDouglas Gregor                                                      /*Complain=*/diag != 0);
38941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    } else if (CXXRecordDecl *Rec
3895d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor                 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
3896d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor      if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
3897b3ae4fcd4314a9c1c46d41b200883599c32025b4Douglas Gregor        MemberSpecializationInfo *MSInfo = Rec->getMemberSpecializationInfo();
3898b3ae4fcd4314a9c1c46d41b200883599c32025b4Douglas Gregor        assert(MSInfo && "Missing member specialization information?");
3899357bbd022c1d340c8e255aea7a684ddb34bc76e5Douglas Gregor        // This record was instantiated from a class within a template.
3900b3ae4fcd4314a9c1c46d41b200883599c32025b4Douglas Gregor        if (MSInfo->getTemplateSpecializationKind()
3901972e6ce33c7e307f4b0da12bd6079bbd6ef76948Douglas Gregor                                               != TSK_ExplicitSpecialization)
3902f6b1185f0a8a209c06dfc1efdb6a59cc851e970cDouglas Gregor          return InstantiateClass(Loc, Rec, Pattern,
3903f6b1185f0a8a209c06dfc1efdb6a59cc851e970cDouglas Gregor                                  getTemplateInstantiationArgs(Rec),
3904f6b1185f0a8a209c06dfc1efdb6a59cc851e970cDouglas Gregor                                  TSK_ImplicitInstantiation,
3905f6b1185f0a8a209c06dfc1efdb6a59cc851e970cDouglas Gregor                                  /*Complain=*/diag != 0);
3906d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor      }
3907d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor    }
3908d475b8d9e6f5ff0e6ab8d15667ce8a64c7cb9a4dDouglas Gregor  }
39092943aed177b33ae3f14273b11a7b398e5276ec62Douglas Gregor
39105842ba9fd482bb2fe5198b32c2ae549cd5474e6dDouglas Gregor  if (diag == 0)
39115842ba9fd482bb2fe5198b32c2ae549cd5474e6dDouglas Gregor    return true;
39121eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3913916c870442978db40404d51348cdf5524e506faaJohn McCall  const TagType *Tag = T->getAs<TagType>();
391401620704304f819b82ecef769ec114e541a364d7Rafael Espindola
391501620704304f819b82ecef769ec114e541a364d7Rafael Espindola  // Avoid diagnosing invalid decls as incomplete.
391601620704304f819b82ecef769ec114e541a364d7Rafael Espindola  if (Tag && Tag->getDecl()->isInvalidDecl())
391701620704304f819b82ecef769ec114e541a364d7Rafael Espindola    return true;
391801620704304f819b82ecef769ec114e541a364d7Rafael Espindola
3919916c870442978db40404d51348cdf5524e506faaJohn McCall  // Give the external AST source a chance to complete the type.
3920916c870442978db40404d51348cdf5524e506faaJohn McCall  if (Tag && Tag->getDecl()->hasExternalLexicalStorage()) {
3921916c870442978db40404d51348cdf5524e506faaJohn McCall    Context.getExternalSource()->CompleteType(Tag->getDecl());
3922916c870442978db40404d51348cdf5524e506faaJohn McCall    if (!Tag->isIncompleteType())
3923916c870442978db40404d51348cdf5524e506faaJohn McCall      return false;
3924916c870442978db40404d51348cdf5524e506faaJohn McCall  }
3925916c870442978db40404d51348cdf5524e506faaJohn McCall
39264ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  // We have an incomplete type. Produce a diagnostic.
392791a0cc913ecc5619b76d2e40742fd09725be8c56Anders Carlsson  Diag(Loc, PD) << T;
39283c0eb160ca1361a82b9f15b3b40a2425adc14d0fEli Friedman
39298c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson  // If we have a note, produce it.
39308c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson  if (!Note.first.isInvalid())
39318c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson    Diag(Note.first, Note.second);
39328c8d91917c307dc3ba4f60661377c745f2a6bef2Anders Carlsson
39334ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  // If the type was a forward declaration of a class/struct/union
393401620704304f819b82ecef769ec114e541a364d7Rafael Espindola  // type, produce a note.
39354ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  if (Tag && !Tag->getDecl()->isInvalidDecl())
39361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    Diag(Tag->getDecl()->getLocation(),
39374ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor         Tag->isBeingDefined() ? diag::note_type_being_defined
39384ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor                               : diag::note_forward_declaration)
39394ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor        << QualType(Tag, 0);
39404ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor
39414ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor  return true;
39424ec339f43c0cae2678334850c90926bea10999c7Douglas Gregor}
3943e6258936178b4c52b43b3b9dbec13552961cd645Douglas Gregor
3944fe6b2d481d91140923f4541f273b253291884214Douglas Gregorbool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
3945fe6b2d481d91140923f4541f273b253291884214Douglas Gregor                               const PartialDiagnostic &PD) {
3946fe6b2d481d91140923f4541f273b253291884214Douglas Gregor  return RequireCompleteType(Loc, T, PD,
3947fe6b2d481d91140923f4541f273b253291884214Douglas Gregor                             std::make_pair(SourceLocation(), PDiag(0)));
3948fe6b2d481d91140923f4541f273b253291884214Douglas Gregor}
3949fe6b2d481d91140923f4541f273b253291884214Douglas Gregor
3950fe6b2d481d91140923f4541f273b253291884214Douglas Gregorbool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
3951fe6b2d481d91140923f4541f273b253291884214Douglas Gregor                               unsigned DiagID) {
3952fe6b2d481d91140923f4541f273b253291884214Douglas Gregor  return RequireCompleteType(Loc, T, PDiag(DiagID),
3953fe6b2d481d91140923f4541f273b253291884214Douglas Gregor                             std::make_pair(SourceLocation(), PDiag(0)));
3954fe6b2d481d91140923f4541f273b253291884214Douglas Gregor}
3955fe6b2d481d91140923f4541f273b253291884214Douglas Gregor
3956465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara/// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
3957465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara/// and qualified by the nested-name-specifier contained in SS.
3958465d41b92b2c862f3062c412a0538db65c6a2661Abramo BagnaraQualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword,
3959465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara                                 const CXXScopeSpec &SS, QualType T) {
3960465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara  if (T.isNull())
3961e6258936178b4c52b43b3b9dbec13552961cd645Douglas Gregor    return T;
3962465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara  NestedNameSpecifier *NNS;
3963e4da7a034a2fcf4b14d0bcc28d05de0878159061Abramo Bagnara  if (SS.isValid())
3964465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara    NNS = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3965465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara  else {
3966465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara    if (Keyword == ETK_None)
3967465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara      return T;
3968465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara    NNS = 0;
3969465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara  }
3970465d41b92b2c862f3062c412a0538db65c6a2661Abramo Bagnara  return Context.getElaboratedType(Keyword, NNS, T);
3971e6258936178b4c52b43b3b9dbec13552961cd645Douglas Gregor}
3972af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson
39732a984cad5ac3fdceeff2bd99daa7b90979313475John McCallQualType Sema::BuildTypeofExprType(Expr *E, SourceLocation Loc) {
3974fb8721ce4c6fef3739b1cbd1e38e3f1949462033John McCall  ExprResult ER = CheckPlaceholderExpr(E);
39752a984cad5ac3fdceeff2bd99daa7b90979313475John McCall  if (ER.isInvalid()) return QualType();
39762a984cad5ac3fdceeff2bd99daa7b90979313475John McCall  E = ER.take();
39772a984cad5ac3fdceeff2bd99daa7b90979313475John McCall
39782b1d51bcf891f8887759aebb4b9e78dee8542e6dFariborz Jahanian  if (!E->isTypeDependent()) {
39792b1d51bcf891f8887759aebb4b9e78dee8542e6dFariborz Jahanian    QualType T = E->getType();
3980aca7f7bab0102341863a0d1bdb048d69213ae362Fariborz Jahanian    if (const TagType *TT = T->getAs<TagType>())
3981aca7f7bab0102341863a0d1bdb048d69213ae362Fariborz Jahanian      DiagnoseUseOfDecl(TT->getDecl(), E->getExprLoc());
39822b1d51bcf891f8887759aebb4b9e78dee8542e6dFariborz Jahanian  }
3983af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson  return Context.getTypeOfExprType(E);
3984af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson}
3985af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson
39862a984cad5ac3fdceeff2bd99daa7b90979313475John McCallQualType Sema::BuildDecltypeType(Expr *E, SourceLocation Loc) {
3987fb8721ce4c6fef3739b1cbd1e38e3f1949462033John McCall  ExprResult ER = CheckPlaceholderExpr(E);
39882a984cad5ac3fdceeff2bd99daa7b90979313475John McCall  if (ER.isInvalid()) return QualType();
39892a984cad5ac3fdceeff2bd99daa7b90979313475John McCall  E = ER.take();
39904b52e25f3b05ab0f9d2492276a52323a50a84fb7Douglas Gregor
3991af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson  return Context.getDecltypeType(E);
3992af017e682918f7a1a95ff08d9ab7ae3426436ca3Anders Carlsson}
3993ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt
3994ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean HuntQualType Sema::BuildUnaryTransformType(QualType BaseType,
3995ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt                                       UnaryTransformType::UTTKind UKind,
3996ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt                                       SourceLocation Loc) {
3997ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt  switch (UKind) {
3998ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt  case UnaryTransformType::EnumUnderlyingType:
3999ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    if (!BaseType->isDependentType() && !BaseType->isEnumeralType()) {
4000ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      Diag(Loc, diag::err_only_enums_have_underlying_types);
4001ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      return QualType();
4002ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    } else {
4003ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      QualType Underlying = BaseType;
4004ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      if (!BaseType->isDependentType()) {
4005ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt        EnumDecl *ED = BaseType->getAs<EnumType>()->getDecl();
4006ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt        assert(ED && "EnumType has no EnumDecl");
4007ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt        DiagnoseUseOfDecl(ED, Loc);
4008ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt        Underlying = ED->getIntegerType();
4009ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      }
4010ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      assert(!Underlying.isNull());
4011ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt      return Context.getUnaryTransformType(BaseType, Underlying,
4012ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt                                        UnaryTransformType::EnumUnderlyingType);
4013ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt    }
4014ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt  }
4015ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt  llvm_unreachable("unknown unary transform type");
4016ca63c200346c0ca9e00194ec6e34a5a7b0ed9321Sean Hunt}
4017