blob: c297694b9ff86204f4ec7bf03339717455d36014 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Sebastian Redl23c7d062009-07-07 20:29:57 +000015#include "SemaInherit.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000018#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +000019#include "clang/AST/TypeLoc.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000020#include "clang/AST/Expr.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000021#include "clang/Basic/PartialDiagnostic.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000022#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000023#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
Douglas Gregor2dc0e642009-03-23 23:06:20 +000026/// \brief Perform adjustment on the parameter type of a function.
27///
28/// This routine adjusts the given parameter type @p T to the actual
Mike Stump1eb44332009-09-09 15:08:12 +000029/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
30/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
Douglas Gregor2dc0e642009-03-23 23:06:20 +000031QualType Sema::adjustParameterType(QualType T) {
32 // C99 6.7.5.3p7:
33 if (T->isArrayType()) {
34 // C99 6.7.5.3p7:
35 // A declaration of a parameter as "array of type" shall be
36 // adjusted to "qualified pointer to type", where the type
37 // qualifiers (if any) are those specified within the [ and ] of
38 // the array type derivation.
39 return Context.getArrayDecayedType(T);
40 } else if (T->isFunctionType())
41 // C99 6.7.5.3p8:
42 // A declaration of a parameter as "function returning type"
43 // shall be adjusted to "pointer to function returning type", as
44 // in 6.3.2.1.
45 return Context.getPointerType(T);
46
47 return T;
48}
49
Douglas Gregor930d8b52009-01-30 22:09:00 +000050/// \brief Convert the specified declspec to the appropriate type
51/// object.
52/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000053/// \param DeclLoc The location of the declarator identifier or invalid if none.
Chris Lattner5153ee62009-04-25 08:47:54 +000054/// \returns The type described by the declaration specifiers. This function
55/// never returns null.
Chris Lattner3f84ad22009-04-22 05:27:59 +000056QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS,
Chris Lattnereaaebc72009-04-25 08:06:05 +000057 SourceLocation DeclLoc,
58 bool &isInvalid) {
Reid Spencer5f016e22007-07-11 17:01:13 +000059 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
60 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000061 QualType Result;
Mike Stump1eb44332009-09-09 15:08:12 +000062
Reid Spencer5f016e22007-07-11 17:01:13 +000063 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000064 case DeclSpec::TST_void:
65 Result = Context.VoidTy;
66 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000067 case DeclSpec::TST_char:
68 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000069 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000070 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000071 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000072 else {
73 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
74 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000075 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000076 }
Chris Lattner958858e2008-02-20 21:40:32 +000077 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000078 case DeclSpec::TST_wchar:
79 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
80 Result = Context.WCharTy;
81 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000082 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
83 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000084 Result = Context.getSignedWCharType();
85 } else {
86 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
87 "Unknown TSS value");
Chris Lattnerf3a41af2008-11-20 06:38:18 +000088 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
89 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000090 Result = Context.getUnsignedWCharType();
91 }
92 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +000093 case DeclSpec::TST_char16:
94 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
95 "Unknown TSS value");
96 Result = Context.Char16Ty;
97 break;
98 case DeclSpec::TST_char32:
99 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
100 "Unknown TSS value");
101 Result = Context.Char32Ty;
102 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000103 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000104 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000105 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000106 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000107 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000108 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000109 break;
110 }
Mike Stump1eb44332009-09-09 15:08:12 +0000111
Chris Lattnerd658b562008-04-05 06:32:51 +0000112 // Unspecified typespec defaults to int in C90. However, the C90 grammar
113 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
114 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
115 // Note that the one exception to this is function definitions, which are
116 // allowed to be completely missing a declspec. This is handled in the
117 // parser already though by it pretending to have seen an 'int' in this
118 // case.
119 if (getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000120 // In C89 mode, we only warn if there is a completely missing declspec
121 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000122 if (DS.isEmpty()) {
123 if (DeclLoc.isInvalid())
124 DeclLoc = DS.getSourceRange().getBegin();
Eli Friedmanfcff5772009-06-03 12:22:01 +0000125 Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000126 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000127 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
128 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000129 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000130 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000131 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
132 // "At least one type specifier shall be given in the declaration
133 // specifiers in each declaration, and in the specifier-qualifier list in
134 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000135 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000136 if (DeclLoc.isInvalid())
137 DeclLoc = DS.getSourceRange().getBegin();
138
Chris Lattnerb78d8332009-06-26 04:45:06 +0000139 if (getLangOptions().CPlusPlus && !getLangOptions().Microsoft) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000140 Diag(DeclLoc, diag::err_missing_type_specifier)
141 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Chris Lattnerb78d8332009-06-26 04:45:06 +0000143 // When this occurs in C++ code, often something is very broken with the
144 // value being declared, poison it as invalid so we don't get chains of
145 // errors.
146 isInvalid = true;
147 } else {
Eli Friedmanfcff5772009-06-03 12:22:01 +0000148 Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000149 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000150 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000151 }
Mike Stump1eb44332009-09-09 15:08:12 +0000152
153 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000154 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
156 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000157 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
158 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
159 case DeclSpec::TSW_long: Result = Context.LongTy; break;
160 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 }
162 } else {
163 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000164 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
165 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
166 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
167 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 }
169 }
Chris Lattner958858e2008-02-20 21:40:32 +0000170 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000171 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000172 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000173 case DeclSpec::TST_double:
174 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000175 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000176 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000177 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000178 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000179 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 case DeclSpec::TST_decimal32: // _Decimal32
181 case DeclSpec::TST_decimal64: // _Decimal64
182 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner8f12f652009-05-13 05:02:08 +0000183 Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
184 Result = Context.IntTy;
185 isInvalid = true;
186 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000187 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 case DeclSpec::TST_enum:
189 case DeclSpec::TST_union:
190 case DeclSpec::TST_struct: {
191 Decl *D = static_cast<Decl *>(DS.getTypeRep());
Chris Lattner99dc9142008-04-13 18:59:07 +0000192 assert(D && "Didn't get a decl for a class/enum/union/struct?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
194 DS.getTypeSpecSign() == 0 &&
195 "Can't handle qualifiers on typedef names yet!");
196 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000197 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
John McCall2191b202009-09-05 06:31:47 +0000198
199 // In C++, make an ElaboratedType.
200 if (getLangOptions().CPlusPlus) {
201 TagDecl::TagKind Tag
202 = TagDecl::getTagKindForTypeSpec(DS.getTypeSpecType());
203 Result = Context.getElaboratedType(Result, Tag);
204 }
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Chris Lattner5153ee62009-04-25 08:47:54 +0000206 if (D->isInvalidDecl())
207 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000208 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000209 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000210 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
212 DS.getTypeSpecSign() == 0 &&
213 "Can't handle qualifiers on typedef names yet!");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000214 Result = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000215
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000216 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
John McCall183700f2009-09-21 23:43:11 +0000217 if (const ObjCInterfaceType *Interface = Result->getAs<ObjCInterfaceType>())
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000218 // It would be nice if protocol qualifiers were only stored with the
219 // ObjCObjectPointerType. Unfortunately, this isn't possible due
220 // to the following typedef idiom (which is uncommon, but allowed):
Mike Stump1eb44332009-09-09 15:08:12 +0000221 //
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000222 // typedef Foo<P> T;
223 // static void func() {
224 // Foo<P> *yy;
225 // T *zz;
226 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000227 Result = Context.getObjCInterfaceType(Interface->getDecl(),
228 (ObjCProtocolDecl**)PQ,
229 DS.getNumProtocolQualifiers());
Steve Naroff14108da2009-07-10 23:34:53 +0000230 else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000231 // id<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000232 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000233 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
234 else if (Result->isObjCClassType()) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000235 if (DeclLoc.isInvalid())
236 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000237 // Class<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000238 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
Steve Naroff470301b2009-07-22 16:07:01 +0000239 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000240 } else {
241 if (DeclLoc.isInvalid())
242 DeclLoc = DS.getSourceRange().getBegin();
243 Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
244 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000245 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000246 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000247 }
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Chris Lattnereaaebc72009-04-25 08:06:05 +0000249 // If this is a reference to an invalid typedef, propagate the invalidity.
250 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
251 if (TDT->getDecl()->isInvalidDecl())
252 isInvalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Reid Spencer5f016e22007-07-11 17:01:13 +0000254 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000255 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 }
Chris Lattner958858e2008-02-20 21:40:32 +0000257 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000258 // FIXME: Preserve type source info.
259 Result = GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000260 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000261 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000262 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000263 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000264 case DeclSpec::TST_typeofExpr: {
265 Expr *E = static_cast<Expr *>(DS.getTypeRep());
266 assert(E && "Didn't get an expression for typeof?");
267 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000268 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000269 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000270 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000271 case DeclSpec::TST_decltype: {
272 Expr *E = static_cast<Expr *>(DS.getTypeRep());
273 assert(E && "Didn't get an expression for decltype?");
274 // TypeQuals handled by caller.
Anders Carlssonaf017e62009-06-29 22:58:55 +0000275 Result = BuildDecltypeType(E);
276 if (Result.isNull()) {
277 Result = Context.IntTy;
278 isInvalid = true;
279 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000280 break;
281 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000282 case DeclSpec::TST_auto: {
283 // TypeQuals handled by caller.
284 Result = Context.UndeducedAutoTy;
285 break;
286 }
Mike Stump1eb44332009-09-09 15:08:12 +0000287
Douglas Gregor809070a2009-02-18 17:45:20 +0000288 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000289 Result = Context.IntTy;
290 isInvalid = true;
291 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 }
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Chris Lattner958858e2008-02-20 21:40:32 +0000294 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000295 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
296 if (getLangOptions().Freestanding)
297 Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000298 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000299 }
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Chris Lattner958858e2008-02-20 21:40:32 +0000301 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
302 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Chris Lattner38d8b982008-02-20 22:04:11 +0000304 // See if there are any attributes on the declspec that apply to the type (as
305 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000306 if (const AttributeList *AL = DS.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +0000307 ProcessTypeAttributeList(Result, AL);
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Chris Lattner96b77fc2008-04-02 06:50:17 +0000309 // Apply const/volatile/restrict qualifiers to T.
310 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
311
312 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
313 // or incomplete types shall not be restrict-qualified." C++ also allows
314 // restrict-qualified references.
John McCall0953e762009-09-24 19:53:00 +0000315 if (TypeQuals & DeclSpec::TQ_restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000316 if (Result->isPointerType() || Result->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000317 QualType EltTy = Result->isPointerType() ?
Ted Kremenek6217b802009-07-29 21:53:49 +0000318 Result->getAs<PointerType>()->getPointeeType() :
319 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Douglas Gregorbad0e652009-03-24 20:32:41 +0000321 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000322 // incomplete type.
323 if (!EltTy->isIncompleteOrObjectType()) {
324 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000325 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000326 << EltTy << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000327 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000328 }
329 } else {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000330 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000331 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000332 << Result << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000333 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000334 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000335 }
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Chris Lattner96b77fc2008-04-02 06:50:17 +0000337 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
338 // of a function type includes any type qualifiers, the behavior is
339 // undefined."
340 if (Result->isFunctionType() && TypeQuals) {
341 // Get some location to point at, either the C or V location.
342 SourceLocation Loc;
John McCall0953e762009-09-24 19:53:00 +0000343 if (TypeQuals & DeclSpec::TQ_const)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000344 Loc = DS.getConstSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000345 else if (TypeQuals & DeclSpec::TQ_volatile)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000346 Loc = DS.getVolatileSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000347 else {
348 assert((TypeQuals & DeclSpec::TQ_restrict) &&
349 "Has CVR quals but not C, V, or R?");
350 Loc = DS.getRestrictSpecLoc();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000351 }
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000352 Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000353 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000354 }
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000356 // C++ [dcl.ref]p1:
357 // Cv-qualified references are ill-formed except when the
358 // cv-qualifiers are introduced through the use of a typedef
359 // (7.1.3) or of a template type argument (14.3), in which
360 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000361 // FIXME: Shouldn't we be checking SCS_typedef here?
362 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000363 TypeQuals && Result->isReferenceType()) {
John McCall0953e762009-09-24 19:53:00 +0000364 TypeQuals &= ~DeclSpec::TQ_const;
365 TypeQuals &= ~DeclSpec::TQ_volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000366 }
367
John McCall0953e762009-09-24 19:53:00 +0000368 Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
369 Result = Context.getQualifiedType(Result, Quals);
Chris Lattner96b77fc2008-04-02 06:50:17 +0000370 }
John McCall0953e762009-09-24 19:53:00 +0000371
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000372 return Result;
373}
374
Douglas Gregorcd281c32009-02-28 00:25:32 +0000375static std::string getPrintableNameForEntity(DeclarationName Entity) {
376 if (Entity)
377 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000378
Douglas Gregorcd281c32009-02-28 00:25:32 +0000379 return "type name";
380}
381
382/// \brief Build a pointer type.
383///
384/// \param T The type to which we'll be building a pointer.
385///
386/// \param Quals The cvr-qualifiers to be applied to the pointer type.
387///
388/// \param Loc The location of the entity whose type involves this
389/// pointer type or, if there is no such entity, the location of the
390/// type that will have pointer type.
391///
392/// \param Entity The name of the entity that involves the pointer
393/// type, if known.
394///
395/// \returns A suitable pointer type, if there are no
396/// errors. Otherwise, returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000397QualType Sema::BuildPointerType(QualType T, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000398 SourceLocation Loc, DeclarationName Entity) {
399 if (T->isReferenceType()) {
400 // C++ 8.3.2p4: There shall be no ... pointers to references ...
401 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
402 << getPrintableNameForEntity(Entity);
403 return QualType();
404 }
405
John McCall0953e762009-09-24 19:53:00 +0000406 Qualifiers Qs = Qualifiers::fromCVRMask(Quals);
407
Douglas Gregorcd281c32009-02-28 00:25:32 +0000408 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
409 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000410 if (Qs.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000411 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
412 << T;
John McCall0953e762009-09-24 19:53:00 +0000413 Qs.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000414 }
415
416 // Build the pointer type.
John McCall0953e762009-09-24 19:53:00 +0000417 return Context.getQualifiedType(Context.getPointerType(T), Qs);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000418}
419
420/// \brief Build a reference type.
421///
422/// \param T The type to which we'll be building a reference.
423///
John McCall0953e762009-09-24 19:53:00 +0000424/// \param CVR The cvr-qualifiers to be applied to the reference type.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000425///
426/// \param Loc The location of the entity whose type involves this
427/// reference type or, if there is no such entity, the location of the
428/// type that will have reference type.
429///
430/// \param Entity The name of the entity that involves the reference
431/// type, if known.
432///
433/// \returns A suitable reference type, if there are no
434/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000435QualType Sema::BuildReferenceType(QualType T, bool LValueRef, unsigned CVR,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000436 SourceLocation Loc, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000437 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000438 if (LValueRef) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000439 if (const RValueReferenceType *R = T->getAs<RValueReferenceType>()) {
Sebastian Redldfe292d2009-03-22 21:28:55 +0000440 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
441 // reference to a type T, and attempt to create the type "lvalue
442 // reference to cv TD" creates the type "lvalue reference to T".
443 // We use the qualifiers (restrict or none) of the original reference,
444 // not the new ones. This is consistent with GCC.
John McCall0953e762009-09-24 19:53:00 +0000445 QualType LVRT = Context.getLValueReferenceType(R->getPointeeType());
446 return Context.getQualifiedType(LVRT, T.getQualifiers());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000447 }
448 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000449 if (T->isReferenceType()) {
450 // C++ [dcl.ref]p4: There shall be no references to references.
Mike Stump1eb44332009-09-09 15:08:12 +0000451 //
Douglas Gregorcd281c32009-02-28 00:25:32 +0000452 // According to C++ DR 106, references to references are only
453 // diagnosed when they are written directly (e.g., "int & &"),
454 // but not when they happen via a typedef:
455 //
456 // typedef int& intref;
457 // typedef intref& intref2;
458 //
John McCall0953e762009-09-24 19:53:00 +0000459 // Parser::ParseDeclaratorInternal diagnoses the case where
Douglas Gregorcd281c32009-02-28 00:25:32 +0000460 // references are written directly; here, we handle the
461 // collapsing of references-to-references as described in C++
462 // DR 106 and amended by C++ DR 540.
463 return T;
464 }
465
466 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000467 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000468 // is ill-formed.
469 if (T->isVoidType()) {
470 Diag(Loc, diag::err_reference_to_void);
471 return QualType();
472 }
473
474 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
475 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000476 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000477 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
478 << T;
John McCall0953e762009-09-24 19:53:00 +0000479 Quals.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000480 }
481
482 // C++ [dcl.ref]p1:
483 // [...] Cv-qualified references are ill-formed except when the
484 // cv-qualifiers are introduced through the use of a typedef
485 // (7.1.3) or of a template type argument (14.3), in which case
486 // the cv-qualifiers are ignored.
487 //
488 // We diagnose extraneous cv-qualifiers for the non-typedef,
489 // non-template type argument case within the parser. Here, we just
490 // ignore any extraneous cv-qualifiers.
John McCall0953e762009-09-24 19:53:00 +0000491 Quals.removeConst();
492 Quals.removeVolatile();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000493
494 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000495 if (LValueRef)
John McCall0953e762009-09-24 19:53:00 +0000496 return Context.getQualifiedType(Context.getLValueReferenceType(T), Quals);
497 return Context.getQualifiedType(Context.getRValueReferenceType(T), Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000498}
499
500/// \brief Build an array type.
501///
502/// \param T The type of each element in the array.
503///
504/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000505///
506/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000507///
508/// \param Quals The cvr-qualifiers to be applied to the array's
509/// element type.
510///
511/// \param Loc The location of the entity whose type involves this
512/// array type or, if there is no such entity, the location of the
513/// type that will have array type.
514///
515/// \param Entity The name of the entity that involves the array
516/// type, if known.
517///
518/// \returns A suitable array type, if there are no errors. Otherwise,
519/// returns a NULL type.
520QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
521 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000522 SourceRange Brackets, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000523
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000524 SourceLocation Loc = Brackets.getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000525 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000526 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Mike Stump1eb44332009-09-09 15:08:12 +0000527 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000528 diag::err_illegal_decl_array_incomplete_type))
529 return QualType();
530
531 if (T->isFunctionType()) {
532 Diag(Loc, diag::err_illegal_decl_array_of_functions)
533 << getPrintableNameForEntity(Entity);
534 return QualType();
535 }
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Douglas Gregorcd281c32009-02-28 00:25:32 +0000537 // C++ 8.3.2p4: There shall be no ... arrays of references ...
538 if (T->isReferenceType()) {
539 Diag(Loc, diag::err_illegal_decl_array_of_references)
540 << getPrintableNameForEntity(Entity);
541 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000542 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000543
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000544 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000545 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000546 << getPrintableNameForEntity(Entity);
547 return QualType();
548 }
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Ted Kremenek6217b802009-07-29 21:53:49 +0000550 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000551 // If the element type is a struct or union that contains a variadic
552 // array, accept it as a GNU extension: C99 6.7.2.1p2.
553 if (EltTy->getDecl()->hasFlexibleArrayMember())
554 Diag(Loc, diag::ext_flexible_array_in_array) << T;
555 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000556 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
557 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000558 }
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Douglas Gregorcd281c32009-02-28 00:25:32 +0000560 // C99 6.7.5.2p1: The size expression shall have integer type.
561 if (ArraySize && !ArraySize->isTypeDependent() &&
562 !ArraySize->getType()->isIntegerType()) {
563 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
564 << ArraySize->getType() << ArraySize->getSourceRange();
565 ArraySize->Destroy(Context);
566 return QualType();
567 }
568 llvm::APSInt ConstVal(32);
569 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000570 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000571 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000572 else
573 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000574 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000575 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000576 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
577 (!T->isDependentType() && !T->isConstantSizeType())) {
578 // Per C99, a variable array is an array with either a non-constant
579 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000580 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000581 } else {
582 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
583 // have a value greater than zero.
584 if (ConstVal.isSigned()) {
585 if (ConstVal.isNegative()) {
586 Diag(ArraySize->getLocStart(),
587 diag::err_typecheck_negative_array_size)
588 << ArraySize->getSourceRange();
589 return QualType();
590 } else if (ConstVal == 0) {
591 // GCC accepts zero sized static arrays.
592 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
593 << ArraySize->getSourceRange();
594 }
Mike Stump1eb44332009-09-09 15:08:12 +0000595 }
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000596 T = Context.getConstantArrayWithExprType(T, ConstVal, ArraySize,
597 ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000598 }
599 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
600 if (!getLangOptions().C99) {
Mike Stump1eb44332009-09-09 15:08:12 +0000601 if (ArraySize && !ArraySize->isTypeDependent() &&
602 !ArraySize->isValueDependent() &&
Douglas Gregorcd281c32009-02-28 00:25:32 +0000603 !ArraySize->isIntegerConstantExpr(Context))
Douglas Gregor043cad22009-09-11 00:18:58 +0000604 Diag(Loc, getLangOptions().CPlusPlus? diag::err_vla_cxx : diag::ext_vla);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000605 else if (ASM != ArrayType::Normal || Quals != 0)
Douglas Gregor043cad22009-09-11 00:18:58 +0000606 Diag(Loc,
607 getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
608 : diag::ext_c99_array_usage);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000609 }
610
611 return T;
612}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000613
614/// \brief Build an ext-vector type.
615///
616/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000617QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000618 SourceLocation AttrLoc) {
619
620 Expr *Arg = (Expr *)ArraySize.get();
621
622 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
623 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000624 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000625 !T->isIntegerType() && !T->isRealFloatingType()) {
626 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
627 return QualType();
628 }
629
630 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
631 llvm::APSInt vecSize(32);
632 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
633 Diag(AttrLoc, diag::err_attribute_argument_not_int)
634 << "ext_vector_type" << Arg->getSourceRange();
635 return QualType();
636 }
Mike Stump1eb44332009-09-09 15:08:12 +0000637
638 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000639 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000640 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
641
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000642 if (vectorSize == 0) {
643 Diag(AttrLoc, diag::err_attribute_zero_size)
644 << Arg->getSourceRange();
645 return QualType();
646 }
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000648 if (!T->isDependentType())
649 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000650 }
651
652 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000653 AttrLoc);
654}
Mike Stump1eb44332009-09-09 15:08:12 +0000655
Douglas Gregor724651c2009-02-28 01:04:19 +0000656/// \brief Build a function type.
657///
658/// This routine checks the function type according to C++ rules and
659/// under the assumption that the result type and parameter types have
660/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000661/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000662/// simpler form that is only suitable for this narrow use case.
663///
664/// \param T The return type of the function.
665///
666/// \param ParamTypes The parameter types of the function. This array
667/// will be modified to account for adjustments to the types of the
668/// function parameters.
669///
670/// \param NumParamTypes The number of parameter types in ParamTypes.
671///
672/// \param Variadic Whether this is a variadic function type.
673///
674/// \param Quals The cvr-qualifiers to be applied to the function type.
675///
676/// \param Loc The location of the entity whose type involves this
677/// function type or, if there is no such entity, the location of the
678/// type that will have function type.
679///
680/// \param Entity The name of the entity that involves the function
681/// type, if known.
682///
683/// \returns A suitable function type, if there are no
684/// errors. Otherwise, returns a NULL type.
685QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000686 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000687 unsigned NumParamTypes,
688 bool Variadic, unsigned Quals,
689 SourceLocation Loc, DeclarationName Entity) {
690 if (T->isArrayType() || T->isFunctionType()) {
691 Diag(Loc, diag::err_func_returning_array_function) << T;
692 return QualType();
693 }
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Douglas Gregor724651c2009-02-28 01:04:19 +0000695 bool Invalid = false;
696 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000697 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
698 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000699 Diag(Loc, diag::err_param_with_void_type);
700 Invalid = true;
701 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000702
Anders Carlsson83913e32009-09-16 23:47:08 +0000703 ParamTypes[Idx] = adjustFunctionParamType(ParamType);
Douglas Gregor724651c2009-02-28 01:04:19 +0000704 }
705
706 if (Invalid)
707 return QualType();
708
Mike Stump1eb44332009-09-09 15:08:12 +0000709 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Douglas Gregor724651c2009-02-28 01:04:19 +0000710 Quals);
711}
Mike Stump1eb44332009-09-09 15:08:12 +0000712
Douglas Gregor949bf692009-06-09 22:17:39 +0000713/// \brief Build a member pointer type \c T Class::*.
714///
715/// \param T the type to which the member pointer refers.
716/// \param Class the class type into which the member pointer points.
John McCall0953e762009-09-24 19:53:00 +0000717/// \param CVR Qualifiers applied to the member pointer type
Douglas Gregor949bf692009-06-09 22:17:39 +0000718/// \param Loc the location where this type begins
719/// \param Entity the name of the entity that will have this member pointer type
720///
721/// \returns a member pointer type, if successful, or a NULL type if there was
722/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000723QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
John McCall0953e762009-09-24 19:53:00 +0000724 unsigned CVR, SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000725 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000726 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
727
Douglas Gregor949bf692009-06-09 22:17:39 +0000728 // Verify that we're not building a pointer to pointer to function with
729 // exception specification.
730 if (CheckDistantExceptionSpec(T)) {
731 Diag(Loc, diag::err_distant_exception_spec);
732
733 // FIXME: If we're doing this as part of template instantiation,
734 // we should return immediately.
735
736 // Build the type anyway, but use the canonical type so that the
737 // exception specifiers are stripped off.
738 T = Context.getCanonicalType(T);
739 }
740
741 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
742 // with reference type, or "cv void."
743 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000744 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000745 << (Entity? Entity.getAsString() : "type name");
746 return QualType();
747 }
748
749 if (T->isVoidType()) {
750 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
751 << (Entity? Entity.getAsString() : "type name");
752 return QualType();
753 }
754
755 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
756 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000757 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregor949bf692009-06-09 22:17:39 +0000758 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
759 << T;
760
761 // FIXME: If we're doing this as part of template instantiation,
762 // we should return immediately.
John McCall0953e762009-09-24 19:53:00 +0000763 Quals.removeRestrict();
Douglas Gregor949bf692009-06-09 22:17:39 +0000764 }
765
766 if (!Class->isDependentType() && !Class->isRecordType()) {
767 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
768 return QualType();
769 }
770
John McCall0953e762009-09-24 19:53:00 +0000771 return Context.getQualifiedType(
772 Context.getMemberPointerType(T, Class.getTypePtr()), Quals);
Douglas Gregor949bf692009-06-09 22:17:39 +0000773}
Mike Stump1eb44332009-09-09 15:08:12 +0000774
Anders Carlsson9a917e42009-06-12 22:56:54 +0000775/// \brief Build a block pointer type.
776///
777/// \param T The type to which we'll be building a block pointer.
778///
John McCall0953e762009-09-24 19:53:00 +0000779/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
Anders Carlsson9a917e42009-06-12 22:56:54 +0000780///
781/// \param Loc The location of the entity whose type involves this
782/// block pointer type or, if there is no such entity, the location of the
783/// type that will have block pointer type.
784///
785/// \param Entity The name of the entity that involves the block pointer
786/// type, if known.
787///
788/// \returns A suitable block pointer type, if there are no
789/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000790QualType Sema::BuildBlockPointerType(QualType T, unsigned CVR,
Mike Stump1eb44332009-09-09 15:08:12 +0000791 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000792 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000793 if (!T->isFunctionType()) {
Anders Carlsson9a917e42009-06-12 22:56:54 +0000794 Diag(Loc, diag::err_nonfunction_block_type);
795 return QualType();
796 }
Mike Stump1eb44332009-09-09 15:08:12 +0000797
John McCall0953e762009-09-24 19:53:00 +0000798 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
799 return Context.getQualifiedType(Context.getBlockPointerType(T), Quals);
Anders Carlsson9a917e42009-06-12 22:56:54 +0000800}
801
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000802QualType Sema::GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo) {
803 QualType QT = QualType::getFromOpaquePtr(Ty);
804 DeclaratorInfo *DI = 0;
805 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
806 QT = LIT->getType();
807 DI = LIT->getDeclaratorInfo();
808 }
Mike Stump1eb44332009-09-09 15:08:12 +0000809
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000810 if (DInfo) *DInfo = DI;
811 return QT;
812}
813
Mike Stump98eb8a72009-02-04 22:31:32 +0000814/// GetTypeForDeclarator - Convert the type for the specified
815/// declarator to Type instances. Skip the outermost Skip type
816/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000817///
818/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
819/// owns the declaration of a type (e.g., the definition of a struct
820/// type), then *OwnedDecl will receive the owned declaration.
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000821QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
822 DeclaratorInfo **DInfo, unsigned Skip,
Douglas Gregor402abb52009-05-28 23:31:59 +0000823 TagDecl **OwnedDecl) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000824 bool OmittedReturnType = false;
825
826 if (D.getContext() == Declarator::BlockLiteralContext
827 && Skip == 0
828 && !D.getDeclSpec().hasTypeSpecifier()
829 && (D.getNumTypeObjects() == 0
830 || (D.getNumTypeObjects() == 1
831 && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
832 OmittedReturnType = true;
833
Chris Lattnerb23deda2007-08-28 16:40:32 +0000834 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000835 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000836 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
837 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000838
839 // Determine the type of the declarator. Not all forms of declarator
840 // have a type.
841 QualType T;
842 switch (D.getKind()) {
843 case Declarator::DK_Abstract:
844 case Declarator::DK_Normal:
Mike Stump98eb8a72009-02-04 22:31:32 +0000845 case Declarator::DK_Operator: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000846 const DeclSpec &DS = D.getDeclSpec();
847 if (OmittedReturnType) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000848 // We default to a dependent type initially. Can be modified by
849 // the first return statement.
850 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000851 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000852 bool isInvalid = false;
853 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000854 if (isInvalid)
855 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000856 else if (OwnedDecl && DS.isTypeSpecOwned())
857 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000858 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000859 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000860 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000861
862 case Declarator::DK_Constructor:
863 case Declarator::DK_Destructor:
864 case Declarator::DK_Conversion:
865 // Constructors and destructors don't have return types. Use
866 // "void" instead. Conversion operators will check their return
867 // types separately.
868 T = Context.VoidTy;
869 break;
870 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000871
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000872 if (T == Context.UndeducedAutoTy) {
873 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000874
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000875 switch (D.getContext()) {
876 case Declarator::KNRTypeListContext:
877 assert(0 && "K&R type lists aren't allowed in C++");
878 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000879 case Declarator::PrototypeContext:
880 Error = 0; // Function prototype
881 break;
882 case Declarator::MemberContext:
883 switch (cast<TagDecl>(CurContext)->getTagKind()) {
884 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
885 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
886 case TagDecl::TK_union: Error = 2; /* Union member */ break;
887 case TagDecl::TK_class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +0000888 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000889 break;
890 case Declarator::CXXCatchContext:
891 Error = 4; // Exception declaration
892 break;
893 case Declarator::TemplateParamContext:
894 Error = 5; // Template parameter
895 break;
896 case Declarator::BlockLiteralContext:
897 Error = 6; // Block literal
898 break;
899 case Declarator::FileContext:
900 case Declarator::BlockContext:
901 case Declarator::ForContext:
902 case Declarator::ConditionContext:
903 case Declarator::TypeNameContext:
904 break;
905 }
906
907 if (Error != -1) {
908 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
909 << Error;
910 T = Context.IntTy;
911 D.setInvalidType(true);
912 }
913 }
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Douglas Gregorcd281c32009-02-28 00:25:32 +0000915 // The name we're declaring, if any.
916 DeclarationName Name;
917 if (D.getIdentifier())
918 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000920 bool ShouldBuildInfo = DInfo != 0;
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +0000921 // The QualType referring to the type as written in source code. We can't use
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000922 // T because it can change due to semantic analysis.
923 QualType SourceTy = T;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000924
Mike Stump98eb8a72009-02-04 22:31:32 +0000925 // Walk the DeclTypeInfo, building the recursive type as we go.
926 // DeclTypeInfos are ordered from the identifier out, which is
927 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000928 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
929 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 switch (DeclType.Kind) {
931 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000932 case DeclaratorChunk::BlockPointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000933 if (ShouldBuildInfo) {
934 if (SourceTy->isFunctionType())
John McCall0953e762009-09-24 19:53:00 +0000935 SourceTy
936 = Context.getQualifiedType(Context.getBlockPointerType(SourceTy),
937 Qualifiers::fromCVRMask(DeclType.Cls.TypeQuals));
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000938 else
939 // If not function type Context::getBlockPointerType asserts,
940 // so just give up.
941 ShouldBuildInfo = false;
942 }
943
Chris Lattner9af55002009-03-27 04:18:06 +0000944 // If blocks are disabled, emit an error.
945 if (!LangOpts.Blocks)
946 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +0000947
948 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
Anders Carlsson9a917e42009-06-12 22:56:54 +0000949 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000950 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000951 case DeclaratorChunk::Pointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000952 //FIXME: Use ObjCObjectPointer for info when appropriate.
953 if (ShouldBuildInfo)
John McCall0953e762009-09-24 19:53:00 +0000954 SourceTy = Context.getQualifiedType(Context.getPointerType(SourceTy),
955 Qualifiers::fromCVRMask(DeclType.Ptr.TypeQuals));
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000956 // Verify that we're not building a pointer to pointer to function with
957 // exception specification.
958 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
959 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
960 D.setInvalidType(true);
961 // Build the type anyway.
962 }
Steve Naroff14108da2009-07-10 23:34:53 +0000963 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
John McCall183700f2009-09-21 23:43:11 +0000964 const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>();
Steve Naroff14108da2009-07-10 23:34:53 +0000965 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000966 (ObjCProtocolDecl **)OIT->qual_begin(),
967 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000968 break;
969 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000970 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000971 break;
John McCall0953e762009-09-24 19:53:00 +0000972 case DeclaratorChunk::Reference: {
973 Qualifiers Quals;
974 if (DeclType.Ref.HasRestrict) Quals.addRestrict();
975
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000976 if (ShouldBuildInfo) {
977 if (DeclType.Ref.LValueRef)
978 SourceTy = Context.getLValueReferenceType(SourceTy);
979 else
980 SourceTy = Context.getRValueReferenceType(SourceTy);
John McCall0953e762009-09-24 19:53:00 +0000981 SourceTy = Context.getQualifiedType(SourceTy, Quals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000982 }
983
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000984 // Verify that we're not building a reference to pointer to function with
985 // exception specification.
986 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
987 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
988 D.setInvalidType(true);
989 // Build the type anyway.
990 }
John McCall0953e762009-09-24 19:53:00 +0000991 T = BuildReferenceType(T, DeclType.Ref.LValueRef, Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000992 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 break;
John McCall0953e762009-09-24 19:53:00 +0000994 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 case DeclaratorChunk::Array: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000996 if (ShouldBuildInfo)
997 // We just need to get an array type, the exact type doesn't matter.
998 SourceTy = Context.getIncompleteArrayType(SourceTy, ArrayType::Normal,
John McCall0953e762009-09-24 19:53:00 +0000999 DeclType.Arr.TypeQuals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001000
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001001 // Verify that we're not building an array of pointers to function with
1002 // exception specification.
1003 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1004 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1005 D.setInvalidType(true);
1006 // Build the type anyway.
1007 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001008 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +00001009 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001010 ArrayType::ArraySizeModifier ASM;
1011 if (ATI.isStar)
1012 ASM = ArrayType::Star;
1013 else if (ATI.hasStatic)
1014 ASM = ArrayType::Static;
1015 else
1016 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +00001017 if (ASM == ArrayType::Star &&
1018 D.getContext() != Declarator::PrototypeContext) {
1019 // FIXME: This check isn't quite right: it allows star in prototypes
1020 // for function definitions, and disallows some edge cases detailed
1021 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
1022 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1023 ASM = ArrayType::Normal;
1024 D.setInvalidType(true);
1025 }
John McCall0953e762009-09-24 19:53:00 +00001026 T = BuildArrayType(T, ASM, ArraySize,
1027 Qualifiers::fromCVRMask(ATI.TypeQuals),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001028 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001029 break;
1030 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001031 case DeclaratorChunk::Function: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001032 if (ShouldBuildInfo) {
1033 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1034 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001036 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1037 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
Anders Carlsson83913e32009-09-16 23:47:08 +00001038 if (Param) {
1039 QualType ArgTy = adjustFunctionParamType(Param->getType());
1040
1041 ArgTys.push_back(ArgTy);
1042 }
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001043 }
1044 SourceTy = Context.getFunctionType(SourceTy, ArgTys.data(),
1045 ArgTys.size(),
John McCall0953e762009-09-24 19:53:00 +00001046 FTI.isVariadic,
1047 FTI.TypeQuals);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001048 }
1049
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 // If the function declarator has a prototype (i.e. it is not () and
1051 // does not have a K&R-style identifier list), then the arguments are part
1052 // of the type, otherwise the argument list is ().
1053 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001054
Chris Lattnercd881292007-12-19 05:31:29 +00001055 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +00001056 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001057 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001058 T = Context.IntTy;
1059 D.setInvalidType(true);
1060 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001061
Douglas Gregor402abb52009-05-28 23:31:59 +00001062 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1063 // C++ [dcl.fct]p6:
1064 // Types shall not be defined in return or parameter types.
1065 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1066 if (Tag->isDefinition())
1067 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1068 << Context.getTypeDeclType(Tag);
1069 }
1070
Sebastian Redl3cc97262009-05-31 11:47:27 +00001071 // Exception specs are not allowed in typedefs. Complain, but add it
1072 // anyway.
1073 if (FTI.hasExceptionSpec &&
1074 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1075 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1076
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001077 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001078 if (getLangOptions().CPlusPlus) {
1079 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
1080 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +00001081 llvm::SmallVector<QualType, 4> Exceptions;
1082 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001083 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001084 // FIXME: Preserve type source info.
1085 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001086 // Check that the type is valid for an exception spec, and drop it
1087 // if not.
1088 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1089 Exceptions.push_back(ET);
1090 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001091 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1092 FTI.hasExceptionSpec,
1093 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001094 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001095 } else if (FTI.isVariadic) {
1096 // We allow a zero-parameter variadic function in C if the
1097 // function is marked with the "overloadable"
1098 // attribute. Scan for this attribute now.
1099 bool Overloadable = false;
1100 for (const AttributeList *Attrs = D.getAttributes();
1101 Attrs; Attrs = Attrs->getNext()) {
1102 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1103 Overloadable = true;
1104 break;
1105 }
1106 }
1107
1108 if (!Overloadable)
1109 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1110 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001111 } else {
1112 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001113 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001114 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001115 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001116 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Mike Stump1eb44332009-09-09 15:08:12 +00001117 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001118 } else {
1119 // Otherwise, we have a function with an argument list that is
1120 // potentially variadic.
1121 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Reid Spencer5f016e22007-07-11 17:01:13 +00001123 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001124 ParmVarDecl *Param =
1125 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001126 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001127 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001128
1129 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001130 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001131
Reid Spencer5f016e22007-07-11 17:01:13 +00001132 // Look for 'void'. void is allowed only as a single argument to a
1133 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001134 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001135 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001136 // If this is something like 'float(int, void)', reject it. 'void'
1137 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1138 // have arguments of incomplete type.
1139 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1140 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001141 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001142 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001143 } else if (FTI.ArgInfo[i].Ident) {
1144 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001145 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001146 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001147 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001148 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001149 } else {
1150 // Reject, but continue to parse 'float(const void)'.
John McCall0953e762009-09-24 19:53:00 +00001151 if (ArgTy.hasQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001152 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001153
Chris Lattner2ff54262007-07-21 05:18:12 +00001154 // Do not add 'void' to the ArgTys list.
1155 break;
1156 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001157 } else if (!FTI.hasPrototype) {
1158 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001159 ArgTy = Context.getPromotedIntegerType(ArgTy);
John McCall183700f2009-09-21 23:43:11 +00001160 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001161 if (BTy->getKind() == BuiltinType::Float)
1162 ArgTy = Context.DoubleTy;
1163 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001164 }
Mike Stump1eb44332009-09-09 15:08:12 +00001165
Anders Carlsson83913e32009-09-16 23:47:08 +00001166 ArgTys.push_back(adjustFunctionParamType(ArgTy));
Reid Spencer5f016e22007-07-11 17:01:13 +00001167 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001168
1169 llvm::SmallVector<QualType, 4> Exceptions;
1170 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001171 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001172 // FIXME: Preserve type source info.
1173 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001174 // Check that the type is valid for an exception spec, and drop it if
1175 // not.
1176 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1177 Exceptions.push_back(ET);
1178 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001179
Jay Foadbeaaccd2009-05-21 09:52:38 +00001180 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001181 FTI.isVariadic, FTI.TypeQuals,
1182 FTI.hasExceptionSpec,
1183 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001184 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001185 }
1186 break;
1187 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001188 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001189 // Verify that we're not building a pointer to pointer to function with
1190 // exception specification.
1191 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1192 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1193 D.setInvalidType(true);
1194 // Build the type anyway.
1195 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001196 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001197 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001198 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001199 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001200 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1201 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1202 ClsType = QualType(NNS->getAsType(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001203 } else if (CXXRecordDecl *RD
Douglas Gregor949bf692009-06-09 22:17:39 +00001204 = dyn_cast_or_null<CXXRecordDecl>(
1205 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001206 ClsType = Context.getTagDeclType(RD);
1207 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001208 Diag(DeclType.Mem.Scope().getBeginLoc(),
1209 diag::err_illegal_decl_mempointer_in_nonclass)
1210 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1211 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001212 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001213 }
1214
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001215 if (ShouldBuildInfo) {
1216 QualType cls = !ClsType.isNull() ? ClsType : Context.IntTy;
John McCall0953e762009-09-24 19:53:00 +00001217 SourceTy = Context.getQualifiedType(
1218 Context.getMemberPointerType(SourceTy, cls.getTypePtr()),
1219 Qualifiers::fromCVRMask(DeclType.Mem.TypeQuals));
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001220 }
1221
Douglas Gregor949bf692009-06-09 22:17:39 +00001222 if (!ClsType.isNull())
1223 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1224 DeclType.Loc, D.getIdentifier());
1225 if (T.isNull()) {
1226 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001227 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001228 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001229 break;
1230 }
1231
Douglas Gregorcd281c32009-02-28 00:25:32 +00001232 if (T.isNull()) {
1233 D.setInvalidType(true);
1234 T = Context.IntTy;
1235 }
1236
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001237 // See if there are any attributes on this declarator chunk.
1238 if (const AttributeList *AL = DeclType.getAttrs())
1239 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001240 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001241
1242 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
John McCall183700f2009-09-21 23:43:11 +00001243 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00001244 assert(FnTy && "Why oh why is there not a FunctionProtoType here ?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001245
1246 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1247 // for a nonstatic member function, the function type to which a pointer
1248 // to member refers, or the top-level function type of a function typedef
1249 // declaration.
1250 if (FnTy->getTypeQuals() != 0 &&
1251 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001252 ((D.getContext() != Declarator::MemberContext &&
1253 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001254 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1255 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001256 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001257 if (D.isFunctionDeclarator())
1258 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1259 else
1260 Diag(D.getIdentifierLoc(),
1261 diag::err_invalid_qualified_typedef_function_type_use);
1262
1263 // Strip the cv-quals from the type.
1264 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001265 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001266 }
1267 }
Mike Stump1eb44332009-09-09 15:08:12 +00001268
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001269 // If there were any type attributes applied to the decl itself (not the
1270 // type, apply the type attribute to the type!)
1271 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001272 ProcessTypeAttributeList(T, Attrs);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001273
1274 if (ShouldBuildInfo)
1275 *DInfo = GetDeclaratorInfoForDeclarator(D, SourceTy, Skip);
1276
Reid Spencer5f016e22007-07-11 17:01:13 +00001277 return T;
1278}
1279
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001280/// \brief Create and instantiate a DeclaratorInfo with type source information.
1281///
1282/// \param T QualType referring to the type as written in source code.
1283DeclaratorInfo *
1284Sema::GetDeclaratorInfoForDeclarator(Declarator &D, QualType T, unsigned Skip) {
1285 DeclaratorInfo *DInfo = Context.CreateDeclaratorInfo(T);
1286 TypeLoc CurrTL = DInfo->getTypeLoc();
1287
1288 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
1289 assert(!CurrTL.isNull());
1290
1291 DeclaratorChunk &DeclType = D.getTypeObject(i);
1292 switch (DeclType.Kind) {
1293 default: assert(0 && "Unknown decltype!");
1294 case DeclaratorChunk::BlockPointer: {
1295 BlockPointerLoc &BPL = cast<BlockPointerLoc>(CurrTL);
1296 BPL.setCaretLoc(DeclType.Loc);
1297 break;
1298 }
1299 case DeclaratorChunk::Pointer: {
1300 //FIXME: ObjCObject pointers.
1301 PointerLoc &PL = cast<PointerLoc>(CurrTL);
1302 PL.setStarLoc(DeclType.Loc);
1303 break;
1304 }
1305 case DeclaratorChunk::Reference: {
1306 ReferenceLoc &RL = cast<ReferenceLoc>(CurrTL);
1307 RL.setAmpLoc(DeclType.Loc);
1308 break;
1309 }
1310 case DeclaratorChunk::Array: {
1311 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
1312 ArrayLoc &AL = cast<ArrayLoc>(CurrTL);
1313 AL.setLBracketLoc(DeclType.Loc);
1314 AL.setRBracketLoc(DeclType.EndLoc);
1315 AL.setSizeExpr(static_cast<Expr*>(ATI.NumElts));
1316 //FIXME: Star location for [*].
1317 break;
1318 }
1319 case DeclaratorChunk::Function: {
1320 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1321 FunctionLoc &FL = cast<FunctionLoc>(CurrTL);
1322 FL.setLParenLoc(DeclType.Loc);
1323 FL.setRParenLoc(DeclType.EndLoc);
1324 for (unsigned i = 0, e = FTI.NumArgs, tpi = 0; i != e; ++i) {
1325 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
1326 if (Param) {
1327 assert(tpi < FL.getNumArgs());
1328 FL.setArg(tpi++, Param);
1329 }
1330 }
1331 break;
1332 //FIXME: Exception specs.
1333 }
1334 case DeclaratorChunk::MemberPointer: {
1335 MemberPointerLoc &MPL = cast<MemberPointerLoc>(CurrTL);
1336 MPL.setStarLoc(DeclType.Loc);
1337 //FIXME: Class location.
1338 break;
1339 }
Mike Stump1eb44332009-09-09 15:08:12 +00001340
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001341 }
1342
1343 CurrTL = CurrTL.getNextTypeLoc();
1344 }
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001346 if (TypedefLoc *TL = dyn_cast<TypedefLoc>(&CurrTL)) {
1347 TL->setNameLoc(D.getDeclSpec().getTypeSpecTypeLoc());
1348 } else {
1349 //FIXME: Other typespecs.
1350 DefaultTypeSpecLoc &DTL = cast<DefaultTypeSpecLoc>(CurrTL);
Argyrios Kyrtzidis31590f92009-08-29 22:39:34 +00001351 DTL.setStartLoc(D.getDeclSpec().getSourceRange().getBegin());
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001352 }
1353
1354 return DInfo;
1355}
1356
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001357/// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo.
1358QualType Sema::CreateLocInfoType(QualType T, DeclaratorInfo *DInfo) {
1359 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1360 // and Sema during declaration parsing. Try deallocating/caching them when
1361 // it's appropriate, instead of allocating them and keeping them around.
1362 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
1363 new (LocT) LocInfoType(T, DInfo);
1364 assert(LocT->getTypeClass() != T->getTypeClass() &&
1365 "LocInfoType's TypeClass conflicts with an existing Type class");
1366 return QualType(LocT, 0);
1367}
1368
1369void LocInfoType::getAsStringInternal(std::string &Str,
1370 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001371 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1372 " was used directly instead of getting the QualType through"
1373 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001374}
1375
Sebastian Redlef65f062009-05-29 18:02:33 +00001376/// CheckSpecifiedExceptionType - Check if the given type is valid in an
1377/// exception specification. Incomplete types, or pointers to incomplete types
1378/// other than void are not allowed.
1379bool Sema::CheckSpecifiedExceptionType(QualType T, const SourceRange &Range) {
1380 // FIXME: This may not correctly work with the fix for core issue 437,
1381 // where a class's own type is considered complete within its body.
1382
1383 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1384 // an incomplete type.
1385 if (T->isIncompleteType())
1386 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1387 << Range << T << /*direct*/0;
1388
1389 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1390 // an incomplete type a pointer or reference to an incomplete type, other
1391 // than (cv) void*.
Sebastian Redlef65f062009-05-29 18:02:33 +00001392 int kind;
Ted Kremenek6217b802009-07-29 21:53:49 +00001393 if (const PointerType* IT = T->getAs<PointerType>()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001394 T = IT->getPointeeType();
1395 kind = 1;
Ted Kremenek6217b802009-07-29 21:53:49 +00001396 } else if (const ReferenceType* IT = T->getAs<ReferenceType>()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001397 T = IT->getPointeeType();
Sebastian Redl3cc97262009-05-31 11:47:27 +00001398 kind = 2;
Sebastian Redlef65f062009-05-29 18:02:33 +00001399 } else
1400 return false;
1401
1402 if (T->isIncompleteType() && !T->isVoidType())
1403 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1404 << Range << T << /*indirect*/kind;
1405
1406 return false;
1407}
1408
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001409/// CheckDistantExceptionSpec - Check if the given type is a pointer or pointer
1410/// to member to a function with an exception specification. This means that
1411/// it is invalid to add another level of indirection.
1412bool Sema::CheckDistantExceptionSpec(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001413 if (const PointerType *PT = T->getAs<PointerType>())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001414 T = PT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001415 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001416 T = PT->getPointeeType();
1417 else
1418 return false;
1419
John McCall183700f2009-09-21 23:43:11 +00001420 const FunctionProtoType *FnT = T->getAs<FunctionProtoType>();
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001421 if (!FnT)
1422 return false;
1423
1424 return FnT->hasExceptionSpec();
1425}
1426
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001427/// CheckEquivalentExceptionSpec - Check if the two types have equivalent
1428/// exception specifications. Exception specifications are equivalent if
1429/// they allow exactly the same set of exception types. It does not matter how
1430/// that is achieved. See C++ [except.spec]p2.
1431bool Sema::CheckEquivalentExceptionSpec(
1432 const FunctionProtoType *Old, SourceLocation OldLoc,
1433 const FunctionProtoType *New, SourceLocation NewLoc) {
1434 bool OldAny = !Old->hasExceptionSpec() || Old->hasAnyExceptionSpec();
1435 bool NewAny = !New->hasExceptionSpec() || New->hasAnyExceptionSpec();
1436 if (OldAny && NewAny)
1437 return false;
1438 if (OldAny || NewAny) {
1439 Diag(NewLoc, diag::err_mismatched_exception_spec);
1440 Diag(OldLoc, diag::note_previous_declaration);
1441 return true;
1442 }
1443
1444 bool Success = true;
1445 // Both have a definite exception spec. Collect the first set, then compare
1446 // to the second.
1447 llvm::SmallPtrSet<const Type*, 8> Types;
1448 for (FunctionProtoType::exception_iterator I = Old->exception_begin(),
1449 E = Old->exception_end(); I != E; ++I)
1450 Types.insert(Context.getCanonicalType(*I).getTypePtr());
1451
1452 for (FunctionProtoType::exception_iterator I = New->exception_begin(),
1453 E = New->exception_end(); I != E && Success; ++I)
1454 Success = Types.erase(Context.getCanonicalType(*I).getTypePtr());
1455
1456 Success = Success && Types.empty();
1457
1458 if (Success) {
1459 return false;
1460 }
1461 Diag(NewLoc, diag::err_mismatched_exception_spec);
1462 Diag(OldLoc, diag::note_previous_declaration);
1463 return true;
1464}
1465
Sebastian Redl23c7d062009-07-07 20:29:57 +00001466/// CheckExceptionSpecSubset - Check whether the second function type's
1467/// exception specification is a subset (or equivalent) of the first function
1468/// type. This is used by override and pointer assignment checks.
1469bool Sema::CheckExceptionSpecSubset(unsigned DiagID, unsigned NoteID,
1470 const FunctionProtoType *Superset, SourceLocation SuperLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001471 const FunctionProtoType *Subset, SourceLocation SubLoc) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001472 // FIXME: As usual, we could be more specific in our error messages, but
1473 // that better waits until we've got types with source locations.
1474
1475 // If superset contains everything, we're done.
1476 if (!Superset->hasExceptionSpec() || Superset->hasAnyExceptionSpec())
1477 return false;
1478
1479 // It does not. If the subset contains everything, we've failed.
1480 if (!Subset->hasExceptionSpec() || Subset->hasAnyExceptionSpec()) {
1481 Diag(SubLoc, DiagID);
1482 Diag(SuperLoc, NoteID);
1483 return true;
1484 }
1485
1486 // Neither contains everything. Do a proper comparison.
1487 for (FunctionProtoType::exception_iterator SubI = Subset->exception_begin(),
1488 SubE = Subset->exception_end(); SubI != SubE; ++SubI) {
1489 // Take one type from the subset.
1490 QualType CanonicalSubT = Context.getCanonicalType(*SubI);
1491 bool SubIsPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +00001492 if (const ReferenceType *RefTy = CanonicalSubT->getAs<ReferenceType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001493 CanonicalSubT = RefTy->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001494 if (const PointerType *PtrTy = CanonicalSubT->getAs<PointerType>()) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001495 CanonicalSubT = PtrTy->getPointeeType();
1496 SubIsPointer = true;
1497 }
1498 bool SubIsClass = CanonicalSubT->isRecordType();
John McCall0953e762009-09-24 19:53:00 +00001499 CanonicalSubT = CanonicalSubT.getUnqualifiedType();
Sebastian Redl23c7d062009-07-07 20:29:57 +00001500
Sebastian Redl726212f2009-07-18 14:32:15 +00001501 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl23c7d062009-07-07 20:29:57 +00001502 /*DetectVirtual=*/false);
1503
1504 bool Contained = false;
1505 // Make sure it's in the superset.
1506 for (FunctionProtoType::exception_iterator SuperI =
1507 Superset->exception_begin(), SuperE = Superset->exception_end();
1508 SuperI != SuperE; ++SuperI) {
1509 QualType CanonicalSuperT = Context.getCanonicalType(*SuperI);
1510 // SubT must be SuperT or derived from it, or pointer or reference to
1511 // such types.
Ted Kremenek6217b802009-07-29 21:53:49 +00001512 if (const ReferenceType *RefTy = CanonicalSuperT->getAs<ReferenceType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001513 CanonicalSuperT = RefTy->getPointeeType();
1514 if (SubIsPointer) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001515 if (const PointerType *PtrTy = CanonicalSuperT->getAs<PointerType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001516 CanonicalSuperT = PtrTy->getPointeeType();
1517 else {
1518 continue;
1519 }
1520 }
John McCall0953e762009-09-24 19:53:00 +00001521 CanonicalSuperT = CanonicalSuperT.getUnqualifiedType();
Sebastian Redl23c7d062009-07-07 20:29:57 +00001522 // If the types are the same, move on to the next type in the subset.
1523 if (CanonicalSubT == CanonicalSuperT) {
1524 Contained = true;
1525 break;
1526 }
1527
1528 // Otherwise we need to check the inheritance.
1529 if (!SubIsClass || !CanonicalSuperT->isRecordType())
1530 continue;
1531
1532 Paths.clear();
1533 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths))
1534 continue;
1535
1536 if (Paths.isAmbiguous(CanonicalSuperT))
1537 continue;
1538
Sebastian Redl726212f2009-07-18 14:32:15 +00001539 if (FindInaccessibleBase(CanonicalSubT, CanonicalSuperT, Paths, true))
1540 continue;
Sebastian Redl23c7d062009-07-07 20:29:57 +00001541
1542 Contained = true;
1543 break;
1544 }
1545 if (!Contained) {
1546 Diag(SubLoc, DiagID);
1547 Diag(SuperLoc, NoteID);
1548 return true;
1549 }
1550 }
1551 // We've run the gauntlet.
1552 return false;
1553}
1554
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001555/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001556/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001557QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1558 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001559 QualType T = MDecl->getResultType();
1560 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001561
Fariborz Jahanian35600022007-11-09 17:18:29 +00001562 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001563 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001564 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001565 selfTy = Context.getPointerType(selfTy);
1566 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001567 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001568 ArgTys.push_back(Context.getObjCIdType());
1569 ArgTys.push_back(Context.getObjCSelType());
Mike Stump1eb44332009-09-09 15:08:12 +00001570
Chris Lattner89951a82009-02-20 18:43:26 +00001571 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1572 E = MDecl->param_end(); PI != E; ++PI) {
1573 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001574 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001575 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001576 ArgTys.push_back(ArgTy);
1577 }
1578 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001579 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001580 return T;
1581}
1582
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001583/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1584/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1585/// they point to and return true. If T1 and T2 aren't pointer types
1586/// or pointer-to-member types, or if they are not similar at this
1587/// level, returns false and leaves T1 and T2 unchanged. Top-level
1588/// qualifiers on T1 and T2 are ignored. This function will typically
1589/// be called in a loop that successively "unwraps" pointer and
1590/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001591bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001592 const PointerType *T1PtrType = T1->getAs<PointerType>(),
1593 *T2PtrType = T2->getAs<PointerType>();
Douglas Gregor57373262008-10-22 14:17:15 +00001594 if (T1PtrType && T2PtrType) {
1595 T1 = T1PtrType->getPointeeType();
1596 T2 = T2PtrType->getPointeeType();
1597 return true;
1598 }
1599
Ted Kremenek6217b802009-07-29 21:53:49 +00001600 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
1601 *T2MPType = T2->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001602 if (T1MPType && T2MPType &&
1603 Context.getCanonicalType(T1MPType->getClass()) ==
1604 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001605 T1 = T1MPType->getPointeeType();
1606 T2 = T2MPType->getPointeeType();
1607 return true;
1608 }
Douglas Gregor57373262008-10-22 14:17:15 +00001609 return false;
1610}
1611
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001612Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001613 // C99 6.7.6: Type names have no identifier. This is already validated by
1614 // the parser.
1615 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001616
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001617 DeclaratorInfo *DInfo = 0;
Douglas Gregor402abb52009-05-28 23:31:59 +00001618 TagDecl *OwnedTag = 0;
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001619 QualType T = GetTypeForDeclarator(D, S, &DInfo, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001620 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001621 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001622
Douglas Gregor402abb52009-05-28 23:31:59 +00001623 if (getLangOptions().CPlusPlus) {
1624 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001625 CheckExtraCXXDefaultArguments(D);
1626
Douglas Gregor402abb52009-05-28 23:31:59 +00001627 // C++0x [dcl.type]p3:
1628 // A type-specifier-seq shall not define a class or enumeration
1629 // unless it appears in the type-id of an alias-declaration
1630 // (7.1.3).
1631 if (OwnedTag && OwnedTag->isDefinition())
1632 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1633 << Context.getTypeDeclType(OwnedTag);
1634 }
1635
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001636 if (DInfo)
1637 T = CreateLocInfoType(T, DInfo);
1638
Reid Spencer5f016e22007-07-11 17:01:13 +00001639 return T.getAsOpaquePtr();
1640}
1641
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001642
1643
1644//===----------------------------------------------------------------------===//
1645// Type Attribute Processing
1646//===----------------------------------------------------------------------===//
1647
1648/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1649/// specified type. The attribute contains 1 argument, the id of the address
1650/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001651static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001652 const AttributeList &Attr, Sema &S){
John McCall0953e762009-09-24 19:53:00 +00001653
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001654 // If this type is already address space qualified, reject it.
1655 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1656 // for two or more different address spaces."
1657 if (Type.getAddressSpace()) {
1658 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1659 return;
1660 }
Mike Stump1eb44332009-09-09 15:08:12 +00001661
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001662 // Check the attribute arguments.
1663 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001664 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001665 return;
1666 }
1667 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1668 llvm::APSInt addrSpace(32);
1669 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001670 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1671 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001672 return;
1673 }
1674
John McCallefadb772009-07-28 06:52:18 +00001675 // Bounds checking.
1676 if (addrSpace.isSigned()) {
1677 if (addrSpace.isNegative()) {
1678 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1679 << ASArgExpr->getSourceRange();
1680 return;
1681 }
1682 addrSpace.setIsSigned(false);
1683 }
1684 llvm::APSInt max(addrSpace.getBitWidth());
John McCall0953e762009-09-24 19:53:00 +00001685 max = Qualifiers::MaxAddressSpace;
John McCallefadb772009-07-28 06:52:18 +00001686 if (addrSpace > max) {
1687 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
John McCall0953e762009-09-24 19:53:00 +00001688 << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
John McCallefadb772009-07-28 06:52:18 +00001689 return;
1690 }
1691
Mike Stump1eb44332009-09-09 15:08:12 +00001692 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001693 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001694}
1695
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001696/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1697/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001698static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001699 const AttributeList &Attr, Sema &S) {
John McCall0953e762009-09-24 19:53:00 +00001700 if (Type.getObjCGCAttr() != Qualifiers::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001701 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001702 return;
1703 }
Mike Stump1eb44332009-09-09 15:08:12 +00001704
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001705 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001706 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001707 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1708 << "objc_gc" << 1;
1709 return;
1710 }
John McCall0953e762009-09-24 19:53:00 +00001711 Qualifiers::GC GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001712 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001713 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1714 return;
1715 }
Mike Stump1eb44332009-09-09 15:08:12 +00001716 if (Attr.getParameterName()->isStr("weak"))
John McCall0953e762009-09-24 19:53:00 +00001717 GCAttr = Qualifiers::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001718 else if (Attr.getParameterName()->isStr("strong"))
John McCall0953e762009-09-24 19:53:00 +00001719 GCAttr = Qualifiers::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001720 else {
1721 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1722 << "objc_gc" << Attr.getParameterName();
1723 return;
1724 }
Mike Stump1eb44332009-09-09 15:08:12 +00001725
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001726 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001727}
1728
Mike Stump24556362009-07-25 21:26:53 +00001729/// HandleNoReturnTypeAttribute - Process the noreturn attribute on the
1730/// specified type. The attribute contains 0 arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001731static void HandleNoReturnTypeAttribute(QualType &Type,
Mike Stump24556362009-07-25 21:26:53 +00001732 const AttributeList &Attr, Sema &S) {
1733 if (Attr.getNumArgs() != 0)
1734 return;
1735
1736 // We only apply this to a pointer to function or a pointer to block.
1737 if (!Type->isFunctionPointerType()
1738 && !Type->isBlockPointerType()
1739 && !Type->isFunctionType())
1740 return;
1741
1742 Type = S.Context.getNoReturnType(Type);
1743}
1744
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001745void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001746 // Scan through and apply attributes to this type where it makes sense. Some
1747 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1748 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001749 // apply to the decl. Here we apply type attributes and ignore the rest.
1750 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001751 // If this is an attribute we can handle, do so now, otherwise, add it to
1752 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001753 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001754 default: break;
1755 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001756 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1757 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001758 case AttributeList::AT_objc_gc:
1759 HandleObjCGCTypeAttribute(Result, *AL, *this);
1760 break;
Mike Stump24556362009-07-25 21:26:53 +00001761 case AttributeList::AT_noreturn:
1762 HandleNoReturnTypeAttribute(Result, *AL, *this);
1763 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001764 }
Chris Lattner232e8822008-02-21 01:08:11 +00001765 }
Chris Lattner232e8822008-02-21 01:08:11 +00001766}
1767
Mike Stump1eb44332009-09-09 15:08:12 +00001768/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001769///
1770/// This routine checks whether the type @p T is complete in any
1771/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001772/// type, returns false. If @p T is a class template specialization,
1773/// this routine then attempts to perform class template
1774/// instantiation. If instantiation fails, or if @p T is incomplete
1775/// and cannot be completed, issues the diagnostic @p diag (giving it
1776/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001777///
1778/// @param Loc The location in the source that the incomplete type
1779/// diagnostic should refer to.
1780///
1781/// @param T The type that this routine is examining for completeness.
1782///
Mike Stump1eb44332009-09-09 15:08:12 +00001783/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00001784/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001785///
1786/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1787/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001788bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
1789 const PartialDiagnostic &PD) {
1790 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00001791
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001792 // FIXME: Add this assertion to help us flush out problems with
1793 // checking for dependent types and type-dependent expressions.
1794 //
Mike Stump1eb44332009-09-09 15:08:12 +00001795 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001796 // "Can't ask whether a dependent type is complete");
1797
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001798 // If we have a complete type, we're done.
1799 if (!T->isIncompleteType())
1800 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001801
Douglas Gregord475b8d2009-03-25 21:17:03 +00001802 // If we have a class template specialization or a class member of a
1803 // class template specialization, try to instantiate it.
Ted Kremenek6217b802009-07-29 21:53:49 +00001804 if (const RecordType *Record = T->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001805 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001806 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001807 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001808 if (Loc.isValid())
John McCall9cc78072009-09-11 07:25:08 +00001809 ClassTemplateSpec->setPointOfInstantiation(Loc);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001810 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001811 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001812 /*Complain=*/diag != 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001813 }
Mike Stump1eb44332009-09-09 15:08:12 +00001814 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001815 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1816 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregor357bbd02009-08-28 20:50:45 +00001817 // This record was instantiated from a class within a template.
Mike Stump1eb44332009-09-09 15:08:12 +00001818 return InstantiateClass(Loc, Rec, Pattern,
Douglas Gregor357bbd02009-08-28 20:50:45 +00001819 getTemplateInstantiationArgs(Rec),
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001820 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001821 /*Complain=*/diag != 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001822 }
1823 }
1824 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001825
Douglas Gregor5842ba92009-08-24 15:23:48 +00001826 if (diag == 0)
1827 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001828
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001829 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001830 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001831
1832 // If the type was a forward declaration of a class/struct/union
Mike Stump1eb44332009-09-09 15:08:12 +00001833 // type, produce
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001834 const TagType *Tag = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +00001835 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001836 Tag = Record;
John McCall183700f2009-09-21 23:43:11 +00001837 else if (const EnumType *Enum = T->getAs<EnumType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001838 Tag = Enum;
1839
1840 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00001841 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001842 Tag->isBeingDefined() ? diag::note_type_being_defined
1843 : diag::note_forward_declaration)
1844 << QualType(Tag, 0);
1845
1846 return true;
1847}
Douglas Gregore6258932009-03-19 00:39:20 +00001848
1849/// \brief Retrieve a version of the type 'T' that is qualified by the
1850/// nested-name-specifier contained in SS.
1851QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1852 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1853 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Douglas Gregorab452ba2009-03-26 23:50:42 +00001855 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001856 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001857 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001858}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001859
1860QualType Sema::BuildTypeofExprType(Expr *E) {
1861 return Context.getTypeOfExprType(E);
1862}
1863
1864QualType Sema::BuildDecltypeType(Expr *E) {
1865 if (E->getType() == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00001866 Diag(E->getLocStart(),
Anders Carlssonaf017e62009-06-29 22:58:55 +00001867 diag::err_cannot_determine_declared_type_of_overloaded_function);
1868 return QualType();
1869 }
1870 return Context.getDecltypeType(E);
1871}