blob: a686e1db5963a6a380a620f80475f5db835b019f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Sebastian Redl23c7d062009-07-07 20:29:57 +000015#include "SemaInherit.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000018#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000019#include "clang/AST/Expr.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000020#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000021#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Douglas Gregor2dc0e642009-03-23 23:06:20 +000024/// \brief Perform adjustment on the parameter type of a function.
25///
26/// This routine adjusts the given parameter type @p T to the actual
27/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
28/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
29QualType Sema::adjustParameterType(QualType T) {
30 // C99 6.7.5.3p7:
31 if (T->isArrayType()) {
32 // C99 6.7.5.3p7:
33 // A declaration of a parameter as "array of type" shall be
34 // adjusted to "qualified pointer to type", where the type
35 // qualifiers (if any) are those specified within the [ and ] of
36 // the array type derivation.
37 return Context.getArrayDecayedType(T);
38 } else if (T->isFunctionType())
39 // C99 6.7.5.3p8:
40 // A declaration of a parameter as "function returning type"
41 // shall be adjusted to "pointer to function returning type", as
42 // in 6.3.2.1.
43 return Context.getPointerType(T);
44
45 return T;
46}
47
Douglas Gregor930d8b52009-01-30 22:09:00 +000048/// \brief Convert the specified declspec to the appropriate type
49/// object.
50/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000051/// \param DeclLoc The location of the declarator identifier or invalid if none.
Chris Lattner5153ee62009-04-25 08:47:54 +000052/// \returns The type described by the declaration specifiers. This function
53/// never returns null.
Chris Lattner3f84ad22009-04-22 05:27:59 +000054QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS,
Chris Lattnereaaebc72009-04-25 08:06:05 +000055 SourceLocation DeclLoc,
56 bool &isInvalid) {
Reid Spencer5f016e22007-07-11 17:01:13 +000057 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
58 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000059 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +000060
61 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000062 case DeclSpec::TST_void:
63 Result = Context.VoidTy;
64 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000065 case DeclSpec::TST_char:
66 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000067 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000068 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000069 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000070 else {
71 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
72 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000073 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000074 }
Chris Lattner958858e2008-02-20 21:40:32 +000075 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000076 case DeclSpec::TST_wchar:
77 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
78 Result = Context.WCharTy;
79 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000080 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
81 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000082 Result = Context.getSignedWCharType();
83 } else {
84 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
85 "Unknown TSS value");
Chris Lattnerf3a41af2008-11-20 06:38:18 +000086 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
87 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000088 Result = Context.getUnsignedWCharType();
89 }
90 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +000091 case DeclSpec::TST_char16:
92 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
93 "Unknown TSS value");
94 Result = Context.Char16Ty;
95 break;
96 case DeclSpec::TST_char32:
97 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
98 "Unknown TSS value");
99 Result = Context.Char32Ty;
100 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000101 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000102 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000103 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Steve Naroff470301b2009-07-22 16:07:01 +0000104 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000105 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000106 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000107 break;
108 }
109
Chris Lattnerd658b562008-04-05 06:32:51 +0000110 // Unspecified typespec defaults to int in C90. However, the C90 grammar
111 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
112 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
113 // Note that the one exception to this is function definitions, which are
114 // allowed to be completely missing a declspec. This is handled in the
115 // parser already though by it pretending to have seen an 'int' in this
116 // case.
117 if (getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000118 // In C89 mode, we only warn if there is a completely missing declspec
119 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000120 if (DS.isEmpty()) {
121 if (DeclLoc.isInvalid())
122 DeclLoc = DS.getSourceRange().getBegin();
Eli Friedmanfcff5772009-06-03 12:22:01 +0000123 Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000124 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000125 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
126 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000127 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000128 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000129 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
130 // "At least one type specifier shall be given in the declaration
131 // specifiers in each declaration, and in the specifier-qualifier list in
132 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000133 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000134 if (DeclLoc.isInvalid())
135 DeclLoc = DS.getSourceRange().getBegin();
136
Chris Lattnerb78d8332009-06-26 04:45:06 +0000137 if (getLangOptions().CPlusPlus && !getLangOptions().Microsoft) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000138 Diag(DeclLoc, diag::err_missing_type_specifier)
139 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000140
141 // When this occurs in C++ code, often something is very broken with the
142 // value being declared, poison it as invalid so we don't get chains of
143 // errors.
144 isInvalid = true;
145 } else {
Eli Friedmanfcff5772009-06-03 12:22:01 +0000146 Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000147 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000148 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000149 }
150
151 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000152 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
154 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000155 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
156 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
157 case DeclSpec::TSW_long: Result = Context.LongTy; break;
158 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000159 }
160 } else {
161 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000162 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
163 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
164 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
165 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000166 }
167 }
Chris Lattner958858e2008-02-20 21:40:32 +0000168 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000169 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000170 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000171 case DeclSpec::TST_double:
172 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000173 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000174 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000175 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000176 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000177 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 case DeclSpec::TST_decimal32: // _Decimal32
179 case DeclSpec::TST_decimal64: // _Decimal64
180 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner8f12f652009-05-13 05:02:08 +0000181 Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
182 Result = Context.IntTy;
183 isInvalid = true;
184 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000185 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 case DeclSpec::TST_enum:
187 case DeclSpec::TST_union:
188 case DeclSpec::TST_struct: {
189 Decl *D = static_cast<Decl *>(DS.getTypeRep());
Chris Lattner99dc9142008-04-13 18:59:07 +0000190 assert(D && "Didn't get a decl for a class/enum/union/struct?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
192 DS.getTypeSpecSign() == 0 &&
193 "Can't handle qualifiers on typedef names yet!");
194 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000195 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
Chris Lattner5153ee62009-04-25 08:47:54 +0000196
197 if (D->isInvalidDecl())
198 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000199 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000200 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000201 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
203 DS.getTypeSpecSign() == 0 &&
204 "Can't handle qualifiers on typedef names yet!");
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000205 Result = QualType::getFromOpaquePtr(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000206
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000207 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000208 if (const ObjCInterfaceType *Interface = Result->getAsObjCInterfaceType())
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000209 // It would be nice if protocol qualifiers were only stored with the
210 // ObjCObjectPointerType. Unfortunately, this isn't possible due
211 // to the following typedef idiom (which is uncommon, but allowed):
212 //
213 // typedef Foo<P> T;
214 // static void func() {
215 // Foo<P> *yy;
216 // T *zz;
217 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000218 Result = Context.getObjCInterfaceType(Interface->getDecl(),
219 (ObjCProtocolDecl**)PQ,
220 DS.getNumProtocolQualifiers());
Steve Naroff14108da2009-07-10 23:34:53 +0000221 else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000222 // id<protocol-list>
Steve Naroff470301b2009-07-22 16:07:01 +0000223 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000224 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
225 else if (Result->isObjCClassType()) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000226 if (DeclLoc.isInvalid())
227 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000228 // Class<protocol-list>
Steve Naroff470301b2009-07-22 16:07:01 +0000229 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
230 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000231 } else {
232 if (DeclLoc.isInvalid())
233 DeclLoc = DS.getSourceRange().getBegin();
234 Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
235 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000236 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000237 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000238 }
Chris Lattnereaaebc72009-04-25 08:06:05 +0000239
240 // If this is a reference to an invalid typedef, propagate the invalidity.
241 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
242 if (TDT->getDecl()->isInvalidDecl())
243 isInvalid = true;
244
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000246 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 }
Chris Lattner958858e2008-02-20 21:40:32 +0000248 case DeclSpec::TST_typeofType:
249 Result = QualType::getFromOpaquePtr(DS.getTypeRep());
250 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000251 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000252 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000253 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000254 case DeclSpec::TST_typeofExpr: {
255 Expr *E = static_cast<Expr *>(DS.getTypeRep());
256 assert(E && "Didn't get an expression for typeof?");
257 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000258 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000259 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000260 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000261 case DeclSpec::TST_decltype: {
262 Expr *E = static_cast<Expr *>(DS.getTypeRep());
263 assert(E && "Didn't get an expression for decltype?");
264 // TypeQuals handled by caller.
Anders Carlssonaf017e62009-06-29 22:58:55 +0000265 Result = BuildDecltypeType(E);
266 if (Result.isNull()) {
267 Result = Context.IntTy;
268 isInvalid = true;
269 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000270 break;
271 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000272 case DeclSpec::TST_auto: {
273 // TypeQuals handled by caller.
274 Result = Context.UndeducedAutoTy;
275 break;
276 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000277
Douglas Gregor809070a2009-02-18 17:45:20 +0000278 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000279 Result = Context.IntTy;
280 isInvalid = true;
281 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000282 }
Chris Lattner958858e2008-02-20 21:40:32 +0000283
284 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000285 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
286 if (getLangOptions().Freestanding)
287 Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000288 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000289 }
Chris Lattner958858e2008-02-20 21:40:32 +0000290
291 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
292 "FIXME: imaginary types not supported yet!");
293
Chris Lattner38d8b982008-02-20 22:04:11 +0000294 // See if there are any attributes on the declspec that apply to the type (as
295 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000296 if (const AttributeList *AL = DS.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +0000297 ProcessTypeAttributeList(Result, AL);
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000298
Chris Lattner96b77fc2008-04-02 06:50:17 +0000299 // Apply const/volatile/restrict qualifiers to T.
300 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
301
302 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
303 // or incomplete types shall not be restrict-qualified." C++ also allows
304 // restrict-qualified references.
305 if (TypeQuals & QualType::Restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000306 if (Result->isPointerType() || Result->isReferenceType()) {
307 QualType EltTy = Result->isPointerType() ?
Ted Kremenek35366a62009-07-17 17:50:17 +0000308 Result->getAsPointerType()->getPointeeType() :
309 Result->getAsReferenceType()->getPointeeType();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000310
Douglas Gregorbad0e652009-03-24 20:32:41 +0000311 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000312 // incomplete type.
313 if (!EltTy->isIncompleteOrObjectType()) {
314 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000315 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000316 << EltTy << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000317 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
318 }
319 } else {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000320 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000321 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000322 << Result << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000323 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000324 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000325 }
326
327 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
328 // of a function type includes any type qualifiers, the behavior is
329 // undefined."
330 if (Result->isFunctionType() && TypeQuals) {
331 // Get some location to point at, either the C or V location.
332 SourceLocation Loc;
333 if (TypeQuals & QualType::Const)
334 Loc = DS.getConstSpecLoc();
335 else {
336 assert((TypeQuals & QualType::Volatile) &&
337 "Has CV quals but not C or V?");
338 Loc = DS.getVolatileSpecLoc();
339 }
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000340 Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000341 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000342 }
343
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000344 // C++ [dcl.ref]p1:
345 // Cv-qualified references are ill-formed except when the
346 // cv-qualifiers are introduced through the use of a typedef
347 // (7.1.3) or of a template type argument (14.3), in which
348 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000349 // FIXME: Shouldn't we be checking SCS_typedef here?
350 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000351 TypeQuals && Result->isReferenceType()) {
352 TypeQuals &= ~QualType::Const;
353 TypeQuals &= ~QualType::Volatile;
354 }
355
Chris Lattner96b77fc2008-04-02 06:50:17 +0000356 Result = Result.getQualifiedType(TypeQuals);
357 }
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000358 return Result;
359}
360
Douglas Gregorcd281c32009-02-28 00:25:32 +0000361static std::string getPrintableNameForEntity(DeclarationName Entity) {
362 if (Entity)
363 return Entity.getAsString();
364
365 return "type name";
366}
367
368/// \brief Build a pointer type.
369///
370/// \param T The type to which we'll be building a pointer.
371///
372/// \param Quals The cvr-qualifiers to be applied to the pointer type.
373///
374/// \param Loc The location of the entity whose type involves this
375/// pointer type or, if there is no such entity, the location of the
376/// type that will have pointer type.
377///
378/// \param Entity The name of the entity that involves the pointer
379/// type, if known.
380///
381/// \returns A suitable pointer type, if there are no
382/// errors. Otherwise, returns a NULL type.
383QualType Sema::BuildPointerType(QualType T, unsigned Quals,
384 SourceLocation Loc, DeclarationName Entity) {
385 if (T->isReferenceType()) {
386 // C++ 8.3.2p4: There shall be no ... pointers to references ...
387 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
388 << getPrintableNameForEntity(Entity);
389 return QualType();
390 }
391
392 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
393 // object or incomplete types shall not be restrict-qualified."
394 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
395 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
396 << T;
397 Quals &= ~QualType::Restrict;
398 }
399
400 // Build the pointer type.
401 return Context.getPointerType(T).getQualifiedType(Quals);
402}
403
404/// \brief Build a reference type.
405///
406/// \param T The type to which we'll be building a reference.
407///
408/// \param Quals The cvr-qualifiers to be applied to the reference type.
409///
410/// \param Loc The location of the entity whose type involves this
411/// reference type or, if there is no such entity, the location of the
412/// type that will have reference type.
413///
414/// \param Entity The name of the entity that involves the reference
415/// type, if known.
416///
417/// \returns A suitable reference type, if there are no
418/// errors. Otherwise, returns a NULL type.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000419QualType Sema::BuildReferenceType(QualType T, bool LValueRef, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000420 SourceLocation Loc, DeclarationName Entity) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000421 if (LValueRef) {
Ted Kremenek35366a62009-07-17 17:50:17 +0000422 if (const RValueReferenceType *R = T->getAsRValueReferenceType()) {
Sebastian Redldfe292d2009-03-22 21:28:55 +0000423 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
424 // reference to a type T, and attempt to create the type "lvalue
425 // reference to cv TD" creates the type "lvalue reference to T".
426 // We use the qualifiers (restrict or none) of the original reference,
427 // not the new ones. This is consistent with GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000428 return Context.getLValueReferenceType(R->getPointeeType()).
Sebastian Redldfe292d2009-03-22 21:28:55 +0000429 getQualifiedType(T.getCVRQualifiers());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000430 }
431 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000432 if (T->isReferenceType()) {
433 // C++ [dcl.ref]p4: There shall be no references to references.
434 //
435 // According to C++ DR 106, references to references are only
436 // diagnosed when they are written directly (e.g., "int & &"),
437 // but not when they happen via a typedef:
438 //
439 // typedef int& intref;
440 // typedef intref& intref2;
441 //
442 // Parser::ParserDeclaratorInternal diagnoses the case where
443 // references are written directly; here, we handle the
444 // collapsing of references-to-references as described in C++
445 // DR 106 and amended by C++ DR 540.
446 return T;
447 }
448
449 // C++ [dcl.ref]p1:
450 // A declarator that specifies the type “reference to cv void”
451 // is ill-formed.
452 if (T->isVoidType()) {
453 Diag(Loc, diag::err_reference_to_void);
454 return QualType();
455 }
456
457 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
458 // object or incomplete types shall not be restrict-qualified."
459 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
460 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
461 << T;
462 Quals &= ~QualType::Restrict;
463 }
464
465 // C++ [dcl.ref]p1:
466 // [...] Cv-qualified references are ill-formed except when the
467 // cv-qualifiers are introduced through the use of a typedef
468 // (7.1.3) or of a template type argument (14.3), in which case
469 // the cv-qualifiers are ignored.
470 //
471 // We diagnose extraneous cv-qualifiers for the non-typedef,
472 // non-template type argument case within the parser. Here, we just
473 // ignore any extraneous cv-qualifiers.
474 Quals &= ~QualType::Const;
475 Quals &= ~QualType::Volatile;
476
477 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000478 if (LValueRef)
479 return Context.getLValueReferenceType(T).getQualifiedType(Quals);
480 return Context.getRValueReferenceType(T).getQualifiedType(Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000481}
482
483/// \brief Build an array type.
484///
485/// \param T The type of each element in the array.
486///
487/// \param ASM C99 array size modifier (e.g., '*', 'static').
488///
489/// \param ArraySize Expression describing the size of the array.
490///
491/// \param Quals The cvr-qualifiers to be applied to the array's
492/// element type.
493///
494/// \param Loc The location of the entity whose type involves this
495/// array type or, if there is no such entity, the location of the
496/// type that will have array type.
497///
498/// \param Entity The name of the entity that involves the array
499/// type, if known.
500///
501/// \returns A suitable array type, if there are no errors. Otherwise,
502/// returns a NULL type.
503QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
504 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000505 SourceRange Brackets, DeclarationName Entity) {
506 SourceLocation Loc = Brackets.getBegin();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000507 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
508 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Douglas Gregor86447ec2009-03-09 16:13:40 +0000509 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000510 diag::err_illegal_decl_array_incomplete_type))
511 return QualType();
512
513 if (T->isFunctionType()) {
514 Diag(Loc, diag::err_illegal_decl_array_of_functions)
515 << getPrintableNameForEntity(Entity);
516 return QualType();
517 }
518
519 // C++ 8.3.2p4: There shall be no ... arrays of references ...
520 if (T->isReferenceType()) {
521 Diag(Loc, diag::err_illegal_decl_array_of_references)
522 << getPrintableNameForEntity(Entity);
523 return QualType();
524 }
525
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000526 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
527 Diag(Loc, diag::err_illegal_decl_array_of_auto)
528 << getPrintableNameForEntity(Entity);
529 return QualType();
530 }
531
Ted Kremenek35366a62009-07-17 17:50:17 +0000532 if (const RecordType *EltTy = T->getAsRecordType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000533 // If the element type is a struct or union that contains a variadic
534 // array, accept it as a GNU extension: C99 6.7.2.1p2.
535 if (EltTy->getDecl()->hasFlexibleArrayMember())
536 Diag(Loc, diag::ext_flexible_array_in_array) << T;
537 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000538 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
539 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000540 }
541
542 // C99 6.7.5.2p1: The size expression shall have integer type.
543 if (ArraySize && !ArraySize->isTypeDependent() &&
544 !ArraySize->getType()->isIntegerType()) {
545 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
546 << ArraySize->getType() << ArraySize->getSourceRange();
547 ArraySize->Destroy(Context);
548 return QualType();
549 }
550 llvm::APSInt ConstVal(32);
551 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000552 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000553 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000554 else
555 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000556 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000557 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000558 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
559 (!T->isDependentType() && !T->isConstantSizeType())) {
560 // Per C99, a variable array is an array with either a non-constant
561 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000562 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000563 } else {
564 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
565 // have a value greater than zero.
566 if (ConstVal.isSigned()) {
567 if (ConstVal.isNegative()) {
568 Diag(ArraySize->getLocStart(),
569 diag::err_typecheck_negative_array_size)
570 << ArraySize->getSourceRange();
571 return QualType();
572 } else if (ConstVal == 0) {
573 // GCC accepts zero sized static arrays.
574 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
575 << ArraySize->getSourceRange();
576 }
577 }
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000578 T = Context.getConstantArrayWithExprType(T, ConstVal, ArraySize,
579 ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000580 }
581 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
582 if (!getLangOptions().C99) {
583 if (ArraySize && !ArraySize->isTypeDependent() &&
584 !ArraySize->isValueDependent() &&
585 !ArraySize->isIntegerConstantExpr(Context))
586 Diag(Loc, diag::ext_vla);
587 else if (ASM != ArrayType::Normal || Quals != 0)
588 Diag(Loc, diag::ext_c99_array_usage);
589 }
590
591 return T;
592}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000593
594/// \brief Build an ext-vector type.
595///
596/// Run the required checks for the extended vector type.
597QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
598 SourceLocation AttrLoc) {
599
600 Expr *Arg = (Expr *)ArraySize.get();
601
602 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
603 // in conjunction with complex types (pointers, arrays, functions, etc.).
604 if (!T->isDependentType() &&
605 !T->isIntegerType() && !T->isRealFloatingType()) {
606 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
607 return QualType();
608 }
609
610 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
611 llvm::APSInt vecSize(32);
612 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
613 Diag(AttrLoc, diag::err_attribute_argument_not_int)
614 << "ext_vector_type" << Arg->getSourceRange();
615 return QualType();
616 }
617
618 // unlike gcc's vector_size attribute, the size is specified as the
619 // number of elements, not the number of bytes.
620 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
621
622 if (vectorSize == 0) {
623 Diag(AttrLoc, diag::err_attribute_zero_size)
624 << Arg->getSourceRange();
625 return QualType();
626 }
627
628 if (!T->isDependentType())
629 return Context.getExtVectorType(T, vectorSize);
630 }
631
632 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
633 AttrLoc);
634}
Douglas Gregorcd281c32009-02-28 00:25:32 +0000635
Douglas Gregor724651c2009-02-28 01:04:19 +0000636/// \brief Build a function type.
637///
638/// This routine checks the function type according to C++ rules and
639/// under the assumption that the result type and parameter types have
640/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000641/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000642/// simpler form that is only suitable for this narrow use case.
643///
644/// \param T The return type of the function.
645///
646/// \param ParamTypes The parameter types of the function. This array
647/// will be modified to account for adjustments to the types of the
648/// function parameters.
649///
650/// \param NumParamTypes The number of parameter types in ParamTypes.
651///
652/// \param Variadic Whether this is a variadic function type.
653///
654/// \param Quals The cvr-qualifiers to be applied to the function type.
655///
656/// \param Loc The location of the entity whose type involves this
657/// function type or, if there is no such entity, the location of the
658/// type that will have function type.
659///
660/// \param Entity The name of the entity that involves the function
661/// type, if known.
662///
663/// \returns A suitable function type, if there are no
664/// errors. Otherwise, returns a NULL type.
665QualType Sema::BuildFunctionType(QualType T,
666 QualType *ParamTypes,
667 unsigned NumParamTypes,
668 bool Variadic, unsigned Quals,
669 SourceLocation Loc, DeclarationName Entity) {
670 if (T->isArrayType() || T->isFunctionType()) {
671 Diag(Loc, diag::err_func_returning_array_function) << T;
672 return QualType();
673 }
674
675 bool Invalid = false;
676 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000677 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
678 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000679 Diag(Loc, diag::err_param_with_void_type);
680 Invalid = true;
681 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000682
Douglas Gregor724651c2009-02-28 01:04:19 +0000683 ParamTypes[Idx] = ParamType;
684 }
685
686 if (Invalid)
687 return QualType();
688
689 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
690 Quals);
691}
Douglas Gregor949bf692009-06-09 22:17:39 +0000692
693/// \brief Build a member pointer type \c T Class::*.
694///
695/// \param T the type to which the member pointer refers.
696/// \param Class the class type into which the member pointer points.
697/// \param Quals Qualifiers applied to the member pointer type
698/// \param Loc the location where this type begins
699/// \param Entity the name of the entity that will have this member pointer type
700///
701/// \returns a member pointer type, if successful, or a NULL type if there was
702/// an error.
703QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
704 unsigned Quals, SourceLocation Loc,
705 DeclarationName Entity) {
706 // Verify that we're not building a pointer to pointer to function with
707 // exception specification.
708 if (CheckDistantExceptionSpec(T)) {
709 Diag(Loc, diag::err_distant_exception_spec);
710
711 // FIXME: If we're doing this as part of template instantiation,
712 // we should return immediately.
713
714 // Build the type anyway, but use the canonical type so that the
715 // exception specifiers are stripped off.
716 T = Context.getCanonicalType(T);
717 }
718
719 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
720 // with reference type, or "cv void."
721 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000722 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000723 << (Entity? Entity.getAsString() : "type name");
724 return QualType();
725 }
726
727 if (T->isVoidType()) {
728 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
729 << (Entity? Entity.getAsString() : "type name");
730 return QualType();
731 }
732
733 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
734 // object or incomplete types shall not be restrict-qualified."
735 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
736 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
737 << T;
738
739 // FIXME: If we're doing this as part of template instantiation,
740 // we should return immediately.
741 Quals &= ~QualType::Restrict;
742 }
743
744 if (!Class->isDependentType() && !Class->isRecordType()) {
745 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
746 return QualType();
747 }
748
749 return Context.getMemberPointerType(T, Class.getTypePtr())
750 .getQualifiedType(Quals);
751}
Anders Carlsson9a917e42009-06-12 22:56:54 +0000752
753/// \brief Build a block pointer type.
754///
755/// \param T The type to which we'll be building a block pointer.
756///
757/// \param Quals The cvr-qualifiers to be applied to the block pointer type.
758///
759/// \param Loc The location of the entity whose type involves this
760/// block pointer type or, if there is no such entity, the location of the
761/// type that will have block pointer type.
762///
763/// \param Entity The name of the entity that involves the block pointer
764/// type, if known.
765///
766/// \returns A suitable block pointer type, if there are no
767/// errors. Otherwise, returns a NULL type.
768QualType Sema::BuildBlockPointerType(QualType T, unsigned Quals,
769 SourceLocation Loc,
770 DeclarationName Entity) {
771 if (!T.getTypePtr()->isFunctionType()) {
772 Diag(Loc, diag::err_nonfunction_block_type);
773 return QualType();
774 }
775
776 return Context.getBlockPointerType(T).getQualifiedType(Quals);
777}
778
Mike Stump98eb8a72009-02-04 22:31:32 +0000779/// GetTypeForDeclarator - Convert the type for the specified
780/// declarator to Type instances. Skip the outermost Skip type
781/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000782///
783/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
784/// owns the declaration of a type (e.g., the definition of a struct
785/// type), then *OwnedDecl will receive the owned declaration.
786QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S, unsigned Skip,
787 TagDecl **OwnedDecl) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000788 bool OmittedReturnType = false;
789
790 if (D.getContext() == Declarator::BlockLiteralContext
791 && Skip == 0
792 && !D.getDeclSpec().hasTypeSpecifier()
793 && (D.getNumTypeObjects() == 0
794 || (D.getNumTypeObjects() == 1
795 && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
796 OmittedReturnType = true;
797
Chris Lattnerb23deda2007-08-28 16:40:32 +0000798 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000799 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000800 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
801 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000802
803 // Determine the type of the declarator. Not all forms of declarator
804 // have a type.
805 QualType T;
806 switch (D.getKind()) {
807 case Declarator::DK_Abstract:
808 case Declarator::DK_Normal:
Mike Stump98eb8a72009-02-04 22:31:32 +0000809 case Declarator::DK_Operator: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000810 const DeclSpec &DS = D.getDeclSpec();
811 if (OmittedReturnType) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000812 // We default to a dependent type initially. Can be modified by
813 // the first return statement.
814 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000815 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000816 bool isInvalid = false;
817 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000818 if (isInvalid)
819 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000820 else if (OwnedDecl && DS.isTypeSpecOwned())
821 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000822 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000823 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000824 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000825
826 case Declarator::DK_Constructor:
827 case Declarator::DK_Destructor:
828 case Declarator::DK_Conversion:
829 // Constructors and destructors don't have return types. Use
830 // "void" instead. Conversion operators will check their return
831 // types separately.
832 T = Context.VoidTy;
833 break;
834 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000835
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000836 if (T == Context.UndeducedAutoTy) {
837 int Error = -1;
838
839 switch (D.getContext()) {
840 case Declarator::KNRTypeListContext:
841 assert(0 && "K&R type lists aren't allowed in C++");
842 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000843 case Declarator::PrototypeContext:
844 Error = 0; // Function prototype
845 break;
846 case Declarator::MemberContext:
847 switch (cast<TagDecl>(CurContext)->getTagKind()) {
848 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
849 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
850 case TagDecl::TK_union: Error = 2; /* Union member */ break;
851 case TagDecl::TK_class: Error = 3; /* Class member */ break;
852 }
853 break;
854 case Declarator::CXXCatchContext:
855 Error = 4; // Exception declaration
856 break;
857 case Declarator::TemplateParamContext:
858 Error = 5; // Template parameter
859 break;
860 case Declarator::BlockLiteralContext:
861 Error = 6; // Block literal
862 break;
863 case Declarator::FileContext:
864 case Declarator::BlockContext:
865 case Declarator::ForContext:
866 case Declarator::ConditionContext:
867 case Declarator::TypeNameContext:
868 break;
869 }
870
871 if (Error != -1) {
872 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
873 << Error;
874 T = Context.IntTy;
875 D.setInvalidType(true);
876 }
877 }
878
Douglas Gregorcd281c32009-02-28 00:25:32 +0000879 // The name we're declaring, if any.
880 DeclarationName Name;
881 if (D.getIdentifier())
882 Name = D.getIdentifier();
883
Mike Stump98eb8a72009-02-04 22:31:32 +0000884 // Walk the DeclTypeInfo, building the recursive type as we go.
885 // DeclTypeInfos are ordered from the identifier out, which is
886 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000887 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
888 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000889 switch (DeclType.Kind) {
890 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000891 case DeclaratorChunk::BlockPointer:
Chris Lattner9af55002009-03-27 04:18:06 +0000892 // If blocks are disabled, emit an error.
893 if (!LangOpts.Blocks)
894 Diag(DeclType.Loc, diag::err_blocks_disable);
895
Anders Carlsson9a917e42009-06-12 22:56:54 +0000896 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
897 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000898 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000899 case DeclaratorChunk::Pointer:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000900 // Verify that we're not building a pointer to pointer to function with
901 // exception specification.
902 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
903 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
904 D.setInvalidType(true);
905 // Build the type anyway.
906 }
Steve Naroff14108da2009-07-10 23:34:53 +0000907 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000908 const ObjCInterfaceType *OIT = T->getAsObjCInterfaceType();
Steve Naroff14108da2009-07-10 23:34:53 +0000909 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000910 (ObjCProtocolDecl **)OIT->qual_begin(),
911 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000912 break;
913 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000914 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000915 break;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000916 case DeclaratorChunk::Reference:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000917 // Verify that we're not building a reference to pointer to function with
918 // exception specification.
919 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
920 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
921 D.setInvalidType(true);
922 // Build the type anyway.
923 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000924 T = BuildReferenceType(T, DeclType.Ref.LValueRef,
925 DeclType.Ref.HasRestrict ? QualType::Restrict : 0,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000926 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 break;
928 case DeclaratorChunk::Array: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000929 // Verify that we're not building an array of pointers to function with
930 // exception specification.
931 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
932 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
933 D.setInvalidType(true);
934 // Build the type anyway.
935 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +0000936 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000937 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 ArrayType::ArraySizeModifier ASM;
939 if (ATI.isStar)
940 ASM = ArrayType::Star;
941 else if (ATI.hasStatic)
942 ASM = ArrayType::Static;
943 else
944 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000945 if (ASM == ArrayType::Star &&
946 D.getContext() != Declarator::PrototypeContext) {
947 // FIXME: This check isn't quite right: it allows star in prototypes
948 // for function definitions, and disallows some edge cases detailed
949 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
950 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
951 ASM = ArrayType::Normal;
952 D.setInvalidType(true);
953 }
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000954 T = BuildArrayType(T, ASM, ArraySize, ATI.TypeQuals,
955 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000956 break;
957 }
Sebastian Redlf30208a2009-01-24 21:16:55 +0000958 case DeclaratorChunk::Function: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000959 // If the function declarator has a prototype (i.e. it is not () and
960 // does not have a K&R-style identifier list), then the arguments are part
961 // of the type, otherwise the argument list is ().
962 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +0000963
Chris Lattnercd881292007-12-19 05:31:29 +0000964 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +0000965 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000966 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +0000967 T = Context.IntTy;
968 D.setInvalidType(true);
969 }
Sebastian Redl465226e2009-05-27 22:11:52 +0000970
Douglas Gregor402abb52009-05-28 23:31:59 +0000971 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
972 // C++ [dcl.fct]p6:
973 // Types shall not be defined in return or parameter types.
974 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
975 if (Tag->isDefinition())
976 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
977 << Context.getTypeDeclType(Tag);
978 }
979
Sebastian Redl3cc97262009-05-31 11:47:27 +0000980 // Exception specs are not allowed in typedefs. Complain, but add it
981 // anyway.
982 if (FTI.hasExceptionSpec &&
983 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
984 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
985
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000986 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +0000987 if (getLangOptions().CPlusPlus) {
988 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
989 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +0000990 llvm::SmallVector<QualType, 4> Exceptions;
991 Exceptions.reserve(FTI.NumExceptions);
Sebastian Redlef65f062009-05-29 18:02:33 +0000992 for(unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
993 QualType ET = QualType::getFromOpaquePtr(FTI.Exceptions[ei].Ty);
994 // Check that the type is valid for an exception spec, and drop it
995 // if not.
996 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
997 Exceptions.push_back(ET);
998 }
Sebastian Redl465226e2009-05-27 22:11:52 +0000999 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1000 FTI.hasExceptionSpec,
1001 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001002 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001003 } else if (FTI.isVariadic) {
1004 // We allow a zero-parameter variadic function in C if the
1005 // function is marked with the "overloadable"
1006 // attribute. Scan for this attribute now.
1007 bool Overloadable = false;
1008 for (const AttributeList *Attrs = D.getAttributes();
1009 Attrs; Attrs = Attrs->getNext()) {
1010 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1011 Overloadable = true;
1012 break;
1013 }
1014 }
1015
1016 if (!Overloadable)
1017 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1018 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001019 } else {
1020 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001021 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001022 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001023 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001025 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001026 } else {
1027 // Otherwise, we have a function with an argument list that is
1028 // potentially variadic.
1029 llvm::SmallVector<QualType, 16> ArgTys;
1030
1031 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001032 ParmVarDecl *Param =
1033 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001034 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001035 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001036
1037 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001038 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001039
Reid Spencer5f016e22007-07-11 17:01:13 +00001040 // Look for 'void'. void is allowed only as a single argument to a
1041 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001042 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001043 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001044 // If this is something like 'float(int, void)', reject it. 'void'
1045 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1046 // have arguments of incomplete type.
1047 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1048 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001049 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001050 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001051 } else if (FTI.ArgInfo[i].Ident) {
1052 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001053 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001054 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001055 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001056 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001057 } else {
1058 // Reject, but continue to parse 'float(const void)'.
Chris Lattnerf46699c2008-02-20 20:55:12 +00001059 if (ArgTy.getCVRQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001060 Diag(DeclType.Loc, diag::err_void_param_qualified);
1061
1062 // Do not add 'void' to the ArgTys list.
1063 break;
1064 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001065 } else if (!FTI.hasPrototype) {
1066 if (ArgTy->isPromotableIntegerType()) {
1067 ArgTy = Context.IntTy;
1068 } else if (const BuiltinType* BTy = ArgTy->getAsBuiltinType()) {
1069 if (BTy->getKind() == BuiltinType::Float)
1070 ArgTy = Context.DoubleTy;
1071 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001072 }
1073
1074 ArgTys.push_back(ArgTy);
1075 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001076
1077 llvm::SmallVector<QualType, 4> Exceptions;
1078 Exceptions.reserve(FTI.NumExceptions);
Sebastian Redlef65f062009-05-29 18:02:33 +00001079 for(unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
1080 QualType ET = QualType::getFromOpaquePtr(FTI.Exceptions[ei].Ty);
1081 // Check that the type is valid for an exception spec, and drop it if
1082 // not.
1083 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1084 Exceptions.push_back(ET);
1085 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001086
Jay Foadbeaaccd2009-05-21 09:52:38 +00001087 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001088 FTI.isVariadic, FTI.TypeQuals,
1089 FTI.hasExceptionSpec,
1090 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001091 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001092 }
1093 break;
1094 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001095 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001096 // Verify that we're not building a pointer to pointer to function with
1097 // exception specification.
1098 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1099 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1100 D.setInvalidType(true);
1101 // Build the type anyway.
1102 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001103 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001104 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001105 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
1106 NestedNameSpecifier *NNS
1107 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1108 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1109 ClsType = QualType(NNS->getAsType(), 0);
1110 } else if (CXXRecordDecl *RD
1111 = dyn_cast_or_null<CXXRecordDecl>(
1112 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001113 ClsType = Context.getTagDeclType(RD);
1114 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001115 Diag(DeclType.Mem.Scope().getBeginLoc(),
1116 diag::err_illegal_decl_mempointer_in_nonclass)
1117 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1118 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001119 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001120 }
1121
Douglas Gregor949bf692009-06-09 22:17:39 +00001122 if (!ClsType.isNull())
1123 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1124 DeclType.Loc, D.getIdentifier());
1125 if (T.isNull()) {
1126 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001127 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001128 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001129 break;
1130 }
1131
Douglas Gregorcd281c32009-02-28 00:25:32 +00001132 if (T.isNull()) {
1133 D.setInvalidType(true);
1134 T = Context.IntTy;
1135 }
1136
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001137 // See if there are any attributes on this declarator chunk.
1138 if (const AttributeList *AL = DeclType.getAttrs())
1139 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001140 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001141
1142 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001143 const FunctionProtoType *FnTy = T->getAsFunctionProtoType();
1144 assert(FnTy && "Why oh why is there not a FunctionProtoType here ?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001145
1146 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1147 // for a nonstatic member function, the function type to which a pointer
1148 // to member refers, or the top-level function type of a function typedef
1149 // declaration.
1150 if (FnTy->getTypeQuals() != 0 &&
1151 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001152 ((D.getContext() != Declarator::MemberContext &&
1153 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001154 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1155 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001156 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001157 if (D.isFunctionDeclarator())
1158 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1159 else
1160 Diag(D.getIdentifierLoc(),
1161 diag::err_invalid_qualified_typedef_function_type_use);
1162
1163 // Strip the cv-quals from the type.
1164 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001165 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001166 }
1167 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001168
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001169 // If there were any type attributes applied to the decl itself (not the
1170 // type, apply the type attribute to the type!)
1171 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001172 ProcessTypeAttributeList(T, Attrs);
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001173
Reid Spencer5f016e22007-07-11 17:01:13 +00001174 return T;
1175}
1176
Sebastian Redlef65f062009-05-29 18:02:33 +00001177/// CheckSpecifiedExceptionType - Check if the given type is valid in an
1178/// exception specification. Incomplete types, or pointers to incomplete types
1179/// other than void are not allowed.
1180bool Sema::CheckSpecifiedExceptionType(QualType T, const SourceRange &Range) {
1181 // FIXME: This may not correctly work with the fix for core issue 437,
1182 // where a class's own type is considered complete within its body.
1183
1184 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1185 // an incomplete type.
1186 if (T->isIncompleteType())
1187 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1188 << Range << T << /*direct*/0;
1189
1190 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1191 // an incomplete type a pointer or reference to an incomplete type, other
1192 // than (cv) void*.
Sebastian Redlef65f062009-05-29 18:02:33 +00001193 int kind;
Ted Kremenek35366a62009-07-17 17:50:17 +00001194 if (const PointerType* IT = T->getAsPointerType()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001195 T = IT->getPointeeType();
1196 kind = 1;
Ted Kremenek35366a62009-07-17 17:50:17 +00001197 } else if (const ReferenceType* IT = T->getAsReferenceType()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001198 T = IT->getPointeeType();
Sebastian Redl3cc97262009-05-31 11:47:27 +00001199 kind = 2;
Sebastian Redlef65f062009-05-29 18:02:33 +00001200 } else
1201 return false;
1202
1203 if (T->isIncompleteType() && !T->isVoidType())
1204 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1205 << Range << T << /*indirect*/kind;
1206
1207 return false;
1208}
1209
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001210/// CheckDistantExceptionSpec - Check if the given type is a pointer or pointer
1211/// to member to a function with an exception specification. This means that
1212/// it is invalid to add another level of indirection.
1213bool Sema::CheckDistantExceptionSpec(QualType T) {
Ted Kremenek35366a62009-07-17 17:50:17 +00001214 if (const PointerType *PT = T->getAsPointerType())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001215 T = PT->getPointeeType();
Ted Kremenek35366a62009-07-17 17:50:17 +00001216 else if (const MemberPointerType *PT = T->getAsMemberPointerType())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001217 T = PT->getPointeeType();
1218 else
1219 return false;
1220
1221 const FunctionProtoType *FnT = T->getAsFunctionProtoType();
1222 if (!FnT)
1223 return false;
1224
1225 return FnT->hasExceptionSpec();
1226}
1227
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001228/// CheckEquivalentExceptionSpec - Check if the two types have equivalent
1229/// exception specifications. Exception specifications are equivalent if
1230/// they allow exactly the same set of exception types. It does not matter how
1231/// that is achieved. See C++ [except.spec]p2.
1232bool Sema::CheckEquivalentExceptionSpec(
1233 const FunctionProtoType *Old, SourceLocation OldLoc,
1234 const FunctionProtoType *New, SourceLocation NewLoc) {
1235 bool OldAny = !Old->hasExceptionSpec() || Old->hasAnyExceptionSpec();
1236 bool NewAny = !New->hasExceptionSpec() || New->hasAnyExceptionSpec();
1237 if (OldAny && NewAny)
1238 return false;
1239 if (OldAny || NewAny) {
1240 Diag(NewLoc, diag::err_mismatched_exception_spec);
1241 Diag(OldLoc, diag::note_previous_declaration);
1242 return true;
1243 }
1244
1245 bool Success = true;
1246 // Both have a definite exception spec. Collect the first set, then compare
1247 // to the second.
1248 llvm::SmallPtrSet<const Type*, 8> Types;
1249 for (FunctionProtoType::exception_iterator I = Old->exception_begin(),
1250 E = Old->exception_end(); I != E; ++I)
1251 Types.insert(Context.getCanonicalType(*I).getTypePtr());
1252
1253 for (FunctionProtoType::exception_iterator I = New->exception_begin(),
1254 E = New->exception_end(); I != E && Success; ++I)
1255 Success = Types.erase(Context.getCanonicalType(*I).getTypePtr());
1256
1257 Success = Success && Types.empty();
1258
1259 if (Success) {
1260 return false;
1261 }
1262 Diag(NewLoc, diag::err_mismatched_exception_spec);
1263 Diag(OldLoc, diag::note_previous_declaration);
1264 return true;
1265}
1266
Sebastian Redl23c7d062009-07-07 20:29:57 +00001267/// CheckExceptionSpecSubset - Check whether the second function type's
1268/// exception specification is a subset (or equivalent) of the first function
1269/// type. This is used by override and pointer assignment checks.
1270bool Sema::CheckExceptionSpecSubset(unsigned DiagID, unsigned NoteID,
1271 const FunctionProtoType *Superset, SourceLocation SuperLoc,
1272 const FunctionProtoType *Subset, SourceLocation SubLoc)
1273{
1274 // FIXME: As usual, we could be more specific in our error messages, but
1275 // that better waits until we've got types with source locations.
1276
1277 // If superset contains everything, we're done.
1278 if (!Superset->hasExceptionSpec() || Superset->hasAnyExceptionSpec())
1279 return false;
1280
1281 // It does not. If the subset contains everything, we've failed.
1282 if (!Subset->hasExceptionSpec() || Subset->hasAnyExceptionSpec()) {
1283 Diag(SubLoc, DiagID);
1284 Diag(SuperLoc, NoteID);
1285 return true;
1286 }
1287
1288 // Neither contains everything. Do a proper comparison.
1289 for (FunctionProtoType::exception_iterator SubI = Subset->exception_begin(),
1290 SubE = Subset->exception_end(); SubI != SubE; ++SubI) {
1291 // Take one type from the subset.
1292 QualType CanonicalSubT = Context.getCanonicalType(*SubI);
1293 bool SubIsPointer = false;
Ted Kremenek35366a62009-07-17 17:50:17 +00001294 if (const ReferenceType *RefTy = CanonicalSubT->getAsReferenceType())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001295 CanonicalSubT = RefTy->getPointeeType();
Ted Kremenek35366a62009-07-17 17:50:17 +00001296 if (const PointerType *PtrTy = CanonicalSubT->getAsPointerType()) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001297 CanonicalSubT = PtrTy->getPointeeType();
1298 SubIsPointer = true;
1299 }
1300 bool SubIsClass = CanonicalSubT->isRecordType();
1301 CanonicalSubT.setCVRQualifiers(0);
1302
Sebastian Redl726212f2009-07-18 14:32:15 +00001303 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl23c7d062009-07-07 20:29:57 +00001304 /*DetectVirtual=*/false);
1305
1306 bool Contained = false;
1307 // Make sure it's in the superset.
1308 for (FunctionProtoType::exception_iterator SuperI =
1309 Superset->exception_begin(), SuperE = Superset->exception_end();
1310 SuperI != SuperE; ++SuperI) {
1311 QualType CanonicalSuperT = Context.getCanonicalType(*SuperI);
1312 // SubT must be SuperT or derived from it, or pointer or reference to
1313 // such types.
Ted Kremenek35366a62009-07-17 17:50:17 +00001314 if (const ReferenceType *RefTy = CanonicalSuperT->getAsReferenceType())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001315 CanonicalSuperT = RefTy->getPointeeType();
1316 if (SubIsPointer) {
Ted Kremenek35366a62009-07-17 17:50:17 +00001317 if (const PointerType *PtrTy = CanonicalSuperT->getAsPointerType())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001318 CanonicalSuperT = PtrTy->getPointeeType();
1319 else {
1320 continue;
1321 }
1322 }
1323 CanonicalSuperT.setCVRQualifiers(0);
1324 // If the types are the same, move on to the next type in the subset.
1325 if (CanonicalSubT == CanonicalSuperT) {
1326 Contained = true;
1327 break;
1328 }
1329
1330 // Otherwise we need to check the inheritance.
1331 if (!SubIsClass || !CanonicalSuperT->isRecordType())
1332 continue;
1333
1334 Paths.clear();
1335 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths))
1336 continue;
1337
1338 if (Paths.isAmbiguous(CanonicalSuperT))
1339 continue;
1340
Sebastian Redl726212f2009-07-18 14:32:15 +00001341 if (FindInaccessibleBase(CanonicalSubT, CanonicalSuperT, Paths, true))
1342 continue;
Sebastian Redl23c7d062009-07-07 20:29:57 +00001343
1344 Contained = true;
1345 break;
1346 }
1347 if (!Contained) {
1348 Diag(SubLoc, DiagID);
1349 Diag(SuperLoc, NoteID);
1350 return true;
1351 }
1352 }
1353 // We've run the gauntlet.
1354 return false;
1355}
1356
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001357/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001358/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001359QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1360 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001361 QualType T = MDecl->getResultType();
1362 llvm::SmallVector<QualType, 16> ArgTys;
1363
Fariborz Jahanian35600022007-11-09 17:18:29 +00001364 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001365 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001366 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001367 selfTy = Context.getPointerType(selfTy);
1368 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001369 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001370 ArgTys.push_back(Context.getObjCIdType());
1371 ArgTys.push_back(Context.getObjCSelType());
Fariborz Jahanian35600022007-11-09 17:18:29 +00001372
Chris Lattner89951a82009-02-20 18:43:26 +00001373 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1374 E = MDecl->param_end(); PI != E; ++PI) {
1375 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001376 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001377 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001378 ArgTys.push_back(ArgTy);
1379 }
1380 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001381 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001382 return T;
1383}
1384
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001385/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1386/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1387/// they point to and return true. If T1 and T2 aren't pointer types
1388/// or pointer-to-member types, or if they are not similar at this
1389/// level, returns false and leaves T1 and T2 unchanged. Top-level
1390/// qualifiers on T1 and T2 are ignored. This function will typically
1391/// be called in a loop that successively "unwraps" pointer and
1392/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001393bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek35366a62009-07-17 17:50:17 +00001394 const PointerType *T1PtrType = T1->getAsPointerType(),
1395 *T2PtrType = T2->getAsPointerType();
Douglas Gregor57373262008-10-22 14:17:15 +00001396 if (T1PtrType && T2PtrType) {
1397 T1 = T1PtrType->getPointeeType();
1398 T2 = T2PtrType->getPointeeType();
1399 return true;
1400 }
1401
Ted Kremenek35366a62009-07-17 17:50:17 +00001402 const MemberPointerType *T1MPType = T1->getAsMemberPointerType(),
1403 *T2MPType = T2->getAsMemberPointerType();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001404 if (T1MPType && T2MPType &&
1405 Context.getCanonicalType(T1MPType->getClass()) ==
1406 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001407 T1 = T1MPType->getPointeeType();
1408 T2 = T2MPType->getPointeeType();
1409 return true;
1410 }
Douglas Gregor57373262008-10-22 14:17:15 +00001411 return false;
1412}
1413
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001414Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001415 // C99 6.7.6: Type names have no identifier. This is already validated by
1416 // the parser.
1417 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
1418
Douglas Gregor402abb52009-05-28 23:31:59 +00001419 TagDecl *OwnedTag = 0;
1420 QualType T = GetTypeForDeclarator(D, S, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001421 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001422 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001423
Douglas Gregor402abb52009-05-28 23:31:59 +00001424 if (getLangOptions().CPlusPlus) {
1425 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001426 CheckExtraCXXDefaultArguments(D);
1427
Douglas Gregor402abb52009-05-28 23:31:59 +00001428 // C++0x [dcl.type]p3:
1429 // A type-specifier-seq shall not define a class or enumeration
1430 // unless it appears in the type-id of an alias-declaration
1431 // (7.1.3).
1432 if (OwnedTag && OwnedTag->isDefinition())
1433 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1434 << Context.getTypeDeclType(OwnedTag);
1435 }
1436
Reid Spencer5f016e22007-07-11 17:01:13 +00001437 return T.getAsOpaquePtr();
1438}
1439
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001440
1441
1442//===----------------------------------------------------------------------===//
1443// Type Attribute Processing
1444//===----------------------------------------------------------------------===//
1445
1446/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1447/// specified type. The attribute contains 1 argument, the id of the address
1448/// space for the type.
1449static void HandleAddressSpaceTypeAttribute(QualType &Type,
1450 const AttributeList &Attr, Sema &S){
1451 // If this type is already address space qualified, reject it.
1452 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1453 // for two or more different address spaces."
1454 if (Type.getAddressSpace()) {
1455 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1456 return;
1457 }
1458
1459 // Check the attribute arguments.
1460 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001461 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001462 return;
1463 }
1464 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1465 llvm::APSInt addrSpace(32);
1466 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001467 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1468 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001469 return;
1470 }
1471
1472 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001473 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001474}
1475
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001476/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1477/// specified type. The attribute contains 1 argument, weak or strong.
1478static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001479 const AttributeList &Attr, Sema &S) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001480 if (Type.getObjCGCAttr() != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001481 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001482 return;
1483 }
1484
1485 // Check the attribute arguments.
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001486 if (!Attr.getParameterName()) {
1487 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1488 << "objc_gc" << 1;
1489 return;
1490 }
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001491 QualType::GCAttrTypes GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001492 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001493 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1494 return;
1495 }
1496 if (Attr.getParameterName()->isStr("weak"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001497 GCAttr = QualType::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001498 else if (Attr.getParameterName()->isStr("strong"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001499 GCAttr = QualType::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001500 else {
1501 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1502 << "objc_gc" << Attr.getParameterName();
1503 return;
1504 }
1505
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001506 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001507}
1508
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001509void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001510 // Scan through and apply attributes to this type where it makes sense. Some
1511 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1512 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001513 // apply to the decl. Here we apply type attributes and ignore the rest.
1514 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001515 // If this is an attribute we can handle, do so now, otherwise, add it to
1516 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001517 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001518 default: break;
1519 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001520 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1521 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001522 case AttributeList::AT_objc_gc:
1523 HandleObjCGCTypeAttribute(Result, *AL, *this);
1524 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001525 }
Chris Lattner232e8822008-02-21 01:08:11 +00001526 }
Chris Lattner232e8822008-02-21 01:08:11 +00001527}
1528
Douglas Gregor86447ec2009-03-09 16:13:40 +00001529/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001530///
1531/// This routine checks whether the type @p T is complete in any
1532/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001533/// type, returns false. If @p T is a class template specialization,
1534/// this routine then attempts to perform class template
1535/// instantiation. If instantiation fails, or if @p T is incomplete
1536/// and cannot be completed, issues the diagnostic @p diag (giving it
1537/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001538///
1539/// @param Loc The location in the source that the incomplete type
1540/// diagnostic should refer to.
1541///
1542/// @param T The type that this routine is examining for completeness.
1543///
1544/// @param diag The diagnostic value (e.g.,
1545/// @c diag::err_typecheck_decl_incomplete_type) that will be used
1546/// for the error message if @p T is incomplete.
1547///
1548/// @param Range1 An optional range in the source code that will be a
1549/// part of the "incomplete type" error message.
1550///
1551/// @param Range2 An optional range in the source code that will be a
1552/// part of the "incomplete type" error message.
1553///
1554/// @param PrintType If non-NULL, the type that should be printed
1555/// instead of @p T. This parameter should be used when the type that
1556/// we're checking for incompleteness isn't the type that should be
1557/// displayed to the user, e.g., when T is a type and PrintType is a
1558/// pointer to T.
1559///
1560/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1561/// @c false otherwise.
Douglas Gregor86447ec2009-03-09 16:13:40 +00001562bool Sema::RequireCompleteType(SourceLocation Loc, QualType T, unsigned diag,
Chris Lattner1efaa952009-04-24 00:30:45 +00001563 SourceRange Range1, SourceRange Range2,
1564 QualType PrintType) {
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001565 // FIXME: Add this assertion to help us flush out problems with
1566 // checking for dependent types and type-dependent expressions.
1567 //
1568 // assert(!T->isDependentType() &&
1569 // "Can't ask whether a dependent type is complete");
1570
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001571 // If we have a complete type, we're done.
1572 if (!T->isIncompleteType())
1573 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001574
Douglas Gregord475b8d2009-03-25 21:17:03 +00001575 // If we have a class template specialization or a class member of a
1576 // class template specialization, try to instantiate it.
Ted Kremenek35366a62009-07-17 17:50:17 +00001577 if (const RecordType *Record = T->getAsRecordType()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001578 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001579 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001580 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
1581 // Update the class template specialization's location to
1582 // refer to the point of instantiation.
1583 if (Loc.isValid())
1584 ClassTemplateSpec->setLocation(Loc);
1585 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
1586 /*ExplicitInstantiation=*/false);
1587 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001588 } else if (CXXRecordDecl *Rec
1589 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1590 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
1591 // Find the class template specialization that surrounds this
1592 // member class.
1593 ClassTemplateSpecializationDecl *Spec = 0;
1594 for (DeclContext *Parent = Rec->getDeclContext();
1595 Parent && !Spec; Parent = Parent->getParent())
1596 Spec = dyn_cast<ClassTemplateSpecializationDecl>(Parent);
1597 assert(Spec && "Not a member of a class template specialization?");
Douglas Gregor93dfdb12009-05-13 00:25:59 +00001598 return InstantiateClass(Loc, Rec, Pattern, Spec->getTemplateArgs(),
1599 /*ExplicitInstantiation=*/false);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001600 }
1601 }
1602 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001603
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001604 if (PrintType.isNull())
1605 PrintType = T;
1606
1607 // We have an incomplete type. Produce a diagnostic.
1608 Diag(Loc, diag) << PrintType << Range1 << Range2;
1609
1610 // If the type was a forward declaration of a class/struct/union
1611 // type, produce
1612 const TagType *Tag = 0;
Ted Kremenek35366a62009-07-17 17:50:17 +00001613 if (const RecordType *Record = T->getAsRecordType())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001614 Tag = Record;
1615 else if (const EnumType *Enum = T->getAsEnumType())
1616 Tag = Enum;
1617
1618 if (Tag && !Tag->getDecl()->isInvalidDecl())
1619 Diag(Tag->getDecl()->getLocation(),
1620 Tag->isBeingDefined() ? diag::note_type_being_defined
1621 : diag::note_forward_declaration)
1622 << QualType(Tag, 0);
1623
1624 return true;
1625}
Douglas Gregore6258932009-03-19 00:39:20 +00001626
1627/// \brief Retrieve a version of the type 'T' that is qualified by the
1628/// nested-name-specifier contained in SS.
1629QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1630 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1631 return T;
1632
Douglas Gregorab452ba2009-03-26 23:50:42 +00001633 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001634 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001635 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001636}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001637
1638QualType Sema::BuildTypeofExprType(Expr *E) {
1639 return Context.getTypeOfExprType(E);
1640}
1641
1642QualType Sema::BuildDecltypeType(Expr *E) {
1643 if (E->getType() == Context.OverloadTy) {
1644 Diag(E->getLocStart(),
1645 diag::err_cannot_determine_declared_type_of_overloaded_function);
1646 return QualType();
1647 }
1648 return Context.getDecltypeType(E);
1649}