blob: c4064e135eba905d6bd75825410a771e13c5eef5 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Sebastian Redl23c7d062009-07-07 20:29:57 +000015#include "SemaInherit.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000018#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +000019#include "clang/AST/TypeLoc.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000020#include "clang/AST/Expr.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000021#include "clang/Basic/PartialDiagnostic.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000022#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000023#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25
Douglas Gregor2dc0e642009-03-23 23:06:20 +000026/// \brief Perform adjustment on the parameter type of a function.
27///
28/// This routine adjusts the given parameter type @p T to the actual
Mike Stump1eb44332009-09-09 15:08:12 +000029/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
30/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
Douglas Gregor2dc0e642009-03-23 23:06:20 +000031QualType Sema::adjustParameterType(QualType T) {
32 // C99 6.7.5.3p7:
33 if (T->isArrayType()) {
34 // C99 6.7.5.3p7:
35 // A declaration of a parameter as "array of type" shall be
36 // adjusted to "qualified pointer to type", where the type
37 // qualifiers (if any) are those specified within the [ and ] of
38 // the array type derivation.
39 return Context.getArrayDecayedType(T);
40 } else if (T->isFunctionType())
41 // C99 6.7.5.3p8:
42 // A declaration of a parameter as "function returning type"
43 // shall be adjusted to "pointer to function returning type", as
44 // in 6.3.2.1.
45 return Context.getPointerType(T);
46
47 return T;
48}
49
Douglas Gregor930d8b52009-01-30 22:09:00 +000050/// \brief Convert the specified declspec to the appropriate type
51/// object.
52/// \param DS the declaration specifiers
Chris Lattner3f84ad22009-04-22 05:27:59 +000053/// \param DeclLoc The location of the declarator identifier or invalid if none.
Chris Lattner5153ee62009-04-25 08:47:54 +000054/// \returns The type described by the declaration specifiers. This function
55/// never returns null.
Chris Lattner3f84ad22009-04-22 05:27:59 +000056QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS,
Chris Lattnereaaebc72009-04-25 08:06:05 +000057 SourceLocation DeclLoc,
58 bool &isInvalid) {
Reid Spencer5f016e22007-07-11 17:01:13 +000059 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
60 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000061 QualType Result;
Mike Stump1eb44332009-09-09 15:08:12 +000062
Reid Spencer5f016e22007-07-11 17:01:13 +000063 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +000064 case DeclSpec::TST_void:
65 Result = Context.VoidTy;
66 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000067 case DeclSpec::TST_char:
68 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000069 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000070 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000071 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000072 else {
73 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
74 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000075 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000076 }
Chris Lattner958858e2008-02-20 21:40:32 +000077 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000078 case DeclSpec::TST_wchar:
79 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
80 Result = Context.WCharTy;
81 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000082 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
83 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000084 Result = Context.getSignedWCharType();
85 } else {
86 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
87 "Unknown TSS value");
Chris Lattnerf3a41af2008-11-20 06:38:18 +000088 Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
89 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +000090 Result = Context.getUnsignedWCharType();
91 }
92 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +000093 case DeclSpec::TST_char16:
94 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
95 "Unknown TSS value");
96 Result = Context.Char16Ty;
97 break;
98 case DeclSpec::TST_char32:
99 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
100 "Unknown TSS value");
101 Result = Context.Char32Ty;
102 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000103 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000104 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000105 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000106 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000107 (ObjCProtocolDecl**)PQ,
Steve Naroff683087f2009-06-29 16:22:52 +0000108 DS.getNumProtocolQualifiers());
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000109 break;
110 }
Mike Stump1eb44332009-09-09 15:08:12 +0000111
Chris Lattnerd658b562008-04-05 06:32:51 +0000112 // Unspecified typespec defaults to int in C90. However, the C90 grammar
113 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
114 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
115 // Note that the one exception to this is function definitions, which are
116 // allowed to be completely missing a declspec. This is handled in the
117 // parser already though by it pretending to have seen an 'int' in this
118 // case.
119 if (getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000120 // In C89 mode, we only warn if there is a completely missing declspec
121 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000122 if (DS.isEmpty()) {
123 if (DeclLoc.isInvalid())
124 DeclLoc = DS.getSourceRange().getBegin();
Eli Friedmanfcff5772009-06-03 12:22:01 +0000125 Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000126 << DS.getSourceRange()
Chris Lattner173144a2009-02-27 22:31:56 +0000127 << CodeModificationHint::CreateInsertion(DS.getSourceRange().getBegin(),
128 "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000129 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000130 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000131 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
132 // "At least one type specifier shall be given in the declaration
133 // specifiers in each declaration, and in the specifier-qualifier list in
134 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000135 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner3f84ad22009-04-22 05:27:59 +0000136 if (DeclLoc.isInvalid())
137 DeclLoc = DS.getSourceRange().getBegin();
138
Chris Lattnerb78d8332009-06-26 04:45:06 +0000139 if (getLangOptions().CPlusPlus && !getLangOptions().Microsoft) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000140 Diag(DeclLoc, diag::err_missing_type_specifier)
141 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Chris Lattnerb78d8332009-06-26 04:45:06 +0000143 // When this occurs in C++ code, often something is very broken with the
144 // value being declared, poison it as invalid so we don't get chains of
145 // errors.
146 isInvalid = true;
147 } else {
Eli Friedmanfcff5772009-06-03 12:22:01 +0000148 Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000149 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000150 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000151 }
Mike Stump1eb44332009-09-09 15:08:12 +0000152
153 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000154 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
156 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000157 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
158 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
159 case DeclSpec::TSW_long: Result = Context.LongTy; break;
160 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 }
162 } else {
163 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000164 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
165 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
166 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
167 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 }
169 }
Chris Lattner958858e2008-02-20 21:40:32 +0000170 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000171 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000172 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000173 case DeclSpec::TST_double:
174 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000175 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000176 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000177 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000178 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000179 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 case DeclSpec::TST_decimal32: // _Decimal32
181 case DeclSpec::TST_decimal64: // _Decimal64
182 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner8f12f652009-05-13 05:02:08 +0000183 Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
184 Result = Context.IntTy;
185 isInvalid = true;
186 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000187 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 case DeclSpec::TST_enum:
189 case DeclSpec::TST_union:
190 case DeclSpec::TST_struct: {
191 Decl *D = static_cast<Decl *>(DS.getTypeRep());
Chris Lattner99dc9142008-04-13 18:59:07 +0000192 assert(D && "Didn't get a decl for a class/enum/union/struct?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
194 DS.getTypeSpecSign() == 0 &&
195 "Can't handle qualifiers on typedef names yet!");
196 // TypeQuals handled by caller.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000197 Result = Context.getTypeDeclType(cast<TypeDecl>(D));
John McCall2191b202009-09-05 06:31:47 +0000198
199 // In C++, make an ElaboratedType.
200 if (getLangOptions().CPlusPlus) {
201 TagDecl::TagKind Tag
202 = TagDecl::getTagKindForTypeSpec(DS.getTypeSpecType());
203 Result = Context.getElaboratedType(Result, Tag);
204 }
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Chris Lattner5153ee62009-04-25 08:47:54 +0000206 if (D->isInvalidDecl())
207 isInvalid = true;
Chris Lattner958858e2008-02-20 21:40:32 +0000208 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000209 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000210 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
212 DS.getTypeSpecSign() == 0 &&
213 "Can't handle qualifiers on typedef names yet!");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000214 Result = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000215
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000216 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000217 if (const ObjCInterfaceType *Interface = Result->getAsObjCInterfaceType())
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000218 // It would be nice if protocol qualifiers were only stored with the
219 // ObjCObjectPointerType. Unfortunately, this isn't possible due
220 // to the following typedef idiom (which is uncommon, but allowed):
Mike Stump1eb44332009-09-09 15:08:12 +0000221 //
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000222 // typedef Foo<P> T;
223 // static void func() {
224 // Foo<P> *yy;
225 // T *zz;
226 // }
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000227 Result = Context.getObjCInterfaceType(Interface->getDecl(),
228 (ObjCProtocolDecl**)PQ,
229 DS.getNumProtocolQualifiers());
Steve Naroff14108da2009-07-10 23:34:53 +0000230 else if (Result->isObjCIdType())
Chris Lattnerae4da612008-07-26 01:53:50 +0000231 // id<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000232 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy,
Steve Naroff14108da2009-07-10 23:34:53 +0000233 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
234 else if (Result->isObjCClassType()) {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000235 if (DeclLoc.isInvalid())
236 DeclLoc = DS.getSourceRange().getBegin();
Steve Naroff4262a072009-02-23 18:53:24 +0000237 // Class<protocol-list>
Mike Stump1eb44332009-09-09 15:08:12 +0000238 Result = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy,
Steve Naroff470301b2009-07-22 16:07:01 +0000239 (ObjCProtocolDecl**)PQ, DS.getNumProtocolQualifiers());
Chris Lattner3f84ad22009-04-22 05:27:59 +0000240 } else {
241 if (DeclLoc.isInvalid())
242 DeclLoc = DS.getSourceRange().getBegin();
243 Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
244 << DS.getSourceRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000245 isInvalid = true;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000246 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000247 }
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Chris Lattnereaaebc72009-04-25 08:06:05 +0000249 // If this is a reference to an invalid typedef, propagate the invalidity.
250 if (TypedefType *TDT = dyn_cast<TypedefType>(Result))
251 if (TDT->getDecl()->isInvalidDecl())
252 isInvalid = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Reid Spencer5f016e22007-07-11 17:01:13 +0000254 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000255 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 }
Chris Lattner958858e2008-02-20 21:40:32 +0000257 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000258 // FIXME: Preserve type source info.
259 Result = GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000260 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000261 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000262 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000263 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000264 case DeclSpec::TST_typeofExpr: {
265 Expr *E = static_cast<Expr *>(DS.getTypeRep());
266 assert(E && "Didn't get an expression for typeof?");
267 // TypeQuals handled by caller.
Douglas Gregor72564e72009-02-26 23:50:07 +0000268 Result = Context.getTypeOfExprType(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000269 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000270 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000271 case DeclSpec::TST_decltype: {
272 Expr *E = static_cast<Expr *>(DS.getTypeRep());
273 assert(E && "Didn't get an expression for decltype?");
274 // TypeQuals handled by caller.
Anders Carlssonaf017e62009-06-29 22:58:55 +0000275 Result = BuildDecltypeType(E);
276 if (Result.isNull()) {
277 Result = Context.IntTy;
278 isInvalid = true;
279 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000280 break;
281 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000282 case DeclSpec::TST_auto: {
283 // TypeQuals handled by caller.
284 Result = Context.UndeducedAutoTy;
285 break;
286 }
Mike Stump1eb44332009-09-09 15:08:12 +0000287
Douglas Gregor809070a2009-02-18 17:45:20 +0000288 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000289 Result = Context.IntTy;
290 isInvalid = true;
291 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 }
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Chris Lattner958858e2008-02-20 21:40:32 +0000294 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000295 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
296 if (getLangOptions().Freestanding)
297 Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000298 Result = Context.getComplexType(Result);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000299 }
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Chris Lattner958858e2008-02-20 21:40:32 +0000301 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
302 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Chris Lattner38d8b982008-02-20 22:04:11 +0000304 // See if there are any attributes on the declspec that apply to the type (as
305 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000306 if (const AttributeList *AL = DS.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +0000307 ProcessTypeAttributeList(Result, AL);
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Chris Lattner96b77fc2008-04-02 06:50:17 +0000309 // Apply const/volatile/restrict qualifiers to T.
310 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
311
312 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
313 // or incomplete types shall not be restrict-qualified." C++ also allows
314 // restrict-qualified references.
315 if (TypeQuals & QualType::Restrict) {
Daniel Dunbarbb710012009-02-26 19:13:44 +0000316 if (Result->isPointerType() || Result->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000317 QualType EltTy = Result->isPointerType() ?
Ted Kremenek6217b802009-07-29 21:53:49 +0000318 Result->getAs<PointerType>()->getPointeeType() :
319 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Douglas Gregorbad0e652009-03-24 20:32:41 +0000321 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000322 // incomplete type.
323 if (!EltTy->isIncompleteOrObjectType()) {
324 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000325 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000326 << EltTy << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000327 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
328 }
329 } else {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000330 Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000331 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000332 << Result << DS.getSourceRange();
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000333 TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000334 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000335 }
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Chris Lattner96b77fc2008-04-02 06:50:17 +0000337 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
338 // of a function type includes any type qualifiers, the behavior is
339 // undefined."
340 if (Result->isFunctionType() && TypeQuals) {
341 // Get some location to point at, either the C or V location.
342 SourceLocation Loc;
343 if (TypeQuals & QualType::Const)
344 Loc = DS.getConstSpecLoc();
345 else {
346 assert((TypeQuals & QualType::Volatile) &&
347 "Has CV quals but not C or V?");
348 Loc = DS.getVolatileSpecLoc();
349 }
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000350 Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000351 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000352 }
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000354 // C++ [dcl.ref]p1:
355 // Cv-qualified references are ill-formed except when the
356 // cv-qualifiers are introduced through the use of a typedef
357 // (7.1.3) or of a template type argument (14.3), in which
358 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000359 // FIXME: Shouldn't we be checking SCS_typedef here?
360 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000361 TypeQuals && Result->isReferenceType()) {
362 TypeQuals &= ~QualType::Const;
363 TypeQuals &= ~QualType::Volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000364 }
365
Chris Lattner96b77fc2008-04-02 06:50:17 +0000366 Result = Result.getQualifiedType(TypeQuals);
367 }
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000368 return Result;
369}
370
Douglas Gregorcd281c32009-02-28 00:25:32 +0000371static std::string getPrintableNameForEntity(DeclarationName Entity) {
372 if (Entity)
373 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Douglas Gregorcd281c32009-02-28 00:25:32 +0000375 return "type name";
376}
377
378/// \brief Build a pointer type.
379///
380/// \param T The type to which we'll be building a pointer.
381///
382/// \param Quals The cvr-qualifiers to be applied to the pointer type.
383///
384/// \param Loc The location of the entity whose type involves this
385/// pointer type or, if there is no such entity, the location of the
386/// type that will have pointer type.
387///
388/// \param Entity The name of the entity that involves the pointer
389/// type, if known.
390///
391/// \returns A suitable pointer type, if there are no
392/// errors. Otherwise, returns a NULL type.
Mike Stump1eb44332009-09-09 15:08:12 +0000393QualType Sema::BuildPointerType(QualType T, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000394 SourceLocation Loc, DeclarationName Entity) {
395 if (T->isReferenceType()) {
396 // C++ 8.3.2p4: There shall be no ... pointers to references ...
397 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
398 << getPrintableNameForEntity(Entity);
399 return QualType();
400 }
401
402 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
403 // object or incomplete types shall not be restrict-qualified."
404 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
405 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
406 << T;
407 Quals &= ~QualType::Restrict;
408 }
409
410 // Build the pointer type.
411 return Context.getPointerType(T).getQualifiedType(Quals);
412}
413
414/// \brief Build a reference type.
415///
416/// \param T The type to which we'll be building a reference.
417///
418/// \param Quals The cvr-qualifiers to be applied to the reference type.
419///
420/// \param Loc The location of the entity whose type involves this
421/// reference type or, if there is no such entity, the location of the
422/// type that will have reference type.
423///
424/// \param Entity The name of the entity that involves the reference
425/// type, if known.
426///
427/// \returns A suitable reference type, if there are no
428/// errors. Otherwise, returns a NULL type.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000429QualType Sema::BuildReferenceType(QualType T, bool LValueRef, unsigned Quals,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000430 SourceLocation Loc, DeclarationName Entity) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000431 if (LValueRef) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000432 if (const RValueReferenceType *R = T->getAs<RValueReferenceType>()) {
Sebastian Redldfe292d2009-03-22 21:28:55 +0000433 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
434 // reference to a type T, and attempt to create the type "lvalue
435 // reference to cv TD" creates the type "lvalue reference to T".
436 // We use the qualifiers (restrict or none) of the original reference,
437 // not the new ones. This is consistent with GCC.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000438 return Context.getLValueReferenceType(R->getPointeeType()).
Sebastian Redldfe292d2009-03-22 21:28:55 +0000439 getQualifiedType(T.getCVRQualifiers());
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000440 }
441 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000442 if (T->isReferenceType()) {
443 // C++ [dcl.ref]p4: There shall be no references to references.
Mike Stump1eb44332009-09-09 15:08:12 +0000444 //
Douglas Gregorcd281c32009-02-28 00:25:32 +0000445 // According to C++ DR 106, references to references are only
446 // diagnosed when they are written directly (e.g., "int & &"),
447 // but not when they happen via a typedef:
448 //
449 // typedef int& intref;
450 // typedef intref& intref2;
451 //
452 // Parser::ParserDeclaratorInternal diagnoses the case where
453 // references are written directly; here, we handle the
454 // collapsing of references-to-references as described in C++
455 // DR 106 and amended by C++ DR 540.
456 return T;
457 }
458
459 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000460 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000461 // is ill-formed.
462 if (T->isVoidType()) {
463 Diag(Loc, diag::err_reference_to_void);
464 return QualType();
465 }
466
467 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
468 // object or incomplete types shall not be restrict-qualified."
469 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
470 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
471 << T;
472 Quals &= ~QualType::Restrict;
473 }
474
475 // C++ [dcl.ref]p1:
476 // [...] Cv-qualified references are ill-formed except when the
477 // cv-qualifiers are introduced through the use of a typedef
478 // (7.1.3) or of a template type argument (14.3), in which case
479 // the cv-qualifiers are ignored.
480 //
481 // We diagnose extraneous cv-qualifiers for the non-typedef,
482 // non-template type argument case within the parser. Here, we just
483 // ignore any extraneous cv-qualifiers.
484 Quals &= ~QualType::Const;
485 Quals &= ~QualType::Volatile;
486
487 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000488 if (LValueRef)
489 return Context.getLValueReferenceType(T).getQualifiedType(Quals);
490 return Context.getRValueReferenceType(T).getQualifiedType(Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000491}
492
493/// \brief Build an array type.
494///
495/// \param T The type of each element in the array.
496///
497/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000498///
499/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000500///
501/// \param Quals The cvr-qualifiers to be applied to the array's
502/// element type.
503///
504/// \param Loc The location of the entity whose type involves this
505/// array type or, if there is no such entity, the location of the
506/// type that will have array type.
507///
508/// \param Entity The name of the entity that involves the array
509/// type, if known.
510///
511/// \returns A suitable array type, if there are no errors. Otherwise,
512/// returns a NULL type.
513QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
514 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000515 SourceRange Brackets, DeclarationName Entity) {
516 SourceLocation Loc = Brackets.getBegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000517 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000518 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Mike Stump1eb44332009-09-09 15:08:12 +0000519 if (RequireCompleteType(Loc, T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000520 diag::err_illegal_decl_array_incomplete_type))
521 return QualType();
522
523 if (T->isFunctionType()) {
524 Diag(Loc, diag::err_illegal_decl_array_of_functions)
525 << getPrintableNameForEntity(Entity);
526 return QualType();
527 }
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Douglas Gregorcd281c32009-02-28 00:25:32 +0000529 // C++ 8.3.2p4: There shall be no ... arrays of references ...
530 if (T->isReferenceType()) {
531 Diag(Loc, diag::err_illegal_decl_array_of_references)
532 << getPrintableNameForEntity(Entity);
533 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +0000534 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000535
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000536 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000537 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000538 << getPrintableNameForEntity(Entity);
539 return QualType();
540 }
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Ted Kremenek6217b802009-07-29 21:53:49 +0000542 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000543 // If the element type is a struct or union that contains a variadic
544 // array, accept it as a GNU extension: C99 6.7.2.1p2.
545 if (EltTy->getDecl()->hasFlexibleArrayMember())
546 Diag(Loc, diag::ext_flexible_array_in_array) << T;
547 } else if (T->isObjCInterfaceType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000548 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
549 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000550 }
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Douglas Gregorcd281c32009-02-28 00:25:32 +0000552 // C99 6.7.5.2p1: The size expression shall have integer type.
553 if (ArraySize && !ArraySize->isTypeDependent() &&
554 !ArraySize->getType()->isIntegerType()) {
555 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
556 << ArraySize->getType() << ArraySize->getSourceRange();
557 ArraySize->Destroy(Context);
558 return QualType();
559 }
560 llvm::APSInt ConstVal(32);
561 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000562 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000563 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000564 else
565 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000566 } else if (ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000567 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000568 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
569 (!T->isDependentType() && !T->isConstantSizeType())) {
570 // Per C99, a variable array is an array with either a non-constant
571 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000572 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000573 } else {
574 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
575 // have a value greater than zero.
576 if (ConstVal.isSigned()) {
577 if (ConstVal.isNegative()) {
578 Diag(ArraySize->getLocStart(),
579 diag::err_typecheck_negative_array_size)
580 << ArraySize->getSourceRange();
581 return QualType();
582 } else if (ConstVal == 0) {
583 // GCC accepts zero sized static arrays.
584 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
585 << ArraySize->getSourceRange();
586 }
Mike Stump1eb44332009-09-09 15:08:12 +0000587 }
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000588 T = Context.getConstantArrayWithExprType(T, ConstVal, ArraySize,
589 ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000590 }
591 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
592 if (!getLangOptions().C99) {
Mike Stump1eb44332009-09-09 15:08:12 +0000593 if (ArraySize && !ArraySize->isTypeDependent() &&
594 !ArraySize->isValueDependent() &&
Douglas Gregorcd281c32009-02-28 00:25:32 +0000595 !ArraySize->isIntegerConstantExpr(Context))
596 Diag(Loc, diag::ext_vla);
597 else if (ASM != ArrayType::Normal || Quals != 0)
598 Diag(Loc, diag::ext_c99_array_usage);
599 }
600
601 return T;
602}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000603
604/// \brief Build an ext-vector type.
605///
606/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000607QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000608 SourceLocation AttrLoc) {
609
610 Expr *Arg = (Expr *)ArraySize.get();
611
612 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
613 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000614 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000615 !T->isIntegerType() && !T->isRealFloatingType()) {
616 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
617 return QualType();
618 }
619
620 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
621 llvm::APSInt vecSize(32);
622 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
623 Diag(AttrLoc, diag::err_attribute_argument_not_int)
624 << "ext_vector_type" << Arg->getSourceRange();
625 return QualType();
626 }
Mike Stump1eb44332009-09-09 15:08:12 +0000627
628 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000629 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000630 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
631
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000632 if (vectorSize == 0) {
633 Diag(AttrLoc, diag::err_attribute_zero_size)
634 << Arg->getSourceRange();
635 return QualType();
636 }
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000638 if (!T->isDependentType())
639 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000640 }
641
642 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000643 AttrLoc);
644}
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Douglas Gregor724651c2009-02-28 01:04:19 +0000646/// \brief Build a function type.
647///
648/// This routine checks the function type according to C++ rules and
649/// under the assumption that the result type and parameter types have
650/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000651/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000652/// simpler form that is only suitable for this narrow use case.
653///
654/// \param T The return type of the function.
655///
656/// \param ParamTypes The parameter types of the function. This array
657/// will be modified to account for adjustments to the types of the
658/// function parameters.
659///
660/// \param NumParamTypes The number of parameter types in ParamTypes.
661///
662/// \param Variadic Whether this is a variadic function type.
663///
664/// \param Quals The cvr-qualifiers to be applied to the function type.
665///
666/// \param Loc The location of the entity whose type involves this
667/// function type or, if there is no such entity, the location of the
668/// type that will have function type.
669///
670/// \param Entity The name of the entity that involves the function
671/// type, if known.
672///
673/// \returns A suitable function type, if there are no
674/// errors. Otherwise, returns a NULL type.
675QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000676 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000677 unsigned NumParamTypes,
678 bool Variadic, unsigned Quals,
679 SourceLocation Loc, DeclarationName Entity) {
680 if (T->isArrayType() || T->isFunctionType()) {
681 Diag(Loc, diag::err_func_returning_array_function) << T;
682 return QualType();
683 }
Mike Stump1eb44332009-09-09 15:08:12 +0000684
Douglas Gregor724651c2009-02-28 01:04:19 +0000685 bool Invalid = false;
686 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000687 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
688 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000689 Diag(Loc, diag::err_param_with_void_type);
690 Invalid = true;
691 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000692
Douglas Gregor724651c2009-02-28 01:04:19 +0000693 ParamTypes[Idx] = ParamType;
694 }
695
696 if (Invalid)
697 return QualType();
698
Mike Stump1eb44332009-09-09 15:08:12 +0000699 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Douglas Gregor724651c2009-02-28 01:04:19 +0000700 Quals);
701}
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Douglas Gregor949bf692009-06-09 22:17:39 +0000703/// \brief Build a member pointer type \c T Class::*.
704///
705/// \param T the type to which the member pointer refers.
706/// \param Class the class type into which the member pointer points.
707/// \param Quals Qualifiers applied to the member pointer type
708/// \param Loc the location where this type begins
709/// \param Entity the name of the entity that will have this member pointer type
710///
711/// \returns a member pointer type, if successful, or a NULL type if there was
712/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000713QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
714 unsigned Quals, SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000715 DeclarationName Entity) {
716 // Verify that we're not building a pointer to pointer to function with
717 // exception specification.
718 if (CheckDistantExceptionSpec(T)) {
719 Diag(Loc, diag::err_distant_exception_spec);
720
721 // FIXME: If we're doing this as part of template instantiation,
722 // we should return immediately.
723
724 // Build the type anyway, but use the canonical type so that the
725 // exception specifiers are stripped off.
726 T = Context.getCanonicalType(T);
727 }
728
729 // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
730 // with reference type, or "cv void."
731 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000732 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
Douglas Gregor949bf692009-06-09 22:17:39 +0000733 << (Entity? Entity.getAsString() : "type name");
734 return QualType();
735 }
736
737 if (T->isVoidType()) {
738 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
739 << (Entity? Entity.getAsString() : "type name");
740 return QualType();
741 }
742
743 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
744 // object or incomplete types shall not be restrict-qualified."
745 if ((Quals & QualType::Restrict) && !T->isIncompleteOrObjectType()) {
746 Diag(Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
747 << T;
748
749 // FIXME: If we're doing this as part of template instantiation,
750 // we should return immediately.
751 Quals &= ~QualType::Restrict;
752 }
753
754 if (!Class->isDependentType() && !Class->isRecordType()) {
755 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
756 return QualType();
757 }
758
759 return Context.getMemberPointerType(T, Class.getTypePtr())
Mike Stump1eb44332009-09-09 15:08:12 +0000760 .getQualifiedType(Quals);
Douglas Gregor949bf692009-06-09 22:17:39 +0000761}
Mike Stump1eb44332009-09-09 15:08:12 +0000762
Anders Carlsson9a917e42009-06-12 22:56:54 +0000763/// \brief Build a block pointer type.
764///
765/// \param T The type to which we'll be building a block pointer.
766///
767/// \param Quals The cvr-qualifiers to be applied to the block pointer type.
768///
769/// \param Loc The location of the entity whose type involves this
770/// block pointer type or, if there is no such entity, the location of the
771/// type that will have block pointer type.
772///
773/// \param Entity The name of the entity that involves the block pointer
774/// type, if known.
775///
776/// \returns A suitable block pointer type, if there are no
777/// errors. Otherwise, returns a NULL type.
778QualType Sema::BuildBlockPointerType(QualType T, unsigned Quals,
Mike Stump1eb44332009-09-09 15:08:12 +0000779 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000780 DeclarationName Entity) {
781 if (!T.getTypePtr()->isFunctionType()) {
782 Diag(Loc, diag::err_nonfunction_block_type);
783 return QualType();
784 }
Mike Stump1eb44332009-09-09 15:08:12 +0000785
Anders Carlsson9a917e42009-06-12 22:56:54 +0000786 return Context.getBlockPointerType(T).getQualifiedType(Quals);
787}
788
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000789QualType Sema::GetTypeFromParser(TypeTy *Ty, DeclaratorInfo **DInfo) {
790 QualType QT = QualType::getFromOpaquePtr(Ty);
791 DeclaratorInfo *DI = 0;
792 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
793 QT = LIT->getType();
794 DI = LIT->getDeclaratorInfo();
795 }
Mike Stump1eb44332009-09-09 15:08:12 +0000796
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000797 if (DInfo) *DInfo = DI;
798 return QT;
799}
800
Mike Stump98eb8a72009-02-04 22:31:32 +0000801/// GetTypeForDeclarator - Convert the type for the specified
802/// declarator to Type instances. Skip the outermost Skip type
803/// objects.
Douglas Gregor402abb52009-05-28 23:31:59 +0000804///
805/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
806/// owns the declaration of a type (e.g., the definition of a struct
807/// type), then *OwnedDecl will receive the owned declaration.
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000808QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
809 DeclaratorInfo **DInfo, unsigned Skip,
Douglas Gregor402abb52009-05-28 23:31:59 +0000810 TagDecl **OwnedDecl) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000811 bool OmittedReturnType = false;
812
813 if (D.getContext() == Declarator::BlockLiteralContext
814 && Skip == 0
815 && !D.getDeclSpec().hasTypeSpecifier()
816 && (D.getNumTypeObjects() == 0
817 || (D.getNumTypeObjects() == 1
818 && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
819 OmittedReturnType = true;
820
Chris Lattnerb23deda2007-08-28 16:40:32 +0000821 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000822 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000823 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
824 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
Douglas Gregor930d8b52009-01-30 22:09:00 +0000825
826 // Determine the type of the declarator. Not all forms of declarator
827 // have a type.
828 QualType T;
829 switch (D.getKind()) {
830 case Declarator::DK_Abstract:
831 case Declarator::DK_Normal:
Mike Stump98eb8a72009-02-04 22:31:32 +0000832 case Declarator::DK_Operator: {
Chris Lattner3f84ad22009-04-22 05:27:59 +0000833 const DeclSpec &DS = D.getDeclSpec();
834 if (OmittedReturnType) {
Mike Stump98eb8a72009-02-04 22:31:32 +0000835 // We default to a dependent type initially. Can be modified by
836 // the first return statement.
837 T = Context.DependentTy;
Chris Lattner3f84ad22009-04-22 05:27:59 +0000838 } else {
Chris Lattnereaaebc72009-04-25 08:06:05 +0000839 bool isInvalid = false;
840 T = ConvertDeclSpecToType(DS, D.getIdentifierLoc(), isInvalid);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000841 if (isInvalid)
842 D.setInvalidType(true);
Douglas Gregor402abb52009-05-28 23:31:59 +0000843 else if (OwnedDecl && DS.isTypeSpecOwned())
844 *OwnedDecl = cast<TagDecl>((Decl *)DS.getTypeRep());
Douglas Gregor809070a2009-02-18 17:45:20 +0000845 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000846 break;
Mike Stump98eb8a72009-02-04 22:31:32 +0000847 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000848
849 case Declarator::DK_Constructor:
850 case Declarator::DK_Destructor:
851 case Declarator::DK_Conversion:
852 // Constructors and destructors don't have return types. Use
853 // "void" instead. Conversion operators will check their return
854 // types separately.
855 T = Context.VoidTy;
856 break;
857 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000858
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000859 if (T == Context.UndeducedAutoTy) {
860 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000862 switch (D.getContext()) {
863 case Declarator::KNRTypeListContext:
864 assert(0 && "K&R type lists aren't allowed in C++");
865 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000866 case Declarator::PrototypeContext:
867 Error = 0; // Function prototype
868 break;
869 case Declarator::MemberContext:
870 switch (cast<TagDecl>(CurContext)->getTagKind()) {
871 case TagDecl::TK_enum: assert(0 && "unhandled tag kind"); break;
872 case TagDecl::TK_struct: Error = 1; /* Struct member */ break;
873 case TagDecl::TK_union: Error = 2; /* Union member */ break;
874 case TagDecl::TK_class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +0000875 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000876 break;
877 case Declarator::CXXCatchContext:
878 Error = 4; // Exception declaration
879 break;
880 case Declarator::TemplateParamContext:
881 Error = 5; // Template parameter
882 break;
883 case Declarator::BlockLiteralContext:
884 Error = 6; // Block literal
885 break;
886 case Declarator::FileContext:
887 case Declarator::BlockContext:
888 case Declarator::ForContext:
889 case Declarator::ConditionContext:
890 case Declarator::TypeNameContext:
891 break;
892 }
893
894 if (Error != -1) {
895 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
896 << Error;
897 T = Context.IntTy;
898 D.setInvalidType(true);
899 }
900 }
Mike Stump1eb44332009-09-09 15:08:12 +0000901
Douglas Gregorcd281c32009-02-28 00:25:32 +0000902 // The name we're declaring, if any.
903 DeclarationName Name;
904 if (D.getIdentifier())
905 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +0000906
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000907 bool ShouldBuildInfo = DInfo != 0;
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +0000908 // The QualType referring to the type as written in source code. We can't use
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000909 // T because it can change due to semantic analysis.
910 QualType SourceTy = T;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000911
Mike Stump98eb8a72009-02-04 22:31:32 +0000912 // Walk the DeclTypeInfo, building the recursive type as we go.
913 // DeclTypeInfos are ordered from the identifier out, which is
914 // opposite of what we want :).
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000915 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
916 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
Reid Spencer5f016e22007-07-11 17:01:13 +0000917 switch (DeclType.Kind) {
918 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +0000919 case DeclaratorChunk::BlockPointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000920 if (ShouldBuildInfo) {
921 if (SourceTy->isFunctionType())
922 SourceTy = Context.getBlockPointerType(SourceTy)
923 .getQualifiedType(DeclType.Cls.TypeQuals);
924 else
925 // If not function type Context::getBlockPointerType asserts,
926 // so just give up.
927 ShouldBuildInfo = false;
928 }
929
Chris Lattner9af55002009-03-27 04:18:06 +0000930 // If blocks are disabled, emit an error.
931 if (!LangOpts.Blocks)
932 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +0000933
934 T = BuildBlockPointerType(T, DeclType.Cls.TypeQuals, D.getIdentifierLoc(),
Anders Carlsson9a917e42009-06-12 22:56:54 +0000935 Name);
Steve Naroff5618bd42008-08-27 16:04:49 +0000936 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000937 case DeclaratorChunk::Pointer:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000938 //FIXME: Use ObjCObjectPointer for info when appropriate.
939 if (ShouldBuildInfo)
940 SourceTy = Context.getPointerType(SourceTy)
941 .getQualifiedType(DeclType.Ptr.TypeQuals);
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000942 // Verify that we're not building a pointer to pointer to function with
943 // exception specification.
944 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
945 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
946 D.setInvalidType(true);
947 // Build the type anyway.
948 }
Steve Naroff14108da2009-07-10 23:34:53 +0000949 if (getLangOptions().ObjC1 && T->isObjCInterfaceType()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000950 const ObjCInterfaceType *OIT = T->getAsObjCInterfaceType();
Steve Naroff14108da2009-07-10 23:34:53 +0000951 T = Context.getObjCObjectPointerType(T,
Steve Naroff67ef8ea2009-07-20 17:56:53 +0000952 (ObjCProtocolDecl **)OIT->qual_begin(),
953 OIT->getNumProtocols());
Steve Naroff14108da2009-07-10 23:34:53 +0000954 break;
955 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000956 T = BuildPointerType(T, DeclType.Ptr.TypeQuals, DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000957 break;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000958 case DeclaratorChunk::Reference:
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000959 if (ShouldBuildInfo) {
960 if (DeclType.Ref.LValueRef)
961 SourceTy = Context.getLValueReferenceType(SourceTy);
962 else
963 SourceTy = Context.getRValueReferenceType(SourceTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000964 unsigned Quals = DeclType.Ref.HasRestrict ? QualType::Restrict : 0;
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000965 SourceTy = SourceTy.getQualifiedType(Quals);
966 }
967
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000968 // Verify that we're not building a reference to pointer to function with
969 // exception specification.
970 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
971 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
972 D.setInvalidType(true);
973 // Build the type anyway.
974 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000975 T = BuildReferenceType(T, DeclType.Ref.LValueRef,
976 DeclType.Ref.HasRestrict ? QualType::Restrict : 0,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000977 DeclType.Loc, Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000978 break;
979 case DeclaratorChunk::Array: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +0000980 if (ShouldBuildInfo)
981 // We just need to get an array type, the exact type doesn't matter.
982 SourceTy = Context.getIncompleteArrayType(SourceTy, ArrayType::Normal,
983 DeclType.Arr.TypeQuals);
984
Sebastian Redl6a7330c2009-05-29 15:01:05 +0000985 // Verify that we're not building an array of pointers to function with
986 // exception specification.
987 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
988 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
989 D.setInvalidType(true);
990 // Build the type anyway.
991 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +0000992 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000993 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000994 ArrayType::ArraySizeModifier ASM;
995 if (ATI.isStar)
996 ASM = ArrayType::Star;
997 else if (ATI.hasStatic)
998 ASM = ArrayType::Static;
999 else
1000 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +00001001 if (ASM == ArrayType::Star &&
1002 D.getContext() != Declarator::PrototypeContext) {
1003 // FIXME: This check isn't quite right: it allows star in prototypes
1004 // for function definitions, and disallows some edge cases detailed
1005 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
1006 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1007 ASM = ArrayType::Normal;
1008 D.setInvalidType(true);
1009 }
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001010 T = BuildArrayType(T, ASM, ArraySize, ATI.TypeQuals,
1011 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 break;
1013 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001014 case DeclaratorChunk::Function: {
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001015 if (ShouldBuildInfo) {
1016 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1017 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001018
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001019 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1020 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
1021 if (Param)
1022 ArgTys.push_back(Param->getType());
1023 }
1024 SourceTy = Context.getFunctionType(SourceTy, ArgTys.data(),
1025 ArgTys.size(),
1026 FTI.isVariadic, FTI.TypeQuals);
1027 }
1028
Reid Spencer5f016e22007-07-11 17:01:13 +00001029 // If the function declarator has a prototype (i.e. it is not () and
1030 // does not have a K&R-style identifier list), then the arguments are part
1031 // of the type, otherwise the argument list is ().
1032 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001033
Chris Lattnercd881292007-12-19 05:31:29 +00001034 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +00001035 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001036 Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001037 T = Context.IntTy;
1038 D.setInvalidType(true);
1039 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001040
Douglas Gregor402abb52009-05-28 23:31:59 +00001041 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1042 // C++ [dcl.fct]p6:
1043 // Types shall not be defined in return or parameter types.
1044 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1045 if (Tag->isDefinition())
1046 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1047 << Context.getTypeDeclType(Tag);
1048 }
1049
Sebastian Redl3cc97262009-05-31 11:47:27 +00001050 // Exception specs are not allowed in typedefs. Complain, but add it
1051 // anyway.
1052 if (FTI.hasExceptionSpec &&
1053 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1054 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1055
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001056 if (FTI.NumArgs == 0) {
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001057 if (getLangOptions().CPlusPlus) {
1058 // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
1059 // function takes no arguments.
Sebastian Redl465226e2009-05-27 22:11:52 +00001060 llvm::SmallVector<QualType, 4> Exceptions;
1061 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001062 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001063 // FIXME: Preserve type source info.
1064 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001065 // Check that the type is valid for an exception spec, and drop it
1066 // if not.
1067 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1068 Exceptions.push_back(ET);
1069 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001070 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, FTI.TypeQuals,
1071 FTI.hasExceptionSpec,
1072 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001073 Exceptions.size(), Exceptions.data());
Douglas Gregor965acbb2009-02-18 07:07:28 +00001074 } else if (FTI.isVariadic) {
1075 // We allow a zero-parameter variadic function in C if the
1076 // function is marked with the "overloadable"
1077 // attribute. Scan for this attribute now.
1078 bool Overloadable = false;
1079 for (const AttributeList *Attrs = D.getAttributes();
1080 Attrs; Attrs = Attrs->getNext()) {
1081 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1082 Overloadable = true;
1083 break;
1084 }
1085 }
1086
1087 if (!Overloadable)
1088 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
1089 T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic, 0);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001090 } else {
1091 // Simple void foo(), where the incoming T is the result type.
Douglas Gregor72564e72009-02-26 23:50:07 +00001092 T = Context.getFunctionNoProtoType(T);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001093 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001094 } else if (FTI.ArgInfo[0].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001095 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
Mike Stump1eb44332009-09-09 15:08:12 +00001096 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001097 } else {
1098 // Otherwise, we have a function with an argument list that is
1099 // potentially variadic.
1100 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Reid Spencer5f016e22007-07-11 17:01:13 +00001102 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001103 ParmVarDecl *Param =
1104 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001105 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001106 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001107
1108 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001109 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001110
Reid Spencer5f016e22007-07-11 17:01:13 +00001111 // Look for 'void'. void is allowed only as a single argument to a
1112 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001113 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001114 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001115 // If this is something like 'float(int, void)', reject it. 'void'
1116 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1117 // have arguments of incomplete type.
1118 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1119 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001120 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001121 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001122 } else if (FTI.ArgInfo[i].Ident) {
1123 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001124 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001125 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001126 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001127 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001128 } else {
1129 // Reject, but continue to parse 'float(const void)'.
Chris Lattnerf46699c2008-02-20 20:55:12 +00001130 if (ArgTy.getCVRQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001131 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001132
Chris Lattner2ff54262007-07-21 05:18:12 +00001133 // Do not add 'void' to the ArgTys list.
1134 break;
1135 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001136 } else if (!FTI.hasPrototype) {
1137 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001138 ArgTy = Context.getPromotedIntegerType(ArgTy);
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001139 } else if (const BuiltinType* BTy = ArgTy->getAsBuiltinType()) {
1140 if (BTy->getKind() == BuiltinType::Float)
1141 ArgTy = Context.DoubleTy;
1142 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001143 }
Mike Stump1eb44332009-09-09 15:08:12 +00001144
Reid Spencer5f016e22007-07-11 17:01:13 +00001145 ArgTys.push_back(ArgTy);
1146 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001147
1148 llvm::SmallVector<QualType, 4> Exceptions;
1149 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001150 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001151 // FIXME: Preserve type source info.
1152 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001153 // Check that the type is valid for an exception spec, and drop it if
1154 // not.
1155 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1156 Exceptions.push_back(ET);
1157 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001158
Jay Foadbeaaccd2009-05-21 09:52:38 +00001159 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001160 FTI.isVariadic, FTI.TypeQuals,
1161 FTI.hasExceptionSpec,
1162 FTI.hasAnyExceptionSpec,
Sebastian Redlef65f062009-05-29 18:02:33 +00001163 Exceptions.size(), Exceptions.data());
Reid Spencer5f016e22007-07-11 17:01:13 +00001164 }
1165 break;
1166 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001167 case DeclaratorChunk::MemberPointer:
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001168 // Verify that we're not building a pointer to pointer to function with
1169 // exception specification.
1170 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1171 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1172 D.setInvalidType(true);
1173 // Build the type anyway.
1174 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001175 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001176 QualType ClsType;
Douglas Gregor949bf692009-06-09 22:17:39 +00001177 if (isDependentScopeSpecifier(DeclType.Mem.Scope())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001178 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001179 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
1180 assert(NNS->getAsType() && "Nested-name-specifier must name a type");
1181 ClsType = QualType(NNS->getAsType(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001182 } else if (CXXRecordDecl *RD
Douglas Gregor949bf692009-06-09 22:17:39 +00001183 = dyn_cast_or_null<CXXRecordDecl>(
1184 computeDeclContext(DeclType.Mem.Scope()))) {
Sebastian Redlf30208a2009-01-24 21:16:55 +00001185 ClsType = Context.getTagDeclType(RD);
1186 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001187 Diag(DeclType.Mem.Scope().getBeginLoc(),
1188 diag::err_illegal_decl_mempointer_in_nonclass)
1189 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1190 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001191 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001192 }
1193
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001194 if (ShouldBuildInfo) {
1195 QualType cls = !ClsType.isNull() ? ClsType : Context.IntTy;
1196 SourceTy = Context.getMemberPointerType(SourceTy, cls.getTypePtr())
1197 .getQualifiedType(DeclType.Mem.TypeQuals);
1198 }
1199
Douglas Gregor949bf692009-06-09 22:17:39 +00001200 if (!ClsType.isNull())
1201 T = BuildMemberPointerType(T, ClsType, DeclType.Mem.TypeQuals,
1202 DeclType.Loc, D.getIdentifier());
1203 if (T.isNull()) {
1204 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001205 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001206 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001207 break;
1208 }
1209
Douglas Gregorcd281c32009-02-28 00:25:32 +00001210 if (T.isNull()) {
1211 D.setInvalidType(true);
1212 T = Context.IntTy;
1213 }
1214
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001215 // See if there are any attributes on this declarator chunk.
1216 if (const AttributeList *AL = DeclType.getAttrs())
1217 ProcessTypeAttributeList(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +00001218 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001219
1220 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
Douglas Gregor72564e72009-02-26 23:50:07 +00001221 const FunctionProtoType *FnTy = T->getAsFunctionProtoType();
1222 assert(FnTy && "Why oh why is there not a FunctionProtoType here ?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001223
1224 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1225 // for a nonstatic member function, the function type to which a pointer
1226 // to member refers, or the top-level function type of a function typedef
1227 // declaration.
1228 if (FnTy->getTypeQuals() != 0 &&
1229 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Douglas Gregor584049d2008-12-15 23:53:10 +00001230 ((D.getContext() != Declarator::MemberContext &&
1231 (!D.getCXXScopeSpec().isSet() ||
Douglas Gregorf59a56e2009-07-21 23:53:31 +00001232 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)
1233 ->isRecord())) ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001234 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001235 if (D.isFunctionDeclarator())
1236 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1237 else
1238 Diag(D.getIdentifierLoc(),
1239 diag::err_invalid_qualified_typedef_function_type_use);
1240
1241 // Strip the cv-quals from the type.
1242 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001243 FnTy->getNumArgs(), FnTy->isVariadic(), 0);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001244 }
1245 }
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Chris Lattner0bf29ad2008-06-29 00:19:33 +00001247 // If there were any type attributes applied to the decl itself (not the
1248 // type, apply the type attribute to the type!)
1249 if (const AttributeList *Attrs = D.getAttributes())
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001250 ProcessTypeAttributeList(T, Attrs);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001251
1252 if (ShouldBuildInfo)
1253 *DInfo = GetDeclaratorInfoForDeclarator(D, SourceTy, Skip);
1254
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 return T;
1256}
1257
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001258/// \brief Create and instantiate a DeclaratorInfo with type source information.
1259///
1260/// \param T QualType referring to the type as written in source code.
1261DeclaratorInfo *
1262Sema::GetDeclaratorInfoForDeclarator(Declarator &D, QualType T, unsigned Skip) {
1263 DeclaratorInfo *DInfo = Context.CreateDeclaratorInfo(T);
1264 TypeLoc CurrTL = DInfo->getTypeLoc();
1265
1266 for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
1267 assert(!CurrTL.isNull());
1268
1269 DeclaratorChunk &DeclType = D.getTypeObject(i);
1270 switch (DeclType.Kind) {
1271 default: assert(0 && "Unknown decltype!");
1272 case DeclaratorChunk::BlockPointer: {
1273 BlockPointerLoc &BPL = cast<BlockPointerLoc>(CurrTL);
1274 BPL.setCaretLoc(DeclType.Loc);
1275 break;
1276 }
1277 case DeclaratorChunk::Pointer: {
1278 //FIXME: ObjCObject pointers.
1279 PointerLoc &PL = cast<PointerLoc>(CurrTL);
1280 PL.setStarLoc(DeclType.Loc);
1281 break;
1282 }
1283 case DeclaratorChunk::Reference: {
1284 ReferenceLoc &RL = cast<ReferenceLoc>(CurrTL);
1285 RL.setAmpLoc(DeclType.Loc);
1286 break;
1287 }
1288 case DeclaratorChunk::Array: {
1289 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
1290 ArrayLoc &AL = cast<ArrayLoc>(CurrTL);
1291 AL.setLBracketLoc(DeclType.Loc);
1292 AL.setRBracketLoc(DeclType.EndLoc);
1293 AL.setSizeExpr(static_cast<Expr*>(ATI.NumElts));
1294 //FIXME: Star location for [*].
1295 break;
1296 }
1297 case DeclaratorChunk::Function: {
1298 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
1299 FunctionLoc &FL = cast<FunctionLoc>(CurrTL);
1300 FL.setLParenLoc(DeclType.Loc);
1301 FL.setRParenLoc(DeclType.EndLoc);
1302 for (unsigned i = 0, e = FTI.NumArgs, tpi = 0; i != e; ++i) {
1303 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
1304 if (Param) {
1305 assert(tpi < FL.getNumArgs());
1306 FL.setArg(tpi++, Param);
1307 }
1308 }
1309 break;
1310 //FIXME: Exception specs.
1311 }
1312 case DeclaratorChunk::MemberPointer: {
1313 MemberPointerLoc &MPL = cast<MemberPointerLoc>(CurrTL);
1314 MPL.setStarLoc(DeclType.Loc);
1315 //FIXME: Class location.
1316 break;
1317 }
Mike Stump1eb44332009-09-09 15:08:12 +00001318
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001319 }
1320
1321 CurrTL = CurrTL.getNextTypeLoc();
1322 }
Mike Stump1eb44332009-09-09 15:08:12 +00001323
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001324 if (TypedefLoc *TL = dyn_cast<TypedefLoc>(&CurrTL)) {
1325 TL->setNameLoc(D.getDeclSpec().getTypeSpecTypeLoc());
1326 } else {
1327 //FIXME: Other typespecs.
1328 DefaultTypeSpecLoc &DTL = cast<DefaultTypeSpecLoc>(CurrTL);
Argyrios Kyrtzidis31590f92009-08-29 22:39:34 +00001329 DTL.setStartLoc(D.getDeclSpec().getSourceRange().getBegin());
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001330 }
1331
1332 return DInfo;
1333}
1334
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001335/// \brief Create a LocInfoType to hold the given QualType and DeclaratorInfo.
1336QualType Sema::CreateLocInfoType(QualType T, DeclaratorInfo *DInfo) {
1337 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1338 // and Sema during declaration parsing. Try deallocating/caching them when
1339 // it's appropriate, instead of allocating them and keeping them around.
1340 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
1341 new (LocT) LocInfoType(T, DInfo);
1342 assert(LocT->getTypeClass() != T->getTypeClass() &&
1343 "LocInfoType's TypeClass conflicts with an existing Type class");
1344 return QualType(LocT, 0);
1345}
1346
1347void LocInfoType::getAsStringInternal(std::string &Str,
1348 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001349 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1350 " was used directly instead of getting the QualType through"
1351 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001352}
1353
Sebastian Redlef65f062009-05-29 18:02:33 +00001354/// CheckSpecifiedExceptionType - Check if the given type is valid in an
1355/// exception specification. Incomplete types, or pointers to incomplete types
1356/// other than void are not allowed.
1357bool Sema::CheckSpecifiedExceptionType(QualType T, const SourceRange &Range) {
1358 // FIXME: This may not correctly work with the fix for core issue 437,
1359 // where a class's own type is considered complete within its body.
1360
1361 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1362 // an incomplete type.
1363 if (T->isIncompleteType())
1364 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1365 << Range << T << /*direct*/0;
1366
1367 // C++ 15.4p2: A type denoted in an exception-specification shall not denote
1368 // an incomplete type a pointer or reference to an incomplete type, other
1369 // than (cv) void*.
Sebastian Redlef65f062009-05-29 18:02:33 +00001370 int kind;
Ted Kremenek6217b802009-07-29 21:53:49 +00001371 if (const PointerType* IT = T->getAs<PointerType>()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001372 T = IT->getPointeeType();
1373 kind = 1;
Ted Kremenek6217b802009-07-29 21:53:49 +00001374 } else if (const ReferenceType* IT = T->getAs<ReferenceType>()) {
Sebastian Redlef65f062009-05-29 18:02:33 +00001375 T = IT->getPointeeType();
Sebastian Redl3cc97262009-05-31 11:47:27 +00001376 kind = 2;
Sebastian Redlef65f062009-05-29 18:02:33 +00001377 } else
1378 return false;
1379
1380 if (T->isIncompleteType() && !T->isVoidType())
1381 return Diag(Range.getBegin(), diag::err_incomplete_in_exception_spec)
1382 << Range << T << /*indirect*/kind;
1383
1384 return false;
1385}
1386
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001387/// CheckDistantExceptionSpec - Check if the given type is a pointer or pointer
1388/// to member to a function with an exception specification. This means that
1389/// it is invalid to add another level of indirection.
1390bool Sema::CheckDistantExceptionSpec(QualType T) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001391 if (const PointerType *PT = T->getAs<PointerType>())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001392 T = PT->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001393 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>())
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001394 T = PT->getPointeeType();
1395 else
1396 return false;
1397
1398 const FunctionProtoType *FnT = T->getAsFunctionProtoType();
1399 if (!FnT)
1400 return false;
1401
1402 return FnT->hasExceptionSpec();
1403}
1404
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001405/// CheckEquivalentExceptionSpec - Check if the two types have equivalent
1406/// exception specifications. Exception specifications are equivalent if
1407/// they allow exactly the same set of exception types. It does not matter how
1408/// that is achieved. See C++ [except.spec]p2.
1409bool Sema::CheckEquivalentExceptionSpec(
1410 const FunctionProtoType *Old, SourceLocation OldLoc,
1411 const FunctionProtoType *New, SourceLocation NewLoc) {
1412 bool OldAny = !Old->hasExceptionSpec() || Old->hasAnyExceptionSpec();
1413 bool NewAny = !New->hasExceptionSpec() || New->hasAnyExceptionSpec();
1414 if (OldAny && NewAny)
1415 return false;
1416 if (OldAny || NewAny) {
1417 Diag(NewLoc, diag::err_mismatched_exception_spec);
1418 Diag(OldLoc, diag::note_previous_declaration);
1419 return true;
1420 }
1421
1422 bool Success = true;
1423 // Both have a definite exception spec. Collect the first set, then compare
1424 // to the second.
1425 llvm::SmallPtrSet<const Type*, 8> Types;
1426 for (FunctionProtoType::exception_iterator I = Old->exception_begin(),
1427 E = Old->exception_end(); I != E; ++I)
1428 Types.insert(Context.getCanonicalType(*I).getTypePtr());
1429
1430 for (FunctionProtoType::exception_iterator I = New->exception_begin(),
1431 E = New->exception_end(); I != E && Success; ++I)
1432 Success = Types.erase(Context.getCanonicalType(*I).getTypePtr());
1433
1434 Success = Success && Types.empty();
1435
1436 if (Success) {
1437 return false;
1438 }
1439 Diag(NewLoc, diag::err_mismatched_exception_spec);
1440 Diag(OldLoc, diag::note_previous_declaration);
1441 return true;
1442}
1443
Sebastian Redl23c7d062009-07-07 20:29:57 +00001444/// CheckExceptionSpecSubset - Check whether the second function type's
1445/// exception specification is a subset (or equivalent) of the first function
1446/// type. This is used by override and pointer assignment checks.
1447bool Sema::CheckExceptionSpecSubset(unsigned DiagID, unsigned NoteID,
1448 const FunctionProtoType *Superset, SourceLocation SuperLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001449 const FunctionProtoType *Subset, SourceLocation SubLoc) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001450 // FIXME: As usual, we could be more specific in our error messages, but
1451 // that better waits until we've got types with source locations.
1452
1453 // If superset contains everything, we're done.
1454 if (!Superset->hasExceptionSpec() || Superset->hasAnyExceptionSpec())
1455 return false;
1456
1457 // It does not. If the subset contains everything, we've failed.
1458 if (!Subset->hasExceptionSpec() || Subset->hasAnyExceptionSpec()) {
1459 Diag(SubLoc, DiagID);
1460 Diag(SuperLoc, NoteID);
1461 return true;
1462 }
1463
1464 // Neither contains everything. Do a proper comparison.
1465 for (FunctionProtoType::exception_iterator SubI = Subset->exception_begin(),
1466 SubE = Subset->exception_end(); SubI != SubE; ++SubI) {
1467 // Take one type from the subset.
1468 QualType CanonicalSubT = Context.getCanonicalType(*SubI);
1469 bool SubIsPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +00001470 if (const ReferenceType *RefTy = CanonicalSubT->getAs<ReferenceType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001471 CanonicalSubT = RefTy->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001472 if (const PointerType *PtrTy = CanonicalSubT->getAs<PointerType>()) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001473 CanonicalSubT = PtrTy->getPointeeType();
1474 SubIsPointer = true;
1475 }
1476 bool SubIsClass = CanonicalSubT->isRecordType();
1477 CanonicalSubT.setCVRQualifiers(0);
1478
Sebastian Redl726212f2009-07-18 14:32:15 +00001479 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl23c7d062009-07-07 20:29:57 +00001480 /*DetectVirtual=*/false);
1481
1482 bool Contained = false;
1483 // Make sure it's in the superset.
1484 for (FunctionProtoType::exception_iterator SuperI =
1485 Superset->exception_begin(), SuperE = Superset->exception_end();
1486 SuperI != SuperE; ++SuperI) {
1487 QualType CanonicalSuperT = Context.getCanonicalType(*SuperI);
1488 // SubT must be SuperT or derived from it, or pointer or reference to
1489 // such types.
Ted Kremenek6217b802009-07-29 21:53:49 +00001490 if (const ReferenceType *RefTy = CanonicalSuperT->getAs<ReferenceType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001491 CanonicalSuperT = RefTy->getPointeeType();
1492 if (SubIsPointer) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001493 if (const PointerType *PtrTy = CanonicalSuperT->getAs<PointerType>())
Sebastian Redl23c7d062009-07-07 20:29:57 +00001494 CanonicalSuperT = PtrTy->getPointeeType();
1495 else {
1496 continue;
1497 }
1498 }
1499 CanonicalSuperT.setCVRQualifiers(0);
1500 // If the types are the same, move on to the next type in the subset.
1501 if (CanonicalSubT == CanonicalSuperT) {
1502 Contained = true;
1503 break;
1504 }
1505
1506 // Otherwise we need to check the inheritance.
1507 if (!SubIsClass || !CanonicalSuperT->isRecordType())
1508 continue;
1509
1510 Paths.clear();
1511 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths))
1512 continue;
1513
1514 if (Paths.isAmbiguous(CanonicalSuperT))
1515 continue;
1516
Sebastian Redl726212f2009-07-18 14:32:15 +00001517 if (FindInaccessibleBase(CanonicalSubT, CanonicalSuperT, Paths, true))
1518 continue;
Sebastian Redl23c7d062009-07-07 20:29:57 +00001519
1520 Contained = true;
1521 break;
1522 }
1523 if (!Contained) {
1524 Diag(SubLoc, DiagID);
1525 Diag(SuperLoc, NoteID);
1526 return true;
1527 }
1528 }
1529 // We've run the gauntlet.
1530 return false;
1531}
1532
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001533/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +00001534/// declarator
Chris Lattnerb28317a2009-03-28 19:18:32 +00001535QualType Sema::ObjCGetTypeForMethodDefinition(DeclPtrTy D) {
1536 ObjCMethodDecl *MDecl = cast<ObjCMethodDecl>(D.getAs<Decl>());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001537 QualType T = MDecl->getResultType();
1538 llvm::SmallVector<QualType, 16> ArgTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001539
Fariborz Jahanian35600022007-11-09 17:18:29 +00001540 // Add the first two invisible argument types for self and _cmd.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001541 if (MDecl->isInstanceMethod()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001542 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +00001543 selfTy = Context.getPointerType(selfTy);
1544 ArgTys.push_back(selfTy);
Chris Lattner89951a82009-02-20 18:43:26 +00001545 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001546 ArgTys.push_back(Context.getObjCIdType());
1547 ArgTys.push_back(Context.getObjCSelType());
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Chris Lattner89951a82009-02-20 18:43:26 +00001549 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
1550 E = MDecl->param_end(); PI != E; ++PI) {
1551 QualType ArgTy = (*PI)->getType();
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001552 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001553 ArgTy = adjustParameterType(ArgTy);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001554 ArgTys.push_back(ArgTy);
1555 }
1556 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Argyrios Kyrtzidis7fb5e482008-10-26 16:43:14 +00001557 MDecl->isVariadic(), 0);
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001558 return T;
1559}
1560
Sebastian Redl9e5e4aa2009-01-26 19:54:48 +00001561/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types that
1562/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
1563/// they point to and return true. If T1 and T2 aren't pointer types
1564/// or pointer-to-member types, or if they are not similar at this
1565/// level, returns false and leaves T1 and T2 unchanged. Top-level
1566/// qualifiers on T1 and T2 are ignored. This function will typically
1567/// be called in a loop that successively "unwraps" pointer and
1568/// pointer-to-member types to compare them at each level.
Chris Lattnerecb81f22009-02-16 21:43:00 +00001569bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001570 const PointerType *T1PtrType = T1->getAs<PointerType>(),
1571 *T2PtrType = T2->getAs<PointerType>();
Douglas Gregor57373262008-10-22 14:17:15 +00001572 if (T1PtrType && T2PtrType) {
1573 T1 = T1PtrType->getPointeeType();
1574 T2 = T2PtrType->getPointeeType();
1575 return true;
1576 }
1577
Ted Kremenek6217b802009-07-29 21:53:49 +00001578 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
1579 *T2MPType = T2->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00001580 if (T1MPType && T2MPType &&
1581 Context.getCanonicalType(T1MPType->getClass()) ==
1582 Context.getCanonicalType(T2MPType->getClass())) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001583 T1 = T1MPType->getPointeeType();
1584 T2 = T2MPType->getPointeeType();
1585 return true;
1586 }
Douglas Gregor57373262008-10-22 14:17:15 +00001587 return false;
1588}
1589
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001590Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001591 // C99 6.7.6: Type names have no identifier. This is already validated by
1592 // the parser.
1593 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001594
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001595 DeclaratorInfo *DInfo = 0;
Douglas Gregor402abb52009-05-28 23:31:59 +00001596 TagDecl *OwnedTag = 0;
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001597 QualType T = GetTypeForDeclarator(D, S, &DInfo, /*Skip=*/0, &OwnedTag);
Chris Lattner5153ee62009-04-25 08:47:54 +00001598 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001599 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001600
Douglas Gregor402abb52009-05-28 23:31:59 +00001601 if (getLangOptions().CPlusPlus) {
1602 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001603 CheckExtraCXXDefaultArguments(D);
1604
Douglas Gregor402abb52009-05-28 23:31:59 +00001605 // C++0x [dcl.type]p3:
1606 // A type-specifier-seq shall not define a class or enumeration
1607 // unless it appears in the type-id of an alias-declaration
1608 // (7.1.3).
1609 if (OwnedTag && OwnedTag->isDefinition())
1610 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1611 << Context.getTypeDeclType(OwnedTag);
1612 }
1613
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001614 if (DInfo)
1615 T = CreateLocInfoType(T, DInfo);
1616
Reid Spencer5f016e22007-07-11 17:01:13 +00001617 return T.getAsOpaquePtr();
1618}
1619
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001620
1621
1622//===----------------------------------------------------------------------===//
1623// Type Attribute Processing
1624//===----------------------------------------------------------------------===//
1625
1626/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1627/// specified type. The attribute contains 1 argument, the id of the address
1628/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001629static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001630 const AttributeList &Attr, Sema &S){
1631 // If this type is already address space qualified, reject it.
1632 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1633 // for two or more different address spaces."
1634 if (Type.getAddressSpace()) {
1635 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
1636 return;
1637 }
Mike Stump1eb44332009-09-09 15:08:12 +00001638
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001639 // Check the attribute arguments.
1640 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001641 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001642 return;
1643 }
1644 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1645 llvm::APSInt addrSpace(32);
1646 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001647 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1648 << ASArgExpr->getSourceRange();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001649 return;
1650 }
1651
John McCallefadb772009-07-28 06:52:18 +00001652 // Bounds checking.
1653 if (addrSpace.isSigned()) {
1654 if (addrSpace.isNegative()) {
1655 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1656 << ASArgExpr->getSourceRange();
1657 return;
1658 }
1659 addrSpace.setIsSigned(false);
1660 }
1661 llvm::APSInt max(addrSpace.getBitWidth());
1662 max = QualType::MaxAddressSpace;
1663 if (addrSpace > max) {
1664 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
1665 << QualType::MaxAddressSpace << ASArgExpr->getSourceRange();
1666 return;
1667 }
1668
Mike Stump1eb44332009-09-09 15:08:12 +00001669 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001670 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001671}
1672
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001673/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1674/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001675static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001676 const AttributeList &Attr, Sema &S) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001677 if (Type.getObjCGCAttr() != QualType::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001678 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001679 return;
1680 }
Mike Stump1eb44332009-09-09 15:08:12 +00001681
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001682 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001683 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001684 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1685 << "objc_gc" << 1;
1686 return;
1687 }
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001688 QualType::GCAttrTypes GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001689 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1691 return;
1692 }
Mike Stump1eb44332009-09-09 15:08:12 +00001693 if (Attr.getParameterName()->isStr("weak"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001694 GCAttr = QualType::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001695 else if (Attr.getParameterName()->isStr("strong"))
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001696 GCAttr = QualType::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001697 else {
1698 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1699 << "objc_gc" << Attr.getParameterName();
1700 return;
1701 }
Mike Stump1eb44332009-09-09 15:08:12 +00001702
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001703 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001704}
1705
Mike Stump24556362009-07-25 21:26:53 +00001706/// HandleNoReturnTypeAttribute - Process the noreturn attribute on the
1707/// specified type. The attribute contains 0 arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001708static void HandleNoReturnTypeAttribute(QualType &Type,
Mike Stump24556362009-07-25 21:26:53 +00001709 const AttributeList &Attr, Sema &S) {
1710 if (Attr.getNumArgs() != 0)
1711 return;
1712
1713 // We only apply this to a pointer to function or a pointer to block.
1714 if (!Type->isFunctionPointerType()
1715 && !Type->isBlockPointerType()
1716 && !Type->isFunctionType())
1717 return;
1718
1719 Type = S.Context.getNoReturnType(Type);
1720}
1721
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001722void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
Chris Lattner232e8822008-02-21 01:08:11 +00001723 // Scan through and apply attributes to this type where it makes sense. Some
1724 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1725 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001726 // apply to the decl. Here we apply type attributes and ignore the rest.
1727 for (; AL; AL = AL->getNext()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001728 // If this is an attribute we can handle, do so now, otherwise, add it to
1729 // the LeftOverAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001730 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001731 default: break;
1732 case AttributeList::AT_address_space:
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001733 HandleAddressSpaceTypeAttribute(Result, *AL, *this);
1734 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001735 case AttributeList::AT_objc_gc:
1736 HandleObjCGCTypeAttribute(Result, *AL, *this);
1737 break;
Mike Stump24556362009-07-25 21:26:53 +00001738 case AttributeList::AT_noreturn:
1739 HandleNoReturnTypeAttribute(Result, *AL, *this);
1740 break;
Chris Lattner232e8822008-02-21 01:08:11 +00001741 }
Chris Lattner232e8822008-02-21 01:08:11 +00001742 }
Chris Lattner232e8822008-02-21 01:08:11 +00001743}
1744
Mike Stump1eb44332009-09-09 15:08:12 +00001745/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001746///
1747/// This routine checks whether the type @p T is complete in any
1748/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00001749/// type, returns false. If @p T is a class template specialization,
1750/// this routine then attempts to perform class template
1751/// instantiation. If instantiation fails, or if @p T is incomplete
1752/// and cannot be completed, issues the diagnostic @p diag (giving it
1753/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001754///
1755/// @param Loc The location in the source that the incomplete type
1756/// diagnostic should refer to.
1757///
1758/// @param T The type that this routine is examining for completeness.
1759///
Mike Stump1eb44332009-09-09 15:08:12 +00001760/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00001761/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001762///
1763/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
1764/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001765bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
1766 const PartialDiagnostic &PD) {
1767 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00001768
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001769 // FIXME: Add this assertion to help us flush out problems with
1770 // checking for dependent types and type-dependent expressions.
1771 //
Mike Stump1eb44332009-09-09 15:08:12 +00001772 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00001773 // "Can't ask whether a dependent type is complete");
1774
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001775 // If we have a complete type, we're done.
1776 if (!T->isIncompleteType())
1777 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00001778
Douglas Gregord475b8d2009-03-25 21:17:03 +00001779 // If we have a class template specialization or a class member of a
1780 // class template specialization, try to instantiate it.
Ted Kremenek6217b802009-07-29 21:53:49 +00001781 if (const RecordType *Record = T->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001782 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001783 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00001784 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
1785 // Update the class template specialization's location to
1786 // refer to the point of instantiation.
1787 if (Loc.isValid())
1788 ClassTemplateSpec->setLocation(Loc);
1789 return InstantiateClassTemplateSpecialization(ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001790 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001791 /*Complain=*/diag != 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001792 }
Mike Stump1eb44332009-09-09 15:08:12 +00001793 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00001794 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
1795 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregor357bbd02009-08-28 20:50:45 +00001796 // This record was instantiated from a class within a template.
Mike Stump1eb44332009-09-09 15:08:12 +00001797 return InstantiateClass(Loc, Rec, Pattern,
Douglas Gregor357bbd02009-08-28 20:50:45 +00001798 getTemplateInstantiationArgs(Rec),
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001799 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00001800 /*Complain=*/diag != 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +00001801 }
1802 }
1803 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001804
Douglas Gregor5842ba92009-08-24 15:23:48 +00001805 if (diag == 0)
1806 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001808 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00001809 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001810
1811 // If the type was a forward declaration of a class/struct/union
Mike Stump1eb44332009-09-09 15:08:12 +00001812 // type, produce
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001813 const TagType *Tag = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +00001814 if (const RecordType *Record = T->getAs<RecordType>())
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001815 Tag = Record;
1816 else if (const EnumType *Enum = T->getAsEnumType())
1817 Tag = Enum;
1818
1819 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00001820 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00001821 Tag->isBeingDefined() ? diag::note_type_being_defined
1822 : diag::note_forward_declaration)
1823 << QualType(Tag, 0);
1824
1825 return true;
1826}
Douglas Gregore6258932009-03-19 00:39:20 +00001827
1828/// \brief Retrieve a version of the type 'T' that is qualified by the
1829/// nested-name-specifier contained in SS.
1830QualType Sema::getQualifiedNameType(const CXXScopeSpec &SS, QualType T) {
1831 if (!SS.isSet() || SS.isInvalid() || T.isNull())
1832 return T;
Mike Stump1eb44332009-09-09 15:08:12 +00001833
Douglas Gregorab452ba2009-03-26 23:50:42 +00001834 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +00001835 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001836 return Context.getQualifiedNameType(NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00001837}
Anders Carlssonaf017e62009-06-29 22:58:55 +00001838
1839QualType Sema::BuildTypeofExprType(Expr *E) {
1840 return Context.getTypeOfExprType(E);
1841}
1842
1843QualType Sema::BuildDecltypeType(Expr *E) {
1844 if (E->getType() == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00001845 Diag(E->getLocStart(),
Anders Carlssonaf017e62009-06-29 22:58:55 +00001846 diag::err_cannot_determine_declared_type_of_overloaded_function);
1847 return QualType();
1848 }
1849 return Context.getDecltypeType(E);
1850}