blob: 117f595d9212021d985b71106dd3f35ec1ccc27c [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"
15#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000016#include "clang/AST/CXXInheritance.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"
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +000019#include "clang/AST/TypeLoc.h"
John McCall51bd8032009-10-18 01:05:36 +000020#include "clang/AST/TypeLocVisitor.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000021#include "clang/AST/Expr.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000022#include "clang/Basic/PartialDiagnostic.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000023#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000024#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
Douglas Gregor2dc0e642009-03-23 23:06:20 +000027/// \brief Perform adjustment on the parameter type of a function.
28///
29/// This routine adjusts the given parameter type @p T to the actual
Mike Stump1eb44332009-09-09 15:08:12 +000030/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
31/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
Douglas Gregor2dc0e642009-03-23 23:06:20 +000032QualType Sema::adjustParameterType(QualType T) {
33 // C99 6.7.5.3p7:
34 if (T->isArrayType()) {
35 // C99 6.7.5.3p7:
36 // A declaration of a parameter as "array of type" shall be
37 // adjusted to "qualified pointer to type", where the type
38 // qualifiers (if any) are those specified within the [ and ] of
39 // the array type derivation.
40 return Context.getArrayDecayedType(T);
41 } else if (T->isFunctionType())
42 // C99 6.7.5.3p8:
43 // A declaration of a parameter as "function returning type"
44 // shall be adjusted to "pointer to function returning type", as
45 // in 6.3.2.1.
46 return Context.getPointerType(T);
47
48 return T;
49}
50
Douglas Gregor930d8b52009-01-30 22:09:00 +000051/// \brief Convert the specified declspec to the appropriate type
52/// object.
53/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000054/// \param DeclLoc The location of the declarator identifier or invalid if none.
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +000055/// \param SourceTy QualType representing the type as written in source form.
Chris Lattner5153ee62009-04-25 08:47:54 +000056/// \returns The type described by the declaration specifiers. This function
57/// never returns null.
Chris Lattner3f84ad22009-04-22 05:27:59 +000058QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS,
Chris Lattnereaaebc72009-04-25 08:06:05 +000059 SourceLocation DeclLoc,
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +000060 bool &isInvalid, QualType &SourceTy) {
Reid Spencer5f016e22007-07-11 17:01:13 +000061 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
62 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000063 QualType Result;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +000064 SourceTy = Result;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Reid Spencer5f016e22007-07-11 17:01:13 +000066 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000067 case DeclSpec::TST_void:
68 Result = Context.VoidTy;
69 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000070 case DeclSpec::TST_char:
71 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000072 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000073 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000074 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000075 else {
76 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
77 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000078 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000079 }
Chris Lattner958858e2008-02-20 21:40:32 +000080 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000081 case DeclSpec::TST_wchar:
82 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
83 Result = Context.WCharTy;
84 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000085 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
86 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000087 Result = Context.getSignedWCharType();
88 } else {
89 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
90 "Unknown TSS value");
Chris Lattnerf3a41af2008-11-20 06:38:18 +000091 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
92 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000093 Result = Context.getUnsignedWCharType();
94 }
95 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +000096 case DeclSpec::TST_char16:
97 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
98 "Unknown TSS value");
99 Result = Context.Char16Ty;
100 break;
101 case DeclSpec::TST_char32:
102 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
103 "Unknown TSS value");
104 Result = Context.Char32Ty;
105 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000106 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000107 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000108 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000109 SourceTy = Context.getObjCProtocolListType(QualType(),
110 (ObjCProtocolDecl**)PQ,
111 DS.getNumProtocolQualifiers());
Mike Stump1eb44332009-09-09 15:08:12 +0000112 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000113 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000114 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000115 break;
116 }
Mike Stump1eb44332009-09-09 15:08:12 +0000117
Chris Lattnerd658b562008-04-05 06:32:51 +0000118 // Unspecified typespec defaults to int in C90. However, the C90 grammar
119 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
120 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
121 // Note that the one exception to this is function definitions, which are
122 // allowed to be completely missing a declspec. This is handled in the
123 // parser already though by it pretending to have seen an 'int' in this
124 // case.
125 if (getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000126 // In C89 mode, we only warn if there is a completely missing declspec
127 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000128 if (DS.isEmpty()) {
129 if (DeclLoc.isInvalid())
130 DeclLoc = DS.getSourceRange().getBegin();
Eli Friedmanfcff5772009-06-03 12:22:01 +0000131 Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000132 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000133 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
134 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000135 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000136 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000137 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
138 // "At least one type specifier shall be given in the declaration
139 // specifiers in each declaration, and in the specifier-qualifier list in
140 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000141 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000142 if (DeclLoc.isInvalid())
143 DeclLoc = DS.getSourceRange().getBegin();
144
Chris Lattnerb78d8332009-06-26 04:45:06 +0000145 if (getLangOptions().CPlusPlus && !getLangOptions().Microsoft) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000146 Diag(DeclLoc, diag::err_missing_type_specifier)
147 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattnerb78d8332009-06-26 04:45:06 +0000149 // When this occurs in C++ code, often something is very broken with the
150 // value being declared, poison it as invalid so we don't get chains of
151 // errors.
152 isInvalid = true;
153 } else {
Eli Friedmanfcff5772009-06-03 12:22:01 +0000154 Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000155 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000156 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000157 }
Mike Stump1eb44332009-09-09 15:08:12 +0000158
159 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000160 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
162 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000163 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
164 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
165 case DeclSpec::TSW_long: Result = Context.LongTy; break;
166 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 }
168 } else {
169 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000170 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
171 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
172 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
173 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 }
175 }
Chris Lattner958858e2008-02-20 21:40:32 +0000176 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000177 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000178 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000179 case DeclSpec::TST_double:
180 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000181 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000182 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000183 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000184 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000185 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 case DeclSpec::TST_decimal32: // _Decimal32
187 case DeclSpec::TST_decimal64: // _Decimal64
188 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner8f12f652009-05-13 05:02:08 +0000189 Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
190 Result = Context.IntTy;
191 isInvalid = true;
192 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000193 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000194 case DeclSpec::TST_enum:
195 case DeclSpec::TST_union:
196 case DeclSpec::TST_struct: {
197 Decl *D = static_cast<Decl *>(DS.getTypeRep());
John McCall6e247262009-10-10 05:48:19 +0000198 if (!D) {
199 // This can happen in C++ with ambiguous lookups.
200 Result = Context.IntTy;
201 isInvalid = true;
202 break;
203 }
204
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
206 DS.getTypeSpecSign() == 0 &&
207 "Can't handle qualifiers on typedef names yet!");
208 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000209 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
John McCall2191b202009-09-05 06:31:47 +0000210
211 // In C++, make an ElaboratedType.
212 if (getLangOptions().CPlusPlus) {
213 TagDecl::TagKind Tag
214 = TagDecl::getTagKindForTypeSpec(DS.getTypeSpecType());
215 Result = Context.getElaboratedType(Result, Tag);
216 }
Mike Stump1eb44332009-09-09 15:08:12 +0000217
Chris Lattner5153ee62009-04-25 08:47:54 +0000218 if (D->isInvalidDecl())
219 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000220 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000221 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000222 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000223 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
224 DS.getTypeSpecSign() == 0 &&
225 "Can't handle qualifiers on typedef names yet!");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000226 Result = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000227
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000228 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000229 SourceTy = Context.getObjCProtocolListType(Result,
230 (ObjCProtocolDecl**)PQ,
231 DS.getNumProtocolQualifiers());
232 if (const ObjCInterfaceType *
233 Interface = Result->getAs<ObjCInterfaceType>()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000234 // It would be nice if protocol qualifiers were only stored with the
235 // ObjCObjectPointerType. Unfortunately, this isn't possible due
236 // to the following typedef idiom (which is uncommon, but allowed):
Mike Stump1eb44332009-09-09 15:08:12 +0000237 //
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000238 // typedef Foo<P> T;
239 // static void func() {
240 // Foo<P> *yy;
241 // T *zz;
242 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000243 Result = Context.getObjCInterfaceType(Interface->getDecl(),
244 (ObjCProtocolDecl**)PQ,
245 DS.getNumProtocolQualifiers());
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000246 } else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000247 // id<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000248 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000249 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
250 else if (Result->isObjCClassType()) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000251 if (DeclLoc.isInvalid())
252 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000253 // Class<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000254 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
Steve Naroff470301b2009-07-22 16:07:01 +0000255 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000256 } else {
257 if (DeclLoc.isInvalid())
258 DeclLoc = DS.getSourceRange().getBegin();
259 Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
260 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000261 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000262 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000263 }
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Chris Lattnereaaebc72009-04-25 08:06:05 +0000265 // If this is a reference to an invalid typedef, propagate the invalidity.
266 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
267 if (TDT->getDecl()->isInvalidDecl())
268 isInvalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000269
Reid Spencer5f016e22007-07-11 17:01:13 +0000270 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000271 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000272 }
Chris Lattner958858e2008-02-20 21:40:32 +0000273 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000274 // FIXME: Preserve type source info.
275 Result = GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000276 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000277 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000278 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000279 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000280 case DeclSpec::TST_typeofExpr: {
281 Expr *E = static_cast<Expr *>(DS.getTypeRep());
282 assert(E && "Didn't get an expression for typeof?");
283 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000284 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000285 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000286 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000287 case DeclSpec::TST_decltype: {
288 Expr *E = static_cast<Expr *>(DS.getTypeRep());
289 assert(E && "Didn't get an expression for decltype?");
290 // TypeQuals handled by caller.
Anders Carlssonaf017e62009-06-29 22:58:55 +0000291 Result = BuildDecltypeType(E);
292 if (Result.isNull()) {
293 Result = Context.IntTy;
294 isInvalid = true;
295 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000296 break;
297 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000298 case DeclSpec::TST_auto: {
299 // TypeQuals handled by caller.
300 Result = Context.UndeducedAutoTy;
301 break;
302 }
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Douglas Gregor809070a2009-02-18 17:45:20 +0000304 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000305 Result = Context.IntTy;
306 isInvalid = true;
307 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 }
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Chris Lattner958858e2008-02-20 21:40:32 +0000310 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000311 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
312 if (getLangOptions().Freestanding)
313 Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000314 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000315 }
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Chris Lattner958858e2008-02-20 21:40:32 +0000317 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
318 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Chris Lattner38d8b982008-02-20 22:04:11 +0000320 // See if there are any attributes on the declspec that apply to the type (as
321 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000322 if (const AttributeList *AL = DS.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +0000323 ProcessTypeAttributeList(Result, AL);
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Chris Lattner96b77fc2008-04-02 06:50:17 +0000325 // Apply const/volatile/restrict qualifiers to T.
326 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
327
328 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
329 // or incomplete types shall not be restrict-qualified." C++ also allows
330 // restrict-qualified references.
John McCall0953e762009-09-24 19:53:00 +0000331 if (TypeQuals & DeclSpec::TQ_restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000332 if (Result->isPointerType() || Result->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000333 QualType EltTy = Result->isPointerType() ?
Ted Kremenek6217b802009-07-29 21:53:49 +0000334 Result->getAs<PointerType>()->getPointeeType() :
335 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Douglas Gregorbad0e652009-03-24 20:32:41 +0000337 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000338 // incomplete type.
339 if (!EltTy->isIncompleteOrObjectType()) {
340 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000341 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000342 << EltTy << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000343 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000344 }
345 } else {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000346 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000347 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000348 << Result << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000349 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000350 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000351 }
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Chris Lattner96b77fc2008-04-02 06:50:17 +0000353 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
354 // of a function type includes any type qualifiers, the behavior is
355 // undefined."
356 if (Result->isFunctionType() && TypeQuals) {
357 // Get some location to point at, either the C or V location.
358 SourceLocation Loc;
John McCall0953e762009-09-24 19:53:00 +0000359 if (TypeQuals & DeclSpec::TQ_const)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000360 Loc = DS.getConstSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000361 else if (TypeQuals & DeclSpec::TQ_volatile)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000362 Loc = DS.getVolatileSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000363 else {
364 assert((TypeQuals & DeclSpec::TQ_restrict) &&
365 "Has CVR quals but not C, V, or R?");
366 Loc = DS.getRestrictSpecLoc();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000367 }
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000368 Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000369 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000370 }
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000372 // C++ [dcl.ref]p1:
373 // Cv-qualified references are ill-formed except when the
374 // cv-qualifiers are introduced through the use of a typedef
375 // (7.1.3) or of a template type argument (14.3), in which
376 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000377 // FIXME: Shouldn't we be checking SCS_typedef here?
378 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000379 TypeQuals && Result->isReferenceType()) {
John McCall0953e762009-09-24 19:53:00 +0000380 TypeQuals &= ~DeclSpec::TQ_const;
381 TypeQuals &= ~DeclSpec::TQ_volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000382 }
383
John McCall0953e762009-09-24 19:53:00 +0000384 Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
385 Result = Context.getQualifiedType(Result, Quals);
Chris Lattner96b77fc2008-04-02 06:50:17 +0000386 }
John McCall0953e762009-09-24 19:53:00 +0000387
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000388 if (SourceTy.isNull())
389 SourceTy = Result;
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000390 return Result;
391}
392
Douglas Gregorcd281c32009-02-28 00:25:32 +0000393static std::string getPrintableNameForEntity(DeclarationName Entity) {
394 if (Entity)
395 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Douglas Gregorcd281c32009-02-28 00:25:32 +0000397 return "type name";
398}
399
400/// \brief Build a pointer type.
401///
402/// \param T The type to which we'll be building a pointer.
403///
404/// \param Quals The cvr-qualifiers to be applied to the pointer type.
405///
406/// \param Loc The location of the entity whose type involves this
407/// pointer type or, if there is no such entity, the location of the
408/// type that will have pointer type.
409///
410/// \param Entity The name of the entity that involves the pointer
411/// type, if known.
412///
413/// \returns A suitable pointer type, if there are no
414/// errors. Otherwise, returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000415QualType Sema::BuildPointerType(QualType T, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000416 SourceLocation Loc, DeclarationName Entity) {
417 if (T->isReferenceType()) {
418 // C++ 8.3.2p4: There shall be no ... pointers to references ...
419 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
420 << getPrintableNameForEntity(Entity);
421 return QualType();
422 }
423
John McCall0953e762009-09-24 19:53:00 +0000424 Qualifiers Qs = Qualifiers::fromCVRMask(Quals);
425
Douglas Gregorcd281c32009-02-28 00:25:32 +0000426 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
427 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000428 if (Qs.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000429 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
430 << T;
John McCall0953e762009-09-24 19:53:00 +0000431 Qs.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000432 }
433
434 // Build the pointer type.
John McCall0953e762009-09-24 19:53:00 +0000435 return Context.getQualifiedType(Context.getPointerType(T), Qs);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000436}
437
438/// \brief Build a reference type.
439///
440/// \param T The type to which we'll be building a reference.
441///
John McCall0953e762009-09-24 19:53:00 +0000442/// \param CVR The cvr-qualifiers to be applied to the reference type.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000443///
444/// \param Loc The location of the entity whose type involves this
445/// reference type or, if there is no such entity, the location of the
446/// type that will have reference type.
447///
448/// \param Entity The name of the entity that involves the reference
449/// type, if known.
450///
451/// \returns A suitable reference type, if there are no
452/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000453QualType Sema::BuildReferenceType(QualType T, bool LValueRef, unsigned CVR,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000454 SourceLocation Loc, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000455 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000456 if (LValueRef) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000457 if (const RValueReferenceType *R = T->getAs<RValueReferenceType>()) {
Sebastian Redldfe292d2009-03-22 21:28:55 +0000458 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
459 // reference to a type T, and attempt to create the type "lvalue
460 // reference to cv TD" creates the type "lvalue reference to T".
461 // We use the qualifiers (restrict or none) of the original reference,
462 // not the new ones. This is consistent with GCC.
John McCall0953e762009-09-24 19:53:00 +0000463 QualType LVRT = Context.getLValueReferenceType(R->getPointeeType());
464 return Context.getQualifiedType(LVRT, T.getQualifiers());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000465 }
466 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000467 if (T->isReferenceType()) {
468 // C++ [dcl.ref]p4: There shall be no references to references.
Mike Stump1eb44332009-09-09 15:08:12 +0000469 //
Douglas Gregorcd281c32009-02-28 00:25:32 +0000470 // According to C++ DR 106, references to references are only
471 // diagnosed when they are written directly (e.g., "int & &"),
472 // but not when they happen via a typedef:
473 //
474 // typedef int& intref;
475 // typedef intref& intref2;
476 //
John McCall0953e762009-09-24 19:53:00 +0000477 // Parser::ParseDeclaratorInternal diagnoses the case where
Douglas Gregorcd281c32009-02-28 00:25:32 +0000478 // references are written directly; here, we handle the
479 // collapsing of references-to-references as described in C++
480 // DR 106 and amended by C++ DR 540.
481 return T;
482 }
483
484 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000485 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000486 // is ill-formed.
487 if (T->isVoidType()) {
488 Diag(Loc, diag::err_reference_to_void);
489 return QualType();
490 }
491
492 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
493 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000494 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000495 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
496 << T;
John McCall0953e762009-09-24 19:53:00 +0000497 Quals.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000498 }
499
500 // C++ [dcl.ref]p1:
501 // [...] Cv-qualified references are ill-formed except when the
502 // cv-qualifiers are introduced through the use of a typedef
503 // (7.1.3) or of a template type argument (14.3), in which case
504 // the cv-qualifiers are ignored.
505 //
506 // We diagnose extraneous cv-qualifiers for the non-typedef,
507 // non-template type argument case within the parser. Here, we just
508 // ignore any extraneous cv-qualifiers.
John McCall0953e762009-09-24 19:53:00 +0000509 Quals.removeConst();
510 Quals.removeVolatile();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000511
512 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000513 if (LValueRef)
John McCall0953e762009-09-24 19:53:00 +0000514 return Context.getQualifiedType(Context.getLValueReferenceType(T), Quals);
515 return Context.getQualifiedType(Context.getRValueReferenceType(T), Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000516}
517
518/// \brief Build an array type.
519///
520/// \param T The type of each element in the array.
521///
522/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000523///
524/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000525///
526/// \param Quals The cvr-qualifiers to be applied to the array's
527/// element type.
528///
529/// \param Loc The location of the entity whose type involves this
530/// array type or, if there is no such entity, the location of the
531/// type that will have array type.
532///
533/// \param Entity The name of the entity that involves the array
534/// type, if known.
535///
536/// \returns A suitable array type, if there are no errors. Otherwise,
537/// returns a NULL type.
538QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
539 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000540 SourceRange Brackets, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000541
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000542 SourceLocation Loc = Brackets.getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000543 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000544 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Mike Stump1eb44332009-09-09 15:08:12 +0000545 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000546 diag::err_illegal_decl_array_incomplete_type))
547 return QualType();
548
549 if (T->isFunctionType()) {
550 Diag(Loc, diag::err_illegal_decl_array_of_functions)
551 << getPrintableNameForEntity(Entity);
552 return QualType();
553 }
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Douglas Gregorcd281c32009-02-28 00:25:32 +0000555 // C++ 8.3.2p4: There shall be no ... arrays of references ...
556 if (T->isReferenceType()) {
557 Diag(Loc, diag::err_illegal_decl_array_of_references)
558 << getPrintableNameForEntity(Entity);
559 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000560 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000561
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000562 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000563 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000564 << getPrintableNameForEntity(Entity);
565 return QualType();
566 }
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Ted Kremenek6217b802009-07-29 21:53:49 +0000568 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000569 // If the element type is a struct or union that contains a variadic
570 // array, accept it as a GNU extension: C99 6.7.2.1p2.
571 if (EltTy->getDecl()->hasFlexibleArrayMember())
572 Diag(Loc, diag::ext_flexible_array_in_array) << T;
573 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000574 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
575 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Douglas Gregorcd281c32009-02-28 00:25:32 +0000578 // C99 6.7.5.2p1: The size expression shall have integer type.
579 if (ArraySize && !ArraySize->isTypeDependent() &&
580 !ArraySize->getType()->isIntegerType()) {
581 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
582 << ArraySize->getType() << ArraySize->getSourceRange();
583 ArraySize->Destroy(Context);
584 return QualType();
585 }
586 llvm::APSInt ConstVal(32);
587 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000588 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000589 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000590 else
591 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000592 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000593 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000594 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
595 (!T->isDependentType() && !T->isConstantSizeType())) {
596 // Per C99, a variable array is an array with either a non-constant
597 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000598 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000599 } else {
600 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
601 // have a value greater than zero.
602 if (ConstVal.isSigned()) {
603 if (ConstVal.isNegative()) {
604 Diag(ArraySize->getLocStart(),
605 diag::err_typecheck_negative_array_size)
606 << ArraySize->getSourceRange();
607 return QualType();
608 } else if (ConstVal == 0) {
609 // GCC accepts zero sized static arrays.
610 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
611 << ArraySize->getSourceRange();
612 }
Mike Stump1eb44332009-09-09 15:08:12 +0000613 }
John McCall46a617a2009-10-16 00:14:28 +0000614 T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000615 }
616 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
617 if (!getLangOptions().C99) {
Mike Stump1eb44332009-09-09 15:08:12 +0000618 if (ArraySize && !ArraySize->isTypeDependent() &&
619 !ArraySize->isValueDependent() &&
Douglas Gregorcd281c32009-02-28 00:25:32 +0000620 !ArraySize->isIntegerConstantExpr(Context))
Douglas Gregor043cad22009-09-11 00:18:58 +0000621 Diag(Loc, getLangOptions().CPlusPlus? diag::err_vla_cxx : diag::ext_vla);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000622 else if (ASM != ArrayType::Normal || Quals != 0)
Douglas Gregor043cad22009-09-11 00:18:58 +0000623 Diag(Loc,
624 getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
625 : diag::ext_c99_array_usage);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000626 }
627
628 return T;
629}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000630
631/// \brief Build an ext-vector type.
632///
633/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000634QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000635 SourceLocation AttrLoc) {
636
637 Expr *Arg = (Expr *)ArraySize.get();
638
639 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
640 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000641 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000642 !T->isIntegerType() && !T->isRealFloatingType()) {
643 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
644 return QualType();
645 }
646
647 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
648 llvm::APSInt vecSize(32);
649 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
650 Diag(AttrLoc, diag::err_attribute_argument_not_int)
651 << "ext_vector_type" << Arg->getSourceRange();
652 return QualType();
653 }
Mike Stump1eb44332009-09-09 15:08:12 +0000654
655 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000656 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000657 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
658
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000659 if (vectorSize == 0) {
660 Diag(AttrLoc, diag::err_attribute_zero_size)
661 << Arg->getSourceRange();
662 return QualType();
663 }
Mike Stump1eb44332009-09-09 15:08:12 +0000664
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000665 if (!T->isDependentType())
666 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000667 }
668
669 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000670 AttrLoc);
671}
Mike Stump1eb44332009-09-09 15:08:12 +0000672
Douglas Gregor724651c2009-02-28 01:04:19 +0000673/// \brief Build a function type.
674///
675/// This routine checks the function type according to C++ rules and
676/// under the assumption that the result type and parameter types have
677/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000678/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000679/// simpler form that is only suitable for this narrow use case.
680///
681/// \param T The return type of the function.
682///
683/// \param ParamTypes The parameter types of the function. This array
684/// will be modified to account for adjustments to the types of the
685/// function parameters.
686///
687/// \param NumParamTypes The number of parameter types in ParamTypes.
688///
689/// \param Variadic Whether this is a variadic function type.
690///
691/// \param Quals The cvr-qualifiers to be applied to the function type.
692///
693/// \param Loc The location of the entity whose type involves this
694/// function type or, if there is no such entity, the location of the
695/// type that will have function type.
696///
697/// \param Entity The name of the entity that involves the function
698/// type, if known.
699///
700/// \returns A suitable function type, if there are no
701/// errors. Otherwise, returns a NULL type.
702QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000703 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000704 unsigned NumParamTypes,
705 bool Variadic, unsigned Quals,
706 SourceLocation Loc, DeclarationName Entity) {
707 if (T->isArrayType() || T->isFunctionType()) {
708 Diag(Loc, diag::err_func_returning_array_function) << T;
709 return QualType();
710 }
Mike Stump1eb44332009-09-09 15:08:12 +0000711
Douglas Gregor724651c2009-02-28 01:04:19 +0000712 bool Invalid = false;
713 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000714 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
715 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000716 Diag(Loc, diag::err_param_with_void_type);
717 Invalid = true;
718 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000719
Anders Carlsson83913e32009-09-16 23:47:08 +0000720 ParamTypes[Idx] = adjustFunctionParamType(ParamType);
Douglas Gregor724651c2009-02-28 01:04:19 +0000721 }
722
723 if (Invalid)
724 return QualType();
725
Mike Stump1eb44332009-09-09 15:08:12 +0000726 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Douglas Gregor724651c2009-02-28 01:04:19 +0000727 Quals);
728}
Mike Stump1eb44332009-09-09 15:08:12 +0000729
Douglas Gregor949bf692009-06-09 22:17:39 +0000730/// \brief Build a member pointer type \c T Class::*.
731///
732/// \param T the type to which the member pointer refers.
733/// \param Class the class type into which the member pointer points.
John McCall0953e762009-09-24 19:53:00 +0000734/// \param CVR Qualifiers applied to the member pointer type
Douglas Gregor949bf692009-06-09 22:17:39 +0000735/// \param Loc the location where this type begins
736/// \param Entity the name of the entity that will have this member pointer type
737///
738/// \returns a member pointer type, if successful, or a NULL type if there was
739/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000740QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
John McCall0953e762009-09-24 19:53:00 +0000741 unsigned CVR, SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000742 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000743 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
744
Douglas Gregor949bf692009-06-09 22:17:39 +0000745 // Verify that we're not building a pointer to pointer to function with
746 // exception specification.
747 if (CheckDistantExceptionSpec(T)) {
748 Diag(Loc, diag::err_distant_exception_spec);
749
750 // FIXME: If we're doing this as part of template instantiation,
751 // we should return immediately.
752
753 // Build the type anyway, but use the canonical type so that the
754 // exception specifiers are stripped off.
755 T = Context.getCanonicalType(T);
756 }
757
758 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
759 // with reference type, or "cv void."
760 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000761 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000762 << (Entity? Entity.getAsString() : "type name");
763 return QualType();
764 }
765
766 if (T->isVoidType()) {
767 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
768 << (Entity? Entity.getAsString() : "type name");
769 return QualType();
770 }
771
772 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
773 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000774 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregor949bf692009-06-09 22:17:39 +0000775 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
776 << T;
777
778 // FIXME: If we're doing this as part of template instantiation,
779 // we should return immediately.
John McCall0953e762009-09-24 19:53:00 +0000780 Quals.removeRestrict();
Douglas Gregor949bf692009-06-09 22:17:39 +0000781 }
782
783 if (!Class->isDependentType() && !Class->isRecordType()) {
784 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
785 return QualType();
786 }
787
John McCall0953e762009-09-24 19:53:00 +0000788 return Context.getQualifiedType(
789 Context.getMemberPointerType(T, Class.getTypePtr()), Quals);
Douglas Gregor949bf692009-06-09 22:17:39 +0000790}
Mike Stump1eb44332009-09-09 15:08:12 +0000791
Anders Carlsson9a917e42009-06-12 22:56:54 +0000792/// \brief Build a block pointer type.
793///
794/// \param T The type to which we'll be building a block pointer.
795///
John McCall0953e762009-09-24 19:53:00 +0000796/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
Anders Carlsson9a917e42009-06-12 22:56:54 +0000797///
798/// \param Loc The location of the entity whose type involves this
799/// block pointer type or, if there is no such entity, the location of the
800/// type that will have block pointer type.
801///
802/// \param Entity The name of the entity that involves the block pointer
803/// type, if known.
804///
805/// \returns A suitable block pointer type, if there are no
806/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000807QualType Sema::BuildBlockPointerType(QualType T, unsigned CVR,
Mike Stump1eb44332009-09-09 15:08:12 +0000808 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000809 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000810 if (!T->isFunctionType()) {
Anders Carlsson9a917e42009-06-12 22:56:54 +0000811 Diag(Loc, diag::err_nonfunction_block_type);
812 return QualType();
813 }
Mike Stump1eb44332009-09-09 15:08:12 +0000814
John McCall0953e762009-09-24 19:53:00 +0000815 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
816 return Context.getQualifiedType(Context.getBlockPointerType(T), Quals);
Anders Carlsson9a917e42009-06-12 22:56:54 +0000817}
818
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000819QualType Sema::GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo) {
820 QualType QT = QualType::getFromOpaquePtr(Ty);
821 DeclaratorInfo *DI = 0;
822 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
823 QT = LIT->getType();
824 DI = LIT->getDeclaratorInfo();
825 }
Mike Stump1eb44332009-09-09 15:08:12 +0000826
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000827 if (DInfo) *DInfo = DI;
828 return QT;
829}
830
Mike Stump98eb8a72009-02-04 22:31:32 +0000831/// GetTypeForDeclarator - Convert the type for the specified
832/// declarator to Type instances. Skip the outermost Skip type
833/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000834///
835/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
836/// owns the declaration of a type (e.g., the definition of a struct
837/// type), then *OwnedDecl will receive the owned declaration.
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000838QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
839 DeclaratorInfo **DInfo, unsigned Skip,
Douglas Gregor402abb52009-05-28 23:31:59 +0000840 TagDecl **OwnedDecl) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000841 bool OmittedReturnType = false;
842
843 if (D.getContext() == Declarator::BlockLiteralContext
844 && Skip == 0
845 && !D.getDeclSpec().hasTypeSpecifier()
846 && (D.getNumTypeObjects() == 0
847 || (D.getNumTypeObjects() == 1
848 && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
849 OmittedReturnType = true;
850
Chris Lattnerb23deda2007-08-28 16:40:32 +0000851 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000852 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000853 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
854 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000855
856 // Determine the type of the declarator. Not all forms of declarator
857 // have a type.
858 QualType T;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000859 // The QualType referring to the type as written in source code. We can't use
860 // T because it can change due to semantic analysis.
861 QualType SourceTy;
862
Douglas Gregor930d8b52009-01-30 22:09:00 +0000863 switch (D.getKind()) {
864 case Declarator::DK_Abstract:
865 case Declarator::DK_Normal:
Douglas Gregordb422df2009-09-25 21:45:23 +0000866 case Declarator::DK_Operator:
867 case Declarator::DK_TemplateId: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000868 const DeclSpec &DS = D.getDeclSpec();
869 if (OmittedReturnType) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000870 // We default to a dependent type initially. Can be modified by
871 // the first return statement.
872 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000873 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000874 bool isInvalid = false;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000875 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid, SourceTy);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000876 if (isInvalid)
877 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000878 else if (OwnedDecl && DS.isTypeSpecOwned())
879 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000880 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000881 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000882 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000883
884 case Declarator::DK_Constructor:
885 case Declarator::DK_Destructor:
886 case Declarator::DK_Conversion:
887 // Constructors and destructors don't have return types. Use
888 // "void" instead. Conversion operators will check their return
889 // types separately.
890 T = Context.VoidTy;
891 break;
892 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000893
894 if (SourceTy.isNull())
895 SourceTy = T;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000896
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000897 if (T == Context.UndeducedAutoTy) {
898 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000899
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000900 switch (D.getContext()) {
901 case Declarator::KNRTypeListContext:
902 assert(0 && "K&R type lists aren't allowed in C++");
903 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000904 case Declarator::PrototypeContext:
905 Error = 0; // Function prototype
906 break;
907 case Declarator::MemberContext:
908 switch (cast<TagDecl>(CurContext)->getTagKind()) {
909 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
910 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
911 case TagDecl::TK_union: Error = 2; /* Union member */ break;
912 case TagDecl::TK_class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +0000913 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000914 break;
915 case Declarator::CXXCatchContext:
916 Error = 4; // Exception declaration
917 break;
918 case Declarator::TemplateParamContext:
919 Error = 5; // Template parameter
920 break;
921 case Declarator::BlockLiteralContext:
922 Error = 6; // Block literal
923 break;
924 case Declarator::FileContext:
925 case Declarator::BlockContext:
926 case Declarator::ForContext:
927 case Declarator::ConditionContext:
928 case Declarator::TypeNameContext:
929 break;
930 }
931
932 if (Error != -1) {
933 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
934 << Error;
935 T = Context.IntTy;
936 D.setInvalidType(true);
937 }
938 }
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Douglas Gregorcd281c32009-02-28 00:25:32 +0000940 // The name we're declaring, if any.
941 DeclarationName Name;
942 if (D.getIdentifier())
943 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +0000944
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000945 bool ShouldBuildInfo = DInfo != 0;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000946
Mike Stump98eb8a72009-02-04 22:31:32 +0000947 // Walk the DeclTypeInfo, building the recursive type as we go.
948 // DeclTypeInfos are ordered from the identifier out, which is
949 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000950 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
951 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000952 switch (DeclType.Kind) {
953 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000954 case DeclaratorChunk::BlockPointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000955 if (ShouldBuildInfo) {
956 if (SourceTy->isFunctionType())
John McCall0953e762009-09-24 19:53:00 +0000957 SourceTy
958 = Context.getQualifiedType(Context.getBlockPointerType(SourceTy),
959 Qualifiers::fromCVRMask(DeclType.Cls.TypeQuals));
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000960 else
961 // If not function type Context::getBlockPointerType asserts,
962 // so just give up.
963 ShouldBuildInfo = false;
964 }
965
Chris Lattner9af55002009-03-27 04:18:06 +0000966 // If blocks are disabled, emit an error.
967 if (!LangOpts.Blocks)
968 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +0000969
970 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
Anders Carlsson9a917e42009-06-12 22:56:54 +0000971 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000972 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000973 case DeclaratorChunk::Pointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000974 //FIXME: Use ObjCObjectPointer for info when appropriate.
975 if (ShouldBuildInfo)
John McCall0953e762009-09-24 19:53:00 +0000976 SourceTy = Context.getQualifiedType(Context.getPointerType(SourceTy),
977 Qualifiers::fromCVRMask(DeclType.Ptr.TypeQuals));
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000978 // Verify that we're not building a pointer to pointer to function with
979 // exception specification.
980 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
981 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
982 D.setInvalidType(true);
983 // Build the type anyway.
984 }
Steve Naroff14108da2009-07-10 23:34:53 +0000985 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
John McCall183700f2009-09-21 23:43:11 +0000986 const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>();
Steve Naroff14108da2009-07-10 23:34:53 +0000987 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000988 (ObjCProtocolDecl **)OIT->qual_begin(),
989 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000990 break;
991 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000992 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 break;
John McCall0953e762009-09-24 19:53:00 +0000994 case DeclaratorChunk::Reference: {
995 Qualifiers Quals;
996 if (DeclType.Ref.HasRestrict) Quals.addRestrict();
997
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000998 if (ShouldBuildInfo) {
999 if (DeclType.Ref.LValueRef)
1000 SourceTy = Context.getLValueReferenceType(SourceTy);
1001 else
1002 SourceTy = Context.getRValueReferenceType(SourceTy);
John McCall0953e762009-09-24 19:53:00 +00001003 SourceTy = Context.getQualifiedType(SourceTy, Quals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001004 }
1005
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001006 // Verify that we're not building a reference to pointer to function with
1007 // exception specification.
1008 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1009 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1010 D.setInvalidType(true);
1011 // Build the type anyway.
1012 }
John McCall0953e762009-09-24 19:53:00 +00001013 T = BuildReferenceType(T, DeclType.Ref.LValueRef, Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +00001014 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001015 break;
John McCall0953e762009-09-24 19:53:00 +00001016 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001017 case DeclaratorChunk::Array: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001018 if (ShouldBuildInfo)
1019 // We just need to get an array type, the exact type doesn't matter.
1020 SourceTy = Context.getIncompleteArrayType(SourceTy, ArrayType::Normal,
John McCall0953e762009-09-24 19:53:00 +00001021 DeclType.Arr.TypeQuals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001022
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001023 // Verify that we're not building an array of pointers to function with
1024 // exception specification.
1025 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1026 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1027 D.setInvalidType(true);
1028 // Build the type anyway.
1029 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001030 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +00001031 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001032 ArrayType::ArraySizeModifier ASM;
1033 if (ATI.isStar)
1034 ASM = ArrayType::Star;
1035 else if (ATI.hasStatic)
1036 ASM = ArrayType::Static;
1037 else
1038 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +00001039 if (ASM == ArrayType::Star &&
1040 D.getContext() != Declarator::PrototypeContext) {
1041 // FIXME: This check isn't quite right: it allows star in prototypes
1042 // for function definitions, and disallows some edge cases detailed
1043 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
1044 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1045 ASM = ArrayType::Normal;
1046 D.setInvalidType(true);
1047 }
John McCall0953e762009-09-24 19:53:00 +00001048 T = BuildArrayType(T, ASM, ArraySize,
1049 Qualifiers::fromCVRMask(ATI.TypeQuals),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001050 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001051 break;
1052 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001053 case DeclaratorChunk::Function: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001054 if (ShouldBuildInfo) {
1055 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1056 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001058 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1059 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
Anders Carlsson83913e32009-09-16 23:47:08 +00001060 if (Param) {
1061 QualType ArgTy = adjustFunctionParamType(Param->getType());
1062
1063 ArgTys.push_back(ArgTy);
1064 }
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001065 }
1066 SourceTy = Context.getFunctionType(SourceTy, ArgTys.data(),
1067 ArgTys.size(),
John McCall0953e762009-09-24 19:53:00 +00001068 FTI.isVariadic,
1069 FTI.TypeQuals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001070 }
1071
Reid Spencer5f016e22007-07-11 17:01:13 +00001072 // If the function declarator has a prototype (i.e. it is not () and
1073 // does not have a K&R-style identifier list), then the arguments are part
1074 // of the type, otherwise the argument list is ().
1075 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001076
Chris Lattnercd881292007-12-19 05:31:29 +00001077 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +00001078 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001079 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001080 T = Context.IntTy;
1081 D.setInvalidType(true);
1082 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001083
Douglas Gregor402abb52009-05-28 23:31:59 +00001084 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1085 // C++ [dcl.fct]p6:
1086 // Types shall not be defined in return or parameter types.
1087 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1088 if (Tag->isDefinition())
1089 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1090 << Context.getTypeDeclType(Tag);
1091 }
1092
Sebastian Redl3cc97262009-05-31 11:47:27 +00001093 // Exception specs are not allowed in typedefs. Complain, but add it
1094 // anyway.
1095 if (FTI.hasExceptionSpec &&
1096 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1097 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1098
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001099 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001100 if (getLangOptions().CPlusPlus) {
1101 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
1102 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +00001103 llvm::SmallVector<QualType, 4> Exceptions;
1104 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001105 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001106 // FIXME: Preserve type source info.
1107 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001108 // Check that the type is valid for an exception spec, and drop it
1109 // if not.
1110 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1111 Exceptions.push_back(ET);
1112 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001113 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1114 FTI.hasExceptionSpec,
1115 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001116 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001117 } else if (FTI.isVariadic) {
1118 // We allow a zero-parameter variadic function in C if the
1119 // function is marked with the "overloadable"
1120 // attribute. Scan for this attribute now.
1121 bool Overloadable = false;
1122 for (const AttributeList *Attrs = D.getAttributes();
1123 Attrs; Attrs = Attrs->getNext()) {
1124 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1125 Overloadable = true;
1126 break;
1127 }
1128 }
1129
1130 if (!Overloadable)
1131 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1132 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001133 } else {
1134 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001135 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001136 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001137 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001138 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Mike Stump1eb44332009-09-09 15:08:12 +00001139 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001140 } else {
1141 // Otherwise, we have a function with an argument list that is
1142 // potentially variadic.
1143 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001144
Reid Spencer5f016e22007-07-11 17:01:13 +00001145 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001146 ParmVarDecl *Param =
1147 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001148 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001149 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001150
1151 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001152 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001153
Reid Spencer5f016e22007-07-11 17:01:13 +00001154 // Look for 'void'. void is allowed only as a single argument to a
1155 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001156 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001157 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001158 // If this is something like 'float(int, void)', reject it. 'void'
1159 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1160 // have arguments of incomplete type.
1161 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1162 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001163 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001164 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001165 } else if (FTI.ArgInfo[i].Ident) {
1166 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001167 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001168 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001169 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001170 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001171 } else {
1172 // Reject, but continue to parse 'float(const void)'.
John McCall0953e762009-09-24 19:53:00 +00001173 if (ArgTy.hasQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001174 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001175
Chris Lattner2ff54262007-07-21 05:18:12 +00001176 // Do not add 'void' to the ArgTys list.
1177 break;
1178 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001179 } else if (!FTI.hasPrototype) {
1180 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001181 ArgTy = Context.getPromotedIntegerType(ArgTy);
John McCall183700f2009-09-21 23:43:11 +00001182 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001183 if (BTy->getKind() == BuiltinType::Float)
1184 ArgTy = Context.DoubleTy;
1185 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001186 }
Mike Stump1eb44332009-09-09 15:08:12 +00001187
Anders Carlsson83913e32009-09-16 23:47:08 +00001188 ArgTys.push_back(adjustFunctionParamType(ArgTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001189 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001190
1191 llvm::SmallVector<QualType, 4> Exceptions;
1192 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001193 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001194 // FIXME: Preserve type source info.
1195 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001196 // Check that the type is valid for an exception spec, and drop it if
1197 // not.
1198 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1199 Exceptions.push_back(ET);
1200 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001201
Jay Foadbeaaccd2009-05-21 09:52:38 +00001202 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001203 FTI.isVariadic, FTI.TypeQuals,
1204 FTI.hasExceptionSpec,
1205 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001206 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 }
1208 break;
1209 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001210 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001211 // Verify that we're not building a pointer to pointer to function with
1212 // exception specification.
1213 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1214 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1215 D.setInvalidType(true);
1216 // Build the type anyway.
1217 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001218 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001219 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001220 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001221 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001222 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1223 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1224 ClsType = QualType(NNS->getAsType(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001225 } else if (CXXRecordDecl *RD
Douglas Gregor949bf692009-06-09 22:17:39 +00001226 = dyn_cast_or_null<CXXRecordDecl>(
1227 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001228 ClsType = Context.getTagDeclType(RD);
1229 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001230 Diag(DeclType.Mem.Scope().getBeginLoc(),
1231 diag::err_illegal_decl_mempointer_in_nonclass)
1232 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1233 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001234 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001235 }
1236
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001237 if (ShouldBuildInfo) {
1238 QualType cls = !ClsType.isNull() ? ClsType : Context.IntTy;
John McCall0953e762009-09-24 19:53:00 +00001239 SourceTy = Context.getQualifiedType(
1240 Context.getMemberPointerType(SourceTy, cls.getTypePtr()),
1241 Qualifiers::fromCVRMask(DeclType.Mem.TypeQuals));
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001242 }
1243
Douglas Gregor949bf692009-06-09 22:17:39 +00001244 if (!ClsType.isNull())
1245 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1246 DeclType.Loc, D.getIdentifier());
1247 if (T.isNull()) {
1248 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001249 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001250 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001251 break;
1252 }
1253
Douglas Gregorcd281c32009-02-28 00:25:32 +00001254 if (T.isNull()) {
1255 D.setInvalidType(true);
1256 T = Context.IntTy;
1257 }
1258
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001259 // See if there are any attributes on this declarator chunk.
1260 if (const AttributeList *AL = DeclType.getAttrs())
1261 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001262 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001263
1264 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
John McCall183700f2009-09-21 23:43:11 +00001265 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001266 assert(FnTy && "Why oh why is there not a FunctionProtoType here ?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001267
1268 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1269 // for a nonstatic member function, the function type to which a pointer
1270 // to member refers, or the top-level function type of a function typedef
1271 // declaration.
1272 if (FnTy->getTypeQuals() != 0 &&
1273 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001274 ((D.getContext() != Declarator::MemberContext &&
1275 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001276 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1277 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001278 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001279 if (D.isFunctionDeclarator())
1280 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1281 else
1282 Diag(D.getIdentifierLoc(),
1283 diag::err_invalid_qualified_typedef_function_type_use);
1284
1285 // Strip the cv-quals from the type.
1286 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001287 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001288 }
1289 }
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001291 // If there were any type attributes applied to the decl itself (not the
1292 // type, apply the type attribute to the type!)
1293 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001294 ProcessTypeAttributeList(T, Attrs);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001295
1296 if (ShouldBuildInfo)
1297 *DInfo = GetDeclaratorInfoForDeclarator(D, SourceTy, Skip);
1298
Reid Spencer5f016e22007-07-11 17:01:13 +00001299 return T;
1300}
1301
John McCall51bd8032009-10-18 01:05:36 +00001302namespace {
1303 class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
1304 const DeclSpec &DS;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001305
John McCall51bd8032009-10-18 01:05:36 +00001306 public:
1307 TypeSpecLocFiller(const DeclSpec &DS) : DS(DS) {}
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001308
John McCall51bd8032009-10-18 01:05:36 +00001309 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1310 Visit(TL.getUnqualifiedLoc());
1311 }
1312 void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1313 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1314 }
1315 void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1316 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1317 }
1318 void VisitObjCProtocolListTypeLoc(ObjCProtocolListTypeLoc TL) {
1319 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1320 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1321 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1322 for (unsigned i = 0; i != DS.getNumProtocolQualifiers(); ++i)
1323 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
Argyrios Kyrtzidiseb667592009-09-29 19:45:22 +00001324
John McCall51bd8032009-10-18 01:05:36 +00001325 TypeLoc BaseLoc = TL.getBaseTypeLoc();
1326 if (BaseLoc)
1327 Visit(TL.getBaseTypeLoc());
1328 }
1329 void VisitTypeLoc(TypeLoc TL) {
1330 // FIXME: add other typespec types and change this to an assert.
1331 TL.initialize(DS.getTypeSpecTypeLoc());
1332 }
1333 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001334
John McCall51bd8032009-10-18 01:05:36 +00001335 class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
1336 const DeclaratorChunk &Chunk;
1337
1338 public:
1339 DeclaratorLocFiller(const DeclaratorChunk &Chunk) : Chunk(Chunk) {}
1340
1341 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1342 llvm::llvm_unreachable("qualified type locs not expected here!");
1343 }
1344
1345 void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1346 assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
1347 TL.setCaretLoc(Chunk.Loc);
1348 }
1349 void VisitPointerTypeLoc(PointerTypeLoc TL) {
1350 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1351 TL.setStarLoc(Chunk.Loc);
1352 }
1353 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1354 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1355 TL.setStarLoc(Chunk.Loc);
1356 }
1357 void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1358 assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
1359 TL.setStarLoc(Chunk.Loc);
1360 // FIXME: nested name specifier
1361 }
1362 void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
1363 assert(Chunk.Kind == DeclaratorChunk::Reference);
1364 assert(Chunk.Ref.LValueRef);
1365 TL.setAmpLoc(Chunk.Loc);
1366 }
1367 void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
1368 assert(Chunk.Kind == DeclaratorChunk::Reference);
1369 assert(!Chunk.Ref.LValueRef);
1370 TL.setAmpAmpLoc(Chunk.Loc);
1371 }
1372 void VisitArrayTypeLoc(ArrayTypeLoc TL) {
1373 assert(Chunk.Kind == DeclaratorChunk::Array);
1374 TL.setLBracketLoc(Chunk.Loc);
1375 TL.setRBracketLoc(Chunk.EndLoc);
1376 TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
1377 }
1378 void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
1379 assert(Chunk.Kind == DeclaratorChunk::Function);
1380 TL.setLParenLoc(Chunk.Loc);
1381 TL.setRParenLoc(Chunk.EndLoc);
1382
1383 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
1384 for (unsigned i = 0, e = FTI.NumArgs, tpi = 0; i != e; ++i) {
1385 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
1386 if (Param) {
1387 assert(tpi < TL.getNumArgs());
1388 TL.setArg(tpi++, Param);
1389 }
1390 }
1391 // FIXME: exception specs
1392 }
1393
1394 void VisitTypeLoc(TypeLoc TL) {
1395 llvm::llvm_unreachable("unsupported TypeLoc kind in declarator!");
1396 }
1397 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001398}
1399
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001400/// \brief Create and instantiate a DeclaratorInfo with type source information.
1401///
1402/// \param T QualType referring to the type as written in source code.
1403DeclaratorInfo *
1404Sema::GetDeclaratorInfoForDeclarator(Declarator &D, QualType T, unsigned Skip) {
1405 DeclaratorInfo *DInfo = Context.CreateDeclaratorInfo(T);
John McCall51bd8032009-10-18 01:05:36 +00001406 UnqualTypeLoc CurrTL = DInfo->getTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001407
1408 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001409 DeclaratorLocFiller(D.getTypeObject(i)).Visit(CurrTL);
1410 CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001411 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001412
John McCall51bd8032009-10-18 01:05:36 +00001413 TypeSpecLocFiller(D.getDeclSpec()).Visit(CurrTL);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001414
1415 return DInfo;
1416}
1417
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001418/// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo.
1419QualType Sema::CreateLocInfoType(QualType T, DeclaratorInfo *DInfo) {
1420 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1421 // and Sema during declaration parsing. Try deallocating/caching them when
1422 // it's appropriate, instead of allocating them and keeping them around.
1423 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
1424 new (LocT) LocInfoType(T, DInfo);
1425 assert(LocT->getTypeClass() != T->getTypeClass() &&
1426 "LocInfoType's TypeClass conflicts with an existing Type class");
1427 return QualType(LocT, 0);
1428}
1429
1430void LocInfoType::getAsStringInternal(std::string &Str,
1431 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001432 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1433 " was used directly instead of getting the QualType through"
1434 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001435}
1436
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001437/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001438/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001439QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1440 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001441 QualType T = MDecl->getResultType();
1442 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001443
Fariborz Jahanian35600022007-11-09 17:18:29 +00001444 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001445 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001446 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001447 selfTy = Context.getPointerType(selfTy);
1448 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001449 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001450 ArgTys.push_back(Context.getObjCIdType());
1451 ArgTys.push_back(Context.getObjCSelType());
Mike Stump1eb44332009-09-09 15:08:12 +00001452
Chris Lattner89951a82009-02-20 18:43:26 +00001453 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1454 E = MDecl->param_end(); PI != E; ++PI) {
1455 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001456 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001457 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001458 ArgTys.push_back(ArgTy);
1459 }
1460 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001461 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001462 return T;
1463}
1464
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001465/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1466/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1467/// they point to and return true. If T1 and T2 aren't pointer types
1468/// or pointer-to-member types, or if they are not similar at this
1469/// level, returns false and leaves T1 and T2 unchanged. Top-level
1470/// qualifiers on T1 and T2 are ignored. This function will typically
1471/// be called in a loop that successively "unwraps" pointer and
1472/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001473bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001474 const PointerType *T1PtrType = T1->getAs<PointerType>(),
1475 *T2PtrType = T2->getAs<PointerType>();
Douglas Gregor57373262008-10-22 14:17:15 +00001476 if (T1PtrType && T2PtrType) {
1477 T1 = T1PtrType->getPointeeType();
1478 T2 = T2PtrType->getPointeeType();
1479 return true;
1480 }
1481
Ted Kremenek6217b802009-07-29 21:53:49 +00001482 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
1483 *T2MPType = T2->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001484 if (T1MPType && T2MPType &&
1485 Context.getCanonicalType(T1MPType->getClass()) ==
1486 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001487 T1 = T1MPType->getPointeeType();
1488 T2 = T2MPType->getPointeeType();
1489 return true;
1490 }
Douglas Gregor57373262008-10-22 14:17:15 +00001491 return false;
1492}
1493
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001494Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001495 // C99 6.7.6: Type names have no identifier. This is already validated by
1496 // the parser.
1497 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001499 DeclaratorInfo *DInfo = 0;
Douglas Gregor402abb52009-05-28 23:31:59 +00001500 TagDecl *OwnedTag = 0;
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001501 QualType T = GetTypeForDeclarator(D, S, &DInfo, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001502 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001503 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001504
Douglas Gregor402abb52009-05-28 23:31:59 +00001505 if (getLangOptions().CPlusPlus) {
1506 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001507 CheckExtraCXXDefaultArguments(D);
1508
Douglas Gregor402abb52009-05-28 23:31:59 +00001509 // C++0x [dcl.type]p3:
1510 // A type-specifier-seq shall not define a class or enumeration
1511 // unless it appears in the type-id of an alias-declaration
1512 // (7.1.3).
1513 if (OwnedTag && OwnedTag->isDefinition())
1514 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1515 << Context.getTypeDeclType(OwnedTag);
1516 }
1517
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001518 if (DInfo)
1519 T = CreateLocInfoType(T, DInfo);
1520
Reid Spencer5f016e22007-07-11 17:01:13 +00001521 return T.getAsOpaquePtr();
1522}
1523
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001524
1525
1526//===----------------------------------------------------------------------===//
1527// Type Attribute Processing
1528//===----------------------------------------------------------------------===//
1529
1530/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1531/// specified type. The attribute contains 1 argument, the id of the address
1532/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001533static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001534 const AttributeList &Attr, Sema &S){
John McCall0953e762009-09-24 19:53:00 +00001535
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001536 // If this type is already address space qualified, reject it.
1537 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1538 // for two or more different address spaces."
1539 if (Type.getAddressSpace()) {
1540 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1541 return;
1542 }
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001544 // Check the attribute arguments.
1545 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001546 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001547 return;
1548 }
1549 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1550 llvm::APSInt addrSpace(32);
1551 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001552 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1553 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001554 return;
1555 }
1556
John McCallefadb772009-07-28 06:52:18 +00001557 // Bounds checking.
1558 if (addrSpace.isSigned()) {
1559 if (addrSpace.isNegative()) {
1560 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1561 << ASArgExpr->getSourceRange();
1562 return;
1563 }
1564 addrSpace.setIsSigned(false);
1565 }
1566 llvm::APSInt max(addrSpace.getBitWidth());
John McCall0953e762009-09-24 19:53:00 +00001567 max = Qualifiers::MaxAddressSpace;
John McCallefadb772009-07-28 06:52:18 +00001568 if (addrSpace > max) {
1569 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
John McCall0953e762009-09-24 19:53:00 +00001570 << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
John McCallefadb772009-07-28 06:52:18 +00001571 return;
1572 }
1573
Mike Stump1eb44332009-09-09 15:08:12 +00001574 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001575 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001576}
1577
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001578/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1579/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001580static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001581 const AttributeList &Attr, Sema &S) {
John McCall0953e762009-09-24 19:53:00 +00001582 if (Type.getObjCGCAttr() != Qualifiers::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001583 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001584 return;
1585 }
Mike Stump1eb44332009-09-09 15:08:12 +00001586
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001587 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001588 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001589 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1590 << "objc_gc" << 1;
1591 return;
1592 }
John McCall0953e762009-09-24 19:53:00 +00001593 Qualifiers::GC GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001594 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001595 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1596 return;
1597 }
Mike Stump1eb44332009-09-09 15:08:12 +00001598 if (Attr.getParameterName()->isStr("weak"))
John McCall0953e762009-09-24 19:53:00 +00001599 GCAttr = Qualifiers::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001600 else if (Attr.getParameterName()->isStr("strong"))
John McCall0953e762009-09-24 19:53:00 +00001601 GCAttr = Qualifiers::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001602 else {
1603 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1604 << "objc_gc" << Attr.getParameterName();
1605 return;
1606 }
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001608 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001609}
1610
Mike Stump24556362009-07-25 21:26:53 +00001611/// HandleNoReturnTypeAttribute - Process the noreturn attribute on the
1612/// specified type. The attribute contains 0 arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001613static void HandleNoReturnTypeAttribute(QualType &Type,
Mike Stump24556362009-07-25 21:26:53 +00001614 const AttributeList &Attr, Sema &S) {
1615 if (Attr.getNumArgs() != 0)
1616 return;
1617
1618 // We only apply this to a pointer to function or a pointer to block.
1619 if (!Type->isFunctionPointerType()
1620 && !Type->isBlockPointerType()
1621 && !Type->isFunctionType())
1622 return;
1623
1624 Type = S.Context.getNoReturnType(Type);
1625}
1626
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001627void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001628 // Scan through and apply attributes to this type where it makes sense. Some
1629 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1630 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001631 // apply to the decl. Here we apply type attributes and ignore the rest.
1632 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001633 // If this is an attribute we can handle, do so now, otherwise, add it to
1634 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001635 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001636 default: break;
1637 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001638 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1639 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001640 case AttributeList::AT_objc_gc:
1641 HandleObjCGCTypeAttribute(Result, *AL, *this);
1642 break;
Mike Stump24556362009-07-25 21:26:53 +00001643 case AttributeList::AT_noreturn:
1644 HandleNoReturnTypeAttribute(Result, *AL, *this);
1645 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001646 }
Chris Lattner232e8822008-02-21 01:08:11 +00001647 }
Chris Lattner232e8822008-02-21 01:08:11 +00001648}
1649
Mike Stump1eb44332009-09-09 15:08:12 +00001650/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001651///
1652/// This routine checks whether the type @p T is complete in any
1653/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001654/// type, returns false. If @p T is a class template specialization,
1655/// this routine then attempts to perform class template
1656/// instantiation. If instantiation fails, or if @p T is incomplete
1657/// and cannot be completed, issues the diagnostic @p diag (giving it
1658/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001659///
1660/// @param Loc The location in the source that the incomplete type
1661/// diagnostic should refer to.
1662///
1663/// @param T The type that this routine is examining for completeness.
1664///
Mike Stump1eb44332009-09-09 15:08:12 +00001665/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00001666/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001667///
1668/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1669/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001670bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001671 const PartialDiagnostic &PD,
1672 std::pair<SourceLocation,
1673 PartialDiagnostic> Note) {
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001674 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00001675
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001676 // FIXME: Add this assertion to help us flush out problems with
1677 // checking for dependent types and type-dependent expressions.
1678 //
Mike Stump1eb44332009-09-09 15:08:12 +00001679 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001680 // "Can't ask whether a dependent type is complete");
1681
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001682 // If we have a complete type, we're done.
1683 if (!T->isIncompleteType())
1684 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001685
Douglas Gregord475b8d2009-03-25 21:17:03 +00001686 // If we have a class template specialization or a class member of a
1687 // class template specialization, try to instantiate it.
Ted Kremenek6217b802009-07-29 21:53:49 +00001688 if (const RecordType *Record = T->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001689 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001690 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001691 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001692 if (Loc.isValid())
John McCall9cc78072009-09-11 07:25:08 +00001693 ClassTemplateSpec->setPointOfInstantiation(Loc);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001694 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001695 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001696 /*Complain=*/diag != 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001697 }
Mike Stump1eb44332009-09-09 15:08:12 +00001698 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001699 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1700 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001701 MemberSpecializationInfo *MSInfo = Rec->getMemberSpecializationInfo();
1702 assert(MSInfo && "Missing member specialization information?");
Douglas Gregor357bbd02009-08-28 20:50:45 +00001703 // This record was instantiated from a class within a template.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001704 if (MSInfo->getTemplateSpecializationKind()
1705 != TSK_ExplicitSpecialization) {
1706 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregorf6b11852009-10-08 15:14:33 +00001707 return InstantiateClass(Loc, Rec, Pattern,
1708 getTemplateInstantiationArgs(Rec),
1709 TSK_ImplicitInstantiation,
1710 /*Complain=*/diag != 0);
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001711 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001712 }
1713 }
1714 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001715
Douglas Gregor5842ba92009-08-24 15:23:48 +00001716 if (diag == 0)
1717 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001718
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001719 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001720 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001721
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001722 // If we have a note, produce it.
1723 if (!Note.first.isInvalid())
1724 Diag(Note.first, Note.second);
1725
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001726 // If the type was a forward declaration of a class/struct/union
Mike Stump1eb44332009-09-09 15:08:12 +00001727 // type, produce
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001728 const TagType *Tag = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +00001729 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001730 Tag = Record;
John McCall183700f2009-09-21 23:43:11 +00001731 else if (const EnumType *Enum = T->getAs<EnumType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001732 Tag = Enum;
1733
1734 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00001735 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001736 Tag->isBeingDefined() ? diag::note_type_being_defined
1737 : diag::note_forward_declaration)
1738 << QualType(Tag, 0);
1739
1740 return true;
1741}
Douglas Gregore6258932009-03-19 00:39:20 +00001742
1743/// \brief Retrieve a version of the type 'T' that is qualified by the
1744/// nested-name-specifier contained in SS.
1745QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1746 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1747 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00001748
Douglas Gregorab452ba2009-03-26 23:50:42 +00001749 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001750 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001751 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001752}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001753
1754QualType Sema::BuildTypeofExprType(Expr *E) {
1755 return Context.getTypeOfExprType(E);
1756}
1757
1758QualType Sema::BuildDecltypeType(Expr *E) {
1759 if (E->getType() == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00001760 Diag(E->getLocStart(),
Anders Carlssonaf017e62009-06-29 22:58:55 +00001761 diag::err_cannot_determine_declared_type_of_overloaded_function);
1762 return QualType();
1763 }
1764 return Context.getDecltypeType(E);
1765}