blob: 71a10e2e0d897f2b59304e959aee52a00c2f4d3a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000016#include "clang/AST/CXXInheritance.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000018#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +000019#include "clang/AST/TypeLoc.h"
John McCall51bd8032009-10-18 01:05:36 +000020#include "clang/AST/TypeLocVisitor.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000021#include "clang/AST/Expr.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000022#include "clang/Basic/PartialDiagnostic.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000023#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000024#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
Douglas Gregor2dc0e642009-03-23 23:06:20 +000027/// \brief Perform adjustment on the parameter type of a function.
28///
29/// This routine adjusts the given parameter type @p T to the actual
Mike Stump1eb44332009-09-09 15:08:12 +000030/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
31/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
Douglas Gregor2dc0e642009-03-23 23:06:20 +000032QualType Sema::adjustParameterType(QualType T) {
33 // C99 6.7.5.3p7:
Chris Lattner778ed742009-10-25 17:36:50 +000034 // A declaration of a parameter as "array of type" shall be
35 // adjusted to "qualified pointer to type", where the type
36 // qualifiers (if any) are those specified within the [ and ] of
37 // the array type derivation.
38 if (T->isArrayType())
Douglas Gregor2dc0e642009-03-23 23:06:20 +000039 return Context.getArrayDecayedType(T);
Chris Lattner778ed742009-10-25 17:36:50 +000040
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 if (T->isFunctionType())
Douglas Gregor2dc0e642009-03-23 23:06:20 +000046 return Context.getPointerType(T);
47
48 return T;
49}
50
Douglas Gregor930d8b52009-01-30 22:09:00 +000051/// \brief Convert the specified declspec to the appropriate type
52/// object.
53/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000054/// \param DeclLoc The location of the declarator identifier or invalid if none.
Chris Lattner5153ee62009-04-25 08:47:54 +000055/// \returns The type described by the declaration specifiers. This function
56/// never returns null.
Chris Lattner1564e392009-10-25 18:07:27 +000057static QualType ConvertDeclSpecToType(const DeclSpec &DS,
58 SourceLocation DeclLoc,
59 bool &isInvalid, Sema &TheSema) {
Reid Spencer5f016e22007-07-11 17:01:13 +000060 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
61 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000062 QualType Result;
Chris Lattner1564e392009-10-25 18:07:27 +000063
64 ASTContext &Context = TheSema.Context;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Reid Spencer5f016e22007-07-11 17:01:13 +000066 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000067 case DeclSpec::TST_void:
68 Result = Context.VoidTy;
69 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000070 case DeclSpec::TST_char:
71 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000072 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000073 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000074 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000075 else {
76 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
77 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000078 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000079 }
Chris Lattner958858e2008-02-20 21:40:32 +000080 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000081 case DeclSpec::TST_wchar:
82 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
83 Result = Context.WCharTy;
84 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattner1564e392009-10-25 18:07:27 +000085 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +000086 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000087 Result = Context.getSignedWCharType();
88 } else {
89 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
90 "Unknown TSS value");
Chris Lattner1564e392009-10-25 18:07:27 +000091 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +000092 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000093 Result = Context.getUnsignedWCharType();
94 }
95 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +000096 case DeclSpec::TST_char16:
97 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
98 "Unknown TSS value");
99 Result = Context.Char16Ty;
100 break;
101 case DeclSpec::TST_char32:
102 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
103 "Unknown TSS value");
104 Result = Context.Char32Ty;
105 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000106 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000107 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000108 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000109 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000110 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000111 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000112 break;
113 }
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Chris Lattnerd658b562008-04-05 06:32:51 +0000115 // Unspecified typespec defaults to int in C90. However, the C90 grammar
116 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
117 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
118 // Note that the one exception to this is function definitions, which are
119 // allowed to be completely missing a declspec. This is handled in the
120 // parser already though by it pretending to have seen an 'int' in this
121 // case.
Chris Lattner1564e392009-10-25 18:07:27 +0000122 if (TheSema.getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000123 // In C89 mode, we only warn if there is a completely missing declspec
124 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000125 if (DS.isEmpty()) {
126 if (DeclLoc.isInvalid())
127 DeclLoc = DS.getSourceRange().getBegin();
Chris Lattner1564e392009-10-25 18:07:27 +0000128 TheSema.Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000129 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000130 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
131 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000132 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000133 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000134 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
135 // "At least one type specifier shall be given in the declaration
136 // specifiers in each declaration, and in the specifier-qualifier list in
137 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000138 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000139 if (DeclLoc.isInvalid())
140 DeclLoc = DS.getSourceRange().getBegin();
141
Chris Lattner1564e392009-10-25 18:07:27 +0000142 if (TheSema.getLangOptions().CPlusPlus &&
143 !TheSema.getLangOptions().Microsoft) {
144 TheSema.Diag(DeclLoc, diag::err_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000145 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Chris Lattnerb78d8332009-06-26 04:45:06 +0000147 // When this occurs in C++ code, often something is very broken with the
148 // value being declared, poison it as invalid so we don't get chains of
149 // errors.
150 isInvalid = true;
151 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000152 TheSema.Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000153 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000154 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000155 }
Mike Stump1eb44332009-09-09 15:08:12 +0000156
157 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000158 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000159 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
160 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000161 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
162 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
163 case DeclSpec::TSW_long: Result = Context.LongTy; break;
164 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000165 }
166 } else {
167 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000168 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
169 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
170 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
171 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 }
173 }
Chris Lattner958858e2008-02-20 21:40:32 +0000174 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000175 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000176 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000177 case DeclSpec::TST_double:
178 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000179 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000180 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000181 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000182 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000183 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 case DeclSpec::TST_decimal32: // _Decimal32
185 case DeclSpec::TST_decimal64: // _Decimal64
186 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner1564e392009-10-25 18:07:27 +0000187 TheSema.Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
Chris Lattner8f12f652009-05-13 05:02:08 +0000188 Result = Context.IntTy;
189 isInvalid = true;
190 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000191 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 case DeclSpec::TST_enum:
193 case DeclSpec::TST_union:
194 case DeclSpec::TST_struct: {
195 Decl *D = static_cast<Decl *>(DS.getTypeRep());
John McCall6e247262009-10-10 05:48:19 +0000196 if (!D) {
197 // This can happen in C++ with ambiguous lookups.
198 Result = Context.IntTy;
199 isInvalid = true;
200 break;
201 }
202
Reid Spencer5f016e22007-07-11 17:01:13 +0000203 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
204 DS.getTypeSpecSign() == 0 &&
205 "Can't handle qualifiers on typedef names yet!");
206 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000207 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
John McCall2191b202009-09-05 06:31:47 +0000208
209 // In C++, make an ElaboratedType.
Chris Lattner1564e392009-10-25 18:07:27 +0000210 if (TheSema.getLangOptions().CPlusPlus) {
John McCall2191b202009-09-05 06:31:47 +0000211 TagDecl::TagKind Tag
212 = TagDecl::getTagKindForTypeSpec(DS.getTypeSpecType());
213 Result = Context.getElaboratedType(Result, Tag);
214 }
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Chris Lattner5153ee62009-04-25 08:47:54 +0000216 if (D->isInvalidDecl())
217 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000218 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000219 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000220 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000221 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
222 DS.getTypeSpecSign() == 0 &&
223 "Can't handle qualifiers on typedef names yet!");
Chris Lattner1564e392009-10-25 18:07:27 +0000224 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000225
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000226 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000227 if (const ObjCInterfaceType *
228 Interface = Result->getAs<ObjCInterfaceType>()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000229 // It would be nice if protocol qualifiers were only stored with the
230 // ObjCObjectPointerType. Unfortunately, this isn't possible due
231 // to the following typedef idiom (which is uncommon, but allowed):
Mike Stump1eb44332009-09-09 15:08:12 +0000232 //
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000233 // typedef Foo<P> T;
234 // static void func() {
235 // Foo<P> *yy;
236 // T *zz;
237 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000238 Result = Context.getObjCInterfaceType(Interface->getDecl(),
239 (ObjCProtocolDecl**)PQ,
240 DS.getNumProtocolQualifiers());
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000241 } else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000242 // id<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000243 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000244 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
245 else if (Result->isObjCClassType()) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000246 if (DeclLoc.isInvalid())
247 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000248 // Class<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000249 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
Steve Naroff470301b2009-07-22 16:07:01 +0000250 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000251 } else {
252 if (DeclLoc.isInvalid())
253 DeclLoc = DS.getSourceRange().getBegin();
Chris Lattner1564e392009-10-25 18:07:27 +0000254 TheSema.Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000255 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000256 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000257 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000258 }
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Chris Lattnereaaebc72009-04-25 08:06:05 +0000260 // If this is a reference to an invalid typedef, propagate the invalidity.
261 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
262 if (TDT->getDecl()->isInvalidDecl())
263 isInvalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Reid Spencer5f016e22007-07-11 17:01:13 +0000265 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000266 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000267 }
Chris Lattner958858e2008-02-20 21:40:32 +0000268 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000269 // FIXME: Preserve type source info.
Chris Lattner1564e392009-10-25 18:07:27 +0000270 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000271 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000272 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000273 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000274 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000275 case DeclSpec::TST_typeofExpr: {
276 Expr *E = static_cast<Expr *>(DS.getTypeRep());
277 assert(E && "Didn't get an expression for typeof?");
278 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000279 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000280 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000281 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000282 case DeclSpec::TST_decltype: {
283 Expr *E = static_cast<Expr *>(DS.getTypeRep());
284 assert(E && "Didn't get an expression for decltype?");
285 // TypeQuals handled by caller.
Chris Lattner1564e392009-10-25 18:07:27 +0000286 Result = TheSema.BuildDecltypeType(E);
Anders Carlssonaf017e62009-06-29 22:58:55 +0000287 if (Result.isNull()) {
288 Result = Context.IntTy;
289 isInvalid = true;
290 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000291 break;
292 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000293 case DeclSpec::TST_auto: {
294 // TypeQuals handled by caller.
295 Result = Context.UndeducedAutoTy;
296 break;
297 }
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Douglas Gregor809070a2009-02-18 17:45:20 +0000299 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000300 Result = Context.IntTy;
301 isInvalid = true;
302 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000303 }
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Chris Lattner958858e2008-02-20 21:40:32 +0000305 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000306 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
Chris Lattner1564e392009-10-25 18:07:27 +0000307 if (TheSema.getLangOptions().Freestanding)
308 TheSema.Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000309 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000310 }
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Chris Lattner958858e2008-02-20 21:40:32 +0000312 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
313 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Chris Lattner38d8b982008-02-20 22:04:11 +0000315 // See if there are any attributes on the declspec that apply to the type (as
316 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000317 if (const AttributeList *AL = DS.getAttributes())
Chris Lattner1564e392009-10-25 18:07:27 +0000318 TheSema.ProcessTypeAttributeList(Result, AL);
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Chris Lattner96b77fc2008-04-02 06:50:17 +0000320 // Apply const/volatile/restrict qualifiers to T.
321 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
322
323 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
324 // or incomplete types shall not be restrict-qualified." C++ also allows
325 // restrict-qualified references.
John McCall0953e762009-09-24 19:53:00 +0000326 if (TypeQuals & DeclSpec::TQ_restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000327 if (Result->isPointerType() || Result->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000328 QualType EltTy = Result->isPointerType() ?
Ted Kremenek6217b802009-07-29 21:53:49 +0000329 Result->getAs<PointerType>()->getPointeeType() :
330 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000331
Douglas Gregorbad0e652009-03-24 20:32:41 +0000332 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000333 // incomplete type.
334 if (!EltTy->isIncompleteOrObjectType()) {
Chris Lattner1564e392009-10-25 18:07:27 +0000335 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000336 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000337 << EltTy << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000338 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000339 }
340 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000341 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000342 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000343 << Result << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000344 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000345 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000346 }
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Chris Lattner96b77fc2008-04-02 06:50:17 +0000348 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
349 // of a function type includes any type qualifiers, the behavior is
350 // undefined."
351 if (Result->isFunctionType() && TypeQuals) {
352 // Get some location to point at, either the C or V location.
353 SourceLocation Loc;
John McCall0953e762009-09-24 19:53:00 +0000354 if (TypeQuals & DeclSpec::TQ_const)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000355 Loc = DS.getConstSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000356 else if (TypeQuals & DeclSpec::TQ_volatile)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000357 Loc = DS.getVolatileSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000358 else {
359 assert((TypeQuals & DeclSpec::TQ_restrict) &&
360 "Has CVR quals but not C, V, or R?");
361 Loc = DS.getRestrictSpecLoc();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000362 }
Chris Lattner1564e392009-10-25 18:07:27 +0000363 TheSema.Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000364 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000365 }
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000367 // C++ [dcl.ref]p1:
368 // Cv-qualified references are ill-formed except when the
369 // cv-qualifiers are introduced through the use of a typedef
370 // (7.1.3) or of a template type argument (14.3), in which
371 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000372 // FIXME: Shouldn't we be checking SCS_typedef here?
373 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000374 TypeQuals && Result->isReferenceType()) {
John McCall0953e762009-09-24 19:53:00 +0000375 TypeQuals &= ~DeclSpec::TQ_const;
376 TypeQuals &= ~DeclSpec::TQ_volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000377 }
378
John McCall0953e762009-09-24 19:53:00 +0000379 Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
380 Result = Context.getQualifiedType(Result, Quals);
Chris Lattner96b77fc2008-04-02 06:50:17 +0000381 }
John McCall0953e762009-09-24 19:53:00 +0000382
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000383 return Result;
384}
385
Douglas Gregorcd281c32009-02-28 00:25:32 +0000386static std::string getPrintableNameForEntity(DeclarationName Entity) {
387 if (Entity)
388 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000389
Douglas Gregorcd281c32009-02-28 00:25:32 +0000390 return "type name";
391}
392
393/// \brief Build a pointer type.
394///
395/// \param T The type to which we'll be building a pointer.
396///
397/// \param Quals The cvr-qualifiers to be applied to the pointer type.
398///
399/// \param Loc The location of the entity whose type involves this
400/// pointer type or, if there is no such entity, the location of the
401/// type that will have pointer type.
402///
403/// \param Entity The name of the entity that involves the pointer
404/// type, if known.
405///
406/// \returns A suitable pointer type, if there are no
407/// errors. Otherwise, returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000408QualType Sema::BuildPointerType(QualType T, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000409 SourceLocation Loc, DeclarationName Entity) {
410 if (T->isReferenceType()) {
411 // C++ 8.3.2p4: There shall be no ... pointers to references ...
412 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
413 << getPrintableNameForEntity(Entity);
414 return QualType();
415 }
416
John McCall0953e762009-09-24 19:53:00 +0000417 Qualifiers Qs = Qualifiers::fromCVRMask(Quals);
418
Douglas Gregorcd281c32009-02-28 00:25:32 +0000419 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
420 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000421 if (Qs.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000422 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
423 << T;
John McCall0953e762009-09-24 19:53:00 +0000424 Qs.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000425 }
426
427 // Build the pointer type.
John McCall0953e762009-09-24 19:53:00 +0000428 return Context.getQualifiedType(Context.getPointerType(T), Qs);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000429}
430
431/// \brief Build a reference type.
432///
433/// \param T The type to which we'll be building a reference.
434///
John McCall0953e762009-09-24 19:53:00 +0000435/// \param CVR The cvr-qualifiers to be applied to the reference type.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000436///
437/// \param Loc The location of the entity whose type involves this
438/// reference type or, if there is no such entity, the location of the
439/// type that will have reference type.
440///
441/// \param Entity The name of the entity that involves the reference
442/// type, if known.
443///
444/// \returns A suitable reference type, if there are no
445/// errors. Otherwise, returns a NULL type.
John McCall54e14c42009-10-22 22:37:11 +0000446QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue,
447 unsigned CVR, SourceLocation Loc,
448 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000449 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
John McCall54e14c42009-10-22 22:37:11 +0000450
451 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
452
453 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
454 // reference to a type T, and attempt to create the type "lvalue
455 // reference to cv TD" creates the type "lvalue reference to T".
456 // We use the qualifiers (restrict or none) of the original reference,
457 // not the new ones. This is consistent with GCC.
458
459 // C++ [dcl.ref]p4: There shall be no references to references.
460 //
461 // According to C++ DR 106, references to references are only
462 // diagnosed when they are written directly (e.g., "int & &"),
463 // but not when they happen via a typedef:
464 //
465 // typedef int& intref;
466 // typedef intref& intref2;
467 //
468 // Parser::ParseDeclaratorInternal diagnoses the case where
469 // references are written directly; here, we handle the
470 // collapsing of references-to-references as described in C++
471 // DR 106 and amended by C++ DR 540.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000472
473 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000474 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000475 // is ill-formed.
476 if (T->isVoidType()) {
477 Diag(Loc, diag::err_reference_to_void);
478 return QualType();
479 }
480
481 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
482 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000483 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000484 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
485 << T;
John McCall0953e762009-09-24 19:53:00 +0000486 Quals.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000487 }
488
489 // C++ [dcl.ref]p1:
490 // [...] Cv-qualified references are ill-formed except when the
491 // cv-qualifiers are introduced through the use of a typedef
492 // (7.1.3) or of a template type argument (14.3), in which case
493 // the cv-qualifiers are ignored.
494 //
495 // We diagnose extraneous cv-qualifiers for the non-typedef,
496 // non-template type argument case within the parser. Here, we just
497 // ignore any extraneous cv-qualifiers.
John McCall0953e762009-09-24 19:53:00 +0000498 Quals.removeConst();
499 Quals.removeVolatile();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000500
501 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000502 if (LValueRef)
John McCall54e14c42009-10-22 22:37:11 +0000503 return Context.getQualifiedType(
504 Context.getLValueReferenceType(T, SpelledAsLValue), Quals);
John McCall0953e762009-09-24 19:53:00 +0000505 return Context.getQualifiedType(Context.getRValueReferenceType(T), Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000506}
507
508/// \brief Build an array type.
509///
510/// \param T The type of each element in the array.
511///
512/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000513///
514/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000515///
516/// \param Quals The cvr-qualifiers to be applied to the array's
517/// element type.
518///
519/// \param Loc The location of the entity whose type involves this
520/// array type or, if there is no such entity, the location of the
521/// type that will have array type.
522///
523/// \param Entity The name of the entity that involves the array
524/// type, if known.
525///
526/// \returns A suitable array type, if there are no errors. Otherwise,
527/// returns a NULL type.
528QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
529 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000530 SourceRange Brackets, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000531
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000532 SourceLocation Loc = Brackets.getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000533 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000534 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Mike Stump1eb44332009-09-09 15:08:12 +0000535 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000536 diag::err_illegal_decl_array_incomplete_type))
537 return QualType();
538
539 if (T->isFunctionType()) {
540 Diag(Loc, diag::err_illegal_decl_array_of_functions)
541 << getPrintableNameForEntity(Entity);
542 return QualType();
543 }
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Douglas Gregorcd281c32009-02-28 00:25:32 +0000545 // C++ 8.3.2p4: There shall be no ... arrays of references ...
546 if (T->isReferenceType()) {
547 Diag(Loc, diag::err_illegal_decl_array_of_references)
548 << getPrintableNameForEntity(Entity);
549 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000550 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000551
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000552 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000553 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000554 << getPrintableNameForEntity(Entity);
555 return QualType();
556 }
Mike Stump1eb44332009-09-09 15:08:12 +0000557
Ted Kremenek6217b802009-07-29 21:53:49 +0000558 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000559 // If the element type is a struct or union that contains a variadic
560 // array, accept it as a GNU extension: C99 6.7.2.1p2.
561 if (EltTy->getDecl()->hasFlexibleArrayMember())
562 Diag(Loc, diag::ext_flexible_array_in_array) << T;
563 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000564 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
565 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000566 }
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Douglas Gregorcd281c32009-02-28 00:25:32 +0000568 // C99 6.7.5.2p1: The size expression shall have integer type.
569 if (ArraySize && !ArraySize->isTypeDependent() &&
570 !ArraySize->getType()->isIntegerType()) {
571 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
572 << ArraySize->getType() << ArraySize->getSourceRange();
573 ArraySize->Destroy(Context);
574 return QualType();
575 }
576 llvm::APSInt ConstVal(32);
577 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000578 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000579 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000580 else
581 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000582 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000583 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000584 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
585 (!T->isDependentType() && !T->isConstantSizeType())) {
586 // Per C99, a variable array is an array with either a non-constant
587 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000588 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000589 } else {
590 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
591 // have a value greater than zero.
592 if (ConstVal.isSigned()) {
593 if (ConstVal.isNegative()) {
594 Diag(ArraySize->getLocStart(),
595 diag::err_typecheck_negative_array_size)
596 << ArraySize->getSourceRange();
597 return QualType();
598 } else if (ConstVal == 0) {
599 // GCC accepts zero sized static arrays.
600 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
601 << ArraySize->getSourceRange();
602 }
Mike Stump1eb44332009-09-09 15:08:12 +0000603 }
John McCall46a617a2009-10-16 00:14:28 +0000604 T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000605 }
606 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
607 if (!getLangOptions().C99) {
Mike Stump1eb44332009-09-09 15:08:12 +0000608 if (ArraySize && !ArraySize->isTypeDependent() &&
609 !ArraySize->isValueDependent() &&
Douglas Gregorcd281c32009-02-28 00:25:32 +0000610 !ArraySize->isIntegerConstantExpr(Context))
Douglas Gregor043cad22009-09-11 00:18:58 +0000611 Diag(Loc, getLangOptions().CPlusPlus? diag::err_vla_cxx : diag::ext_vla);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000612 else if (ASM != ArrayType::Normal || Quals != 0)
Douglas Gregor043cad22009-09-11 00:18:58 +0000613 Diag(Loc,
614 getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
615 : diag::ext_c99_array_usage);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000616 }
617
618 return T;
619}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000620
621/// \brief Build an ext-vector type.
622///
623/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000624QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000625 SourceLocation AttrLoc) {
626
627 Expr *Arg = (Expr *)ArraySize.get();
628
629 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
630 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000631 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000632 !T->isIntegerType() && !T->isRealFloatingType()) {
633 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
634 return QualType();
635 }
636
637 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
638 llvm::APSInt vecSize(32);
639 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
640 Diag(AttrLoc, diag::err_attribute_argument_not_int)
641 << "ext_vector_type" << Arg->getSourceRange();
642 return QualType();
643 }
Mike Stump1eb44332009-09-09 15:08:12 +0000644
645 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000646 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000647 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
648
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000649 if (vectorSize == 0) {
650 Diag(AttrLoc, diag::err_attribute_zero_size)
651 << Arg->getSourceRange();
652 return QualType();
653 }
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000655 if (!T->isDependentType())
656 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000657 }
658
659 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000660 AttrLoc);
661}
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Douglas Gregor724651c2009-02-28 01:04:19 +0000663/// \brief Build a function type.
664///
665/// This routine checks the function type according to C++ rules and
666/// under the assumption that the result type and parameter types have
667/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000668/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000669/// simpler form that is only suitable for this narrow use case.
670///
671/// \param T The return type of the function.
672///
673/// \param ParamTypes The parameter types of the function. This array
674/// will be modified to account for adjustments to the types of the
675/// function parameters.
676///
677/// \param NumParamTypes The number of parameter types in ParamTypes.
678///
679/// \param Variadic Whether this is a variadic function type.
680///
681/// \param Quals The cvr-qualifiers to be applied to the function type.
682///
683/// \param Loc The location of the entity whose type involves this
684/// function type or, if there is no such entity, the location of the
685/// type that will have function type.
686///
687/// \param Entity The name of the entity that involves the function
688/// type, if known.
689///
690/// \returns A suitable function type, if there are no
691/// errors. Otherwise, returns a NULL type.
692QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000693 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000694 unsigned NumParamTypes,
695 bool Variadic, unsigned Quals,
696 SourceLocation Loc, DeclarationName Entity) {
697 if (T->isArrayType() || T->isFunctionType()) {
698 Diag(Loc, diag::err_func_returning_array_function) << T;
699 return QualType();
700 }
Mike Stump1eb44332009-09-09 15:08:12 +0000701
Douglas Gregor724651c2009-02-28 01:04:19 +0000702 bool Invalid = false;
703 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000704 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
705 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000706 Diag(Loc, diag::err_param_with_void_type);
707 Invalid = true;
708 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000709
John McCall54e14c42009-10-22 22:37:11 +0000710 ParamTypes[Idx] = ParamType;
Douglas Gregor724651c2009-02-28 01:04:19 +0000711 }
712
713 if (Invalid)
714 return QualType();
715
Mike Stump1eb44332009-09-09 15:08:12 +0000716 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Douglas Gregor724651c2009-02-28 01:04:19 +0000717 Quals);
718}
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Douglas Gregor949bf692009-06-09 22:17:39 +0000720/// \brief Build a member pointer type \c T Class::*.
721///
722/// \param T the type to which the member pointer refers.
723/// \param Class the class type into which the member pointer points.
John McCall0953e762009-09-24 19:53:00 +0000724/// \param CVR Qualifiers applied to the member pointer type
Douglas Gregor949bf692009-06-09 22:17:39 +0000725/// \param Loc the location where this type begins
726/// \param Entity the name of the entity that will have this member pointer type
727///
728/// \returns a member pointer type, if successful, or a NULL type if there was
729/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000730QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
John McCall0953e762009-09-24 19:53:00 +0000731 unsigned CVR, SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000732 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000733 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
734
Douglas Gregor949bf692009-06-09 22:17:39 +0000735 // Verify that we're not building a pointer to pointer to function with
736 // exception specification.
737 if (CheckDistantExceptionSpec(T)) {
738 Diag(Loc, diag::err_distant_exception_spec);
739
740 // FIXME: If we're doing this as part of template instantiation,
741 // we should return immediately.
742
743 // Build the type anyway, but use the canonical type so that the
744 // exception specifiers are stripped off.
745 T = Context.getCanonicalType(T);
746 }
747
748 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
749 // with reference type, or "cv void."
750 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000751 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000752 << (Entity? Entity.getAsString() : "type name");
753 return QualType();
754 }
755
756 if (T->isVoidType()) {
757 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
758 << (Entity? Entity.getAsString() : "type name");
759 return QualType();
760 }
761
762 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
763 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000764 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregor949bf692009-06-09 22:17:39 +0000765 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
766 << T;
767
768 // FIXME: If we're doing this as part of template instantiation,
769 // we should return immediately.
John McCall0953e762009-09-24 19:53:00 +0000770 Quals.removeRestrict();
Douglas Gregor949bf692009-06-09 22:17:39 +0000771 }
772
773 if (!Class->isDependentType() && !Class->isRecordType()) {
774 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
775 return QualType();
776 }
777
John McCall0953e762009-09-24 19:53:00 +0000778 return Context.getQualifiedType(
779 Context.getMemberPointerType(T, Class.getTypePtr()), Quals);
Douglas Gregor949bf692009-06-09 22:17:39 +0000780}
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Anders Carlsson9a917e42009-06-12 22:56:54 +0000782/// \brief Build a block pointer type.
783///
784/// \param T The type to which we'll be building a block pointer.
785///
John McCall0953e762009-09-24 19:53:00 +0000786/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
Anders Carlsson9a917e42009-06-12 22:56:54 +0000787///
788/// \param Loc The location of the entity whose type involves this
789/// block pointer type or, if there is no such entity, the location of the
790/// type that will have block pointer type.
791///
792/// \param Entity The name of the entity that involves the block pointer
793/// type, if known.
794///
795/// \returns A suitable block pointer type, if there are no
796/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000797QualType Sema::BuildBlockPointerType(QualType T, unsigned CVR,
Mike Stump1eb44332009-09-09 15:08:12 +0000798 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000799 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000800 if (!T->isFunctionType()) {
Anders Carlsson9a917e42009-06-12 22:56:54 +0000801 Diag(Loc, diag::err_nonfunction_block_type);
802 return QualType();
803 }
Mike Stump1eb44332009-09-09 15:08:12 +0000804
John McCall0953e762009-09-24 19:53:00 +0000805 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
806 return Context.getQualifiedType(Context.getBlockPointerType(T), Quals);
Anders Carlsson9a917e42009-06-12 22:56:54 +0000807}
808
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000809QualType Sema::GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo) {
810 QualType QT = QualType::getFromOpaquePtr(Ty);
811 DeclaratorInfo *DI = 0;
812 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
813 QT = LIT->getType();
814 DI = LIT->getDeclaratorInfo();
815 }
Mike Stump1eb44332009-09-09 15:08:12 +0000816
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000817 if (DInfo) *DInfo = DI;
818 return QT;
819}
820
Chris Lattner778ed742009-10-25 17:36:50 +0000821
822/// isOmittedBlockReturnType - Return true if this declarator is missing a
823/// return type because this is a omitted return type on a block literal.
824static bool isOmittedBlockReturnType(const Declarator &D, unsigned Skip) {
825 if (D.getContext() != Declarator::BlockLiteralContext ||
826 Skip != 0 || D.getDeclSpec().hasTypeSpecifier())
827 return false;
828
829 if (D.getNumTypeObjects() == 0)
830 return true;
831
832 if (D.getNumTypeObjects() == 1 &&
833 D.getTypeObject(0).Kind == DeclaratorChunk::Function)
834 return true;
835
836 return false;
837}
838
Mike Stump98eb8a72009-02-04 22:31:32 +0000839/// GetTypeForDeclarator - Convert the type for the specified
840/// declarator to Type instances. Skip the outermost Skip type
841/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000842///
843/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
844/// owns the declaration of a type (e.g., the definition of a struct
845/// type), then *OwnedDecl will receive the owned declaration.
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000846QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
847 DeclaratorInfo **DInfo, unsigned Skip,
Douglas Gregor402abb52009-05-28 23:31:59 +0000848 TagDecl **OwnedDecl) {
Chris Lattnerb23deda2007-08-28 16:40:32 +0000849 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000850 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000851 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
852 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000853
854 // Determine the type of the declarator. Not all forms of declarator
855 // have a type.
856 QualType T;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000857
Douglas Gregor930d8b52009-01-30 22:09:00 +0000858 switch (D.getKind()) {
859 case Declarator::DK_Abstract:
860 case Declarator::DK_Normal:
Douglas Gregordb422df2009-09-25 21:45:23 +0000861 case Declarator::DK_Operator:
862 case Declarator::DK_TemplateId: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000863 const DeclSpec &DS = D.getDeclSpec();
Chris Lattner778ed742009-10-25 17:36:50 +0000864 if (isOmittedBlockReturnType(D, Skip)) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000865 // We default to a dependent type initially. Can be modified by
866 // the first return statement.
867 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000868 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000869 bool isInvalid = false;
Chris Lattner1564e392009-10-25 18:07:27 +0000870 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid, *this);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000871 if (isInvalid)
872 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000873 else if (OwnedDecl && DS.isTypeSpecOwned())
874 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000875 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000876 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000877 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000878
879 case Declarator::DK_Constructor:
880 case Declarator::DK_Destructor:
881 case Declarator::DK_Conversion:
882 // Constructors and destructors don't have return types. Use
883 // "void" instead. Conversion operators will check their return
884 // types separately.
885 T = Context.VoidTy;
886 break;
887 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000888
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000889 if (T == Context.UndeducedAutoTy) {
890 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000892 switch (D.getContext()) {
893 case Declarator::KNRTypeListContext:
894 assert(0 && "K&R type lists aren't allowed in C++");
895 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000896 case Declarator::PrototypeContext:
897 Error = 0; // Function prototype
898 break;
899 case Declarator::MemberContext:
900 switch (cast<TagDecl>(CurContext)->getTagKind()) {
901 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
902 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
903 case TagDecl::TK_union: Error = 2; /* Union member */ break;
904 case TagDecl::TK_class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +0000905 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000906 break;
907 case Declarator::CXXCatchContext:
908 Error = 4; // Exception declaration
909 break;
910 case Declarator::TemplateParamContext:
911 Error = 5; // Template parameter
912 break;
913 case Declarator::BlockLiteralContext:
914 Error = 6; // Block literal
915 break;
916 case Declarator::FileContext:
917 case Declarator::BlockContext:
918 case Declarator::ForContext:
919 case Declarator::ConditionContext:
920 case Declarator::TypeNameContext:
921 break;
922 }
923
924 if (Error != -1) {
925 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
926 << Error;
927 T = Context.IntTy;
928 D.setInvalidType(true);
929 }
930 }
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Douglas Gregorcd281c32009-02-28 00:25:32 +0000932 // The name we're declaring, if any.
933 DeclarationName Name;
934 if (D.getIdentifier())
935 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Mike Stump98eb8a72009-02-04 22:31:32 +0000937 // Walk the DeclTypeInfo, building the recursive type as we go.
938 // DeclTypeInfos are ordered from the identifier out, which is
939 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000940 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
941 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000942 switch (DeclType.Kind) {
943 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000944 case DeclaratorChunk::BlockPointer:
Chris Lattner9af55002009-03-27 04:18:06 +0000945 // If blocks are disabled, emit an error.
946 if (!LangOpts.Blocks)
947 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +0000948
949 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
Anders Carlsson9a917e42009-06-12 22:56:54 +0000950 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000951 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000952 case DeclaratorChunk::Pointer:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000953 // Verify that we're not building a pointer to pointer to function with
954 // exception specification.
955 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
956 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
957 D.setInvalidType(true);
958 // Build the type anyway.
959 }
Steve Naroff14108da2009-07-10 23:34:53 +0000960 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
John McCall183700f2009-09-21 23:43:11 +0000961 const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>();
Steve Naroff14108da2009-07-10 23:34:53 +0000962 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000963 (ObjCProtocolDecl **)OIT->qual_begin(),
964 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000965 break;
966 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000967 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000968 break;
John McCall0953e762009-09-24 19:53:00 +0000969 case DeclaratorChunk::Reference: {
970 Qualifiers Quals;
971 if (DeclType.Ref.HasRestrict) Quals.addRestrict();
972
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000973 // Verify that we're not building a reference to pointer to function with
974 // exception specification.
975 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
976 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
977 D.setInvalidType(true);
978 // Build the type anyway.
979 }
John McCall0953e762009-09-24 19:53:00 +0000980 T = BuildReferenceType(T, DeclType.Ref.LValueRef, Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000981 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000982 break;
John McCall0953e762009-09-24 19:53:00 +0000983 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 case DeclaratorChunk::Array: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000985 // Verify that we're not building an array of pointers to function with
986 // exception specification.
987 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
988 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
989 D.setInvalidType(true);
990 // Build the type anyway.
991 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +0000992 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000993 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 ArrayType::ArraySizeModifier ASM;
995 if (ATI.isStar)
996 ASM = ArrayType::Star;
997 else if (ATI.hasStatic)
998 ASM = ArrayType::Static;
999 else
1000 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +00001001 if (ASM == ArrayType::Star &&
1002 D.getContext() != Declarator::PrototypeContext) {
1003 // FIXME: This check isn't quite right: it allows star in prototypes
1004 // for function definitions, and disallows some edge cases detailed
1005 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
1006 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1007 ASM = ArrayType::Normal;
1008 D.setInvalidType(true);
1009 }
John McCall0953e762009-09-24 19:53:00 +00001010 T = BuildArrayType(T, ASM, ArraySize,
1011 Qualifiers::fromCVRMask(ATI.TypeQuals),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001012 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001013 break;
1014 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001015 case DeclaratorChunk::Function: {
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 // If the function declarator has a prototype (i.e. it is not () and
1017 // does not have a K&R-style identifier list), then the arguments are part
1018 // of the type, otherwise the argument list is ().
1019 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001020
Chris Lattnercd881292007-12-19 05:31:29 +00001021 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +00001022 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001023 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001024 T = Context.IntTy;
1025 D.setInvalidType(true);
1026 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001027
Douglas Gregor402abb52009-05-28 23:31:59 +00001028 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1029 // C++ [dcl.fct]p6:
1030 // Types shall not be defined in return or parameter types.
1031 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1032 if (Tag->isDefinition())
1033 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1034 << Context.getTypeDeclType(Tag);
1035 }
1036
Sebastian Redl3cc97262009-05-31 11:47:27 +00001037 // Exception specs are not allowed in typedefs. Complain, but add it
1038 // anyway.
1039 if (FTI.hasExceptionSpec &&
1040 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1041 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1042
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001043 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001044 if (getLangOptions().CPlusPlus) {
1045 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
1046 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +00001047 llvm::SmallVector<QualType, 4> Exceptions;
1048 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001049 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001050 // FIXME: Preserve type source info.
1051 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001052 // Check that the type is valid for an exception spec, and drop it
1053 // if not.
1054 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1055 Exceptions.push_back(ET);
1056 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001057 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1058 FTI.hasExceptionSpec,
1059 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001060 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001061 } else if (FTI.isVariadic) {
1062 // We allow a zero-parameter variadic function in C if the
1063 // function is marked with the "overloadable"
1064 // attribute. Scan for this attribute now.
1065 bool Overloadable = false;
1066 for (const AttributeList *Attrs = D.getAttributes();
1067 Attrs; Attrs = Attrs->getNext()) {
1068 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1069 Overloadable = true;
1070 break;
1071 }
1072 }
1073
1074 if (!Overloadable)
1075 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1076 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001077 } else {
1078 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001079 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001080 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001081 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Mike Stump1eb44332009-09-09 15:08:12 +00001083 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
John McCall54e14c42009-10-22 22:37:11 +00001084 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001085 } else {
1086 // Otherwise, we have a function with an argument list that is
1087 // potentially variadic.
1088 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Reid Spencer5f016e22007-07-11 17:01:13 +00001090 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001091 ParmVarDecl *Param =
1092 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001093 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001094 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001095
1096 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001097 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001098
Reid Spencer5f016e22007-07-11 17:01:13 +00001099 // Look for 'void'. void is allowed only as a single argument to a
1100 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001101 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001102 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001103 // If this is something like 'float(int, void)', reject it. 'void'
1104 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1105 // have arguments of incomplete type.
1106 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1107 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001108 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001109 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001110 } else if (FTI.ArgInfo[i].Ident) {
1111 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001112 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001113 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001114 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001115 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001116 } else {
1117 // Reject, but continue to parse 'float(const void)'.
John McCall0953e762009-09-24 19:53:00 +00001118 if (ArgTy.hasQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001119 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001120
Chris Lattner2ff54262007-07-21 05:18:12 +00001121 // Do not add 'void' to the ArgTys list.
1122 break;
1123 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001124 } else if (!FTI.hasPrototype) {
1125 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001126 ArgTy = Context.getPromotedIntegerType(ArgTy);
John McCall183700f2009-09-21 23:43:11 +00001127 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001128 if (BTy->getKind() == BuiltinType::Float)
1129 ArgTy = Context.DoubleTy;
1130 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001131 }
Mike Stump1eb44332009-09-09 15:08:12 +00001132
John McCall54e14c42009-10-22 22:37:11 +00001133 ArgTys.push_back(ArgTy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001135
1136 llvm::SmallVector<QualType, 4> Exceptions;
1137 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001138 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001139 // FIXME: Preserve type source info.
1140 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001141 // Check that the type is valid for an exception spec, and drop it if
1142 // not.
1143 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1144 Exceptions.push_back(ET);
1145 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001146
Jay Foadbeaaccd2009-05-21 09:52:38 +00001147 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001148 FTI.isVariadic, FTI.TypeQuals,
1149 FTI.hasExceptionSpec,
1150 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001151 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001152 }
1153 break;
1154 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001155 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001156 // Verify that we're not building a pointer to pointer to function with
1157 // exception specification.
1158 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1159 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1160 D.setInvalidType(true);
1161 // Build the type anyway.
1162 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001163 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001164 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001165 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001166 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001167 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1168 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1169 ClsType = QualType(NNS->getAsType(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001170 } else if (CXXRecordDecl *RD
Douglas Gregor949bf692009-06-09 22:17:39 +00001171 = dyn_cast_or_null<CXXRecordDecl>(
1172 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001173 ClsType = Context.getTagDeclType(RD);
1174 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001175 Diag(DeclType.Mem.Scope().getBeginLoc(),
1176 diag::err_illegal_decl_mempointer_in_nonclass)
1177 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1178 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001179 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001180 }
1181
Douglas Gregor949bf692009-06-09 22:17:39 +00001182 if (!ClsType.isNull())
1183 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1184 DeclType.Loc, D.getIdentifier());
1185 if (T.isNull()) {
1186 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001187 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001188 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001189 break;
1190 }
1191
Douglas Gregorcd281c32009-02-28 00:25:32 +00001192 if (T.isNull()) {
1193 D.setInvalidType(true);
1194 T = Context.IntTy;
1195 }
1196
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001197 // See if there are any attributes on this declarator chunk.
1198 if (const AttributeList *AL = DeclType.getAttrs())
1199 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001200 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001201
1202 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
John McCall183700f2009-09-21 23:43:11 +00001203 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
Chris Lattner778ed742009-10-25 17:36:50 +00001204 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001205
1206 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1207 // for a nonstatic member function, the function type to which a pointer
1208 // to member refers, or the top-level function type of a function typedef
1209 // declaration.
1210 if (FnTy->getTypeQuals() != 0 &&
1211 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001212 ((D.getContext() != Declarator::MemberContext &&
1213 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001214 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1215 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001216 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001217 if (D.isFunctionDeclarator())
1218 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1219 else
1220 Diag(D.getIdentifierLoc(),
1221 diag::err_invalid_qualified_typedef_function_type_use);
1222
1223 // Strip the cv-quals from the type.
1224 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001225 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001226 }
1227 }
Mike Stump1eb44332009-09-09 15:08:12 +00001228
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001229 // If there were any type attributes applied to the decl itself (not the
1230 // type, apply the type attribute to the type!)
1231 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001232 ProcessTypeAttributeList(T, Attrs);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001233
John McCall54e14c42009-10-22 22:37:11 +00001234 if (DInfo) {
1235 if (D.isInvalidType())
1236 *DInfo = 0;
1237 else
1238 *DInfo = GetDeclaratorInfoForDeclarator(D, T, Skip);
1239 }
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001240
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 return T;
1242}
1243
John McCall51bd8032009-10-18 01:05:36 +00001244namespace {
1245 class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
1246 const DeclSpec &DS;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001247
John McCall51bd8032009-10-18 01:05:36 +00001248 public:
1249 TypeSpecLocFiller(const DeclSpec &DS) : DS(DS) {}
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001250
John McCall51bd8032009-10-18 01:05:36 +00001251 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1252 Visit(TL.getUnqualifiedLoc());
1253 }
1254 void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1255 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1256 }
1257 void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1258 TL.setNameLoc(DS.getTypeSpecTypeLoc());
Argyrios Kyrtzidiseb667592009-09-29 19:45:22 +00001259
John McCall54e14c42009-10-22 22:37:11 +00001260 if (DS.getProtocolQualifiers()) {
1261 assert(TL.getNumProtocols() > 0);
1262 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1263 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1264 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1265 for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
1266 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
1267 } else {
1268 assert(TL.getNumProtocols() == 0);
1269 TL.setLAngleLoc(SourceLocation());
1270 TL.setRAngleLoc(SourceLocation());
1271 }
1272 }
1273 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1274 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1275
1276 TL.setStarLoc(SourceLocation());
1277
1278 if (DS.getProtocolQualifiers()) {
1279 assert(TL.getNumProtocols() > 0);
1280 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1281 TL.setHasProtocolsAsWritten(true);
1282 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1283 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1284 for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
1285 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
1286
1287 } else {
1288 assert(TL.getNumProtocols() == 0);
1289 TL.setHasProtocolsAsWritten(false);
1290 TL.setLAngleLoc(SourceLocation());
1291 TL.setRAngleLoc(SourceLocation());
1292 }
1293
1294 // This might not have been written with an inner type.
1295 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
1296 TL.setHasBaseTypeAsWritten(false);
1297 TL.getBaseTypeLoc().initialize(SourceLocation());
1298 } else {
1299 TL.setHasBaseTypeAsWritten(true);
John McCall51bd8032009-10-18 01:05:36 +00001300 Visit(TL.getBaseTypeLoc());
John McCall54e14c42009-10-22 22:37:11 +00001301 }
John McCall51bd8032009-10-18 01:05:36 +00001302 }
1303 void VisitTypeLoc(TypeLoc TL) {
1304 // FIXME: add other typespec types and change this to an assert.
1305 TL.initialize(DS.getTypeSpecTypeLoc());
1306 }
1307 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001308
John McCall51bd8032009-10-18 01:05:36 +00001309 class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
1310 const DeclaratorChunk &Chunk;
1311
1312 public:
1313 DeclaratorLocFiller(const DeclaratorChunk &Chunk) : Chunk(Chunk) {}
1314
1315 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1316 llvm::llvm_unreachable("qualified type locs not expected here!");
1317 }
1318
1319 void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1320 assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
1321 TL.setCaretLoc(Chunk.Loc);
1322 }
1323 void VisitPointerTypeLoc(PointerTypeLoc TL) {
1324 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1325 TL.setStarLoc(Chunk.Loc);
1326 }
1327 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1328 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1329 TL.setStarLoc(Chunk.Loc);
John McCall54e14c42009-10-22 22:37:11 +00001330 TL.setHasBaseTypeAsWritten(true);
1331 TL.setHasProtocolsAsWritten(false);
1332 TL.setLAngleLoc(SourceLocation());
1333 TL.setRAngleLoc(SourceLocation());
John McCall51bd8032009-10-18 01:05:36 +00001334 }
1335 void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1336 assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
1337 TL.setStarLoc(Chunk.Loc);
1338 // FIXME: nested name specifier
1339 }
1340 void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
1341 assert(Chunk.Kind == DeclaratorChunk::Reference);
John McCall54e14c42009-10-22 22:37:11 +00001342 // 'Amp' is misleading: this might have been originally
1343 /// spelled with AmpAmp.
John McCall51bd8032009-10-18 01:05:36 +00001344 TL.setAmpLoc(Chunk.Loc);
1345 }
1346 void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
1347 assert(Chunk.Kind == DeclaratorChunk::Reference);
1348 assert(!Chunk.Ref.LValueRef);
1349 TL.setAmpAmpLoc(Chunk.Loc);
1350 }
1351 void VisitArrayTypeLoc(ArrayTypeLoc TL) {
1352 assert(Chunk.Kind == DeclaratorChunk::Array);
1353 TL.setLBracketLoc(Chunk.Loc);
1354 TL.setRBracketLoc(Chunk.EndLoc);
1355 TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
1356 }
1357 void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
1358 assert(Chunk.Kind == DeclaratorChunk::Function);
1359 TL.setLParenLoc(Chunk.Loc);
1360 TL.setRParenLoc(Chunk.EndLoc);
1361
1362 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
John McCall54e14c42009-10-22 22:37:11 +00001363 for (unsigned i = 0, e = TL.getNumArgs(), tpi = 0; i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001364 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
John McCall54e14c42009-10-22 22:37:11 +00001365 TL.setArg(tpi++, Param);
John McCall51bd8032009-10-18 01:05:36 +00001366 }
1367 // FIXME: exception specs
1368 }
1369
1370 void VisitTypeLoc(TypeLoc TL) {
1371 llvm::llvm_unreachable("unsupported TypeLoc kind in declarator!");
1372 }
1373 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001374}
1375
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001376/// \brief Create and instantiate a DeclaratorInfo with type source information.
1377///
1378/// \param T QualType referring to the type as written in source code.
1379DeclaratorInfo *
1380Sema::GetDeclaratorInfoForDeclarator(Declarator &D, QualType T, unsigned Skip) {
1381 DeclaratorInfo *DInfo = Context.CreateDeclaratorInfo(T);
John McCall51bd8032009-10-18 01:05:36 +00001382 UnqualTypeLoc CurrTL = DInfo->getTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001383
1384 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001385 DeclaratorLocFiller(D.getTypeObject(i)).Visit(CurrTL);
1386 CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001387 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001388
John McCall51bd8032009-10-18 01:05:36 +00001389 TypeSpecLocFiller(D.getDeclSpec()).Visit(CurrTL);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001390
1391 return DInfo;
1392}
1393
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001394/// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo.
1395QualType Sema::CreateLocInfoType(QualType T, DeclaratorInfo *DInfo) {
1396 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1397 // and Sema during declaration parsing. Try deallocating/caching them when
1398 // it's appropriate, instead of allocating them and keeping them around.
1399 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
1400 new (LocT) LocInfoType(T, DInfo);
1401 assert(LocT->getTypeClass() != T->getTypeClass() &&
1402 "LocInfoType's TypeClass conflicts with an existing Type class");
1403 return QualType(LocT, 0);
1404}
1405
1406void LocInfoType::getAsStringInternal(std::string &Str,
1407 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001408 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1409 " was used directly instead of getting the QualType through"
1410 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001411}
1412
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001413/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001414/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001415QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1416 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001417 QualType T = MDecl->getResultType();
1418 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001419
Fariborz Jahanian35600022007-11-09 17:18:29 +00001420 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001421 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001422 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001423 selfTy = Context.getPointerType(selfTy);
1424 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001425 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001426 ArgTys.push_back(Context.getObjCIdType());
1427 ArgTys.push_back(Context.getObjCSelType());
Mike Stump1eb44332009-09-09 15:08:12 +00001428
Chris Lattner89951a82009-02-20 18:43:26 +00001429 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1430 E = MDecl->param_end(); PI != E; ++PI) {
1431 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001432 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001433 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001434 ArgTys.push_back(ArgTy);
1435 }
1436 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001437 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001438 return T;
1439}
1440
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001441/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1442/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1443/// they point to and return true. If T1 and T2 aren't pointer types
1444/// or pointer-to-member types, or if they are not similar at this
1445/// level, returns false and leaves T1 and T2 unchanged. Top-level
1446/// qualifiers on T1 and T2 are ignored. This function will typically
1447/// be called in a loop that successively "unwraps" pointer and
1448/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001449bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001450 const PointerType *T1PtrType = T1->getAs<PointerType>(),
1451 *T2PtrType = T2->getAs<PointerType>();
Douglas Gregor57373262008-10-22 14:17:15 +00001452 if (T1PtrType && T2PtrType) {
1453 T1 = T1PtrType->getPointeeType();
1454 T2 = T2PtrType->getPointeeType();
1455 return true;
1456 }
1457
Ted Kremenek6217b802009-07-29 21:53:49 +00001458 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
1459 *T2MPType = T2->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001460 if (T1MPType && T2MPType &&
1461 Context.getCanonicalType(T1MPType->getClass()) ==
1462 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001463 T1 = T1MPType->getPointeeType();
1464 T2 = T2MPType->getPointeeType();
1465 return true;
1466 }
Douglas Gregor57373262008-10-22 14:17:15 +00001467 return false;
1468}
1469
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001470Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001471 // C99 6.7.6: Type names have no identifier. This is already validated by
1472 // the parser.
1473 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001474
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001475 DeclaratorInfo *DInfo = 0;
Douglas Gregor402abb52009-05-28 23:31:59 +00001476 TagDecl *OwnedTag = 0;
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001477 QualType T = GetTypeForDeclarator(D, S, &DInfo, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001478 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001479 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001480
Douglas Gregor402abb52009-05-28 23:31:59 +00001481 if (getLangOptions().CPlusPlus) {
1482 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001483 CheckExtraCXXDefaultArguments(D);
1484
Douglas Gregor402abb52009-05-28 23:31:59 +00001485 // C++0x [dcl.type]p3:
1486 // A type-specifier-seq shall not define a class or enumeration
1487 // unless it appears in the type-id of an alias-declaration
1488 // (7.1.3).
1489 if (OwnedTag && OwnedTag->isDefinition())
1490 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1491 << Context.getTypeDeclType(OwnedTag);
1492 }
1493
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001494 if (DInfo)
1495 T = CreateLocInfoType(T, DInfo);
1496
Reid Spencer5f016e22007-07-11 17:01:13 +00001497 return T.getAsOpaquePtr();
1498}
1499
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001500
1501
1502//===----------------------------------------------------------------------===//
1503// Type Attribute Processing
1504//===----------------------------------------------------------------------===//
1505
1506/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1507/// specified type. The attribute contains 1 argument, the id of the address
1508/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001509static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001510 const AttributeList &Attr, Sema &S){
John McCall0953e762009-09-24 19:53:00 +00001511
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001512 // If this type is already address space qualified, reject it.
1513 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1514 // for two or more different address spaces."
1515 if (Type.getAddressSpace()) {
1516 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1517 return;
1518 }
Mike Stump1eb44332009-09-09 15:08:12 +00001519
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001520 // Check the attribute arguments.
1521 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001522 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001523 return;
1524 }
1525 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1526 llvm::APSInt addrSpace(32);
1527 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001528 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1529 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001530 return;
1531 }
1532
John McCallefadb772009-07-28 06:52:18 +00001533 // Bounds checking.
1534 if (addrSpace.isSigned()) {
1535 if (addrSpace.isNegative()) {
1536 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1537 << ASArgExpr->getSourceRange();
1538 return;
1539 }
1540 addrSpace.setIsSigned(false);
1541 }
1542 llvm::APSInt max(addrSpace.getBitWidth());
John McCall0953e762009-09-24 19:53:00 +00001543 max = Qualifiers::MaxAddressSpace;
John McCallefadb772009-07-28 06:52:18 +00001544 if (addrSpace > max) {
1545 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
John McCall0953e762009-09-24 19:53:00 +00001546 << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
John McCallefadb772009-07-28 06:52:18 +00001547 return;
1548 }
1549
Mike Stump1eb44332009-09-09 15:08:12 +00001550 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001551 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001552}
1553
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001554/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1555/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001556static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001557 const AttributeList &Attr, Sema &S) {
John McCall0953e762009-09-24 19:53:00 +00001558 if (Type.getObjCGCAttr() != Qualifiers::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001559 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001560 return;
1561 }
Mike Stump1eb44332009-09-09 15:08:12 +00001562
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001563 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001564 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001565 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1566 << "objc_gc" << 1;
1567 return;
1568 }
John McCall0953e762009-09-24 19:53:00 +00001569 Qualifiers::GC GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001570 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001571 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1572 return;
1573 }
Mike Stump1eb44332009-09-09 15:08:12 +00001574 if (Attr.getParameterName()->isStr("weak"))
John McCall0953e762009-09-24 19:53:00 +00001575 GCAttr = Qualifiers::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001576 else if (Attr.getParameterName()->isStr("strong"))
John McCall0953e762009-09-24 19:53:00 +00001577 GCAttr = Qualifiers::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001578 else {
1579 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1580 << "objc_gc" << Attr.getParameterName();
1581 return;
1582 }
Mike Stump1eb44332009-09-09 15:08:12 +00001583
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001584 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001585}
1586
Mike Stump24556362009-07-25 21:26:53 +00001587/// HandleNoReturnTypeAttribute - Process the noreturn attribute on the
1588/// specified type. The attribute contains 0 arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001589static void HandleNoReturnTypeAttribute(QualType &Type,
Mike Stump24556362009-07-25 21:26:53 +00001590 const AttributeList &Attr, Sema &S) {
1591 if (Attr.getNumArgs() != 0)
1592 return;
1593
1594 // We only apply this to a pointer to function or a pointer to block.
1595 if (!Type->isFunctionPointerType()
1596 && !Type->isBlockPointerType()
1597 && !Type->isFunctionType())
1598 return;
1599
1600 Type = S.Context.getNoReturnType(Type);
1601}
1602
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001603void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001604 // Scan through and apply attributes to this type where it makes sense. Some
1605 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1606 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001607 // apply to the decl. Here we apply type attributes and ignore the rest.
1608 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001609 // If this is an attribute we can handle, do so now, otherwise, add it to
1610 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001611 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001612 default: break;
1613 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001614 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1615 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001616 case AttributeList::AT_objc_gc:
1617 HandleObjCGCTypeAttribute(Result, *AL, *this);
1618 break;
Mike Stump24556362009-07-25 21:26:53 +00001619 case AttributeList::AT_noreturn:
1620 HandleNoReturnTypeAttribute(Result, *AL, *this);
1621 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001622 }
Chris Lattner232e8822008-02-21 01:08:11 +00001623 }
Chris Lattner232e8822008-02-21 01:08:11 +00001624}
1625
Mike Stump1eb44332009-09-09 15:08:12 +00001626/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001627///
1628/// This routine checks whether the type @p T is complete in any
1629/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001630/// type, returns false. If @p T is a class template specialization,
1631/// this routine then attempts to perform class template
1632/// instantiation. If instantiation fails, or if @p T is incomplete
1633/// and cannot be completed, issues the diagnostic @p diag (giving it
1634/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001635///
1636/// @param Loc The location in the source that the incomplete type
1637/// diagnostic should refer to.
1638///
1639/// @param T The type that this routine is examining for completeness.
1640///
Mike Stump1eb44332009-09-09 15:08:12 +00001641/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00001642/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001643///
1644/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1645/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001646bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001647 const PartialDiagnostic &PD,
1648 std::pair<SourceLocation,
1649 PartialDiagnostic> Note) {
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001650 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00001651
Douglas Gregor573d9c32009-10-21 23:19:44 +00001652 // FIXME: Add this assertion to make sure we always get instantiation points.
1653 // assert(!Loc.isInvalid() && "Invalid location in RequireCompleteType");
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001654 // FIXME: Add this assertion to help us flush out problems with
1655 // checking for dependent types and type-dependent expressions.
1656 //
Mike Stump1eb44332009-09-09 15:08:12 +00001657 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001658 // "Can't ask whether a dependent type is complete");
1659
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001660 // If we have a complete type, we're done.
1661 if (!T->isIncompleteType())
1662 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001663
Douglas Gregord475b8d2009-03-25 21:17:03 +00001664 // If we have a class template specialization or a class member of a
1665 // class template specialization, try to instantiate it.
Ted Kremenek6217b802009-07-29 21:53:49 +00001666 if (const RecordType *Record = T->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001667 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001668 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001669 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001670 if (Loc.isValid())
John McCall9cc78072009-09-11 07:25:08 +00001671 ClassTemplateSpec->setPointOfInstantiation(Loc);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001672 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001673 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001674 /*Complain=*/diag != 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001675 }
Mike Stump1eb44332009-09-09 15:08:12 +00001676 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001677 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1678 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001679 MemberSpecializationInfo *MSInfo = Rec->getMemberSpecializationInfo();
1680 assert(MSInfo && "Missing member specialization information?");
Douglas Gregor357bbd02009-08-28 20:50:45 +00001681 // This record was instantiated from a class within a template.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001682 if (MSInfo->getTemplateSpecializationKind()
1683 != TSK_ExplicitSpecialization) {
1684 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregorf6b11852009-10-08 15:14:33 +00001685 return InstantiateClass(Loc, Rec, Pattern,
1686 getTemplateInstantiationArgs(Rec),
1687 TSK_ImplicitInstantiation,
1688 /*Complain=*/diag != 0);
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001689 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001690 }
1691 }
1692 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001693
Douglas Gregor5842ba92009-08-24 15:23:48 +00001694 if (diag == 0)
1695 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001696
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001697 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001698 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001699
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001700 // If we have a note, produce it.
1701 if (!Note.first.isInvalid())
1702 Diag(Note.first, Note.second);
1703
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001704 // If the type was a forward declaration of a class/struct/union
Mike Stump1eb44332009-09-09 15:08:12 +00001705 // type, produce
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001706 const TagType *Tag = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +00001707 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001708 Tag = Record;
John McCall183700f2009-09-21 23:43:11 +00001709 else if (const EnumType *Enum = T->getAs<EnumType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001710 Tag = Enum;
1711
1712 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00001713 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001714 Tag->isBeingDefined() ? diag::note_type_being_defined
1715 : diag::note_forward_declaration)
1716 << QualType(Tag, 0);
1717
1718 return true;
1719}
Douglas Gregore6258932009-03-19 00:39:20 +00001720
1721/// \brief Retrieve a version of the type 'T' that is qualified by the
1722/// nested-name-specifier contained in SS.
1723QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1724 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1725 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00001726
Douglas Gregorab452ba2009-03-26 23:50:42 +00001727 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001728 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001729 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001730}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001731
1732QualType Sema::BuildTypeofExprType(Expr *E) {
1733 return Context.getTypeOfExprType(E);
1734}
1735
1736QualType Sema::BuildDecltypeType(Expr *E) {
1737 if (E->getType() == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00001738 Diag(E->getLocStart(),
Anders Carlssonaf017e62009-06-29 22:58:55 +00001739 diag::err_cannot_determine_declared_type_of_overloaded_function);
1740 return QualType();
1741 }
1742 return Context.getDecltypeType(E);
1743}