blob: 35cfce2e1f1c49f375f84012bbcb92fd76747e8b [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Steve Naroff980e5082007-10-01 19:00:59 +000016#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000017#include "clang/AST/DeclTemplate.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/AST/Expr.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000019#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
Douglas Gregor2dc0e642009-03-23 23:06:20 +000022/// \brief Perform adjustment on the parameter type of a function.
23///
24/// This routine adjusts the given parameter type @p T to the actual
25/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
26/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
27QualType Sema::adjustParameterType(QualType T) {
28 // C99 6.7.5.3p7:
29 if (T->isArrayType()) {
30 // C99 6.7.5.3p7:
31 // A declaration of a parameter as "array of type" shall be
32 // adjusted to "qualified pointer to type", where the type
33 // qualifiers (if any) are those specified within the [ and ] of
34 // the array type derivation.
35 return Context.getArrayDecayedType(T);
36 } else if (T->isFunctionType())
37 // C99 6.7.5.3p8:
38 // A declaration of a parameter as "function returning type"
39 // shall be adjusted to "pointer to function returning type", as
40 // in 6.3.2.1.
41 return Context.getPointerType(T);
42
43 return T;
44}
45
Douglas Gregor930d8b52009-01-30 22:09:00 +000046/// \brief Convert the specified declspec to the appropriate type
47/// object.
48/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000049/// \param DeclLoc The location of the declarator identifier or invalid if none.
Chris Lattner5153ee62009-04-25 08:47:54 +000050/// \returns The type described by the declaration specifiers. This function
51/// never returns null.
Chris Lattner3f84ad22009-04-22 05:27:59 +000052QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS,
Chris Lattnereaaebc72009-04-25 08:06:05 +000053 SourceLocation DeclLoc,
54 bool &isInvalid) {
Reid Spencer5f016e22007-07-11 17:01:13 +000055 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
56 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000057 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +000058
59 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000060 case DeclSpec::TST_void:
61 Result = Context.VoidTy;
62 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000063 case DeclSpec::TST_char:
64 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000065 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000066 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000067 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000068 else {
69 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
70 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000071 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000072 }
Chris Lattner958858e2008-02-20 21:40:32 +000073 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000074 case DeclSpec::TST_wchar:
75 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
76 Result = Context.WCharTy;
77 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000078 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
79 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000080 Result = Context.getSignedWCharType();
81 } else {
82 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
83 "Unknown TSS value");
Chris Lattnerf3a41af2008-11-20 06:38:18 +000084 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
85 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000086 Result = Context.getUnsignedWCharType();
87 }
88 break;
Chris Lattnerd658b562008-04-05 06:32:51 +000089 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +000090 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +000091 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Chris Lattnerae4da612008-07-26 01:53:50 +000092 Result = Context.getObjCQualifiedIdType((ObjCProtocolDecl**)PQ,
Chris Lattner62f5f7f2008-07-26 00:46:50 +000093 DS.getNumProtocolQualifiers());
94 break;
95 }
96
Chris Lattnerd658b562008-04-05 06:32:51 +000097 // Unspecified typespec defaults to int in C90. However, the C90 grammar
98 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
99 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
100 // Note that the one exception to this is function definitions, which are
101 // allowed to be completely missing a declspec. This is handled in the
102 // parser already though by it pretending to have seen an 'int' in this
103 // case.
104 if (getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000105 // In C89 mode, we only warn if there is a completely missing declspec
106 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000107 if (DS.isEmpty()) {
108 if (DeclLoc.isInvalid())
109 DeclLoc = DS.getSourceRange().getBegin();
Eli Friedmanfcff5772009-06-03 12:22:01 +0000110 Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000111 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000112 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
113 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000114 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000115 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000116 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
117 // "At least one type specifier shall be given in the declaration
118 // specifiers in each declaration, and in the specifier-qualifier list in
119 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000120 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000121 if (DeclLoc.isInvalid())
122 DeclLoc = DS.getSourceRange().getBegin();
123
Chris Lattnerb78d8332009-06-26 04:45:06 +0000124 if (getLangOptions().CPlusPlus && !getLangOptions().Microsoft) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000125 Diag(DeclLoc, diag::err_missing_type_specifier)
126 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000127
128 // When this occurs in C++ code, often something is very broken with the
129 // value being declared, poison it as invalid so we don't get chains of
130 // errors.
131 isInvalid = true;
132 } else {
Eli Friedmanfcff5772009-06-03 12:22:01 +0000133 Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000134 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000135 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000136 }
137
138 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000139 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
141 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000142 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
143 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
144 case DeclSpec::TSW_long: Result = Context.LongTy; break;
145 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 }
147 } else {
148 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000149 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
150 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
151 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
152 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 }
154 }
Chris Lattner958858e2008-02-20 21:40:32 +0000155 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000156 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000157 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000158 case DeclSpec::TST_double:
159 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000160 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000161 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000162 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000163 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000164 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 case DeclSpec::TST_decimal32: // _Decimal32
166 case DeclSpec::TST_decimal64: // _Decimal64
167 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner8f12f652009-05-13 05:02:08 +0000168 Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
169 Result = Context.IntTy;
170 isInvalid = true;
171 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000172 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 case DeclSpec::TST_enum:
174 case DeclSpec::TST_union:
175 case DeclSpec::TST_struct: {
176 Decl *D = static_cast<Decl *>(DS.getTypeRep());
Chris Lattner99dc9142008-04-13 18:59:07 +0000177 assert(D && "Didn't get a decl for a class/enum/union/struct?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
179 DS.getTypeSpecSign() == 0 &&
180 "Can't handle qualifiers on typedef names yet!");
181 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000182 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
Chris Lattner5153ee62009-04-25 08:47:54 +0000183
184 if (D->isInvalidDecl())
185 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000186 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000188 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000189 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
190 DS.getTypeSpecSign() == 0 &&
191 "Can't handle qualifiers on typedef names yet!");
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000192 Result = QualType::getFromOpaquePtr(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000193
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000194 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Mike Stump390b4cc2009-05-16 07:39:55 +0000195 // FIXME: Adding a TST_objcInterface clause doesn't seem ideal, so we have
196 // this "hack" for now...
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000197 if (const ObjCInterfaceType *Interface = Result->getAsObjCInterfaceType())
198 Result = Context.getObjCQualifiedInterfaceType(Interface->getDecl(),
199 (ObjCProtocolDecl**)PQ,
200 DS.getNumProtocolQualifiers());
201 else if (Result == Context.getObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000202 // id<protocol-list>
203 Result = Context.getObjCQualifiedIdType((ObjCProtocolDecl**)PQ,
204 DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000205 else if (Result == Context.getObjCClassType()) {
206 if (DeclLoc.isInvalid())
207 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000208 // Class<protocol-list>
Chris Lattner3f84ad22009-04-22 05:27:59 +0000209 Diag(DeclLoc, diag::err_qualified_class_unsupported)
210 << DS.getSourceRange();
211 } else {
212 if (DeclLoc.isInvalid())
213 DeclLoc = DS.getSourceRange().getBegin();
214 Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
215 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000216 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000217 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000218 }
Chris Lattnereaaebc72009-04-25 08:06:05 +0000219
220 // If this is a reference to an invalid typedef, propagate the invalidity.
221 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
222 if (TDT->getDecl()->isInvalidDecl())
223 isInvalid = true;
224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000226 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000227 }
Chris Lattner958858e2008-02-20 21:40:32 +0000228 case DeclSpec::TST_typeofType:
229 Result = QualType::getFromOpaquePtr(DS.getTypeRep());
230 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000231 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000232 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000233 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000234 case DeclSpec::TST_typeofExpr: {
235 Expr *E = static_cast<Expr *>(DS.getTypeRep());
236 assert(E && "Didn't get an expression for typeof?");
237 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000238 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000239 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000240 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000241 case DeclSpec::TST_decltype: {
242 Expr *E = static_cast<Expr *>(DS.getTypeRep());
243 assert(E && "Didn't get an expression for decltype?");
244 // TypeQuals handled by caller.
Anders Carlsson60a9a2a2009-06-24 21:24:56 +0000245 Result = Context.getDecltypeType(E);
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000246 break;
247 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000248 case DeclSpec::TST_auto: {
249 // TypeQuals handled by caller.
250 Result = Context.UndeducedAutoTy;
251 break;
252 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000253
Douglas Gregor809070a2009-02-18 17:45:20 +0000254 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000255 Result = Context.IntTy;
256 isInvalid = true;
257 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000258 }
Chris Lattner958858e2008-02-20 21:40:32 +0000259
260 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000261 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
262 if (getLangOptions().Freestanding)
263 Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000264 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000265 }
Chris Lattner958858e2008-02-20 21:40:32 +0000266
267 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
268 "FIXME: imaginary types not supported yet!");
269
Chris Lattner38d8b982008-02-20 22:04:11 +0000270 // See if there are any attributes on the declspec that apply to the type (as
271 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000272 if (const AttributeList *AL = DS.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +0000273 ProcessTypeAttributeList(Result, AL);
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000274
Chris Lattner96b77fc2008-04-02 06:50:17 +0000275 // Apply const/volatile/restrict qualifiers to T.
276 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
277
278 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
279 // or incomplete types shall not be restrict-qualified." C++ also allows
280 // restrict-qualified references.
281 if (TypeQuals & QualType::Restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000282 if (Result->isPointerType() || Result->isReferenceType()) {
283 QualType EltTy = Result->isPointerType() ?
284 Result->getAsPointerType()->getPointeeType() :
285 Result->getAsReferenceType()->getPointeeType();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000286
Douglas Gregorbad0e652009-03-24 20:32:41 +0000287 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000288 // incomplete type.
289 if (!EltTy->isIncompleteOrObjectType()) {
290 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000291 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000292 << EltTy << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000293 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
294 }
295 } else {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000296 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000297 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000298 << Result << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000299 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000300 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000301 }
302
303 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
304 // of a function type includes any type qualifiers, the behavior is
305 // undefined."
306 if (Result->isFunctionType() && TypeQuals) {
307 // Get some location to point at, either the C or V location.
308 SourceLocation Loc;
309 if (TypeQuals & QualType::Const)
310 Loc = DS.getConstSpecLoc();
311 else {
312 assert((TypeQuals & QualType::Volatile) &&
313 "Has CV quals but not C or V?");
314 Loc = DS.getVolatileSpecLoc();
315 }
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000316 Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000317 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000318 }
319
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000320 // C++ [dcl.ref]p1:
321 // Cv-qualified references are ill-formed except when the
322 // cv-qualifiers are introduced through the use of a typedef
323 // (7.1.3) or of a template type argument (14.3), in which
324 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000325 // FIXME: Shouldn't we be checking SCS_typedef here?
326 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000327 TypeQuals && Result->isReferenceType()) {
328 TypeQuals &= ~QualType::Const;
329 TypeQuals &= ~QualType::Volatile;
330 }
331
Chris Lattner96b77fc2008-04-02 06:50:17 +0000332 Result = Result.getQualifiedType(TypeQuals);
333 }
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000334 return Result;
335}
336
Douglas Gregorcd281c32009-02-28 00:25:32 +0000337static std::string getPrintableNameForEntity(DeclarationName Entity) {
338 if (Entity)
339 return Entity.getAsString();
340
341 return "type name";
342}
343
344/// \brief Build a pointer type.
345///
346/// \param T The type to which we'll be building a pointer.
347///
348/// \param Quals The cvr-qualifiers to be applied to the pointer type.
349///
350/// \param Loc The location of the entity whose type involves this
351/// pointer type or, if there is no such entity, the location of the
352/// type that will have pointer type.
353///
354/// \param Entity The name of the entity that involves the pointer
355/// type, if known.
356///
357/// \returns A suitable pointer type, if there are no
358/// errors. Otherwise, returns a NULL type.
359QualType Sema::BuildPointerType(QualType T, unsigned Quals,
360 SourceLocation Loc, DeclarationName Entity) {
361 if (T->isReferenceType()) {
362 // C++ 8.3.2p4: There shall be no ... pointers to references ...
363 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
364 << getPrintableNameForEntity(Entity);
365 return QualType();
366 }
367
368 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
369 // object or incomplete types shall not be restrict-qualified."
370 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
371 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
372 << T;
373 Quals &= ~QualType::Restrict;
374 }
375
376 // Build the pointer type.
377 return Context.getPointerType(T).getQualifiedType(Quals);
378}
379
380/// \brief Build a reference type.
381///
382/// \param T The type to which we'll be building a reference.
383///
384/// \param Quals The cvr-qualifiers to be applied to the reference type.
385///
386/// \param Loc The location of the entity whose type involves this
387/// reference type or, if there is no such entity, the location of the
388/// type that will have reference type.
389///
390/// \param Entity The name of the entity that involves the reference
391/// type, if known.
392///
393/// \returns A suitable reference type, if there are no
394/// errors. Otherwise, returns a NULL type.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000395QualType Sema::BuildReferenceType(QualType T, bool LValueRef, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000396 SourceLocation Loc, DeclarationName Entity) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000397 if (LValueRef) {
398 if (const RValueReferenceType *R = T->getAsRValueReferenceType()) {
Sebastian Redldfe292d2009-03-22 21:28:55 +0000399 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
400 // reference to a type T, and attempt to create the type "lvalue
401 // reference to cv TD" creates the type "lvalue reference to T".
402 // We use the qualifiers (restrict or none) of the original reference,
403 // not the new ones. This is consistent with GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000404 return Context.getLValueReferenceType(R->getPointeeType()).
Sebastian Redldfe292d2009-03-22 21:28:55 +0000405 getQualifiedType(T.getCVRQualifiers());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000406 }
407 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000408 if (T->isReferenceType()) {
409 // C++ [dcl.ref]p4: There shall be no references to references.
410 //
411 // According to C++ DR 106, references to references are only
412 // diagnosed when they are written directly (e.g., "int & &"),
413 // but not when they happen via a typedef:
414 //
415 // typedef int& intref;
416 // typedef intref& intref2;
417 //
418 // Parser::ParserDeclaratorInternal diagnoses the case where
419 // references are written directly; here, we handle the
420 // collapsing of references-to-references as described in C++
421 // DR 106 and amended by C++ DR 540.
422 return T;
423 }
424
425 // C++ [dcl.ref]p1:
426 // A declarator that specifies the type “reference to cv void”
427 // is ill-formed.
428 if (T->isVoidType()) {
429 Diag(Loc, diag::err_reference_to_void);
430 return QualType();
431 }
432
433 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
434 // object or incomplete types shall not be restrict-qualified."
435 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
436 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
437 << T;
438 Quals &= ~QualType::Restrict;
439 }
440
441 // C++ [dcl.ref]p1:
442 // [...] Cv-qualified references are ill-formed except when the
443 // cv-qualifiers are introduced through the use of a typedef
444 // (7.1.3) or of a template type argument (14.3), in which case
445 // the cv-qualifiers are ignored.
446 //
447 // We diagnose extraneous cv-qualifiers for the non-typedef,
448 // non-template type argument case within the parser. Here, we just
449 // ignore any extraneous cv-qualifiers.
450 Quals &= ~QualType::Const;
451 Quals &= ~QualType::Volatile;
452
453 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000454 if (LValueRef)
455 return Context.getLValueReferenceType(T).getQualifiedType(Quals);
456 return Context.getRValueReferenceType(T).getQualifiedType(Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000457}
458
459/// \brief Build an array type.
460///
461/// \param T The type of each element in the array.
462///
463/// \param ASM C99 array size modifier (e.g., '*', 'static').
464///
465/// \param ArraySize Expression describing the size of the array.
466///
467/// \param Quals The cvr-qualifiers to be applied to the array's
468/// element type.
469///
470/// \param Loc The location of the entity whose type involves this
471/// array type or, if there is no such entity, the location of the
472/// type that will have array type.
473///
474/// \param Entity The name of the entity that involves the array
475/// type, if known.
476///
477/// \returns A suitable array type, if there are no errors. Otherwise,
478/// returns a NULL type.
479QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
480 Expr *ArraySize, unsigned Quals,
481 SourceLocation Loc, DeclarationName Entity) {
482 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
483 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Douglas Gregor86447ec2009-03-09 16:13:40 +0000484 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000485 diag::err_illegal_decl_array_incomplete_type))
486 return QualType();
487
488 if (T->isFunctionType()) {
489 Diag(Loc, diag::err_illegal_decl_array_of_functions)
490 << getPrintableNameForEntity(Entity);
491 return QualType();
492 }
493
494 // C++ 8.3.2p4: There shall be no ... arrays of references ...
495 if (T->isReferenceType()) {
496 Diag(Loc, diag::err_illegal_decl_array_of_references)
497 << getPrintableNameForEntity(Entity);
498 return QualType();
499 }
500
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000501 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
502 Diag(Loc, diag::err_illegal_decl_array_of_auto)
503 << getPrintableNameForEntity(Entity);
504 return QualType();
505 }
506
Douglas Gregorcd281c32009-02-28 00:25:32 +0000507 if (const RecordType *EltTy = T->getAsRecordType()) {
508 // If the element type is a struct or union that contains a variadic
509 // array, accept it as a GNU extension: C99 6.7.2.1p2.
510 if (EltTy->getDecl()->hasFlexibleArrayMember())
511 Diag(Loc, diag::ext_flexible_array_in_array) << T;
512 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000513 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
514 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000515 }
516
517 // C99 6.7.5.2p1: The size expression shall have integer type.
518 if (ArraySize && !ArraySize->isTypeDependent() &&
519 !ArraySize->getType()->isIntegerType()) {
520 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
521 << ArraySize->getType() << ArraySize->getSourceRange();
522 ArraySize->Destroy(Context);
523 return QualType();
524 }
525 llvm::APSInt ConstVal(32);
526 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000527 if (ASM == ArrayType::Star)
528 T = Context.getVariableArrayType(T, 0, ASM, Quals);
529 else
530 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000531 } else if (ArraySize->isValueDependent()) {
532 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals);
533 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
534 (!T->isDependentType() && !T->isConstantSizeType())) {
535 // Per C99, a variable array is an array with either a non-constant
536 // size or an element type that has a non-constant-size
537 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals);
538 } else {
539 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
540 // have a value greater than zero.
541 if (ConstVal.isSigned()) {
542 if (ConstVal.isNegative()) {
543 Diag(ArraySize->getLocStart(),
544 diag::err_typecheck_negative_array_size)
545 << ArraySize->getSourceRange();
546 return QualType();
547 } else if (ConstVal == 0) {
548 // GCC accepts zero sized static arrays.
549 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
550 << ArraySize->getSourceRange();
551 }
552 }
553 T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
554 }
555 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
556 if (!getLangOptions().C99) {
557 if (ArraySize && !ArraySize->isTypeDependent() &&
558 !ArraySize->isValueDependent() &&
559 !ArraySize->isIntegerConstantExpr(Context))
560 Diag(Loc, diag::ext_vla);
561 else if (ASM != ArrayType::Normal || Quals != 0)
562 Diag(Loc, diag::ext_c99_array_usage);
563 }
564
565 return T;
566}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000567
568/// \brief Build an ext-vector type.
569///
570/// Run the required checks for the extended vector type.
571QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
572 SourceLocation AttrLoc) {
573
574 Expr *Arg = (Expr *)ArraySize.get();
575
576 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
577 // in conjunction with complex types (pointers, arrays, functions, etc.).
578 if (!T->isDependentType() &&
579 !T->isIntegerType() && !T->isRealFloatingType()) {
580 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
581 return QualType();
582 }
583
584 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
585 llvm::APSInt vecSize(32);
586 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
587 Diag(AttrLoc, diag::err_attribute_argument_not_int)
588 << "ext_vector_type" << Arg->getSourceRange();
589 return QualType();
590 }
591
592 // unlike gcc's vector_size attribute, the size is specified as the
593 // number of elements, not the number of bytes.
594 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
595
596 if (vectorSize == 0) {
597 Diag(AttrLoc, diag::err_attribute_zero_size)
598 << Arg->getSourceRange();
599 return QualType();
600 }
601
602 if (!T->isDependentType())
603 return Context.getExtVectorType(T, vectorSize);
604 }
605
606 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
607 AttrLoc);
608}
Douglas Gregorcd281c32009-02-28 00:25:32 +0000609
Douglas Gregor724651c2009-02-28 01:04:19 +0000610/// \brief Build a function type.
611///
612/// This routine checks the function type according to C++ rules and
613/// under the assumption that the result type and parameter types have
614/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000615/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000616/// simpler form that is only suitable for this narrow use case.
617///
618/// \param T The return type of the function.
619///
620/// \param ParamTypes The parameter types of the function. This array
621/// will be modified to account for adjustments to the types of the
622/// function parameters.
623///
624/// \param NumParamTypes The number of parameter types in ParamTypes.
625///
626/// \param Variadic Whether this is a variadic function type.
627///
628/// \param Quals The cvr-qualifiers to be applied to the function type.
629///
630/// \param Loc The location of the entity whose type involves this
631/// function type or, if there is no such entity, the location of the
632/// type that will have function type.
633///
634/// \param Entity The name of the entity that involves the function
635/// type, if known.
636///
637/// \returns A suitable function type, if there are no
638/// errors. Otherwise, returns a NULL type.
639QualType Sema::BuildFunctionType(QualType T,
640 QualType *ParamTypes,
641 unsigned NumParamTypes,
642 bool Variadic, unsigned Quals,
643 SourceLocation Loc, DeclarationName Entity) {
644 if (T->isArrayType() || T->isFunctionType()) {
645 Diag(Loc, diag::err_func_returning_array_function) << T;
646 return QualType();
647 }
648
649 bool Invalid = false;
650 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000651 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
652 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000653 Diag(Loc, diag::err_param_with_void_type);
654 Invalid = true;
655 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000656
Douglas Gregor724651c2009-02-28 01:04:19 +0000657 ParamTypes[Idx] = ParamType;
658 }
659
660 if (Invalid)
661 return QualType();
662
663 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
664 Quals);
665}
Douglas Gregor949bf692009-06-09 22:17:39 +0000666
667/// \brief Build a member pointer type \c T Class::*.
668///
669/// \param T the type to which the member pointer refers.
670/// \param Class the class type into which the member pointer points.
671/// \param Quals Qualifiers applied to the member pointer type
672/// \param Loc the location where this type begins
673/// \param Entity the name of the entity that will have this member pointer type
674///
675/// \returns a member pointer type, if successful, or a NULL type if there was
676/// an error.
677QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
678 unsigned Quals, SourceLocation Loc,
679 DeclarationName Entity) {
680 // Verify that we're not building a pointer to pointer to function with
681 // exception specification.
682 if (CheckDistantExceptionSpec(T)) {
683 Diag(Loc, diag::err_distant_exception_spec);
684
685 // FIXME: If we're doing this as part of template instantiation,
686 // we should return immediately.
687
688 // Build the type anyway, but use the canonical type so that the
689 // exception specifiers are stripped off.
690 T = Context.getCanonicalType(T);
691 }
692
693 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
694 // with reference type, or "cv void."
695 if (T->isReferenceType()) {
696 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
697 << (Entity? Entity.getAsString() : "type name");
698 return QualType();
699 }
700
701 if (T->isVoidType()) {
702 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
703 << (Entity? Entity.getAsString() : "type name");
704 return QualType();
705 }
706
707 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
708 // object or incomplete types shall not be restrict-qualified."
709 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
710 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
711 << T;
712
713 // FIXME: If we're doing this as part of template instantiation,
714 // we should return immediately.
715 Quals &= ~QualType::Restrict;
716 }
717
718 if (!Class->isDependentType() && !Class->isRecordType()) {
719 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
720 return QualType();
721 }
722
723 return Context.getMemberPointerType(T, Class.getTypePtr())
724 .getQualifiedType(Quals);
725}
Anders Carlsson9a917e42009-06-12 22:56:54 +0000726
727/// \brief Build a block pointer type.
728///
729/// \param T The type to which we'll be building a block pointer.
730///
731/// \param Quals The cvr-qualifiers to be applied to the block pointer type.
732///
733/// \param Loc The location of the entity whose type involves this
734/// block pointer type or, if there is no such entity, the location of the
735/// type that will have block pointer type.
736///
737/// \param Entity The name of the entity that involves the block pointer
738/// type, if known.
739///
740/// \returns A suitable block pointer type, if there are no
741/// errors. Otherwise, returns a NULL type.
742QualType Sema::BuildBlockPointerType(QualType T, unsigned Quals,
743 SourceLocation Loc,
744 DeclarationName Entity) {
745 if (!T.getTypePtr()->isFunctionType()) {
746 Diag(Loc, diag::err_nonfunction_block_type);
747 return QualType();
748 }
749
750 return Context.getBlockPointerType(T).getQualifiedType(Quals);
751}
752
Mike Stump98eb8a72009-02-04 22:31:32 +0000753/// GetTypeForDeclarator - Convert the type for the specified
754/// declarator to Type instances. Skip the outermost Skip type
755/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000756///
757/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
758/// owns the declaration of a type (e.g., the definition of a struct
759/// type), then *OwnedDecl will receive the owned declaration.
760QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S, unsigned Skip,
761 TagDecl **OwnedDecl) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000762 bool OmittedReturnType = false;
763
764 if (D.getContext() == Declarator::BlockLiteralContext
765 && Skip == 0
766 && !D.getDeclSpec().hasTypeSpecifier()
767 && (D.getNumTypeObjects() == 0
768 || (D.getNumTypeObjects() == 1
769 && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
770 OmittedReturnType = true;
771
Chris Lattnerb23deda2007-08-28 16:40:32 +0000772 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000773 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000774 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
775 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000776
777 // Determine the type of the declarator. Not all forms of declarator
778 // have a type.
779 QualType T;
780 switch (D.getKind()) {
781 case Declarator::DK_Abstract:
782 case Declarator::DK_Normal:
Mike Stump98eb8a72009-02-04 22:31:32 +0000783 case Declarator::DK_Operator: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000784 const DeclSpec &DS = D.getDeclSpec();
785 if (OmittedReturnType) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000786 // We default to a dependent type initially. Can be modified by
787 // the first return statement.
788 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000789 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000790 bool isInvalid = false;
791 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000792 if (isInvalid)
793 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000794 else if (OwnedDecl && DS.isTypeSpecOwned())
795 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000796 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000797 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000798 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000799
800 case Declarator::DK_Constructor:
801 case Declarator::DK_Destructor:
802 case Declarator::DK_Conversion:
803 // Constructors and destructors don't have return types. Use
804 // "void" instead. Conversion operators will check their return
805 // types separately.
806 T = Context.VoidTy;
807 break;
808 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000809
Douglas Gregorcd281c32009-02-28 00:25:32 +0000810 // The name we're declaring, if any.
811 DeclarationName Name;
812 if (D.getIdentifier())
813 Name = D.getIdentifier();
814
Mike Stump98eb8a72009-02-04 22:31:32 +0000815 // Walk the DeclTypeInfo, building the recursive type as we go.
816 // DeclTypeInfos are ordered from the identifier out, which is
817 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000818 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
819 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 switch (DeclType.Kind) {
821 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000822 case DeclaratorChunk::BlockPointer:
Chris Lattner9af55002009-03-27 04:18:06 +0000823 // If blocks are disabled, emit an error.
824 if (!LangOpts.Blocks)
825 Diag(DeclType.Loc, diag::err_blocks_disable);
826
Anders Carlsson9a917e42009-06-12 22:56:54 +0000827 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
828 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000829 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 case DeclaratorChunk::Pointer:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000831 // Verify that we're not building a pointer to pointer to function with
832 // exception specification.
833 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
834 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
835 D.setInvalidType(true);
836 // Build the type anyway.
837 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000838 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 break;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000840 case DeclaratorChunk::Reference:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000841 // Verify that we're not building a reference to pointer to function with
842 // exception specification.
843 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
844 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
845 D.setInvalidType(true);
846 // Build the type anyway.
847 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000848 T = BuildReferenceType(T, DeclType.Ref.LValueRef,
849 DeclType.Ref.HasRestrict ? QualType::Restrict : 0,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000850 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000851 break;
852 case DeclaratorChunk::Array: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000853 // Verify that we're not building an array of pointers to function with
854 // exception specification.
855 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
856 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
857 D.setInvalidType(true);
858 // Build the type anyway.
859 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +0000860 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000861 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 ArrayType::ArraySizeModifier ASM;
863 if (ATI.isStar)
864 ASM = ArrayType::Star;
865 else if (ATI.hasStatic)
866 ASM = ArrayType::Static;
867 else
868 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000869 if (ASM == ArrayType::Star &&
870 D.getContext() != Declarator::PrototypeContext) {
871 // FIXME: This check isn't quite right: it allows star in prototypes
872 // for function definitions, and disallows some edge cases detailed
873 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
874 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
875 ASM = ArrayType::Normal;
876 D.setInvalidType(true);
877 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000878 T = BuildArrayType(T, ASM, ArraySize, ATI.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000879 break;
880 }
Sebastian Redlf30208a2009-01-24 21:16:55 +0000881 case DeclaratorChunk::Function: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000882 // If the function declarator has a prototype (i.e. it is not () and
883 // does not have a K&R-style identifier list), then the arguments are part
884 // of the type, otherwise the argument list is ().
885 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +0000886
Chris Lattnercd881292007-12-19 05:31:29 +0000887 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +0000888 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000889 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +0000890 T = Context.IntTy;
891 D.setInvalidType(true);
892 }
Sebastian Redl465226e2009-05-27 22:11:52 +0000893
Douglas Gregor402abb52009-05-28 23:31:59 +0000894 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
895 // C++ [dcl.fct]p6:
896 // Types shall not be defined in return or parameter types.
897 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
898 if (Tag->isDefinition())
899 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
900 << Context.getTypeDeclType(Tag);
901 }
902
Sebastian Redl3cc97262009-05-31 11:47:27 +0000903 // Exception specs are not allowed in typedefs. Complain, but add it
904 // anyway.
905 if (FTI.hasExceptionSpec &&
906 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
907 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
908
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000909 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +0000910 if (getLangOptions().CPlusPlus) {
911 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
912 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +0000913 llvm::SmallVector<QualType, 4> Exceptions;
914 Exceptions.reserve(FTI.NumExceptions);
Sebastian Redlef65f062009-05-29 18:02:33 +0000915 for(unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
916 QualType ET = QualType::getFromOpaquePtr(FTI.Exceptions[ei].Ty);
917 // Check that the type is valid for an exception spec, and drop it
918 // if not.
919 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
920 Exceptions.push_back(ET);
921 }
Sebastian Redl465226e2009-05-27 22:11:52 +0000922 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
923 FTI.hasExceptionSpec,
924 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +0000925 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +0000926 } else if (FTI.isVariadic) {
927 // We allow a zero-parameter variadic function in C if the
928 // function is marked with the "overloadable"
929 // attribute. Scan for this attribute now.
930 bool Overloadable = false;
931 for (const AttributeList *Attrs = D.getAttributes();
932 Attrs; Attrs = Attrs->getNext()) {
933 if (Attrs->getKind() == AttributeList::AT_overloadable) {
934 Overloadable = true;
935 break;
936 }
937 }
938
939 if (!Overloadable)
940 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
941 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +0000942 } else {
943 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +0000944 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +0000945 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000946 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000947 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000948 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
Reid Spencer5f016e22007-07-11 17:01:13 +0000949 } else {
950 // Otherwise, we have a function with an argument list that is
951 // potentially variadic.
952 llvm::SmallVector<QualType, 16> ArgTys;
953
954 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000955 ParmVarDecl *Param =
956 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +0000957 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +0000958 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000959
960 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +0000961 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000962
Reid Spencer5f016e22007-07-11 17:01:13 +0000963 // Look for 'void'. void is allowed only as a single argument to a
964 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +0000965 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000966 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000967 // If this is something like 'float(int, void)', reject it. 'void'
968 // is an incomplete type (C99 6.2.5p19) and function decls cannot
969 // have arguments of incomplete type.
970 if (FTI.NumArgs != 1 || FTI.isVariadic) {
971 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +0000972 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +0000973 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +0000974 } else if (FTI.ArgInfo[i].Ident) {
975 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000976 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +0000977 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +0000978 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +0000979 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +0000980 } else {
981 // Reject, but continue to parse 'float(const void)'.
Chris Lattnerf46699c2008-02-20 20:55:12 +0000982 if (ArgTy.getCVRQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +0000983 Diag(DeclType.Loc, diag::err_void_param_qualified);
984
985 // Do not add 'void' to the ArgTys list.
986 break;
987 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000988 } else if (!FTI.hasPrototype) {
989 if (ArgTy->isPromotableIntegerType()) {
990 ArgTy = Context.IntTy;
991 } else if (const BuiltinType* BTy = ArgTy->getAsBuiltinType()) {
992 if (BTy->getKind() == BuiltinType::Float)
993 ArgTy = Context.DoubleTy;
994 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 }
996
997 ArgTys.push_back(ArgTy);
998 }
Sebastian Redl465226e2009-05-27 22:11:52 +0000999
1000 llvm::SmallVector<QualType, 4> Exceptions;
1001 Exceptions.reserve(FTI.NumExceptions);
Sebastian Redlef65f062009-05-29 18:02:33 +00001002 for(unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
1003 QualType ET = QualType::getFromOpaquePtr(FTI.Exceptions[ei].Ty);
1004 // Check that the type is valid for an exception spec, and drop it if
1005 // not.
1006 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1007 Exceptions.push_back(ET);
1008 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001009
Jay Foadbeaaccd2009-05-21 09:52:38 +00001010 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001011 FTI.isVariadic, FTI.TypeQuals,
1012 FTI.hasExceptionSpec,
1013 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001014 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001015 }
1016 break;
1017 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001018 case DeclaratorChunk::MemberPointer:
1019 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001020 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001021 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
1022 NestedNameSpecifier *NNS
1023 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1024 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1025 ClsType = QualType(NNS->getAsType(), 0);
1026 } else if (CXXRecordDecl *RD
1027 = dyn_cast_or_null<CXXRecordDecl>(
1028 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001029 ClsType = Context.getTagDeclType(RD);
1030 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001031 Diag(DeclType.Mem.Scope().getBeginLoc(),
1032 diag::err_illegal_decl_mempointer_in_nonclass)
1033 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1034 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001035 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001036 }
1037
Douglas Gregor949bf692009-06-09 22:17:39 +00001038 if (!ClsType.isNull())
1039 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1040 DeclType.Loc, D.getIdentifier());
1041 if (T.isNull()) {
1042 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001043 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001044 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001045 break;
1046 }
1047
Douglas Gregorcd281c32009-02-28 00:25:32 +00001048 if (T.isNull()) {
1049 D.setInvalidType(true);
1050 T = Context.IntTy;
1051 }
1052
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001053 // See if there are any attributes on this declarator chunk.
1054 if (const AttributeList *AL = DeclType.getAttrs())
1055 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001056 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001057
1058 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001059 const FunctionProtoType *FnTy = T->getAsFunctionProtoType();
1060 assert(FnTy && "Why oh why is there not a FunctionProtoType here ?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001061
1062 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1063 // for a nonstatic member function, the function type to which a pointer
1064 // to member refers, or the top-level function type of a function typedef
1065 // declaration.
1066 if (FnTy->getTypeQuals() != 0 &&
1067 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001068 ((D.getContext() != Declarator::MemberContext &&
1069 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregore4e5b052009-03-19 00:18:19 +00001070 !computeDeclContext(D.getCXXScopeSpec())->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001071 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001072 if (D.isFunctionDeclarator())
1073 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1074 else
1075 Diag(D.getIdentifierLoc(),
1076 diag::err_invalid_qualified_typedef_function_type_use);
1077
1078 // Strip the cv-quals from the type.
1079 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001080 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001081 }
1082 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001083
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001084 // If there were any type attributes applied to the decl itself (not the
1085 // type, apply the type attribute to the type!)
1086 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001087 ProcessTypeAttributeList(T, Attrs);
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001088
Reid Spencer5f016e22007-07-11 17:01:13 +00001089 return T;
1090}
1091
Sebastian Redlef65f062009-05-29 18:02:33 +00001092/// CheckSpecifiedExceptionType - Check if the given type is valid in an
1093/// exception specification. Incomplete types, or pointers to incomplete types
1094/// other than void are not allowed.
1095bool Sema::CheckSpecifiedExceptionType(QualType T, const SourceRange &Range) {
1096 // FIXME: This may not correctly work with the fix for core issue 437,
1097 // where a class's own type is considered complete within its body.
1098
1099 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1100 // an incomplete type.
1101 if (T->isIncompleteType())
1102 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1103 << Range << T << /*direct*/0;
1104
1105 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1106 // an incomplete type a pointer or reference to an incomplete type, other
1107 // than (cv) void*.
Sebastian Redlef65f062009-05-29 18:02:33 +00001108 int kind;
1109 if (const PointerType* IT = T->getAsPointerType()) {
1110 T = IT->getPointeeType();
1111 kind = 1;
Sebastian Redlef65f062009-05-29 18:02:33 +00001112 } else if (const ReferenceType* IT = T->getAsReferenceType()) {
1113 T = IT->getPointeeType();
Sebastian Redl3cc97262009-05-31 11:47:27 +00001114 kind = 2;
Sebastian Redlef65f062009-05-29 18:02:33 +00001115 } else
1116 return false;
1117
1118 if (T->isIncompleteType() && !T->isVoidType())
1119 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1120 << Range << T << /*indirect*/kind;
1121
1122 return false;
1123}
1124
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001125/// CheckDistantExceptionSpec - Check if the given type is a pointer or pointer
1126/// to member to a function with an exception specification. This means that
1127/// it is invalid to add another level of indirection.
1128bool Sema::CheckDistantExceptionSpec(QualType T) {
1129 if (const PointerType *PT = T->getAsPointerType())
1130 T = PT->getPointeeType();
1131 else if (const MemberPointerType *PT = T->getAsMemberPointerType())
1132 T = PT->getPointeeType();
1133 else
1134 return false;
1135
1136 const FunctionProtoType *FnT = T->getAsFunctionProtoType();
1137 if (!FnT)
1138 return false;
1139
1140 return FnT->hasExceptionSpec();
1141}
1142
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001143/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001144/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001145QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1146 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001147 QualType T = MDecl->getResultType();
1148 llvm::SmallVector<QualType, 16> ArgTys;
1149
Fariborz Jahanian35600022007-11-09 17:18:29 +00001150 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001151 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001152 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001153 selfTy = Context.getPointerType(selfTy);
1154 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001155 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001156 ArgTys.push_back(Context.getObjCIdType());
1157 ArgTys.push_back(Context.getObjCSelType());
Fariborz Jahanian35600022007-11-09 17:18:29 +00001158
Chris Lattner89951a82009-02-20 18:43:26 +00001159 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1160 E = MDecl->param_end(); PI != E; ++PI) {
1161 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001162 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001163 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001164 ArgTys.push_back(ArgTy);
1165 }
1166 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001167 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001168 return T;
1169}
1170
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001171/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1172/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1173/// they point to and return true. If T1 and T2 aren't pointer types
1174/// or pointer-to-member types, or if they are not similar at this
1175/// level, returns false and leaves T1 and T2 unchanged. Top-level
1176/// qualifiers on T1 and T2 are ignored. This function will typically
1177/// be called in a loop that successively "unwraps" pointer and
1178/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001179bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Douglas Gregor57373262008-10-22 14:17:15 +00001180 const PointerType *T1PtrType = T1->getAsPointerType(),
1181 *T2PtrType = T2->getAsPointerType();
1182 if (T1PtrType && T2PtrType) {
1183 T1 = T1PtrType->getPointeeType();
1184 T2 = T2PtrType->getPointeeType();
1185 return true;
1186 }
1187
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001188 const MemberPointerType *T1MPType = T1->getAsMemberPointerType(),
1189 *T2MPType = T2->getAsMemberPointerType();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001190 if (T1MPType && T2MPType &&
1191 Context.getCanonicalType(T1MPType->getClass()) ==
1192 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001193 T1 = T1MPType->getPointeeType();
1194 T2 = T2MPType->getPointeeType();
1195 return true;
1196 }
Douglas Gregor57373262008-10-22 14:17:15 +00001197 return false;
1198}
1199
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001200Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 // C99 6.7.6: Type names have no identifier. This is already validated by
1202 // the parser.
1203 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
1204
Douglas Gregor402abb52009-05-28 23:31:59 +00001205 TagDecl *OwnedTag = 0;
1206 QualType T = GetTypeForDeclarator(D, S, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001207 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001208 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001209
Douglas Gregor402abb52009-05-28 23:31:59 +00001210 if (getLangOptions().CPlusPlus) {
1211 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001212 CheckExtraCXXDefaultArguments(D);
1213
Douglas Gregor402abb52009-05-28 23:31:59 +00001214 // C++0x [dcl.type]p3:
1215 // A type-specifier-seq shall not define a class or enumeration
1216 // unless it appears in the type-id of an alias-declaration
1217 // (7.1.3).
1218 if (OwnedTag && OwnedTag->isDefinition())
1219 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1220 << Context.getTypeDeclType(OwnedTag);
1221 }
1222
Reid Spencer5f016e22007-07-11 17:01:13 +00001223 return T.getAsOpaquePtr();
1224}
1225
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001226
1227
1228//===----------------------------------------------------------------------===//
1229// Type Attribute Processing
1230//===----------------------------------------------------------------------===//
1231
1232/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1233/// specified type. The attribute contains 1 argument, the id of the address
1234/// space for the type.
1235static void HandleAddressSpaceTypeAttribute(QualType &Type,
1236 const AttributeList &Attr, Sema &S){
1237 // If this type is already address space qualified, reject it.
1238 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1239 // for two or more different address spaces."
1240 if (Type.getAddressSpace()) {
1241 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1242 return;
1243 }
1244
1245 // Check the attribute arguments.
1246 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001247 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001248 return;
1249 }
1250 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1251 llvm::APSInt addrSpace(32);
1252 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001253 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1254 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001255 return;
1256 }
1257
1258 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001259 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001260}
1261
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001262/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1263/// specified type. The attribute contains 1 argument, weak or strong.
1264static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001265 const AttributeList &Attr, Sema &S) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001266 if (Type.getObjCGCAttr() != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001267 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001268 return;
1269 }
1270
1271 // Check the attribute arguments.
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001272 if (!Attr.getParameterName()) {
1273 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1274 << "objc_gc" << 1;
1275 return;
1276 }
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001277 QualType::GCAttrTypes GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001278 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001279 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1280 return;
1281 }
1282 if (Attr.getParameterName()->isStr("weak"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001283 GCAttr = QualType::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001284 else if (Attr.getParameterName()->isStr("strong"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001285 GCAttr = QualType::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001286 else {
1287 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1288 << "objc_gc" << Attr.getParameterName();
1289 return;
1290 }
1291
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001292 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001293}
1294
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001295void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001296 // Scan through and apply attributes to this type where it makes sense. Some
1297 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1298 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001299 // apply to the decl. Here we apply type attributes and ignore the rest.
1300 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001301 // If this is an attribute we can handle, do so now, otherwise, add it to
1302 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001303 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001304 default: break;
1305 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001306 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1307 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001308 case AttributeList::AT_objc_gc:
1309 HandleObjCGCTypeAttribute(Result, *AL, *this);
1310 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001311 }
Chris Lattner232e8822008-02-21 01:08:11 +00001312 }
Chris Lattner232e8822008-02-21 01:08:11 +00001313}
1314
Douglas Gregor86447ec2009-03-09 16:13:40 +00001315/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001316///
1317/// This routine checks whether the type @p T is complete in any
1318/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001319/// type, returns false. If @p T is a class template specialization,
1320/// this routine then attempts to perform class template
1321/// instantiation. If instantiation fails, or if @p T is incomplete
1322/// and cannot be completed, issues the diagnostic @p diag (giving it
1323/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001324///
1325/// @param Loc The location in the source that the incomplete type
1326/// diagnostic should refer to.
1327///
1328/// @param T The type that this routine is examining for completeness.
1329///
1330/// @param diag The diagnostic value (e.g.,
1331/// @c diag::err_typecheck_decl_incomplete_type) that will be used
1332/// for the error message if @p T is incomplete.
1333///
1334/// @param Range1 An optional range in the source code that will be a
1335/// part of the "incomplete type" error message.
1336///
1337/// @param Range2 An optional range in the source code that will be a
1338/// part of the "incomplete type" error message.
1339///
1340/// @param PrintType If non-NULL, the type that should be printed
1341/// instead of @p T. This parameter should be used when the type that
1342/// we're checking for incompleteness isn't the type that should be
1343/// displayed to the user, e.g., when T is a type and PrintType is a
1344/// pointer to T.
1345///
1346/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1347/// @c false otherwise.
Douglas Gregor86447ec2009-03-09 16:13:40 +00001348bool Sema::RequireCompleteType(SourceLocation Loc, QualType T, unsigned diag,
Chris Lattner1efaa952009-04-24 00:30:45 +00001349 SourceRange Range1, SourceRange Range2,
1350 QualType PrintType) {
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001351 // FIXME: Add this assertion to help us flush out problems with
1352 // checking for dependent types and type-dependent expressions.
1353 //
1354 // assert(!T->isDependentType() &&
1355 // "Can't ask whether a dependent type is complete");
1356
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001357 // If we have a complete type, we're done.
1358 if (!T->isIncompleteType())
1359 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001360
Douglas Gregord475b8d2009-03-25 21:17:03 +00001361 // If we have a class template specialization or a class member of a
1362 // class template specialization, try to instantiate it.
1363 if (const RecordType *Record = T->getAsRecordType()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001364 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001365 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001366 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
1367 // Update the class template specialization's location to
1368 // refer to the point of instantiation.
1369 if (Loc.isValid())
1370 ClassTemplateSpec->setLocation(Loc);
1371 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
1372 /*ExplicitInstantiation=*/false);
1373 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001374 } else if (CXXRecordDecl *Rec
1375 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1376 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
1377 // Find the class template specialization that surrounds this
1378 // member class.
1379 ClassTemplateSpecializationDecl *Spec = 0;
1380 for (DeclContext *Parent = Rec->getDeclContext();
1381 Parent && !Spec; Parent = Parent->getParent())
1382 Spec = dyn_cast<ClassTemplateSpecializationDecl>(Parent);
1383 assert(Spec && "Not a member of a class template specialization?");
Douglas Gregor93dfdb12009-05-13 00:25:59 +00001384 return InstantiateClass(Loc, Rec, Pattern, Spec->getTemplateArgs(),
1385 /*ExplicitInstantiation=*/false);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001386 }
1387 }
1388 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001389
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001390 if (PrintType.isNull())
1391 PrintType = T;
1392
1393 // We have an incomplete type. Produce a diagnostic.
1394 Diag(Loc, diag) << PrintType << Range1 << Range2;
1395
1396 // If the type was a forward declaration of a class/struct/union
1397 // type, produce
1398 const TagType *Tag = 0;
1399 if (const RecordType *Record = T->getAsRecordType())
1400 Tag = Record;
1401 else if (const EnumType *Enum = T->getAsEnumType())
1402 Tag = Enum;
1403
1404 if (Tag && !Tag->getDecl()->isInvalidDecl())
1405 Diag(Tag->getDecl()->getLocation(),
1406 Tag->isBeingDefined() ? diag::note_type_being_defined
1407 : diag::note_forward_declaration)
1408 << QualType(Tag, 0);
1409
1410 return true;
1411}
Douglas Gregore6258932009-03-19 00:39:20 +00001412
1413/// \brief Retrieve a version of the type 'T' that is qualified by the
1414/// nested-name-specifier contained in SS.
1415QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1416 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1417 return T;
1418
Douglas Gregorab452ba2009-03-26 23:50:42 +00001419 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001420 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001421 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001422}