blob: 8c1730d47aa2f7818d130e6a9ab21ad4cdd6f65c [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
Chris Lattner5db2bb12009-10-25 18:21:37 +000051
52
53/// isOmittedBlockReturnType - Return true if this declarator is missing a
54/// return type because this is a omitted return type on a block literal.
55static bool isOmittedBlockReturnType(const Declarator &D, unsigned Skip) {
56 if (D.getContext() != Declarator::BlockLiteralContext ||
57 Skip != 0 || D.getDeclSpec().hasTypeSpecifier())
58 return false;
59
60 if (D.getNumTypeObjects() == 0)
61 return true;
62
63 if (D.getNumTypeObjects() == 1 &&
64 D.getTypeObject(0).Kind == DeclaratorChunk::Function)
65 return true;
66
67 return false;
68}
69
Douglas Gregor930d8b52009-01-30 22:09:00 +000070/// \brief Convert the specified declspec to the appropriate type
71/// object.
Chris Lattner5db2bb12009-10-25 18:21:37 +000072/// \param D the declarator containing the declaration specifier.
Chris Lattner5153ee62009-04-25 08:47:54 +000073/// \returns The type described by the declaration specifiers. This function
74/// never returns null.
Chris Lattner5db2bb12009-10-25 18:21:37 +000075static QualType ConvertDeclSpecToType(Declarator &TheDeclarator, unsigned Skip,
76 Sema &TheSema) {
Reid Spencer5f016e22007-07-11 17:01:13 +000077 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
78 // checking.
Chris Lattner5db2bb12009-10-25 18:21:37 +000079 const DeclSpec &DS = TheDeclarator.getDeclSpec();
80 SourceLocation DeclLoc = TheDeclarator.getIdentifierLoc();
81 if (DeclLoc.isInvalid())
82 DeclLoc = DS.getSourceRange().getBegin();
Chris Lattner1564e392009-10-25 18:07:27 +000083
84 ASTContext &Context = TheSema.Context;
Mike Stump1eb44332009-09-09 15:08:12 +000085
Chris Lattner5db2bb12009-10-25 18:21:37 +000086 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +000087 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000088 case DeclSpec::TST_void:
89 Result = Context.VoidTy;
90 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000091 case DeclSpec::TST_char:
92 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000093 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000094 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000095 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000096 else {
97 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
98 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000099 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 }
Chris Lattner958858e2008-02-20 21:40:32 +0000101 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000102 case DeclSpec::TST_wchar:
103 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
104 Result = Context.WCharTy;
105 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattner1564e392009-10-25 18:07:27 +0000106 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000107 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000108 Result = Context.getSignedWCharType();
109 } else {
110 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
111 "Unknown TSS value");
Chris Lattner1564e392009-10-25 18:07:27 +0000112 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000113 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000114 Result = Context.getUnsignedWCharType();
115 }
116 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000117 case DeclSpec::TST_char16:
118 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
119 "Unknown TSS value");
120 Result = Context.Char16Ty;
121 break;
122 case DeclSpec::TST_char32:
123 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
124 "Unknown TSS value");
125 Result = Context.Char32Ty;
126 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000127 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000128 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000129 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000130 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000131 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000132 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000133 break;
134 }
Chris Lattner5db2bb12009-10-25 18:21:37 +0000135
136 // If this is a missing declspec in a block literal return context, then it
137 // is inferred from the return statements inside the block.
138 if (isOmittedBlockReturnType(TheDeclarator, Skip)) {
139 Result = Context.DependentTy;
140 break;
141 }
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Chris Lattnerd658b562008-04-05 06:32:51 +0000143 // Unspecified typespec defaults to int in C90. However, the C90 grammar
144 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
145 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
146 // Note that the one exception to this is function definitions, which are
147 // allowed to be completely missing a declspec. This is handled in the
148 // parser already though by it pretending to have seen an 'int' in this
149 // case.
Chris Lattner1564e392009-10-25 18:07:27 +0000150 if (TheSema.getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000151 // In C89 mode, we only warn if there is a completely missing declspec
152 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000153 if (DS.isEmpty()) {
Chris Lattner1564e392009-10-25 18:07:27 +0000154 TheSema.Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000155 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000156 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
157 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000158 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000159 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000160 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
161 // "At least one type specifier shall be given in the declaration
162 // specifiers in each declaration, and in the specifier-qualifier list in
163 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000164 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner1564e392009-10-25 18:07:27 +0000165 if (TheSema.getLangOptions().CPlusPlus &&
166 !TheSema.getLangOptions().Microsoft) {
167 TheSema.Diag(DeclLoc, diag::err_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000168 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000169
Chris Lattnerb78d8332009-06-26 04:45:06 +0000170 // When this occurs in C++ code, often something is very broken with the
171 // value being declared, poison it as invalid so we don't get chains of
172 // errors.
Chris Lattner5db2bb12009-10-25 18:21:37 +0000173 TheDeclarator.setInvalidType(true);
Chris Lattnerb78d8332009-06-26 04:45:06 +0000174 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000175 TheSema.Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000176 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000177 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000178 }
Mike Stump1eb44332009-09-09 15:08:12 +0000179
180 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000181 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
183 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000184 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
185 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
186 case DeclSpec::TSW_long: Result = Context.LongTy; break;
187 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 }
189 } else {
190 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000191 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
192 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
193 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
194 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 }
196 }
Chris Lattner958858e2008-02-20 21:40:32 +0000197 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000198 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000199 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000200 case DeclSpec::TST_double:
201 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000202 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000203 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000204 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000205 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000206 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 case DeclSpec::TST_decimal32: // _Decimal32
208 case DeclSpec::TST_decimal64: // _Decimal64
209 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner1564e392009-10-25 18:07:27 +0000210 TheSema.Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
Chris Lattner8f12f652009-05-13 05:02:08 +0000211 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000212 TheDeclarator.setInvalidType(true);
Chris Lattner8f12f652009-05-13 05:02:08 +0000213 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000214 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000215 case DeclSpec::TST_enum:
216 case DeclSpec::TST_union:
217 case DeclSpec::TST_struct: {
218 Decl *D = static_cast<Decl *>(DS.getTypeRep());
John McCall6e247262009-10-10 05:48:19 +0000219 if (!D) {
220 // This can happen in C++ with ambiguous lookups.
221 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000222 TheDeclarator.setInvalidType(true);
John McCall6e247262009-10-10 05:48:19 +0000223 break;
224 }
225
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
227 DS.getTypeSpecSign() == 0 &&
228 "Can't handle qualifiers on typedef names yet!");
229 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000230 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
John McCall2191b202009-09-05 06:31:47 +0000231
232 // In C++, make an ElaboratedType.
Chris Lattner1564e392009-10-25 18:07:27 +0000233 if (TheSema.getLangOptions().CPlusPlus) {
John McCall2191b202009-09-05 06:31:47 +0000234 TagDecl::TagKind Tag
235 = TagDecl::getTagKindForTypeSpec(DS.getTypeSpecType());
236 Result = Context.getElaboratedType(Result, Tag);
237 }
Mike Stump1eb44332009-09-09 15:08:12 +0000238
Chris Lattner5153ee62009-04-25 08:47:54 +0000239 if (D->isInvalidDecl())
Chris Lattner5db2bb12009-10-25 18:21:37 +0000240 TheDeclarator.setInvalidType(true);
Chris Lattner958858e2008-02-20 21:40:32 +0000241 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000242 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000243 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000244 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
245 DS.getTypeSpecSign() == 0 &&
246 "Can't handle qualifiers on typedef names yet!");
Chris Lattner1564e392009-10-25 18:07:27 +0000247 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000248
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000249 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000250 if (const ObjCInterfaceType *
251 Interface = Result->getAs<ObjCInterfaceType>()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000252 // It would be nice if protocol qualifiers were only stored with the
253 // ObjCObjectPointerType. Unfortunately, this isn't possible due
254 // to the following typedef idiom (which is uncommon, but allowed):
Mike Stump1eb44332009-09-09 15:08:12 +0000255 //
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000256 // typedef Foo<P> T;
257 // static void func() {
258 // Foo<P> *yy;
259 // T *zz;
260 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000261 Result = Context.getObjCInterfaceType(Interface->getDecl(),
262 (ObjCProtocolDecl**)PQ,
263 DS.getNumProtocolQualifiers());
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000264 } else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000265 // id<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000266 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000267 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
268 else if (Result->isObjCClassType()) {
Steve Naroff4262a072009-02-23 18:53:24 +0000269 // Class<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000270 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
Steve Naroff470301b2009-07-22 16:07:01 +0000271 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000272 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000273 TheSema.Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000274 << DS.getSourceRange();
Chris Lattner5db2bb12009-10-25 18:21:37 +0000275 TheDeclarator.setInvalidType(true);
Chris Lattner3f84ad22009-04-22 05:27:59 +0000276 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000277 }
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Chris Lattnereaaebc72009-04-25 08:06:05 +0000279 // If this is a reference to an invalid typedef, propagate the invalidity.
280 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
281 if (TDT->getDecl()->isInvalidDecl())
Chris Lattner5db2bb12009-10-25 18:21:37 +0000282 TheDeclarator.setInvalidType(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000285 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000286 }
Chris Lattner958858e2008-02-20 21:40:32 +0000287 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000288 // FIXME: Preserve type source info.
Chris Lattner1564e392009-10-25 18:07:27 +0000289 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000290 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000291 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000292 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000293 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000294 case DeclSpec::TST_typeofExpr: {
295 Expr *E = static_cast<Expr *>(DS.getTypeRep());
296 assert(E && "Didn't get an expression for typeof?");
297 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000298 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000299 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000300 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000301 case DeclSpec::TST_decltype: {
302 Expr *E = static_cast<Expr *>(DS.getTypeRep());
303 assert(E && "Didn't get an expression for decltype?");
304 // TypeQuals handled by caller.
Chris Lattner1564e392009-10-25 18:07:27 +0000305 Result = TheSema.BuildDecltypeType(E);
Anders Carlssonaf017e62009-06-29 22:58:55 +0000306 if (Result.isNull()) {
307 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000308 TheDeclarator.setInvalidType(true);
Anders Carlssonaf017e62009-06-29 22:58:55 +0000309 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000310 break;
311 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000312 case DeclSpec::TST_auto: {
313 // TypeQuals handled by caller.
314 Result = Context.UndeducedAutoTy;
315 break;
316 }
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Douglas Gregor809070a2009-02-18 17:45:20 +0000318 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000319 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000320 TheDeclarator.setInvalidType(true);
Chris Lattner5153ee62009-04-25 08:47:54 +0000321 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000322 }
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Chris Lattner958858e2008-02-20 21:40:32 +0000324 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000325 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
Chris Lattner1564e392009-10-25 18:07:27 +0000326 if (TheSema.getLangOptions().Freestanding)
327 TheSema.Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000328 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000329 }
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Chris Lattner958858e2008-02-20 21:40:32 +0000331 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
332 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Chris Lattner38d8b982008-02-20 22:04:11 +0000334 // See if there are any attributes on the declspec that apply to the type (as
335 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000336 if (const AttributeList *AL = DS.getAttributes())
Chris Lattner1564e392009-10-25 18:07:27 +0000337 TheSema.ProcessTypeAttributeList(Result, AL);
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Chris Lattner96b77fc2008-04-02 06:50:17 +0000339 // Apply const/volatile/restrict qualifiers to T.
340 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
341
342 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
343 // or incomplete types shall not be restrict-qualified." C++ also allows
344 // restrict-qualified references.
John McCall0953e762009-09-24 19:53:00 +0000345 if (TypeQuals & DeclSpec::TQ_restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000346 if (Result->isPointerType() || Result->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000347 QualType EltTy = Result->isPointerType() ?
Ted Kremenek6217b802009-07-29 21:53:49 +0000348 Result->getAs<PointerType>()->getPointeeType() :
349 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000350
Douglas Gregorbad0e652009-03-24 20:32:41 +0000351 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000352 // incomplete type.
353 if (!EltTy->isIncompleteOrObjectType()) {
Chris Lattner1564e392009-10-25 18:07:27 +0000354 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000355 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000356 << EltTy << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000357 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000358 }
359 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000360 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000361 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000362 << Result << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000363 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000364 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000365 }
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Chris Lattner96b77fc2008-04-02 06:50:17 +0000367 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
368 // of a function type includes any type qualifiers, the behavior is
369 // undefined."
370 if (Result->isFunctionType() && TypeQuals) {
371 // Get some location to point at, either the C or V location.
372 SourceLocation Loc;
John McCall0953e762009-09-24 19:53:00 +0000373 if (TypeQuals & DeclSpec::TQ_const)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000374 Loc = DS.getConstSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000375 else if (TypeQuals & DeclSpec::TQ_volatile)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000376 Loc = DS.getVolatileSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000377 else {
378 assert((TypeQuals & DeclSpec::TQ_restrict) &&
379 "Has CVR quals but not C, V, or R?");
380 Loc = DS.getRestrictSpecLoc();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000381 }
Chris Lattner1564e392009-10-25 18:07:27 +0000382 TheSema.Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000383 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000384 }
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000386 // C++ [dcl.ref]p1:
387 // Cv-qualified references are ill-formed except when the
388 // cv-qualifiers are introduced through the use of a typedef
389 // (7.1.3) or of a template type argument (14.3), in which
390 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000391 // FIXME: Shouldn't we be checking SCS_typedef here?
392 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000393 TypeQuals && Result->isReferenceType()) {
John McCall0953e762009-09-24 19:53:00 +0000394 TypeQuals &= ~DeclSpec::TQ_const;
395 TypeQuals &= ~DeclSpec::TQ_volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000396 }
397
John McCall0953e762009-09-24 19:53:00 +0000398 Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
399 Result = Context.getQualifiedType(Result, Quals);
Chris Lattner96b77fc2008-04-02 06:50:17 +0000400 }
John McCall0953e762009-09-24 19:53:00 +0000401
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000402 return Result;
403}
404
Douglas Gregorcd281c32009-02-28 00:25:32 +0000405static std::string getPrintableNameForEntity(DeclarationName Entity) {
406 if (Entity)
407 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Douglas Gregorcd281c32009-02-28 00:25:32 +0000409 return "type name";
410}
411
412/// \brief Build a pointer type.
413///
414/// \param T The type to which we'll be building a pointer.
415///
416/// \param Quals The cvr-qualifiers to be applied to the pointer type.
417///
418/// \param Loc The location of the entity whose type involves this
419/// pointer type or, if there is no such entity, the location of the
420/// type that will have pointer type.
421///
422/// \param Entity The name of the entity that involves the pointer
423/// type, if known.
424///
425/// \returns A suitable pointer type, if there are no
426/// errors. Otherwise, returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000427QualType Sema::BuildPointerType(QualType T, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000428 SourceLocation Loc, DeclarationName Entity) {
429 if (T->isReferenceType()) {
430 // C++ 8.3.2p4: There shall be no ... pointers to references ...
431 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
432 << getPrintableNameForEntity(Entity);
433 return QualType();
434 }
435
John McCall0953e762009-09-24 19:53:00 +0000436 Qualifiers Qs = Qualifiers::fromCVRMask(Quals);
437
Douglas Gregorcd281c32009-02-28 00:25:32 +0000438 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
439 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000440 if (Qs.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000441 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
442 << T;
John McCall0953e762009-09-24 19:53:00 +0000443 Qs.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000444 }
445
446 // Build the pointer type.
John McCall0953e762009-09-24 19:53:00 +0000447 return Context.getQualifiedType(Context.getPointerType(T), Qs);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000448}
449
450/// \brief Build a reference type.
451///
452/// \param T The type to which we'll be building a reference.
453///
John McCall0953e762009-09-24 19:53:00 +0000454/// \param CVR The cvr-qualifiers to be applied to the reference type.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000455///
456/// \param Loc The location of the entity whose type involves this
457/// reference type or, if there is no such entity, the location of the
458/// type that will have reference type.
459///
460/// \param Entity The name of the entity that involves the reference
461/// type, if known.
462///
463/// \returns A suitable reference type, if there are no
464/// errors. Otherwise, returns a NULL type.
John McCall54e14c42009-10-22 22:37:11 +0000465QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue,
466 unsigned CVR, SourceLocation Loc,
467 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000468 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
John McCall54e14c42009-10-22 22:37:11 +0000469
470 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
471
472 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
473 // reference to a type T, and attempt to create the type "lvalue
474 // reference to cv TD" creates the type "lvalue reference to T".
475 // We use the qualifiers (restrict or none) of the original reference,
476 // not the new ones. This is consistent with GCC.
477
478 // C++ [dcl.ref]p4: There shall be no references to references.
479 //
480 // According to C++ DR 106, references to references are only
481 // diagnosed when they are written directly (e.g., "int & &"),
482 // but not when they happen via a typedef:
483 //
484 // typedef int& intref;
485 // typedef intref& intref2;
486 //
487 // Parser::ParseDeclaratorInternal diagnoses the case where
488 // references are written directly; here, we handle the
489 // collapsing of references-to-references as described in C++
490 // DR 106 and amended by C++ DR 540.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000491
492 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000493 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000494 // is ill-formed.
495 if (T->isVoidType()) {
496 Diag(Loc, diag::err_reference_to_void);
497 return QualType();
498 }
499
500 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
501 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000502 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000503 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
504 << T;
John McCall0953e762009-09-24 19:53:00 +0000505 Quals.removeRestrict();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000506 }
507
508 // C++ [dcl.ref]p1:
509 // [...] Cv-qualified references are ill-formed except when the
510 // cv-qualifiers are introduced through the use of a typedef
511 // (7.1.3) or of a template type argument (14.3), in which case
512 // the cv-qualifiers are ignored.
513 //
514 // We diagnose extraneous cv-qualifiers for the non-typedef,
515 // non-template type argument case within the parser. Here, we just
516 // ignore any extraneous cv-qualifiers.
John McCall0953e762009-09-24 19:53:00 +0000517 Quals.removeConst();
518 Quals.removeVolatile();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000519
520 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000521 if (LValueRef)
John McCall54e14c42009-10-22 22:37:11 +0000522 return Context.getQualifiedType(
523 Context.getLValueReferenceType(T, SpelledAsLValue), Quals);
John McCall0953e762009-09-24 19:53:00 +0000524 return Context.getQualifiedType(Context.getRValueReferenceType(T), Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000525}
526
527/// \brief Build an array type.
528///
529/// \param T The type of each element in the array.
530///
531/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000532///
533/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000534///
535/// \param Quals The cvr-qualifiers to be applied to the array's
536/// element type.
537///
538/// \param Loc The location of the entity whose type involves this
539/// array type or, if there is no such entity, the location of the
540/// type that will have array type.
541///
542/// \param Entity The name of the entity that involves the array
543/// type, if known.
544///
545/// \returns A suitable array type, if there are no errors. Otherwise,
546/// returns a NULL type.
547QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
548 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000549 SourceRange Brackets, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000550
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000551 SourceLocation Loc = Brackets.getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000552 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000553 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Mike Stump1eb44332009-09-09 15:08:12 +0000554 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000555 diag::err_illegal_decl_array_incomplete_type))
556 return QualType();
557
558 if (T->isFunctionType()) {
559 Diag(Loc, diag::err_illegal_decl_array_of_functions)
560 << getPrintableNameForEntity(Entity);
561 return QualType();
562 }
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Douglas Gregorcd281c32009-02-28 00:25:32 +0000564 // C++ 8.3.2p4: There shall be no ... arrays of references ...
565 if (T->isReferenceType()) {
566 Diag(Loc, diag::err_illegal_decl_array_of_references)
567 << getPrintableNameForEntity(Entity);
568 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000569 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000570
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000571 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000572 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000573 << getPrintableNameForEntity(Entity);
574 return QualType();
575 }
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Ted Kremenek6217b802009-07-29 21:53:49 +0000577 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000578 // If the element type is a struct or union that contains a variadic
579 // array, accept it as a GNU extension: C99 6.7.2.1p2.
580 if (EltTy->getDecl()->hasFlexibleArrayMember())
581 Diag(Loc, diag::ext_flexible_array_in_array) << T;
582 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000583 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
584 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000585 }
Mike Stump1eb44332009-09-09 15:08:12 +0000586
Douglas Gregorcd281c32009-02-28 00:25:32 +0000587 // C99 6.7.5.2p1: The size expression shall have integer type.
588 if (ArraySize && !ArraySize->isTypeDependent() &&
589 !ArraySize->getType()->isIntegerType()) {
590 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
591 << ArraySize->getType() << ArraySize->getSourceRange();
592 ArraySize->Destroy(Context);
593 return QualType();
594 }
595 llvm::APSInt ConstVal(32);
596 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000597 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000598 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000599 else
600 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000601 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000602 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000603 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
604 (!T->isDependentType() && !T->isConstantSizeType())) {
605 // Per C99, a variable array is an array with either a non-constant
606 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000607 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000608 } else {
609 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
610 // have a value greater than zero.
611 if (ConstVal.isSigned()) {
612 if (ConstVal.isNegative()) {
613 Diag(ArraySize->getLocStart(),
614 diag::err_typecheck_negative_array_size)
615 << ArraySize->getSourceRange();
616 return QualType();
617 } else if (ConstVal == 0) {
618 // GCC accepts zero sized static arrays.
619 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
620 << ArraySize->getSourceRange();
621 }
Mike Stump1eb44332009-09-09 15:08:12 +0000622 }
John McCall46a617a2009-10-16 00:14:28 +0000623 T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000624 }
625 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
626 if (!getLangOptions().C99) {
Mike Stump1eb44332009-09-09 15:08:12 +0000627 if (ArraySize && !ArraySize->isTypeDependent() &&
628 !ArraySize->isValueDependent() &&
Douglas Gregorcd281c32009-02-28 00:25:32 +0000629 !ArraySize->isIntegerConstantExpr(Context))
Douglas Gregor043cad22009-09-11 00:18:58 +0000630 Diag(Loc, getLangOptions().CPlusPlus? diag::err_vla_cxx : diag::ext_vla);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000631 else if (ASM != ArrayType::Normal || Quals != 0)
Douglas Gregor043cad22009-09-11 00:18:58 +0000632 Diag(Loc,
633 getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
634 : diag::ext_c99_array_usage);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000635 }
636
637 return T;
638}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000639
640/// \brief Build an ext-vector type.
641///
642/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000643QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000644 SourceLocation AttrLoc) {
645
646 Expr *Arg = (Expr *)ArraySize.get();
647
648 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
649 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000650 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000651 !T->isIntegerType() && !T->isRealFloatingType()) {
652 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
653 return QualType();
654 }
655
656 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
657 llvm::APSInt vecSize(32);
658 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
659 Diag(AttrLoc, diag::err_attribute_argument_not_int)
660 << "ext_vector_type" << Arg->getSourceRange();
661 return QualType();
662 }
Mike Stump1eb44332009-09-09 15:08:12 +0000663
664 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000665 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000666 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
667
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000668 if (vectorSize == 0) {
669 Diag(AttrLoc, diag::err_attribute_zero_size)
670 << Arg->getSourceRange();
671 return QualType();
672 }
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000674 if (!T->isDependentType())
675 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000676 }
677
678 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000679 AttrLoc);
680}
Mike Stump1eb44332009-09-09 15:08:12 +0000681
Douglas Gregor724651c2009-02-28 01:04:19 +0000682/// \brief Build a function type.
683///
684/// This routine checks the function type according to C++ rules and
685/// under the assumption that the result type and parameter types have
686/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000687/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000688/// simpler form that is only suitable for this narrow use case.
689///
690/// \param T The return type of the function.
691///
692/// \param ParamTypes The parameter types of the function. This array
693/// will be modified to account for adjustments to the types of the
694/// function parameters.
695///
696/// \param NumParamTypes The number of parameter types in ParamTypes.
697///
698/// \param Variadic Whether this is a variadic function type.
699///
700/// \param Quals The cvr-qualifiers to be applied to the function type.
701///
702/// \param Loc The location of the entity whose type involves this
703/// function type or, if there is no such entity, the location of the
704/// type that will have function type.
705///
706/// \param Entity The name of the entity that involves the function
707/// type, if known.
708///
709/// \returns A suitable function type, if there are no
710/// errors. Otherwise, returns a NULL type.
711QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000712 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000713 unsigned NumParamTypes,
714 bool Variadic, unsigned Quals,
715 SourceLocation Loc, DeclarationName Entity) {
716 if (T->isArrayType() || T->isFunctionType()) {
717 Diag(Loc, diag::err_func_returning_array_function) << T;
718 return QualType();
719 }
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Douglas Gregor724651c2009-02-28 01:04:19 +0000721 bool Invalid = false;
722 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000723 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
724 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000725 Diag(Loc, diag::err_param_with_void_type);
726 Invalid = true;
727 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000728
John McCall54e14c42009-10-22 22:37:11 +0000729 ParamTypes[Idx] = ParamType;
Douglas Gregor724651c2009-02-28 01:04:19 +0000730 }
731
732 if (Invalid)
733 return QualType();
734
Mike Stump1eb44332009-09-09 15:08:12 +0000735 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Douglas Gregor724651c2009-02-28 01:04:19 +0000736 Quals);
737}
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Douglas Gregor949bf692009-06-09 22:17:39 +0000739/// \brief Build a member pointer type \c T Class::*.
740///
741/// \param T the type to which the member pointer refers.
742/// \param Class the class type into which the member pointer points.
John McCall0953e762009-09-24 19:53:00 +0000743/// \param CVR Qualifiers applied to the member pointer type
Douglas Gregor949bf692009-06-09 22:17:39 +0000744/// \param Loc the location where this type begins
745/// \param Entity the name of the entity that will have this member pointer type
746///
747/// \returns a member pointer type, if successful, or a NULL type if there was
748/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000749QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
John McCall0953e762009-09-24 19:53:00 +0000750 unsigned CVR, SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000751 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000752 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
753
Douglas Gregor949bf692009-06-09 22:17:39 +0000754 // Verify that we're not building a pointer to pointer to function with
755 // exception specification.
756 if (CheckDistantExceptionSpec(T)) {
757 Diag(Loc, diag::err_distant_exception_spec);
758
759 // FIXME: If we're doing this as part of template instantiation,
760 // we should return immediately.
761
762 // Build the type anyway, but use the canonical type so that the
763 // exception specifiers are stripped off.
764 T = Context.getCanonicalType(T);
765 }
766
767 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
768 // with reference type, or "cv void."
769 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000770 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000771 << (Entity? Entity.getAsString() : "type name");
772 return QualType();
773 }
774
775 if (T->isVoidType()) {
776 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
777 << (Entity? Entity.getAsString() : "type name");
778 return QualType();
779 }
780
781 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
782 // object or incomplete types shall not be restrict-qualified."
John McCall0953e762009-09-24 19:53:00 +0000783 if (Quals.hasRestrict() && !T->isIncompleteOrObjectType()) {
Douglas Gregor949bf692009-06-09 22:17:39 +0000784 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
785 << T;
786
787 // FIXME: If we're doing this as part of template instantiation,
788 // we should return immediately.
John McCall0953e762009-09-24 19:53:00 +0000789 Quals.removeRestrict();
Douglas Gregor949bf692009-06-09 22:17:39 +0000790 }
791
792 if (!Class->isDependentType() && !Class->isRecordType()) {
793 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
794 return QualType();
795 }
796
John McCall0953e762009-09-24 19:53:00 +0000797 return Context.getQualifiedType(
798 Context.getMemberPointerType(T, Class.getTypePtr()), Quals);
Douglas Gregor949bf692009-06-09 22:17:39 +0000799}
Mike Stump1eb44332009-09-09 15:08:12 +0000800
Anders Carlsson9a917e42009-06-12 22:56:54 +0000801/// \brief Build a block pointer type.
802///
803/// \param T The type to which we'll be building a block pointer.
804///
John McCall0953e762009-09-24 19:53:00 +0000805/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
Anders Carlsson9a917e42009-06-12 22:56:54 +0000806///
807/// \param Loc The location of the entity whose type involves this
808/// block pointer type or, if there is no such entity, the location of the
809/// type that will have block pointer type.
810///
811/// \param Entity The name of the entity that involves the block pointer
812/// type, if known.
813///
814/// \returns A suitable block pointer type, if there are no
815/// errors. Otherwise, returns a NULL type.
John McCall0953e762009-09-24 19:53:00 +0000816QualType Sema::BuildBlockPointerType(QualType T, unsigned CVR,
Mike Stump1eb44332009-09-09 15:08:12 +0000817 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000818 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000819 if (!T->isFunctionType()) {
Anders Carlsson9a917e42009-06-12 22:56:54 +0000820 Diag(Loc, diag::err_nonfunction_block_type);
821 return QualType();
822 }
Mike Stump1eb44332009-09-09 15:08:12 +0000823
John McCall0953e762009-09-24 19:53:00 +0000824 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
825 return Context.getQualifiedType(Context.getBlockPointerType(T), Quals);
Anders Carlsson9a917e42009-06-12 22:56:54 +0000826}
827
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000828QualType Sema::GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo) {
829 QualType QT = QualType::getFromOpaquePtr(Ty);
830 DeclaratorInfo *DI = 0;
831 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
832 QT = LIT->getType();
833 DI = LIT->getDeclaratorInfo();
834 }
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000836 if (DInfo) *DInfo = DI;
837 return QT;
838}
839
Mike Stump98eb8a72009-02-04 22:31:32 +0000840/// GetTypeForDeclarator - Convert the type for the specified
841/// declarator to Type instances. Skip the outermost Skip type
842/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000843///
844/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
845/// owns the declaration of a type (e.g., the definition of a struct
846/// type), then *OwnedDecl will receive the owned declaration.
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000847QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
848 DeclaratorInfo **DInfo, unsigned Skip,
Douglas Gregor402abb52009-05-28 23:31:59 +0000849 TagDecl **OwnedDecl) {
Chris Lattnerb23deda2007-08-28 16:40:32 +0000850 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000851 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000852 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
853 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000854
855 // Determine the type of the declarator. Not all forms of declarator
856 // have a type.
857 QualType T;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000858
Douglas Gregor930d8b52009-01-30 22:09:00 +0000859 switch (D.getKind()) {
860 case Declarator::DK_Abstract:
861 case Declarator::DK_Normal:
Douglas Gregordb422df2009-09-25 21:45:23 +0000862 case Declarator::DK_Operator:
Chris Lattner5db2bb12009-10-25 18:21:37 +0000863 case Declarator::DK_TemplateId:
864 T = ConvertDeclSpecToType(D, Skip, *this);
865
866 if (!D.isInvalidType() && OwnedDecl && D.getDeclSpec().isTypeSpecOwned())
867 *OwnedDecl = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
Douglas Gregor930d8b52009-01-30 22:09:00 +0000868 break;
869
870 case Declarator::DK_Constructor:
871 case Declarator::DK_Destructor:
872 case Declarator::DK_Conversion:
873 // Constructors and destructors don't have return types. Use
874 // "void" instead. Conversion operators will check their return
875 // types separately.
876 T = Context.VoidTy;
877 break;
878 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000879
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000880 if (T == Context.UndeducedAutoTy) {
881 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000883 switch (D.getContext()) {
884 case Declarator::KNRTypeListContext:
885 assert(0 && "K&R type lists aren't allowed in C++");
886 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000887 case Declarator::PrototypeContext:
888 Error = 0; // Function prototype
889 break;
890 case Declarator::MemberContext:
891 switch (cast<TagDecl>(CurContext)->getTagKind()) {
892 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
893 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
894 case TagDecl::TK_union: Error = 2; /* Union member */ break;
895 case TagDecl::TK_class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +0000896 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000897 break;
898 case Declarator::CXXCatchContext:
899 Error = 4; // Exception declaration
900 break;
901 case Declarator::TemplateParamContext:
902 Error = 5; // Template parameter
903 break;
904 case Declarator::BlockLiteralContext:
905 Error = 6; // Block literal
906 break;
907 case Declarator::FileContext:
908 case Declarator::BlockContext:
909 case Declarator::ForContext:
910 case Declarator::ConditionContext:
911 case Declarator::TypeNameContext:
912 break;
913 }
914
915 if (Error != -1) {
916 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
917 << Error;
918 T = Context.IntTy;
919 D.setInvalidType(true);
920 }
921 }
Mike Stump1eb44332009-09-09 15:08:12 +0000922
Douglas Gregorcd281c32009-02-28 00:25:32 +0000923 // The name we're declaring, if any.
924 DeclarationName Name;
925 if (D.getIdentifier())
926 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Mike Stump98eb8a72009-02-04 22:31:32 +0000928 // Walk the DeclTypeInfo, building the recursive type as we go.
929 // DeclTypeInfos are ordered from the identifier out, which is
930 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000931 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
932 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000933 switch (DeclType.Kind) {
934 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000935 case DeclaratorChunk::BlockPointer:
Chris Lattner9af55002009-03-27 04:18:06 +0000936 // If blocks are disabled, emit an error.
937 if (!LangOpts.Blocks)
938 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +0000939
940 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
Anders Carlsson9a917e42009-06-12 22:56:54 +0000941 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000942 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000943 case DeclaratorChunk::Pointer:
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000944 // Verify that we're not building a pointer to pointer to function with
945 // exception specification.
946 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
947 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
948 D.setInvalidType(true);
949 // Build the type anyway.
950 }
Steve Naroff14108da2009-07-10 23:34:53 +0000951 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
John McCall183700f2009-09-21 23:43:11 +0000952 const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>();
Steve Naroff14108da2009-07-10 23:34:53 +0000953 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000954 (ObjCProtocolDecl **)OIT->qual_begin(),
955 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000956 break;
957 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000958 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000959 break;
John McCall0953e762009-09-24 19:53:00 +0000960 case DeclaratorChunk::Reference: {
961 Qualifiers Quals;
962 if (DeclType.Ref.HasRestrict) Quals.addRestrict();
963
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000964 // Verify that we're not building a reference to pointer to function with
965 // exception specification.
966 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
967 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
968 D.setInvalidType(true);
969 // Build the type anyway.
970 }
John McCall0953e762009-09-24 19:53:00 +0000971 T = BuildReferenceType(T, DeclType.Ref.LValueRef, Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000972 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000973 break;
John McCall0953e762009-09-24 19:53:00 +0000974 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000975 case DeclaratorChunk::Array: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000976 // Verify that we're not building an array of pointers to function with
977 // exception specification.
978 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
979 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
980 D.setInvalidType(true);
981 // Build the type anyway.
982 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +0000983 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000984 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 ArrayType::ArraySizeModifier ASM;
986 if (ATI.isStar)
987 ASM = ArrayType::Star;
988 else if (ATI.hasStatic)
989 ASM = ArrayType::Static;
990 else
991 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000992 if (ASM == ArrayType::Star &&
993 D.getContext() != Declarator::PrototypeContext) {
994 // FIXME: This check isn't quite right: it allows star in prototypes
995 // for function definitions, and disallows some edge cases detailed
996 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
997 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
998 ASM = ArrayType::Normal;
999 D.setInvalidType(true);
1000 }
John McCall0953e762009-09-24 19:53:00 +00001001 T = BuildArrayType(T, ASM, ArraySize,
1002 Qualifiers::fromCVRMask(ATI.TypeQuals),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001003 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001004 break;
1005 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001006 case DeclaratorChunk::Function: {
Reid Spencer5f016e22007-07-11 17:01:13 +00001007 // If the function declarator has a prototype (i.e. it is not () and
1008 // does not have a K&R-style identifier list), then the arguments are part
1009 // of the type, otherwise the argument list is ().
1010 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001011
Chris Lattnercd881292007-12-19 05:31:29 +00001012 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +00001013 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001014 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001015 T = Context.IntTy;
1016 D.setInvalidType(true);
1017 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001018
Douglas Gregor402abb52009-05-28 23:31:59 +00001019 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1020 // C++ [dcl.fct]p6:
1021 // Types shall not be defined in return or parameter types.
1022 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1023 if (Tag->isDefinition())
1024 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1025 << Context.getTypeDeclType(Tag);
1026 }
1027
Sebastian Redl3cc97262009-05-31 11:47:27 +00001028 // Exception specs are not allowed in typedefs. Complain, but add it
1029 // anyway.
1030 if (FTI.hasExceptionSpec &&
1031 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1032 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1033
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001034 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001035 if (getLangOptions().CPlusPlus) {
1036 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
1037 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +00001038 llvm::SmallVector<QualType, 4> Exceptions;
1039 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001040 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001041 // FIXME: Preserve type source info.
1042 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001043 // Check that the type is valid for an exception spec, and drop it
1044 // if not.
1045 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1046 Exceptions.push_back(ET);
1047 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001048 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1049 FTI.hasExceptionSpec,
1050 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001051 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001052 } else if (FTI.isVariadic) {
1053 // We allow a zero-parameter variadic function in C if the
1054 // function is marked with the "overloadable"
1055 // attribute. Scan for this attribute now.
1056 bool Overloadable = false;
1057 for (const AttributeList *Attrs = D.getAttributes();
1058 Attrs; Attrs = Attrs->getNext()) {
1059 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1060 Overloadable = true;
1061 break;
1062 }
1063 }
1064
1065 if (!Overloadable)
1066 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1067 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001068 } else {
1069 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001070 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001071 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001072 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001073 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Mike Stump1eb44332009-09-09 15:08:12 +00001074 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
John McCall54e14c42009-10-22 22:37:11 +00001075 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001076 } else {
1077 // Otherwise, we have a function with an argument list that is
1078 // potentially variadic.
1079 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Reid Spencer5f016e22007-07-11 17:01:13 +00001081 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001082 ParmVarDecl *Param =
1083 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001084 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001085 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001086
1087 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001088 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001089
Reid Spencer5f016e22007-07-11 17:01:13 +00001090 // Look for 'void'. void is allowed only as a single argument to a
1091 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001092 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001093 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001094 // If this is something like 'float(int, void)', reject it. 'void'
1095 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1096 // have arguments of incomplete type.
1097 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1098 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001099 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001100 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001101 } else if (FTI.ArgInfo[i].Ident) {
1102 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001103 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001104 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001105 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001106 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001107 } else {
1108 // Reject, but continue to parse 'float(const void)'.
John McCall0953e762009-09-24 19:53:00 +00001109 if (ArgTy.hasQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001110 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Chris Lattner2ff54262007-07-21 05:18:12 +00001112 // Do not add 'void' to the ArgTys list.
1113 break;
1114 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001115 } else if (!FTI.hasPrototype) {
1116 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001117 ArgTy = Context.getPromotedIntegerType(ArgTy);
John McCall183700f2009-09-21 23:43:11 +00001118 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001119 if (BTy->getKind() == BuiltinType::Float)
1120 ArgTy = Context.DoubleTy;
1121 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001122 }
Mike Stump1eb44332009-09-09 15:08:12 +00001123
John McCall54e14c42009-10-22 22:37:11 +00001124 ArgTys.push_back(ArgTy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001125 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001126
1127 llvm::SmallVector<QualType, 4> Exceptions;
1128 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001129 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001130 // FIXME: Preserve type source info.
1131 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001132 // Check that the type is valid for an exception spec, and drop it if
1133 // not.
1134 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1135 Exceptions.push_back(ET);
1136 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001137
Jay Foadbeaaccd2009-05-21 09:52:38 +00001138 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001139 FTI.isVariadic, FTI.TypeQuals,
1140 FTI.hasExceptionSpec,
1141 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001142 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001143 }
1144 break;
1145 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001146 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001147 // Verify that we're not building a pointer to pointer to function with
1148 // exception specification.
1149 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1150 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1151 D.setInvalidType(true);
1152 // Build the type anyway.
1153 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001154 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001155 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001156 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001157 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001158 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1159 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1160 ClsType = QualType(NNS->getAsType(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001161 } else if (CXXRecordDecl *RD
Douglas Gregor949bf692009-06-09 22:17:39 +00001162 = dyn_cast_or_null<CXXRecordDecl>(
1163 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001164 ClsType = Context.getTagDeclType(RD);
1165 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001166 Diag(DeclType.Mem.Scope().getBeginLoc(),
1167 diag::err_illegal_decl_mempointer_in_nonclass)
1168 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1169 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001170 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001171 }
1172
Douglas Gregor949bf692009-06-09 22:17:39 +00001173 if (!ClsType.isNull())
1174 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1175 DeclType.Loc, D.getIdentifier());
1176 if (T.isNull()) {
1177 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001178 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001179 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001180 break;
1181 }
1182
Douglas Gregorcd281c32009-02-28 00:25:32 +00001183 if (T.isNull()) {
1184 D.setInvalidType(true);
1185 T = Context.IntTy;
1186 }
1187
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001188 // See if there are any attributes on this declarator chunk.
1189 if (const AttributeList *AL = DeclType.getAttrs())
1190 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001191 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001192
1193 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
John McCall183700f2009-09-21 23:43:11 +00001194 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
Chris Lattner778ed742009-10-25 17:36:50 +00001195 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001196
1197 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1198 // for a nonstatic member function, the function type to which a pointer
1199 // to member refers, or the top-level function type of a function typedef
1200 // declaration.
1201 if (FnTy->getTypeQuals() != 0 &&
1202 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001203 ((D.getContext() != Declarator::MemberContext &&
1204 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001205 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1206 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001207 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001208 if (D.isFunctionDeclarator())
1209 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1210 else
1211 Diag(D.getIdentifierLoc(),
1212 diag::err_invalid_qualified_typedef_function_type_use);
1213
1214 // Strip the cv-quals from the type.
1215 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001216 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001217 }
1218 }
Mike Stump1eb44332009-09-09 15:08:12 +00001219
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001220 // If there were any type attributes applied to the decl itself (not the
1221 // type, apply the type attribute to the type!)
1222 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001223 ProcessTypeAttributeList(T, Attrs);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001224
John McCall54e14c42009-10-22 22:37:11 +00001225 if (DInfo) {
1226 if (D.isInvalidType())
1227 *DInfo = 0;
1228 else
1229 *DInfo = GetDeclaratorInfoForDeclarator(D, T, Skip);
1230 }
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001231
Reid Spencer5f016e22007-07-11 17:01:13 +00001232 return T;
1233}
1234
John McCall51bd8032009-10-18 01:05:36 +00001235namespace {
1236 class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
1237 const DeclSpec &DS;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001238
John McCall51bd8032009-10-18 01:05:36 +00001239 public:
1240 TypeSpecLocFiller(const DeclSpec &DS) : DS(DS) {}
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001241
John McCall51bd8032009-10-18 01:05:36 +00001242 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1243 Visit(TL.getUnqualifiedLoc());
1244 }
1245 void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1246 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1247 }
1248 void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1249 TL.setNameLoc(DS.getTypeSpecTypeLoc());
Argyrios Kyrtzidiseb667592009-09-29 19:45:22 +00001250
John McCall54e14c42009-10-22 22:37:11 +00001251 if (DS.getProtocolQualifiers()) {
1252 assert(TL.getNumProtocols() > 0);
1253 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1254 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1255 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1256 for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
1257 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
1258 } else {
1259 assert(TL.getNumProtocols() == 0);
1260 TL.setLAngleLoc(SourceLocation());
1261 TL.setRAngleLoc(SourceLocation());
1262 }
1263 }
1264 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1265 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1266
1267 TL.setStarLoc(SourceLocation());
1268
1269 if (DS.getProtocolQualifiers()) {
1270 assert(TL.getNumProtocols() > 0);
1271 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1272 TL.setHasProtocolsAsWritten(true);
1273 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1274 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1275 for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
1276 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
1277
1278 } else {
1279 assert(TL.getNumProtocols() == 0);
1280 TL.setHasProtocolsAsWritten(false);
1281 TL.setLAngleLoc(SourceLocation());
1282 TL.setRAngleLoc(SourceLocation());
1283 }
1284
1285 // This might not have been written with an inner type.
1286 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
1287 TL.setHasBaseTypeAsWritten(false);
1288 TL.getBaseTypeLoc().initialize(SourceLocation());
1289 } else {
1290 TL.setHasBaseTypeAsWritten(true);
John McCall51bd8032009-10-18 01:05:36 +00001291 Visit(TL.getBaseTypeLoc());
John McCall54e14c42009-10-22 22:37:11 +00001292 }
John McCall51bd8032009-10-18 01:05:36 +00001293 }
1294 void VisitTypeLoc(TypeLoc TL) {
1295 // FIXME: add other typespec types and change this to an assert.
1296 TL.initialize(DS.getTypeSpecTypeLoc());
1297 }
1298 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001299
John McCall51bd8032009-10-18 01:05:36 +00001300 class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
1301 const DeclaratorChunk &Chunk;
1302
1303 public:
1304 DeclaratorLocFiller(const DeclaratorChunk &Chunk) : Chunk(Chunk) {}
1305
1306 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1307 llvm::llvm_unreachable("qualified type locs not expected here!");
1308 }
1309
1310 void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1311 assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
1312 TL.setCaretLoc(Chunk.Loc);
1313 }
1314 void VisitPointerTypeLoc(PointerTypeLoc TL) {
1315 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1316 TL.setStarLoc(Chunk.Loc);
1317 }
1318 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1319 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1320 TL.setStarLoc(Chunk.Loc);
John McCall54e14c42009-10-22 22:37:11 +00001321 TL.setHasBaseTypeAsWritten(true);
1322 TL.setHasProtocolsAsWritten(false);
1323 TL.setLAngleLoc(SourceLocation());
1324 TL.setRAngleLoc(SourceLocation());
John McCall51bd8032009-10-18 01:05:36 +00001325 }
1326 void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1327 assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
1328 TL.setStarLoc(Chunk.Loc);
1329 // FIXME: nested name specifier
1330 }
1331 void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
1332 assert(Chunk.Kind == DeclaratorChunk::Reference);
John McCall54e14c42009-10-22 22:37:11 +00001333 // 'Amp' is misleading: this might have been originally
1334 /// spelled with AmpAmp.
John McCall51bd8032009-10-18 01:05:36 +00001335 TL.setAmpLoc(Chunk.Loc);
1336 }
1337 void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
1338 assert(Chunk.Kind == DeclaratorChunk::Reference);
1339 assert(!Chunk.Ref.LValueRef);
1340 TL.setAmpAmpLoc(Chunk.Loc);
1341 }
1342 void VisitArrayTypeLoc(ArrayTypeLoc TL) {
1343 assert(Chunk.Kind == DeclaratorChunk::Array);
1344 TL.setLBracketLoc(Chunk.Loc);
1345 TL.setRBracketLoc(Chunk.EndLoc);
1346 TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
1347 }
1348 void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
1349 assert(Chunk.Kind == DeclaratorChunk::Function);
1350 TL.setLParenLoc(Chunk.Loc);
1351 TL.setRParenLoc(Chunk.EndLoc);
1352
1353 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
John McCall54e14c42009-10-22 22:37:11 +00001354 for (unsigned i = 0, e = TL.getNumArgs(), tpi = 0; i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001355 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
John McCall54e14c42009-10-22 22:37:11 +00001356 TL.setArg(tpi++, Param);
John McCall51bd8032009-10-18 01:05:36 +00001357 }
1358 // FIXME: exception specs
1359 }
1360
1361 void VisitTypeLoc(TypeLoc TL) {
1362 llvm::llvm_unreachable("unsupported TypeLoc kind in declarator!");
1363 }
1364 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001365}
1366
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001367/// \brief Create and instantiate a DeclaratorInfo with type source information.
1368///
1369/// \param T QualType referring to the type as written in source code.
1370DeclaratorInfo *
1371Sema::GetDeclaratorInfoForDeclarator(Declarator &D, QualType T, unsigned Skip) {
1372 DeclaratorInfo *DInfo = Context.CreateDeclaratorInfo(T);
John McCall51bd8032009-10-18 01:05:36 +00001373 UnqualTypeLoc CurrTL = DInfo->getTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001374
1375 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001376 DeclaratorLocFiller(D.getTypeObject(i)).Visit(CurrTL);
1377 CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001378 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001379
John McCall51bd8032009-10-18 01:05:36 +00001380 TypeSpecLocFiller(D.getDeclSpec()).Visit(CurrTL);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001381
1382 return DInfo;
1383}
1384
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001385/// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo.
1386QualType Sema::CreateLocInfoType(QualType T, DeclaratorInfo *DInfo) {
1387 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1388 // and Sema during declaration parsing. Try deallocating/caching them when
1389 // it's appropriate, instead of allocating them and keeping them around.
1390 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
1391 new (LocT) LocInfoType(T, DInfo);
1392 assert(LocT->getTypeClass() != T->getTypeClass() &&
1393 "LocInfoType's TypeClass conflicts with an existing Type class");
1394 return QualType(LocT, 0);
1395}
1396
1397void LocInfoType::getAsStringInternal(std::string &Str,
1398 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001399 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1400 " was used directly instead of getting the QualType through"
1401 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001402}
1403
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001404/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001405/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001406QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1407 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001408 QualType T = MDecl->getResultType();
1409 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001410
Fariborz Jahanian35600022007-11-09 17:18:29 +00001411 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001412 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001413 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001414 selfTy = Context.getPointerType(selfTy);
1415 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001416 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001417 ArgTys.push_back(Context.getObjCIdType());
1418 ArgTys.push_back(Context.getObjCSelType());
Mike Stump1eb44332009-09-09 15:08:12 +00001419
Chris Lattner89951a82009-02-20 18:43:26 +00001420 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1421 E = MDecl->param_end(); PI != E; ++PI) {
1422 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001423 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001424 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001425 ArgTys.push_back(ArgTy);
1426 }
1427 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001428 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001429 return T;
1430}
1431
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001432/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1433/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1434/// they point to and return true. If T1 and T2 aren't pointer types
1435/// or pointer-to-member types, or if they are not similar at this
1436/// level, returns false and leaves T1 and T2 unchanged. Top-level
1437/// qualifiers on T1 and T2 are ignored. This function will typically
1438/// be called in a loop that successively "unwraps" pointer and
1439/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001440bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001441 const PointerType *T1PtrType = T1->getAs<PointerType>(),
1442 *T2PtrType = T2->getAs<PointerType>();
Douglas Gregor57373262008-10-22 14:17:15 +00001443 if (T1PtrType && T2PtrType) {
1444 T1 = T1PtrType->getPointeeType();
1445 T2 = T2PtrType->getPointeeType();
1446 return true;
1447 }
1448
Ted Kremenek6217b802009-07-29 21:53:49 +00001449 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
1450 *T2MPType = T2->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001451 if (T1MPType && T2MPType &&
1452 Context.getCanonicalType(T1MPType->getClass()) ==
1453 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001454 T1 = T1MPType->getPointeeType();
1455 T2 = T2MPType->getPointeeType();
1456 return true;
1457 }
Douglas Gregor57373262008-10-22 14:17:15 +00001458 return false;
1459}
1460
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001461Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001462 // C99 6.7.6: Type names have no identifier. This is already validated by
1463 // the parser.
1464 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001465
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001466 DeclaratorInfo *DInfo = 0;
Douglas Gregor402abb52009-05-28 23:31:59 +00001467 TagDecl *OwnedTag = 0;
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001468 QualType T = GetTypeForDeclarator(D, S, &DInfo, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001469 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001470 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001471
Douglas Gregor402abb52009-05-28 23:31:59 +00001472 if (getLangOptions().CPlusPlus) {
1473 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001474 CheckExtraCXXDefaultArguments(D);
1475
Douglas Gregor402abb52009-05-28 23:31:59 +00001476 // C++0x [dcl.type]p3:
1477 // A type-specifier-seq shall not define a class or enumeration
1478 // unless it appears in the type-id of an alias-declaration
1479 // (7.1.3).
1480 if (OwnedTag && OwnedTag->isDefinition())
1481 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1482 << Context.getTypeDeclType(OwnedTag);
1483 }
1484
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001485 if (DInfo)
1486 T = CreateLocInfoType(T, DInfo);
1487
Reid Spencer5f016e22007-07-11 17:01:13 +00001488 return T.getAsOpaquePtr();
1489}
1490
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001491
1492
1493//===----------------------------------------------------------------------===//
1494// Type Attribute Processing
1495//===----------------------------------------------------------------------===//
1496
1497/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1498/// specified type. The attribute contains 1 argument, the id of the address
1499/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001500static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001501 const AttributeList &Attr, Sema &S){
John McCall0953e762009-09-24 19:53:00 +00001502
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001503 // If this type is already address space qualified, reject it.
1504 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1505 // for two or more different address spaces."
1506 if (Type.getAddressSpace()) {
1507 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1508 return;
1509 }
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001511 // Check the attribute arguments.
1512 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001513 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001514 return;
1515 }
1516 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1517 llvm::APSInt addrSpace(32);
1518 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001519 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1520 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001521 return;
1522 }
1523
John McCallefadb772009-07-28 06:52:18 +00001524 // Bounds checking.
1525 if (addrSpace.isSigned()) {
1526 if (addrSpace.isNegative()) {
1527 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1528 << ASArgExpr->getSourceRange();
1529 return;
1530 }
1531 addrSpace.setIsSigned(false);
1532 }
1533 llvm::APSInt max(addrSpace.getBitWidth());
John McCall0953e762009-09-24 19:53:00 +00001534 max = Qualifiers::MaxAddressSpace;
John McCallefadb772009-07-28 06:52:18 +00001535 if (addrSpace > max) {
1536 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
John McCall0953e762009-09-24 19:53:00 +00001537 << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
John McCallefadb772009-07-28 06:52:18 +00001538 return;
1539 }
1540
Mike Stump1eb44332009-09-09 15:08:12 +00001541 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001542 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001543}
1544
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001545/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1546/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001547static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001548 const AttributeList &Attr, Sema &S) {
John McCall0953e762009-09-24 19:53:00 +00001549 if (Type.getObjCGCAttr() != Qualifiers::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001550 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001551 return;
1552 }
Mike Stump1eb44332009-09-09 15:08:12 +00001553
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001554 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001555 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001556 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1557 << "objc_gc" << 1;
1558 return;
1559 }
John McCall0953e762009-09-24 19:53:00 +00001560 Qualifiers::GC GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001561 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001562 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1563 return;
1564 }
Mike Stump1eb44332009-09-09 15:08:12 +00001565 if (Attr.getParameterName()->isStr("weak"))
John McCall0953e762009-09-24 19:53:00 +00001566 GCAttr = Qualifiers::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001567 else if (Attr.getParameterName()->isStr("strong"))
John McCall0953e762009-09-24 19:53:00 +00001568 GCAttr = Qualifiers::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001569 else {
1570 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1571 << "objc_gc" << Attr.getParameterName();
1572 return;
1573 }
Mike Stump1eb44332009-09-09 15:08:12 +00001574
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001575 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001576}
1577
Mike Stump24556362009-07-25 21:26:53 +00001578/// HandleNoReturnTypeAttribute - Process the noreturn attribute on the
1579/// specified type. The attribute contains 0 arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001580static void HandleNoReturnTypeAttribute(QualType &Type,
Mike Stump24556362009-07-25 21:26:53 +00001581 const AttributeList &Attr, Sema &S) {
1582 if (Attr.getNumArgs() != 0)
1583 return;
1584
1585 // We only apply this to a pointer to function or a pointer to block.
1586 if (!Type->isFunctionPointerType()
1587 && !Type->isBlockPointerType()
1588 && !Type->isFunctionType())
1589 return;
1590
1591 Type = S.Context.getNoReturnType(Type);
1592}
1593
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001594void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001595 // Scan through and apply attributes to this type where it makes sense. Some
1596 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1597 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001598 // apply to the decl. Here we apply type attributes and ignore the rest.
1599 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001600 // If this is an attribute we can handle, do so now, otherwise, add it to
1601 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001602 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001603 default: break;
1604 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001605 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1606 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001607 case AttributeList::AT_objc_gc:
1608 HandleObjCGCTypeAttribute(Result, *AL, *this);
1609 break;
Mike Stump24556362009-07-25 21:26:53 +00001610 case AttributeList::AT_noreturn:
1611 HandleNoReturnTypeAttribute(Result, *AL, *this);
1612 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001613 }
Chris Lattner232e8822008-02-21 01:08:11 +00001614 }
Chris Lattner232e8822008-02-21 01:08:11 +00001615}
1616
Mike Stump1eb44332009-09-09 15:08:12 +00001617/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001618///
1619/// This routine checks whether the type @p T is complete in any
1620/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001621/// type, returns false. If @p T is a class template specialization,
1622/// this routine then attempts to perform class template
1623/// instantiation. If instantiation fails, or if @p T is incomplete
1624/// and cannot be completed, issues the diagnostic @p diag (giving it
1625/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001626///
1627/// @param Loc The location in the source that the incomplete type
1628/// diagnostic should refer to.
1629///
1630/// @param T The type that this routine is examining for completeness.
1631///
Mike Stump1eb44332009-09-09 15:08:12 +00001632/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00001633/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001634///
1635/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1636/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001637bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001638 const PartialDiagnostic &PD,
1639 std::pair<SourceLocation,
1640 PartialDiagnostic> Note) {
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001641 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00001642
Douglas Gregor573d9c32009-10-21 23:19:44 +00001643 // FIXME: Add this assertion to make sure we always get instantiation points.
1644 // assert(!Loc.isInvalid() && "Invalid location in RequireCompleteType");
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001645 // FIXME: Add this assertion to help us flush out problems with
1646 // checking for dependent types and type-dependent expressions.
1647 //
Mike Stump1eb44332009-09-09 15:08:12 +00001648 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001649 // "Can't ask whether a dependent type is complete");
1650
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001651 // If we have a complete type, we're done.
1652 if (!T->isIncompleteType())
1653 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001654
Douglas Gregord475b8d2009-03-25 21:17:03 +00001655 // If we have a class template specialization or a class member of a
1656 // class template specialization, try to instantiate it.
Ted Kremenek6217b802009-07-29 21:53:49 +00001657 if (const RecordType *Record = T->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001658 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001659 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001660 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001661 if (Loc.isValid())
John McCall9cc78072009-09-11 07:25:08 +00001662 ClassTemplateSpec->setPointOfInstantiation(Loc);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001663 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001664 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001665 /*Complain=*/diag != 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001666 }
Mike Stump1eb44332009-09-09 15:08:12 +00001667 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001668 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1669 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001670 MemberSpecializationInfo *MSInfo = Rec->getMemberSpecializationInfo();
1671 assert(MSInfo && "Missing member specialization information?");
Douglas Gregor357bbd02009-08-28 20:50:45 +00001672 // This record was instantiated from a class within a template.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001673 if (MSInfo->getTemplateSpecializationKind()
1674 != TSK_ExplicitSpecialization) {
1675 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregorf6b11852009-10-08 15:14:33 +00001676 return InstantiateClass(Loc, Rec, Pattern,
1677 getTemplateInstantiationArgs(Rec),
1678 TSK_ImplicitInstantiation,
1679 /*Complain=*/diag != 0);
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001680 }
Douglas Gregord475b8d2009-03-25 21:17:03 +00001681 }
1682 }
1683 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001684
Douglas Gregor5842ba92009-08-24 15:23:48 +00001685 if (diag == 0)
1686 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001687
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001688 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001689 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001690
Anders Carlsson8c8d9192009-10-09 23:51:55 +00001691 // If we have a note, produce it.
1692 if (!Note.first.isInvalid())
1693 Diag(Note.first, Note.second);
1694
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001695 // If the type was a forward declaration of a class/struct/union
Mike Stump1eb44332009-09-09 15:08:12 +00001696 // type, produce
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001697 const TagType *Tag = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +00001698 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001699 Tag = Record;
John McCall183700f2009-09-21 23:43:11 +00001700 else if (const EnumType *Enum = T->getAs<EnumType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001701 Tag = Enum;
1702
1703 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00001704 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001705 Tag->isBeingDefined() ? diag::note_type_being_defined
1706 : diag::note_forward_declaration)
1707 << QualType(Tag, 0);
1708
1709 return true;
1710}
Douglas Gregore6258932009-03-19 00:39:20 +00001711
1712/// \brief Retrieve a version of the type 'T' that is qualified by the
1713/// nested-name-specifier contained in SS.
1714QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1715 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1716 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00001717
Douglas Gregorab452ba2009-03-26 23:50:42 +00001718 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001719 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001720 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001721}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001722
1723QualType Sema::BuildTypeofExprType(Expr *E) {
1724 return Context.getTypeOfExprType(E);
1725}
1726
1727QualType Sema::BuildDecltypeType(Expr *E) {
1728 if (E->getType() == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00001729 Diag(E->getLocStart(),
Anders Carlssonaf017e62009-06-29 22:58:55 +00001730 diag::err_cannot_determine_declared_type_of_overloaded_function);
1731 return QualType();
1732 }
1733 return Context.getDecltypeType(E);
1734}