blob: 4d10fd030b1696c115460e4291f090f64d5a2f69 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements type-related semantic analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000016#include "clang/AST/CXXInheritance.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor2943aed2009-03-03 04:44:36 +000018#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +000019#include "clang/AST/TypeLoc.h"
John McCall51bd8032009-10-18 01:05:36 +000020#include "clang/AST/TypeLocVisitor.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000021#include "clang/AST/Expr.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000022#include "clang/Basic/PartialDiagnostic.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000023#include "clang/Parse/DeclSpec.h"
Sebastian Redl4994d2d2009-07-04 11:39:00 +000024#include "llvm/ADT/SmallPtrSet.h"
Douglas Gregor87c12c42009-11-04 16:49:01 +000025#include "llvm/Support/ErrorHandling.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
Douglas Gregor2dc0e642009-03-23 23:06:20 +000028/// \brief Perform adjustment on the parameter type of a function.
29///
30/// This routine adjusts the given parameter type @p T to the actual
Mike Stump1eb44332009-09-09 15:08:12 +000031/// parameter type used by semantic analysis (C99 6.7.5.3p[7,8],
32/// C++ [dcl.fct]p3). The adjusted parameter type is returned.
Douglas Gregor2dc0e642009-03-23 23:06:20 +000033QualType Sema::adjustParameterType(QualType T) {
34 // C99 6.7.5.3p7:
Chris Lattner778ed742009-10-25 17:36:50 +000035 // 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 if (T->isArrayType())
Douglas Gregor2dc0e642009-03-23 23:06:20 +000040 return Context.getArrayDecayedType(T);
Chris Lattner778ed742009-10-25 17:36:50 +000041
42 // C99 6.7.5.3p8:
43 // A declaration of a parameter as "function returning type"
44 // shall be adjusted to "pointer to function returning type", as
45 // in 6.3.2.1.
46 if (T->isFunctionType())
Douglas Gregor2dc0e642009-03-23 23:06:20 +000047 return Context.getPointerType(T);
48
49 return T;
50}
51
Chris Lattner5db2bb12009-10-25 18:21:37 +000052
53
54/// isOmittedBlockReturnType - Return true if this declarator is missing a
55/// return type because this is a omitted return type on a block literal.
Sebastian Redl8ce35b02009-10-25 21:45:37 +000056static bool isOmittedBlockReturnType(const Declarator &D) {
Chris Lattner5db2bb12009-10-25 18:21:37 +000057 if (D.getContext() != Declarator::BlockLiteralContext ||
Sebastian Redl8ce35b02009-10-25 21:45:37 +000058 D.getDeclSpec().hasTypeSpecifier())
Chris Lattner5db2bb12009-10-25 18:21:37 +000059 return false;
60
61 if (D.getNumTypeObjects() == 0)
Chris Lattnera64ef0a2009-10-25 22:09:09 +000062 return true; // ^{ ... }
Chris Lattner5db2bb12009-10-25 18:21:37 +000063
64 if (D.getNumTypeObjects() == 1 &&
65 D.getTypeObject(0).Kind == DeclaratorChunk::Function)
Chris Lattnera64ef0a2009-10-25 22:09:09 +000066 return true; // ^(int X, float Y) { ... }
Chris Lattner5db2bb12009-10-25 18:21:37 +000067
68 return false;
69}
70
John McCall04a67a62010-02-05 21:31:56 +000071typedef std::pair<const AttributeList*,QualType> DelayedAttribute;
72typedef llvm::SmallVectorImpl<DelayedAttribute> DelayedAttributeSet;
73
74static void ProcessTypeAttributeList(Sema &S, QualType &Type,
Charles Davis328ce342010-02-24 02:27:18 +000075 bool IsDeclSpec,
John McCall04a67a62010-02-05 21:31:56 +000076 const AttributeList *Attrs,
77 DelayedAttributeSet &DelayedFnAttrs);
78static bool ProcessFnAttr(Sema &S, QualType &Type, const AttributeList &Attr);
79
80static void ProcessDelayedFnAttrs(Sema &S, QualType &Type,
81 DelayedAttributeSet &Attrs) {
82 for (DelayedAttributeSet::iterator I = Attrs.begin(),
83 E = Attrs.end(); I != E; ++I)
Abramo Bagnarae215f722010-04-30 13:10:51 +000084 if (ProcessFnAttr(S, Type, *I->first)) {
John McCall04a67a62010-02-05 21:31:56 +000085 S.Diag(I->first->getLoc(), diag::warn_function_attribute_wrong_type)
86 << I->first->getName() << I->second;
Abramo Bagnarae215f722010-04-30 13:10:51 +000087 // Avoid any further processing of this attribute.
88 I->first->setInvalid();
89 }
John McCall04a67a62010-02-05 21:31:56 +000090 Attrs.clear();
91}
92
93static void DiagnoseDelayedFnAttrs(Sema &S, DelayedAttributeSet &Attrs) {
94 for (DelayedAttributeSet::iterator I = Attrs.begin(),
95 E = Attrs.end(); I != E; ++I) {
96 S.Diag(I->first->getLoc(), diag::warn_function_attribute_wrong_type)
97 << I->first->getName() << I->second;
Abramo Bagnarae215f722010-04-30 13:10:51 +000098 // Avoid any further processing of this attribute.
99 I->first->setInvalid();
John McCall04a67a62010-02-05 21:31:56 +0000100 }
101 Attrs.clear();
102}
103
Douglas Gregor930d8b52009-01-30 22:09:00 +0000104/// \brief Convert the specified declspec to the appropriate type
105/// object.
Chris Lattner5db2bb12009-10-25 18:21:37 +0000106/// \param D the declarator containing the declaration specifier.
Chris Lattner5153ee62009-04-25 08:47:54 +0000107/// \returns The type described by the declaration specifiers. This function
108/// never returns null.
John McCall04a67a62010-02-05 21:31:56 +0000109static QualType ConvertDeclSpecToType(Sema &TheSema,
110 Declarator &TheDeclarator,
111 DelayedAttributeSet &Delayed) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
113 // checking.
Chris Lattner5db2bb12009-10-25 18:21:37 +0000114 const DeclSpec &DS = TheDeclarator.getDeclSpec();
115 SourceLocation DeclLoc = TheDeclarator.getIdentifierLoc();
116 if (DeclLoc.isInvalid())
117 DeclLoc = DS.getSourceRange().getBegin();
Chris Lattner1564e392009-10-25 18:07:27 +0000118
119 ASTContext &Context = TheSema.Context;
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Chris Lattner5db2bb12009-10-25 18:21:37 +0000121 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 switch (DS.getTypeSpecType()) {
Chris Lattner96b77fc2008-04-02 06:50:17 +0000123 case DeclSpec::TST_void:
124 Result = Context.VoidTy;
125 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 case DeclSpec::TST_char:
127 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000128 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000130 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 else {
132 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
133 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +0000134 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 }
Chris Lattner958858e2008-02-20 21:40:32 +0000136 break;
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000137 case DeclSpec::TST_wchar:
138 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
139 Result = Context.WCharTy;
140 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
Chris Lattner1564e392009-10-25 18:07:27 +0000141 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000142 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000143 Result = Context.getSignedWCharType();
144 } else {
145 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
146 "Unknown TSS value");
Chris Lattner1564e392009-10-25 18:07:27 +0000147 TheSema.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000148 << DS.getSpecifierName(DS.getTypeSpecType());
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000149 Result = Context.getUnsignedWCharType();
150 }
151 break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000152 case DeclSpec::TST_char16:
153 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
154 "Unknown TSS value");
155 Result = Context.Char16Ty;
156 break;
157 case DeclSpec::TST_char32:
158 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
159 "Unknown TSS value");
160 Result = Context.Char32Ty;
161 break;
Chris Lattnerd658b562008-04-05 06:32:51 +0000162 case DeclSpec::TST_unspecified:
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000163 // "<proto1,proto2>" is an objc qualified ID with a missing id.
Chris Lattner097e9162008-10-20 02:01:50 +0000164 if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
John McCallc12c5bb2010-05-15 11:32:37 +0000165 Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
166 (ObjCProtocolDecl**)PQ,
167 DS.getNumProtocolQualifiers());
168 Result = Context.getObjCObjectPointerType(Result);
Chris Lattner62f5f7f2008-07-26 00:46:50 +0000169 break;
170 }
Chris Lattner5db2bb12009-10-25 18:21:37 +0000171
172 // If this is a missing declspec in a block literal return context, then it
173 // is inferred from the return statements inside the block.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000174 if (isOmittedBlockReturnType(TheDeclarator)) {
Chris Lattner5db2bb12009-10-25 18:21:37 +0000175 Result = Context.DependentTy;
176 break;
177 }
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Chris Lattnerd658b562008-04-05 06:32:51 +0000179 // Unspecified typespec defaults to int in C90. However, the C90 grammar
180 // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
181 // type-qualifier, or storage-class-specifier. If not, emit an extwarn.
182 // Note that the one exception to this is function definitions, which are
183 // allowed to be completely missing a declspec. This is handled in the
184 // parser already though by it pretending to have seen an 'int' in this
185 // case.
Chris Lattner1564e392009-10-25 18:07:27 +0000186 if (TheSema.getLangOptions().ImplicitInt) {
Chris Lattner35d276f2009-02-27 18:53:28 +0000187 // In C89 mode, we only warn if there is a completely missing declspec
188 // when one is not allowed.
Chris Lattner3f84ad22009-04-22 05:27:59 +0000189 if (DS.isEmpty()) {
Chris Lattner1564e392009-10-25 18:07:27 +0000190 TheSema.Diag(DeclLoc, diag::ext_missing_declspec)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000191 << DS.getSourceRange()
Douglas Gregor849b2432010-03-31 17:46:05 +0000192 << FixItHint::CreateInsertion(DS.getSourceRange().getBegin(), "int");
Chris Lattner3f84ad22009-04-22 05:27:59 +0000193 }
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000194 } else if (!DS.hasTypeSpecifier()) {
Chris Lattnerd658b562008-04-05 06:32:51 +0000195 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
196 // "At least one type specifier shall be given in the declaration
197 // specifiers in each declaration, and in the specifier-qualifier list in
198 // each struct declaration and type name."
Douglas Gregor4310f4e2009-02-16 22:38:20 +0000199 // FIXME: Does Microsoft really have the implicit int extension in C++?
Chris Lattner1564e392009-10-25 18:07:27 +0000200 if (TheSema.getLangOptions().CPlusPlus &&
201 !TheSema.getLangOptions().Microsoft) {
202 TheSema.Diag(DeclLoc, diag::err_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000203 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000204
Chris Lattnerb78d8332009-06-26 04:45:06 +0000205 // When this occurs in C++ code, often something is very broken with the
206 // value being declared, poison it as invalid so we don't get chains of
207 // errors.
Chris Lattner5db2bb12009-10-25 18:21:37 +0000208 TheDeclarator.setInvalidType(true);
Chris Lattnerb78d8332009-06-26 04:45:06 +0000209 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000210 TheSema.Diag(DeclLoc, diag::ext_missing_type_specifier)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000211 << DS.getSourceRange();
Chris Lattnerb78d8332009-06-26 04:45:06 +0000212 }
Chris Lattnerd658b562008-04-05 06:32:51 +0000213 }
Mike Stump1eb44332009-09-09 15:08:12 +0000214
215 // FALL THROUGH.
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000216 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000217 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
218 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000219 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
220 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
221 case DeclSpec::TSW_long: Result = Context.LongTy; break;
Chris Lattner311157f2009-10-25 18:25:04 +0000222 case DeclSpec::TSW_longlong:
223 Result = Context.LongLongTy;
224
225 // long long is a C99 feature.
226 if (!TheSema.getLangOptions().C99 &&
227 !TheSema.getLangOptions().CPlusPlus0x)
228 TheSema.Diag(DS.getTypeSpecWidthLoc(), diag::ext_longlong);
229 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 }
231 } else {
232 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000233 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
234 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
235 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
Chris Lattner311157f2009-10-25 18:25:04 +0000236 case DeclSpec::TSW_longlong:
237 Result = Context.UnsignedLongLongTy;
238
239 // long long is a C99 feature.
240 if (!TheSema.getLangOptions().C99 &&
241 !TheSema.getLangOptions().CPlusPlus0x)
242 TheSema.Diag(DS.getTypeSpecWidthLoc(), diag::ext_longlong);
243 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000244 }
245 }
Chris Lattner958858e2008-02-20 21:40:32 +0000246 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +0000247 }
Chris Lattnerfab5b452008-02-20 23:53:49 +0000248 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +0000249 case DeclSpec::TST_double:
250 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000251 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000252 else
Chris Lattnerfab5b452008-02-20 23:53:49 +0000253 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +0000254 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +0000255 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 case DeclSpec::TST_decimal32: // _Decimal32
257 case DeclSpec::TST_decimal64: // _Decimal64
258 case DeclSpec::TST_decimal128: // _Decimal128
Chris Lattner1564e392009-10-25 18:07:27 +0000259 TheSema.Diag(DS.getTypeSpecTypeLoc(), diag::err_decimal_unsupported);
Chris Lattner8f12f652009-05-13 05:02:08 +0000260 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000261 TheDeclarator.setInvalidType(true);
Chris Lattner8f12f652009-05-13 05:02:08 +0000262 break;
Chris Lattner99dc9142008-04-13 18:59:07 +0000263 case DeclSpec::TST_class:
Reid Spencer5f016e22007-07-11 17:01:13 +0000264 case DeclSpec::TST_enum:
265 case DeclSpec::TST_union:
266 case DeclSpec::TST_struct: {
Douglas Gregorc7621a62009-11-05 20:54:04 +0000267 TypeDecl *D
268 = dyn_cast_or_null<TypeDecl>(static_cast<Decl *>(DS.getTypeRep()));
John McCall6e247262009-10-10 05:48:19 +0000269 if (!D) {
270 // This can happen in C++ with ambiguous lookups.
271 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000272 TheDeclarator.setInvalidType(true);
John McCall6e247262009-10-10 05:48:19 +0000273 break;
274 }
275
Chris Lattnera64ef0a2009-10-25 22:09:09 +0000276 // If the type is deprecated or unavailable, diagnose it.
John McCall54abf7d2009-11-04 02:18:39 +0000277 TheSema.DiagnoseUseOfDecl(D, DS.getTypeSpecTypeLoc());
Chris Lattnera64ef0a2009-10-25 22:09:09 +0000278
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
Chris Lattnera64ef0a2009-10-25 22:09:09 +0000280 DS.getTypeSpecSign() == 0 && "No qualifiers on tag names!");
281
Reid Spencer5f016e22007-07-11 17:01:13 +0000282 // TypeQuals handled by caller.
Chris Lattnera64ef0a2009-10-25 22:09:09 +0000283 Result = Context.getTypeDeclType(D);
John McCall2191b202009-09-05 06:31:47 +0000284
285 // In C++, make an ElaboratedType.
Chris Lattner1564e392009-10-25 18:07:27 +0000286 if (TheSema.getLangOptions().CPlusPlus) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000287 ElaboratedTypeKeyword Keyword
288 = ElaboratedType::getKeywordForTypeSpec(DS.getTypeSpecType());
289 Result = TheSema.getElaboratedType(Keyword, DS.getTypeSpecScope(),
290 Result);
John McCall2191b202009-09-05 06:31:47 +0000291 }
Chris Lattner5153ee62009-04-25 08:47:54 +0000292 if (D->isInvalidDecl())
Chris Lattner5db2bb12009-10-25 18:21:37 +0000293 TheDeclarator.setInvalidType(true);
Chris Lattner958858e2008-02-20 21:40:32 +0000294 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000295 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000296 case DeclSpec::TST_typename: {
Reid Spencer5f016e22007-07-11 17:01:13 +0000297 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
298 DS.getTypeSpecSign() == 0 &&
299 "Can't handle qualifiers on typedef names yet!");
Chris Lattner1564e392009-10-25 18:07:27 +0000300 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
John McCall27940d22010-07-30 05:17:22 +0000301 if (Result.isNull())
302 TheDeclarator.setInvalidType(true);
303 else if (DeclSpec::ProtocolQualifierListTy PQ
304 = DS.getProtocolQualifiers()) {
John McCallc12c5bb2010-05-15 11:32:37 +0000305 if (const ObjCObjectType *ObjT = Result->getAs<ObjCObjectType>()) {
306 // Silently drop any existing protocol qualifiers.
307 // TODO: determine whether that's the right thing to do.
308 if (ObjT->getNumProtocols())
309 Result = ObjT->getBaseType();
310
311 if (DS.getNumProtocolQualifiers())
312 Result = Context.getObjCObjectType(Result,
313 (ObjCProtocolDecl**) PQ,
314 DS.getNumProtocolQualifiers());
315 } else if (Result->isObjCIdType()) {
Chris Lattnerae4da612008-07-26 01:53:50 +0000316 // id<protocol-list>
John McCallc12c5bb2010-05-15 11:32:37 +0000317 Result = Context.getObjCObjectType(Context.ObjCBuiltinIdTy,
318 (ObjCProtocolDecl**) PQ,
319 DS.getNumProtocolQualifiers());
320 Result = Context.getObjCObjectPointerType(Result);
321 } else if (Result->isObjCClassType()) {
Steve Naroff4262a072009-02-23 18:53:24 +0000322 // Class<protocol-list>
John McCallc12c5bb2010-05-15 11:32:37 +0000323 Result = Context.getObjCObjectType(Context.ObjCBuiltinClassTy,
324 (ObjCProtocolDecl**) PQ,
325 DS.getNumProtocolQualifiers());
326 Result = Context.getObjCObjectPointerType(Result);
Chris Lattner3f84ad22009-04-22 05:27:59 +0000327 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000328 TheSema.Diag(DeclLoc, diag::err_invalid_protocol_qualifiers)
Chris Lattner3f84ad22009-04-22 05:27:59 +0000329 << DS.getSourceRange();
Chris Lattner5db2bb12009-10-25 18:21:37 +0000330 TheDeclarator.setInvalidType(true);
Chris Lattner3f84ad22009-04-22 05:27:59 +0000331 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000332 }
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 // TypeQuals handled by caller.
Chris Lattner958858e2008-02-20 21:40:32 +0000335 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000336 }
Chris Lattner958858e2008-02-20 21:40:32 +0000337 case DeclSpec::TST_typeofType:
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000338 // FIXME: Preserve type source info.
Chris Lattner1564e392009-10-25 18:07:27 +0000339 Result = TheSema.GetTypeFromParser(DS.getTypeRep());
Chris Lattner958858e2008-02-20 21:40:32 +0000340 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000341 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000342 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000343 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000344 case DeclSpec::TST_typeofExpr: {
345 Expr *E = static_cast<Expr *>(DS.getTypeRep());
346 assert(E && "Didn't get an expression for typeof?");
347 // TypeQuals handled by caller.
Douglas Gregor4b52e252009-12-21 23:17:24 +0000348 Result = TheSema.BuildTypeofExprType(E);
349 if (Result.isNull()) {
350 Result = Context.IntTy;
351 TheDeclarator.setInvalidType(true);
352 }
Chris Lattner958858e2008-02-20 21:40:32 +0000353 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000354 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000355 case DeclSpec::TST_decltype: {
356 Expr *E = static_cast<Expr *>(DS.getTypeRep());
357 assert(E && "Didn't get an expression for decltype?");
358 // TypeQuals handled by caller.
Chris Lattner1564e392009-10-25 18:07:27 +0000359 Result = TheSema.BuildDecltypeType(E);
Anders Carlssonaf017e62009-06-29 22:58:55 +0000360 if (Result.isNull()) {
361 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000362 TheDeclarator.setInvalidType(true);
Anders Carlssonaf017e62009-06-29 22:58:55 +0000363 }
Anders Carlsson6fd634f2009-06-24 17:47:40 +0000364 break;
365 }
Anders Carlssone89d1592009-06-26 18:41:36 +0000366 case DeclSpec::TST_auto: {
367 // TypeQuals handled by caller.
368 Result = Context.UndeducedAutoTy;
369 break;
370 }
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Douglas Gregor809070a2009-02-18 17:45:20 +0000372 case DeclSpec::TST_error:
Chris Lattner5153ee62009-04-25 08:47:54 +0000373 Result = Context.IntTy;
Chris Lattner5db2bb12009-10-25 18:21:37 +0000374 TheDeclarator.setInvalidType(true);
Chris Lattner5153ee62009-04-25 08:47:54 +0000375 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 }
Mike Stump1eb44332009-09-09 15:08:12 +0000377
Chris Lattner958858e2008-02-20 21:40:32 +0000378 // Handle complex types.
Douglas Gregorf244cd72009-02-14 21:06:05 +0000379 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex) {
Chris Lattner1564e392009-10-25 18:07:27 +0000380 if (TheSema.getLangOptions().Freestanding)
381 TheSema.Diag(DS.getTypeSpecComplexLoc(), diag::ext_freestanding_complex);
Chris Lattnerfab5b452008-02-20 23:53:49 +0000382 Result = Context.getComplexType(Result);
John Thompson82287d12010-02-05 00:12:22 +0000383 } else if (DS.isTypeAltiVecVector()) {
384 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
385 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
Chris Lattner788b0fd2010-06-23 06:00:24 +0000386 VectorType::AltiVecSpecific AltiVecSpec = VectorType::AltiVec;
387 if (DS.isTypeAltiVecPixel())
388 AltiVecSpec = VectorType::Pixel;
389 else if (DS.isTypeAltiVecBool())
390 AltiVecSpec = VectorType::Bool;
391 Result = Context.getVectorType(Result, 128/typeSize, AltiVecSpec);
Douglas Gregorf244cd72009-02-14 21:06:05 +0000392 }
Mike Stump1eb44332009-09-09 15:08:12 +0000393
Chris Lattner958858e2008-02-20 21:40:32 +0000394 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
395 "FIXME: imaginary types not supported yet!");
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Chris Lattner38d8b982008-02-20 22:04:11 +0000397 // See if there are any attributes on the declspec that apply to the type (as
398 // opposed to the decl).
Chris Lattnerfca0ddd2008-06-26 06:27:57 +0000399 if (const AttributeList *AL = DS.getAttributes())
Charles Davis328ce342010-02-24 02:27:18 +0000400 ProcessTypeAttributeList(TheSema, Result, true, AL, Delayed);
Mike Stump1eb44332009-09-09 15:08:12 +0000401
Chris Lattner96b77fc2008-04-02 06:50:17 +0000402 // Apply const/volatile/restrict qualifiers to T.
403 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
404
405 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
406 // or incomplete types shall not be restrict-qualified." C++ also allows
407 // restrict-qualified references.
John McCall0953e762009-09-24 19:53:00 +0000408 if (TypeQuals & DeclSpec::TQ_restrict) {
Fariborz Jahanian2b5ff1a2009-12-07 18:08:58 +0000409 if (Result->isAnyPointerType() || Result->isReferenceType()) {
410 QualType EltTy;
411 if (Result->isObjCObjectPointerType())
412 EltTy = Result;
413 else
414 EltTy = Result->isPointerType() ?
415 Result->getAs<PointerType>()->getPointeeType() :
416 Result->getAs<ReferenceType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Douglas Gregorbad0e652009-03-24 20:32:41 +0000418 // If we have a pointer or reference, the pointee must have an object
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000419 // incomplete type.
420 if (!EltTy->isIncompleteOrObjectType()) {
Chris Lattner1564e392009-10-25 18:07:27 +0000421 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000422 diag::err_typecheck_invalid_restrict_invalid_pointee)
Chris Lattnerd1625842008-11-24 06:25:27 +0000423 << EltTy << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000424 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattnerbdcd6372008-04-02 17:35:06 +0000425 }
426 } else {
Chris Lattner1564e392009-10-25 18:07:27 +0000427 TheSema.Diag(DS.getRestrictSpecLoc(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000428 diag::err_typecheck_invalid_restrict_not_pointer)
Chris Lattnerd1625842008-11-24 06:25:27 +0000429 << Result << DS.getSourceRange();
John McCall0953e762009-09-24 19:53:00 +0000430 TypeQuals &= ~DeclSpec::TQ_restrict; // Remove the restrict qualifier.
Chris Lattner96b77fc2008-04-02 06:50:17 +0000431 }
Chris Lattner96b77fc2008-04-02 06:50:17 +0000432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattner96b77fc2008-04-02 06:50:17 +0000434 // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
435 // of a function type includes any type qualifiers, the behavior is
436 // undefined."
437 if (Result->isFunctionType() && TypeQuals) {
438 // Get some location to point at, either the C or V location.
439 SourceLocation Loc;
John McCall0953e762009-09-24 19:53:00 +0000440 if (TypeQuals & DeclSpec::TQ_const)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000441 Loc = DS.getConstSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000442 else if (TypeQuals & DeclSpec::TQ_volatile)
Chris Lattner96b77fc2008-04-02 06:50:17 +0000443 Loc = DS.getVolatileSpecLoc();
John McCall0953e762009-09-24 19:53:00 +0000444 else {
445 assert((TypeQuals & DeclSpec::TQ_restrict) &&
446 "Has CVR quals but not C, V, or R?");
447 Loc = DS.getRestrictSpecLoc();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000448 }
Chris Lattner1564e392009-10-25 18:07:27 +0000449 TheSema.Diag(Loc, diag::warn_typecheck_function_qualifiers)
Chris Lattnerd1625842008-11-24 06:25:27 +0000450 << Result << DS.getSourceRange();
Chris Lattner96b77fc2008-04-02 06:50:17 +0000451 }
Mike Stump1eb44332009-09-09 15:08:12 +0000452
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000453 // C++ [dcl.ref]p1:
454 // Cv-qualified references are ill-formed except when the
455 // cv-qualifiers are introduced through the use of a typedef
456 // (7.1.3) or of a template type argument (14.3), in which
457 // case the cv-qualifiers are ignored.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000458 // FIXME: Shouldn't we be checking SCS_typedef here?
459 if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorf1f9b4e2008-11-03 15:51:28 +0000460 TypeQuals && Result->isReferenceType()) {
John McCall0953e762009-09-24 19:53:00 +0000461 TypeQuals &= ~DeclSpec::TQ_const;
462 TypeQuals &= ~DeclSpec::TQ_volatile;
Mike Stump1eb44332009-09-09 15:08:12 +0000463 }
464
John McCall0953e762009-09-24 19:53:00 +0000465 Qualifiers Quals = Qualifiers::fromCVRMask(TypeQuals);
466 Result = Context.getQualifiedType(Result, Quals);
Chris Lattner96b77fc2008-04-02 06:50:17 +0000467 }
John McCall0953e762009-09-24 19:53:00 +0000468
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000469 return Result;
470}
471
Douglas Gregorcd281c32009-02-28 00:25:32 +0000472static std::string getPrintableNameForEntity(DeclarationName Entity) {
473 if (Entity)
474 return Entity.getAsString();
Mike Stump1eb44332009-09-09 15:08:12 +0000475
Douglas Gregorcd281c32009-02-28 00:25:32 +0000476 return "type name";
477}
478
John McCall28654742010-06-05 06:41:15 +0000479QualType Sema::BuildQualifiedType(QualType T, SourceLocation Loc,
480 Qualifiers Qs) {
481 // Enforce C99 6.7.3p2: "Types other than pointer types derived from
482 // object or incomplete types shall not be restrict-qualified."
483 if (Qs.hasRestrict()) {
484 unsigned DiagID = 0;
485 QualType ProblemTy;
486
487 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
488 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(Ty)) {
489 if (!RTy->getPointeeType()->isIncompleteOrObjectType()) {
490 DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
491 ProblemTy = T->getAs<ReferenceType>()->getPointeeType();
492 }
493 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
494 if (!PTy->getPointeeType()->isIncompleteOrObjectType()) {
495 DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
496 ProblemTy = T->getAs<PointerType>()->getPointeeType();
497 }
498 } else if (const MemberPointerType *PTy = dyn_cast<MemberPointerType>(Ty)) {
499 if (!PTy->getPointeeType()->isIncompleteOrObjectType()) {
500 DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
501 ProblemTy = T->getAs<PointerType>()->getPointeeType();
502 }
503 } else if (!Ty->isDependentType()) {
504 // FIXME: this deserves a proper diagnostic
505 DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
506 ProblemTy = T;
507 }
508
509 if (DiagID) {
510 Diag(Loc, DiagID) << ProblemTy;
511 Qs.removeRestrict();
512 }
513 }
514
515 return Context.getQualifiedType(T, Qs);
516}
517
Douglas Gregorcd281c32009-02-28 00:25:32 +0000518/// \brief Build a pointer type.
519///
520/// \param T The type to which we'll be building a pointer.
521///
Douglas Gregorcd281c32009-02-28 00:25:32 +0000522/// \param Loc The location of the entity whose type involves this
523/// pointer type or, if there is no such entity, the location of the
524/// type that will have pointer type.
525///
526/// \param Entity The name of the entity that involves the pointer
527/// type, if known.
528///
529/// \returns A suitable pointer type, if there are no
530/// errors. Otherwise, returns a NULL type.
John McCall28654742010-06-05 06:41:15 +0000531QualType Sema::BuildPointerType(QualType T,
Douglas Gregorcd281c32009-02-28 00:25:32 +0000532 SourceLocation Loc, DeclarationName Entity) {
533 if (T->isReferenceType()) {
534 // C++ 8.3.2p4: There shall be no ... pointers to references ...
535 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
John McCallac406052009-10-30 00:37:20 +0000536 << getPrintableNameForEntity(Entity) << T;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000537 return QualType();
538 }
539
John McCallc12c5bb2010-05-15 11:32:37 +0000540 assert(!T->isObjCObjectType() && "Should build ObjCObjectPointerType");
Douglas Gregor92e986e2010-04-22 16:44:27 +0000541
Douglas Gregorcd281c32009-02-28 00:25:32 +0000542 // Build the pointer type.
John McCall28654742010-06-05 06:41:15 +0000543 return Context.getPointerType(T);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000544}
545
546/// \brief Build a reference type.
547///
548/// \param T The type to which we'll be building a reference.
549///
Douglas Gregorcd281c32009-02-28 00:25:32 +0000550/// \param Loc The location of the entity whose type involves this
551/// reference type or, if there is no such entity, the location of the
552/// type that will have reference type.
553///
554/// \param Entity The name of the entity that involves the reference
555/// type, if known.
556///
557/// \returns A suitable reference type, if there are no
558/// errors. Otherwise, returns a NULL type.
John McCall54e14c42009-10-22 22:37:11 +0000559QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue,
John McCall28654742010-06-05 06:41:15 +0000560 SourceLocation Loc,
John McCall54e14c42009-10-22 22:37:11 +0000561 DeclarationName Entity) {
John McCall54e14c42009-10-22 22:37:11 +0000562 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
563
564 // C++0x [dcl.typedef]p9: If a typedef TD names a type that is a
565 // reference to a type T, and attempt to create the type "lvalue
566 // reference to cv TD" creates the type "lvalue reference to T".
567 // We use the qualifiers (restrict or none) of the original reference,
568 // not the new ones. This is consistent with GCC.
569
570 // C++ [dcl.ref]p4: There shall be no references to references.
571 //
572 // According to C++ DR 106, references to references are only
573 // diagnosed when they are written directly (e.g., "int & &"),
574 // but not when they happen via a typedef:
575 //
576 // typedef int& intref;
577 // typedef intref& intref2;
578 //
579 // Parser::ParseDeclaratorInternal diagnoses the case where
580 // references are written directly; here, we handle the
581 // collapsing of references-to-references as described in C++
582 // DR 106 and amended by C++ DR 540.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000583
584 // C++ [dcl.ref]p1:
Eli Friedman33a31382009-08-05 19:21:58 +0000585 // A declarator that specifies the type "reference to cv void"
Douglas Gregorcd281c32009-02-28 00:25:32 +0000586 // is ill-formed.
587 if (T->isVoidType()) {
588 Diag(Loc, diag::err_reference_to_void);
589 return QualType();
590 }
591
Douglas Gregorcd281c32009-02-28 00:25:32 +0000592 // Handle restrict on references.
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000593 if (LValueRef)
John McCall28654742010-06-05 06:41:15 +0000594 return Context.getLValueReferenceType(T, SpelledAsLValue);
595 return Context.getRValueReferenceType(T);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000596}
597
598/// \brief Build an array type.
599///
600/// \param T The type of each element in the array.
601///
602/// \param ASM C99 array size modifier (e.g., '*', 'static').
Mike Stump1eb44332009-09-09 15:08:12 +0000603///
604/// \param ArraySize Expression describing the size of the array.
Douglas Gregorcd281c32009-02-28 00:25:32 +0000605///
Douglas Gregorcd281c32009-02-28 00:25:32 +0000606/// \param Loc The location of the entity whose type involves this
607/// array type or, if there is no such entity, the location of the
608/// type that will have array type.
609///
610/// \param Entity The name of the entity that involves the array
611/// type, if known.
612///
613/// \returns A suitable array type, if there are no errors. Otherwise,
614/// returns a NULL type.
615QualType Sema::BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM,
616 Expr *ArraySize, unsigned Quals,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000617 SourceRange Brackets, DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000618
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000619 SourceLocation Loc = Brackets.getBegin();
Sebastian Redl923d56d2009-11-05 15:52:31 +0000620 if (getLangOptions().CPlusPlus) {
Douglas Gregor138bb232010-04-27 19:38:14 +0000621 // C++ [dcl.array]p1:
622 // T is called the array element type; this type shall not be a reference
623 // type, the (possibly cv-qualified) type void, a function type or an
624 // abstract class type.
625 //
626 // Note: function types are handled in the common path with C.
627 if (T->isReferenceType()) {
628 Diag(Loc, diag::err_illegal_decl_array_of_references)
629 << getPrintableNameForEntity(Entity) << T;
630 return QualType();
631 }
632
Sebastian Redl923d56d2009-11-05 15:52:31 +0000633 if (T->isVoidType()) {
634 Diag(Loc, diag::err_illegal_decl_array_incomplete_type) << T;
635 return QualType();
636 }
Douglas Gregor138bb232010-04-27 19:38:14 +0000637
638 if (RequireNonAbstractType(Brackets.getBegin(), T,
639 diag::err_array_of_abstract_type))
640 return QualType();
641
Sebastian Redl923d56d2009-11-05 15:52:31 +0000642 } else {
Douglas Gregor138bb232010-04-27 19:38:14 +0000643 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
644 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
Sebastian Redl923d56d2009-11-05 15:52:31 +0000645 if (RequireCompleteType(Loc, T,
646 diag::err_illegal_decl_array_incomplete_type))
647 return QualType();
648 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000649
650 if (T->isFunctionType()) {
651 Diag(Loc, diag::err_illegal_decl_array_of_functions)
John McCallac406052009-10-30 00:37:20 +0000652 << getPrintableNameForEntity(Entity) << T;
Douglas Gregorcd281c32009-02-28 00:25:32 +0000653 return QualType();
654 }
Mike Stump1eb44332009-09-09 15:08:12 +0000655
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000656 if (Context.getCanonicalType(T) == Context.UndeducedAutoTy) {
Mike Stump1eb44332009-09-09 15:08:12 +0000657 Diag(Loc, diag::err_illegal_decl_array_of_auto)
Anders Carlssone7cf07d2009-06-26 19:33:28 +0000658 << getPrintableNameForEntity(Entity);
659 return QualType();
660 }
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Ted Kremenek6217b802009-07-29 21:53:49 +0000662 if (const RecordType *EltTy = T->getAs<RecordType>()) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000663 // If the element type is a struct or union that contains a variadic
664 // array, accept it as a GNU extension: C99 6.7.2.1p2.
665 if (EltTy->getDecl()->hasFlexibleArrayMember())
666 Diag(Loc, diag::ext_flexible_array_in_array) << T;
John McCallc12c5bb2010-05-15 11:32:37 +0000667 } else if (T->isObjCObjectType()) {
Chris Lattnerc7c11b12009-04-27 01:55:56 +0000668 Diag(Loc, diag::err_objc_array_of_interfaces) << T;
669 return QualType();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000670 }
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Douglas Gregorcd281c32009-02-28 00:25:32 +0000672 // C99 6.7.5.2p1: The size expression shall have integer type.
673 if (ArraySize && !ArraySize->isTypeDependent() &&
674 !ArraySize->getType()->isIntegerType()) {
675 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
676 << ArraySize->getType() << ArraySize->getSourceRange();
Douglas Gregorcd281c32009-02-28 00:25:32 +0000677 return QualType();
678 }
679 llvm::APSInt ConstVal(32);
680 if (!ArraySize) {
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000681 if (ASM == ArrayType::Star)
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000682 T = Context.getVariableArrayType(T, 0, ASM, Quals, Brackets);
Eli Friedmanf91f5c82009-04-26 21:57:51 +0000683 else
684 T = Context.getIncompleteArrayType(T, ASM, Quals);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000685 } else if (ArraySize->isTypeDependent() || ArraySize->isValueDependent()) {
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000686 T = Context.getDependentSizedArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000687 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
Sebastian Redl923d56d2009-11-05 15:52:31 +0000688 (!T->isDependentType() && !T->isIncompleteType() &&
689 !T->isConstantSizeType())) {
Douglas Gregorcd281c32009-02-28 00:25:32 +0000690 // Per C99, a variable array is an array with either a non-constant
691 // size or an element type that has a non-constant-size
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000692 T = Context.getVariableArrayType(T, ArraySize, ASM, Quals, Brackets);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000693 } else {
694 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
695 // have a value greater than zero.
Sebastian Redl923d56d2009-11-05 15:52:31 +0000696 if (ConstVal.isSigned() && ConstVal.isNegative()) {
697 Diag(ArraySize->getLocStart(),
698 diag::err_typecheck_negative_array_size)
699 << ArraySize->getSourceRange();
700 return QualType();
701 }
702 if (ConstVal == 0) {
Douglas Gregor02024a92010-03-28 02:42:43 +0000703 // GCC accepts zero sized static arrays. We allow them when
704 // we're not in a SFINAE context.
705 Diag(ArraySize->getLocStart(),
706 isSFINAEContext()? diag::err_typecheck_zero_array_size
707 : diag::ext_typecheck_zero_array_size)
Sebastian Redl923d56d2009-11-05 15:52:31 +0000708 << ArraySize->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000709 }
John McCall46a617a2009-10-16 00:14:28 +0000710 T = Context.getConstantArrayType(T, ConstVal, ASM, Quals);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000711 }
David Chisnallaf407762010-01-11 23:08:08 +0000712 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
713 if (!getLangOptions().C99) {
Douglas Gregor0fddb972010-05-22 16:17:30 +0000714 if (T->isVariableArrayType()) {
715 // Prohibit the use of non-POD types in VLAs.
Douglas Gregor204ce172010-05-24 20:42:30 +0000716 if (!T->isDependentType() &&
717 !Context.getBaseElementType(T)->isPODType()) {
Douglas Gregor0fddb972010-05-22 16:17:30 +0000718 Diag(Loc, diag::err_vla_non_pod)
719 << Context.getBaseElementType(T);
720 return QualType();
721 }
Douglas Gregora481ec42010-05-23 19:57:01 +0000722 // Prohibit the use of VLAs during template argument deduction.
723 else if (isSFINAEContext()) {
724 Diag(Loc, diag::err_vla_in_sfinae);
725 return QualType();
726 }
Douglas Gregor0fddb972010-05-22 16:17:30 +0000727 // Just extwarn about VLAs.
728 else
729 Diag(Loc, diag::ext_vla);
730 } else if (ASM != ArrayType::Normal || Quals != 0)
Douglas Gregor043cad22009-09-11 00:18:58 +0000731 Diag(Loc,
732 getLangOptions().CPlusPlus? diag::err_c99_array_usage_cxx
733 : diag::ext_c99_array_usage);
Douglas Gregorcd281c32009-02-28 00:25:32 +0000734 }
735
736 return T;
737}
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000738
739/// \brief Build an ext-vector type.
740///
741/// Run the required checks for the extended vector type.
Mike Stump1eb44332009-09-09 15:08:12 +0000742QualType Sema::BuildExtVectorType(QualType T, ExprArg ArraySize,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000743 SourceLocation AttrLoc) {
744
745 Expr *Arg = (Expr *)ArraySize.get();
746
747 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
748 // in conjunction with complex types (pointers, arrays, functions, etc.).
Mike Stump1eb44332009-09-09 15:08:12 +0000749 if (!T->isDependentType() &&
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000750 !T->isIntegerType() && !T->isRealFloatingType()) {
751 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << T;
752 return QualType();
753 }
754
755 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
756 llvm::APSInt vecSize(32);
757 if (!Arg->isIntegerConstantExpr(vecSize, Context)) {
758 Diag(AttrLoc, diag::err_attribute_argument_not_int)
759 << "ext_vector_type" << Arg->getSourceRange();
760 return QualType();
761 }
Mike Stump1eb44332009-09-09 15:08:12 +0000762
763 // unlike gcc's vector_size attribute, the size is specified as the
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000764 // number of elements, not the number of bytes.
Mike Stump1eb44332009-09-09 15:08:12 +0000765 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
766
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000767 if (vectorSize == 0) {
768 Diag(AttrLoc, diag::err_attribute_zero_size)
769 << Arg->getSourceRange();
770 return QualType();
771 }
Mike Stump1eb44332009-09-09 15:08:12 +0000772
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000773 if (!T->isDependentType())
774 return Context.getExtVectorType(T, vectorSize);
Mike Stump1eb44332009-09-09 15:08:12 +0000775 }
776
777 return Context.getDependentSizedExtVectorType(T, ArraySize.takeAs<Expr>(),
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000778 AttrLoc);
779}
Mike Stump1eb44332009-09-09 15:08:12 +0000780
Douglas Gregor724651c2009-02-28 01:04:19 +0000781/// \brief Build a function type.
782///
783/// This routine checks the function type according to C++ rules and
784/// under the assumption that the result type and parameter types have
785/// just been instantiated from a template. It therefore duplicates
Douglas Gregor2943aed2009-03-03 04:44:36 +0000786/// some of the behavior of GetTypeForDeclarator, but in a much
Douglas Gregor724651c2009-02-28 01:04:19 +0000787/// simpler form that is only suitable for this narrow use case.
788///
789/// \param T The return type of the function.
790///
791/// \param ParamTypes The parameter types of the function. This array
792/// will be modified to account for adjustments to the types of the
793/// function parameters.
794///
795/// \param NumParamTypes The number of parameter types in ParamTypes.
796///
797/// \param Variadic Whether this is a variadic function type.
798///
799/// \param Quals The cvr-qualifiers to be applied to the function type.
800///
801/// \param Loc The location of the entity whose type involves this
802/// function type or, if there is no such entity, the location of the
803/// type that will have function type.
804///
805/// \param Entity The name of the entity that involves the function
806/// type, if known.
807///
808/// \returns A suitable function type, if there are no
809/// errors. Otherwise, returns a NULL type.
810QualType Sema::BuildFunctionType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000811 QualType *ParamTypes,
Douglas Gregor724651c2009-02-28 01:04:19 +0000812 unsigned NumParamTypes,
813 bool Variadic, unsigned Quals,
Eli Friedmanfa869542010-08-05 02:54:05 +0000814 SourceLocation Loc, DeclarationName Entity,
815 const FunctionType::ExtInfo &Info) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000816 if (T->isArrayType() || T->isFunctionType()) {
Douglas Gregor58408bc2010-01-11 18:46:21 +0000817 Diag(Loc, diag::err_func_returning_array_function)
818 << T->isFunctionType() << T;
Douglas Gregor724651c2009-02-28 01:04:19 +0000819 return QualType();
820 }
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000821
Douglas Gregor724651c2009-02-28 01:04:19 +0000822 bool Invalid = false;
823 for (unsigned Idx = 0; Idx < NumParamTypes; ++Idx) {
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000824 QualType ParamType = adjustParameterType(ParamTypes[Idx]);
825 if (ParamType->isVoidType()) {
Douglas Gregor724651c2009-02-28 01:04:19 +0000826 Diag(Loc, diag::err_param_with_void_type);
827 Invalid = true;
828 }
Douglas Gregorcd281c32009-02-28 00:25:32 +0000829
John McCall54e14c42009-10-22 22:37:11 +0000830 ParamTypes[Idx] = ParamType;
Douglas Gregor724651c2009-02-28 01:04:19 +0000831 }
832
833 if (Invalid)
834 return QualType();
835
Mike Stump1eb44332009-09-09 15:08:12 +0000836 return Context.getFunctionType(T, ParamTypes, NumParamTypes, Variadic,
Eli Friedmanfa869542010-08-05 02:54:05 +0000837 Quals, false, false, 0, 0, Info);
Douglas Gregor724651c2009-02-28 01:04:19 +0000838}
Mike Stump1eb44332009-09-09 15:08:12 +0000839
Douglas Gregor949bf692009-06-09 22:17:39 +0000840/// \brief Build a member pointer type \c T Class::*.
841///
842/// \param T the type to which the member pointer refers.
843/// \param Class the class type into which the member pointer points.
John McCall0953e762009-09-24 19:53:00 +0000844/// \param CVR Qualifiers applied to the member pointer type
Douglas Gregor949bf692009-06-09 22:17:39 +0000845/// \param Loc the location where this type begins
846/// \param Entity the name of the entity that will have this member pointer type
847///
848/// \returns a member pointer type, if successful, or a NULL type if there was
849/// an error.
Mike Stump1eb44332009-09-09 15:08:12 +0000850QualType Sema::BuildMemberPointerType(QualType T, QualType Class,
John McCall28654742010-06-05 06:41:15 +0000851 SourceLocation Loc,
Douglas Gregor949bf692009-06-09 22:17:39 +0000852 DeclarationName Entity) {
853 // Verify that we're not building a pointer to pointer to function with
854 // exception specification.
855 if (CheckDistantExceptionSpec(T)) {
856 Diag(Loc, diag::err_distant_exception_spec);
857
858 // FIXME: If we're doing this as part of template instantiation,
859 // we should return immediately.
860
861 // Build the type anyway, but use the canonical type so that the
862 // exception specifiers are stripped off.
863 T = Context.getCanonicalType(T);
864 }
865
Sebastian Redl73780122010-06-09 21:19:43 +0000866 // C++ 8.3.3p3: A pointer to member shall not point to ... a member
Douglas Gregor949bf692009-06-09 22:17:39 +0000867 // with reference type, or "cv void."
868 if (T->isReferenceType()) {
Anders Carlsson8d4655d2009-06-30 00:06:57 +0000869 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
John McCallac406052009-10-30 00:37:20 +0000870 << (Entity? Entity.getAsString() : "type name") << T;
Douglas Gregor949bf692009-06-09 22:17:39 +0000871 return QualType();
872 }
873
874 if (T->isVoidType()) {
875 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
876 << (Entity? Entity.getAsString() : "type name");
877 return QualType();
878 }
879
Douglas Gregor949bf692009-06-09 22:17:39 +0000880 if (!Class->isDependentType() && !Class->isRecordType()) {
881 Diag(Loc, diag::err_mempointer_in_nonclass_type) << Class;
882 return QualType();
883 }
884
John McCall28654742010-06-05 06:41:15 +0000885 return Context.getMemberPointerType(T, Class.getTypePtr());
Douglas Gregor949bf692009-06-09 22:17:39 +0000886}
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Anders Carlsson9a917e42009-06-12 22:56:54 +0000888/// \brief Build a block pointer type.
889///
890/// \param T The type to which we'll be building a block pointer.
891///
John McCall0953e762009-09-24 19:53:00 +0000892/// \param CVR The cvr-qualifiers to be applied to the block pointer type.
Anders Carlsson9a917e42009-06-12 22:56:54 +0000893///
894/// \param Loc The location of the entity whose type involves this
895/// block pointer type or, if there is no such entity, the location of the
896/// type that will have block pointer type.
897///
898/// \param Entity The name of the entity that involves the block pointer
899/// type, if known.
900///
901/// \returns A suitable block pointer type, if there are no
902/// errors. Otherwise, returns a NULL type.
John McCall28654742010-06-05 06:41:15 +0000903QualType Sema::BuildBlockPointerType(QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +0000904 SourceLocation Loc,
Anders Carlsson9a917e42009-06-12 22:56:54 +0000905 DeclarationName Entity) {
John McCall0953e762009-09-24 19:53:00 +0000906 if (!T->isFunctionType()) {
Anders Carlsson9a917e42009-06-12 22:56:54 +0000907 Diag(Loc, diag::err_nonfunction_block_type);
908 return QualType();
909 }
Mike Stump1eb44332009-09-09 15:08:12 +0000910
John McCall28654742010-06-05 06:41:15 +0000911 return Context.getBlockPointerType(T);
Anders Carlsson9a917e42009-06-12 22:56:54 +0000912}
913
John McCalla93c9342009-12-07 02:54:59 +0000914QualType Sema::GetTypeFromParser(TypeTy *Ty, TypeSourceInfo **TInfo) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000915 QualType QT = QualType::getFromOpaquePtr(Ty);
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000916 if (QT.isNull()) {
John McCalla93c9342009-12-07 02:54:59 +0000917 if (TInfo) *TInfo = 0;
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000918 return QualType();
919 }
920
John McCalla93c9342009-12-07 02:54:59 +0000921 TypeSourceInfo *DI = 0;
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000922 if (LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
923 QT = LIT->getType();
John McCalla93c9342009-12-07 02:54:59 +0000924 DI = LIT->getTypeSourceInfo();
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000925 }
Mike Stump1eb44332009-09-09 15:08:12 +0000926
John McCalla93c9342009-12-07 02:54:59 +0000927 if (TInfo) *TInfo = DI;
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000928 return QT;
929}
930
Mike Stump98eb8a72009-02-04 22:31:32 +0000931/// GetTypeForDeclarator - Convert the type for the specified
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000932/// declarator to Type instances.
Douglas Gregor402abb52009-05-28 23:31:59 +0000933///
934/// If OwnedDecl is non-NULL, and this declarator's decl-specifier-seq
935/// owns the declaration of a type (e.g., the definition of a struct
936/// type), then *OwnedDecl will receive the owned declaration.
John McCallbf1a0282010-06-04 23:28:52 +0000937///
938/// The result of this call will never be null, but the associated
939/// type may be a null type if there's an unrecoverable error.
940TypeSourceInfo *Sema::GetTypeForDeclarator(Declarator &D, Scope *S,
941 TagDecl **OwnedDecl) {
Douglas Gregor930d8b52009-01-30 22:09:00 +0000942 // Determine the type of the declarator. Not all forms of declarator
943 // have a type.
944 QualType T;
Douglas Gregor05baacb2010-04-12 23:19:01 +0000945 TypeSourceInfo *ReturnTypeInfo = 0;
946
John McCall04a67a62010-02-05 21:31:56 +0000947 llvm::SmallVector<DelayedAttribute,4> FnAttrsFromDeclSpec;
948
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000949 switch (D.getName().getKind()) {
950 case UnqualifiedId::IK_Identifier:
951 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +0000952 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000953 case UnqualifiedId::IK_TemplateId:
John McCall04a67a62010-02-05 21:31:56 +0000954 T = ConvertDeclSpecToType(*this, D, FnAttrsFromDeclSpec);
Chris Lattner5db2bb12009-10-25 18:21:37 +0000955
Douglas Gregor591bd3c2010-02-08 22:07:33 +0000956 if (!D.isInvalidType() && D.getDeclSpec().isTypeSpecOwned()) {
957 TagDecl* Owned = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
Douglas Gregorb37b6482010-02-12 17:40:34 +0000958 // Owned is embedded if it was defined here, or if it is the
959 // very first (i.e., canonical) declaration of this tag type.
960 Owned->setEmbeddedInDeclarator(Owned->isDefinition() ||
961 Owned->isCanonicalDecl());
Douglas Gregor591bd3c2010-02-08 22:07:33 +0000962 if (OwnedDecl) *OwnedDecl = Owned;
963 }
Douglas Gregor930d8b52009-01-30 22:09:00 +0000964 break;
965
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000966 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000967 case UnqualifiedId::IK_ConstructorTemplateId:
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000968 case UnqualifiedId::IK_DestructorName:
Douglas Gregor930d8b52009-01-30 22:09:00 +0000969 // Constructors and destructors don't have return types. Use
Douglas Gregor48026d22010-01-11 18:40:55 +0000970 // "void" instead.
Douglas Gregor930d8b52009-01-30 22:09:00 +0000971 T = Context.VoidTy;
972 break;
Douglas Gregor48026d22010-01-11 18:40:55 +0000973
974 case UnqualifiedId::IK_ConversionFunctionId:
975 // The result type of a conversion function is the type that it
976 // converts to.
Douglas Gregor05baacb2010-04-12 23:19:01 +0000977 T = GetTypeFromParser(D.getName().ConversionFunctionId,
John McCallbf1a0282010-06-04 23:28:52 +0000978 &ReturnTypeInfo);
Douglas Gregor48026d22010-01-11 18:40:55 +0000979 break;
Douglas Gregor930d8b52009-01-30 22:09:00 +0000980 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +0000981
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000982 if (T.isNull())
John McCallbf1a0282010-06-04 23:28:52 +0000983 return Context.getNullTypeSourceInfo();
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000984
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000985 if (T == Context.UndeducedAutoTy) {
986 int Error = -1;
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000988 switch (D.getContext()) {
989 case Declarator::KNRTypeListContext:
990 assert(0 && "K&R type lists aren't allowed in C++");
991 break;
Anders Carlssonbaf45d32009-06-26 22:18:59 +0000992 case Declarator::PrototypeContext:
993 Error = 0; // Function prototype
994 break;
995 case Declarator::MemberContext:
996 switch (cast<TagDecl>(CurContext)->getTagKind()) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000997 case TTK_Enum: assert(0 && "unhandled tag kind"); break;
998 case TTK_Struct: Error = 1; /* Struct member */ break;
999 case TTK_Union: Error = 2; /* Union member */ break;
1000 case TTK_Class: Error = 3; /* Class member */ break;
Mike Stump1eb44332009-09-09 15:08:12 +00001001 }
Anders Carlssonbaf45d32009-06-26 22:18:59 +00001002 break;
1003 case Declarator::CXXCatchContext:
1004 Error = 4; // Exception declaration
1005 break;
1006 case Declarator::TemplateParamContext:
1007 Error = 5; // Template parameter
1008 break;
1009 case Declarator::BlockLiteralContext:
1010 Error = 6; // Block literal
1011 break;
1012 case Declarator::FileContext:
1013 case Declarator::BlockContext:
1014 case Declarator::ForContext:
1015 case Declarator::ConditionContext:
1016 case Declarator::TypeNameContext:
1017 break;
1018 }
1019
1020 if (Error != -1) {
1021 Diag(D.getDeclSpec().getTypeSpecTypeLoc(), diag::err_auto_not_allowed)
1022 << Error;
1023 T = Context.IntTy;
1024 D.setInvalidType(true);
1025 }
1026 }
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Douglas Gregorcd281c32009-02-28 00:25:32 +00001028 // The name we're declaring, if any.
1029 DeclarationName Name;
1030 if (D.getIdentifier())
1031 Name = D.getIdentifier();
Mike Stump1eb44332009-09-09 15:08:12 +00001032
John McCall04a67a62010-02-05 21:31:56 +00001033 llvm::SmallVector<DelayedAttribute,4> FnAttrsFromPreviousChunk;
1034
Mike Stump98eb8a72009-02-04 22:31:32 +00001035 // Walk the DeclTypeInfo, building the recursive type as we go.
1036 // DeclTypeInfos are ordered from the identifier out, which is
1037 // opposite of what we want :).
Sebastian Redl8ce35b02009-10-25 21:45:37 +00001038 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
1039 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001040 switch (DeclType.Kind) {
1041 default: assert(0 && "Unknown decltype!");
Steve Naroff5618bd42008-08-27 16:04:49 +00001042 case DeclaratorChunk::BlockPointer:
Chris Lattner9af55002009-03-27 04:18:06 +00001043 // If blocks are disabled, emit an error.
1044 if (!LangOpts.Blocks)
1045 Diag(DeclType.Loc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +00001046
John McCall28654742010-06-05 06:41:15 +00001047 T = BuildBlockPointerType(T, D.getIdentifierLoc(), Name);
1048 if (DeclType.Cls.TypeQuals)
1049 T = BuildQualifiedType(T, DeclType.Loc, DeclType.Cls.TypeQuals);
Steve Naroff5618bd42008-08-27 16:04:49 +00001050 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001051 case DeclaratorChunk::Pointer:
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001052 // Verify that we're not building a pointer to pointer to function with
1053 // exception specification.
1054 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1055 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1056 D.setInvalidType(true);
1057 // Build the type anyway.
1058 }
John McCallc12c5bb2010-05-15 11:32:37 +00001059 if (getLangOptions().ObjC1 && T->getAs<ObjCObjectType>()) {
1060 T = Context.getObjCObjectPointerType(T);
John McCall28654742010-06-05 06:41:15 +00001061 if (DeclType.Ptr.TypeQuals)
1062 T = BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
Steve Naroff14108da2009-07-10 23:34:53 +00001063 break;
1064 }
John McCall28654742010-06-05 06:41:15 +00001065 T = BuildPointerType(T, DeclType.Loc, Name);
1066 if (DeclType.Ptr.TypeQuals)
1067 T = BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
Reid Spencer5f016e22007-07-11 17:01:13 +00001068 break;
John McCall0953e762009-09-24 19:53:00 +00001069 case DeclaratorChunk::Reference: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001070 // Verify that we're not building a reference to pointer to function with
1071 // exception specification.
1072 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1073 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1074 D.setInvalidType(true);
1075 // Build the type anyway.
1076 }
John McCall28654742010-06-05 06:41:15 +00001077 T = BuildReferenceType(T, DeclType.Ref.LValueRef, DeclType.Loc, Name);
1078
1079 Qualifiers Quals;
1080 if (DeclType.Ref.HasRestrict)
1081 T = BuildQualifiedType(T, DeclType.Loc, Qualifiers::Restrict);
Reid Spencer5f016e22007-07-11 17:01:13 +00001082 break;
John McCall0953e762009-09-24 19:53:00 +00001083 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001084 case DeclaratorChunk::Array: {
Sebastian Redl6a7330c2009-05-29 15:01:05 +00001085 // Verify that we're not building an array of pointers to function with
1086 // exception specification.
1087 if (getLangOptions().CPlusPlus && CheckDistantExceptionSpec(T)) {
1088 Diag(D.getIdentifierLoc(), diag::err_distant_exception_spec);
1089 D.setInvalidType(true);
1090 // Build the type anyway.
1091 }
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001092 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +00001093 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +00001094 ArrayType::ArraySizeModifier ASM;
1095 if (ATI.isStar)
1096 ASM = ArrayType::Star;
1097 else if (ATI.hasStatic)
1098 ASM = ArrayType::Static;
1099 else
1100 ASM = ArrayType::Normal;
Eli Friedmanf91f5c82009-04-26 21:57:51 +00001101 if (ASM == ArrayType::Star &&
1102 D.getContext() != Declarator::PrototypeContext) {
1103 // FIXME: This check isn't quite right: it allows star in prototypes
1104 // for function definitions, and disallows some edge cases detailed
1105 // in http://gcc.gnu.org/ml/gcc-patches/2009-02/msg00133.html
1106 Diag(DeclType.Loc, diag::err_array_star_outside_prototype);
1107 ASM = ArrayType::Normal;
1108 D.setInvalidType(true);
1109 }
John McCall0953e762009-09-24 19:53:00 +00001110 T = BuildArrayType(T, ASM, ArraySize,
1111 Qualifiers::fromCVRMask(ATI.TypeQuals),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00001112 SourceRange(DeclType.Loc, DeclType.EndLoc), Name);
Reid Spencer5f016e22007-07-11 17:01:13 +00001113 break;
1114 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001115 case DeclaratorChunk::Function: {
Reid Spencer5f016e22007-07-11 17:01:13 +00001116 // If the function declarator has a prototype (i.e. it is not () and
1117 // does not have a K&R-style identifier list), then the arguments are part
1118 // of the type, otherwise the argument list is ().
1119 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Sebastian Redl3cc97262009-05-31 11:47:27 +00001120
Chris Lattnercd881292007-12-19 05:31:29 +00001121 // C99 6.7.5.3p1: The return type may not be a function or array type.
Douglas Gregor58408bc2010-01-11 18:46:21 +00001122 // For conversion functions, we'll diagnose this particular error later.
Douglas Gregor48026d22010-01-11 18:40:55 +00001123 if ((T->isArrayType() || T->isFunctionType()) &&
1124 (D.getName().getKind() != UnqualifiedId::IK_ConversionFunctionId)) {
Douglas Gregor58408bc2010-01-11 18:46:21 +00001125 Diag(DeclType.Loc, diag::err_func_returning_array_function)
1126 << T->isFunctionType() << T;
Chris Lattnercd881292007-12-19 05:31:29 +00001127 T = Context.IntTy;
1128 D.setInvalidType(true);
1129 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001130
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001131 // cv-qualifiers on return types are pointless except when the type is a
1132 // class type in C++.
1133 if (T.getCVRQualifiers() && D.getDeclSpec().getTypeQualifiers() &&
1134 (!getLangOptions().CPlusPlus ||
1135 (!T->isDependentType() && !T->isRecordType()))) {
1136 unsigned Quals = D.getDeclSpec().getTypeQualifiers();
Douglas Gregorde80ec12010-07-13 08:50:30 +00001137 std::string QualStr;
1138 unsigned NumQuals = 0;
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001139 SourceLocation Loc;
Douglas Gregorde80ec12010-07-13 08:50:30 +00001140 if (Quals & Qualifiers::Const) {
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001141 Loc = D.getDeclSpec().getConstSpecLoc();
Douglas Gregorde80ec12010-07-13 08:50:30 +00001142 ++NumQuals;
1143 QualStr = "const";
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001144 }
Douglas Gregorde80ec12010-07-13 08:50:30 +00001145 if (Quals & Qualifiers::Volatile) {
1146 if (NumQuals == 0) {
1147 Loc = D.getDeclSpec().getVolatileSpecLoc();
1148 QualStr = "volatile";
1149 } else
1150 QualStr += " volatile";
1151 ++NumQuals;
1152 }
1153 if (Quals & Qualifiers::Restrict) {
1154 if (NumQuals == 0) {
1155 Loc = D.getDeclSpec().getRestrictSpecLoc();
1156 QualStr = "restrict";
1157 } else
1158 QualStr += " restrict";
1159 ++NumQuals;
1160 }
1161 assert(NumQuals > 0 && "No known qualifiers?");
1162
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001163 SemaDiagnosticBuilder DB = Diag(Loc, diag::warn_qual_return_type);
Douglas Gregorde80ec12010-07-13 08:50:30 +00001164 DB << QualStr << NumQuals;
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001165 if (Quals & Qualifiers::Const)
1166 DB << FixItHint::CreateRemoval(D.getDeclSpec().getConstSpecLoc());
1167 if (Quals & Qualifiers::Volatile)
1168 DB << FixItHint::CreateRemoval(D.getDeclSpec().getVolatileSpecLoc());
1169 if (Quals & Qualifiers::Restrict)
1170 DB << FixItHint::CreateRemoval(D.getDeclSpec().getRestrictSpecLoc());
1171 }
1172
Douglas Gregor402abb52009-05-28 23:31:59 +00001173 if (getLangOptions().CPlusPlus && D.getDeclSpec().isTypeSpecOwned()) {
1174 // C++ [dcl.fct]p6:
1175 // Types shall not be defined in return or parameter types.
1176 TagDecl *Tag = cast<TagDecl>((Decl *)D.getDeclSpec().getTypeRep());
1177 if (Tag->isDefinition())
1178 Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
1179 << Context.getTypeDeclType(Tag);
1180 }
1181
Sebastian Redl3cc97262009-05-31 11:47:27 +00001182 // Exception specs are not allowed in typedefs. Complain, but add it
1183 // anyway.
1184 if (FTI.hasExceptionSpec &&
1185 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1186 Diag(FTI.getThrowLoc(), diag::err_exception_spec_in_typedef);
1187
John McCall28654742010-06-05 06:41:15 +00001188 if (!FTI.NumArgs && !FTI.isVariadic && !getLangOptions().CPlusPlus) {
1189 // Simple void foo(), where the incoming T is the result type.
1190 T = Context.getFunctionNoProtoType(T);
1191 } else {
1192 // We allow a zero-parameter variadic function in C if the
1193 // function is marked with the "overloadable" attribute. Scan
1194 // for this attribute now.
1195 if (!FTI.NumArgs && FTI.isVariadic && !getLangOptions().CPlusPlus) {
Douglas Gregor965acbb2009-02-18 07:07:28 +00001196 bool Overloadable = false;
1197 for (const AttributeList *Attrs = D.getAttributes();
1198 Attrs; Attrs = Attrs->getNext()) {
1199 if (Attrs->getKind() == AttributeList::AT_overloadable) {
1200 Overloadable = true;
1201 break;
1202 }
1203 }
1204
1205 if (!Overloadable)
1206 Diag(FTI.getEllipsisLoc(), diag::err_ellipsis_first_arg);
Argyrios Kyrtzidisc6f73452008-10-16 17:31:08 +00001207 }
John McCall28654742010-06-05 06:41:15 +00001208
1209 if (FTI.NumArgs && FTI.ArgInfo[0].Param == 0) {
Chris Lattner788b0fd2010-06-23 06:00:24 +00001210 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function
1211 // definition.
John McCall28654742010-06-05 06:41:15 +00001212 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
1213 D.setInvalidType(true);
1214 break;
1215 }
1216
Reid Spencer5f016e22007-07-11 17:01:13 +00001217 // Otherwise, we have a function with an argument list that is
1218 // potentially variadic.
1219 llvm::SmallVector<QualType, 16> ArgTys;
John McCall28654742010-06-05 06:41:15 +00001220 ArgTys.reserve(FTI.NumArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001221
Reid Spencer5f016e22007-07-11 17:01:13 +00001222 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattnerb28317a2009-03-28 19:18:32 +00001223 ParmVarDecl *Param =
1224 cast<ParmVarDecl>(FTI.ArgInfo[i].Param.getAs<Decl>());
Chris Lattner8123a952008-04-10 02:22:51 +00001225 QualType ArgTy = Param->getType();
Chris Lattner78c75fb2007-07-21 05:30:18 +00001226 assert(!ArgTy.isNull() && "Couldn't parse type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001227
1228 // Adjust the parameter type.
Douglas Gregorbeb58cb2009-03-23 23:17:00 +00001229 assert((ArgTy == adjustParameterType(ArgTy)) && "Unadjusted type?");
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001230
Reid Spencer5f016e22007-07-11 17:01:13 +00001231 // Look for 'void'. void is allowed only as a single argument to a
1232 // function with no other parameters (C99 6.7.5.3p10). We record
Douglas Gregor72564e72009-02-26 23:50:07 +00001233 // int(void) as a FunctionProtoType with an empty argument list.
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001234 if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001235 // If this is something like 'float(int, void)', reject it. 'void'
1236 // is an incomplete type (C99 6.2.5p19) and function decls cannot
1237 // have arguments of incomplete type.
1238 if (FTI.NumArgs != 1 || FTI.isVariadic) {
1239 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +00001240 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001241 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001242 } else if (FTI.ArgInfo[i].Ident) {
1243 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +00001244 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +00001245 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +00001246 ArgTy = Context.IntTy;
Chris Lattner8123a952008-04-10 02:22:51 +00001247 Param->setType(ArgTy);
Chris Lattner2ff54262007-07-21 05:18:12 +00001248 } else {
1249 // Reject, but continue to parse 'float(const void)'.
John McCall0953e762009-09-24 19:53:00 +00001250 if (ArgTy.hasQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +00001251 Diag(DeclType.Loc, diag::err_void_param_qualified);
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Chris Lattner2ff54262007-07-21 05:18:12 +00001253 // Do not add 'void' to the ArgTys list.
1254 break;
1255 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001256 } else if (!FTI.hasPrototype) {
1257 if (ArgTy->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +00001258 ArgTy = Context.getPromotedIntegerType(ArgTy);
John McCall183700f2009-09-21 23:43:11 +00001259 } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001260 if (BTy->getKind() == BuiltinType::Float)
1261 ArgTy = Context.DoubleTy;
1262 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001263 }
Mike Stump1eb44332009-09-09 15:08:12 +00001264
John McCall54e14c42009-10-22 22:37:11 +00001265 ArgTys.push_back(ArgTy);
Reid Spencer5f016e22007-07-11 17:01:13 +00001266 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001267
1268 llvm::SmallVector<QualType, 4> Exceptions;
1269 Exceptions.reserve(FTI.NumExceptions);
Mike Stump1eb44332009-09-09 15:08:12 +00001270 for (unsigned ei = 0, ee = FTI.NumExceptions; ei != ee; ++ei) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001271 // FIXME: Preserve type source info.
1272 QualType ET = GetTypeFromParser(FTI.Exceptions[ei].Ty);
Sebastian Redlef65f062009-05-29 18:02:33 +00001273 // Check that the type is valid for an exception spec, and drop it if
1274 // not.
1275 if (!CheckSpecifiedExceptionType(ET, FTI.Exceptions[ei].Range))
1276 Exceptions.push_back(ET);
1277 }
Sebastian Redl465226e2009-05-27 22:11:52 +00001278
Jay Foadbeaaccd2009-05-21 09:52:38 +00001279 T = Context.getFunctionType(T, ArgTys.data(), ArgTys.size(),
Sebastian Redl465226e2009-05-27 22:11:52 +00001280 FTI.isVariadic, FTI.TypeQuals,
1281 FTI.hasExceptionSpec,
1282 FTI.hasAnyExceptionSpec,
Douglas Gregorce056bc2010-02-21 22:15:06 +00001283 Exceptions.size(), Exceptions.data(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001284 FunctionType::ExtInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +00001285 }
John McCall04a67a62010-02-05 21:31:56 +00001286
1287 // For GCC compatibility, we allow attributes that apply only to
1288 // function types to be placed on a function's return type
1289 // instead (as long as that type doesn't happen to be function
1290 // or function-pointer itself).
1291 ProcessDelayedFnAttrs(*this, T, FnAttrsFromPreviousChunk);
1292
Reid Spencer5f016e22007-07-11 17:01:13 +00001293 break;
1294 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001295 case DeclaratorChunk::MemberPointer:
1296 // The scope spec must refer to a class, or be dependent.
Sebastian Redlf30208a2009-01-24 21:16:55 +00001297 QualType ClsType;
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00001298 if (DeclType.Mem.Scope().isInvalid()) {
1299 // Avoid emitting extra errors if we already errored on the scope.
1300 D.setInvalidType(true);
1301 } else if (isDependentScopeSpecifier(DeclType.Mem.Scope())
1302 || dyn_cast_or_null<CXXRecordDecl>(
Douglas Gregor87c12c42009-11-04 16:49:01 +00001303 computeDeclContext(DeclType.Mem.Scope()))) {
Mike Stump1eb44332009-09-09 15:08:12 +00001304 NestedNameSpecifier *NNS
Douglas Gregor949bf692009-06-09 22:17:39 +00001305 = (NestedNameSpecifier *)DeclType.Mem.Scope().getScopeRep();
Douglas Gregor87c12c42009-11-04 16:49:01 +00001306 NestedNameSpecifier *NNSPrefix = NNS->getPrefix();
1307 switch (NNS->getKind()) {
1308 case NestedNameSpecifier::Identifier:
Douglas Gregor4a2023f2010-03-31 20:19:30 +00001309 ClsType = Context.getDependentNameType(ETK_None, NNSPrefix,
1310 NNS->getAsIdentifier());
Douglas Gregor87c12c42009-11-04 16:49:01 +00001311 break;
1312
1313 case NestedNameSpecifier::Namespace:
1314 case NestedNameSpecifier::Global:
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001315 llvm_unreachable("Nested-name-specifier must name a type");
Douglas Gregor87c12c42009-11-04 16:49:01 +00001316 break;
1317
1318 case NestedNameSpecifier::TypeSpec:
1319 case NestedNameSpecifier::TypeSpecWithTemplate:
Abramo Bagnara22f638a2010-08-10 13:46:45 +00001320 // Note: NNSPrefix (if any) is included in ClsType
1321 // (hence, no need to wrap ClsType in an elaborated type).
Douglas Gregor87c12c42009-11-04 16:49:01 +00001322 ClsType = QualType(NNS->getAsType(), 0);
Douglas Gregor87c12c42009-11-04 16:49:01 +00001323 break;
1324 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001325 } else {
Douglas Gregor949bf692009-06-09 22:17:39 +00001326 Diag(DeclType.Mem.Scope().getBeginLoc(),
1327 diag::err_illegal_decl_mempointer_in_nonclass)
1328 << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
1329 << DeclType.Mem.Scope().getRange();
Sebastian Redlf30208a2009-01-24 21:16:55 +00001330 D.setInvalidType(true);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001331 }
1332
Douglas Gregor949bf692009-06-09 22:17:39 +00001333 if (!ClsType.isNull())
John McCall28654742010-06-05 06:41:15 +00001334 T = BuildMemberPointerType(T, ClsType, DeclType.Loc, D.getIdentifier());
Douglas Gregor949bf692009-06-09 22:17:39 +00001335 if (T.isNull()) {
1336 T = Context.IntTy;
Sebastian Redlf30208a2009-01-24 21:16:55 +00001337 D.setInvalidType(true);
John McCall28654742010-06-05 06:41:15 +00001338 } else if (DeclType.Mem.TypeQuals) {
1339 T = BuildQualifiedType(T, DeclType.Loc, DeclType.Mem.TypeQuals);
Sebastian Redlf30208a2009-01-24 21:16:55 +00001340 }
Sebastian Redlf30208a2009-01-24 21:16:55 +00001341 break;
1342 }
1343
Douglas Gregorcd281c32009-02-28 00:25:32 +00001344 if (T.isNull()) {
1345 D.setInvalidType(true);
1346 T = Context.IntTy;
1347 }
1348
John McCall04a67a62010-02-05 21:31:56 +00001349 DiagnoseDelayedFnAttrs(*this, FnAttrsFromPreviousChunk);
1350
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001351 // See if there are any attributes on this declarator chunk.
1352 if (const AttributeList *AL = DeclType.getAttrs())
Charles Davis328ce342010-02-24 02:27:18 +00001353 ProcessTypeAttributeList(*this, T, false, AL, FnAttrsFromPreviousChunk);
Reid Spencer5f016e22007-07-11 17:01:13 +00001354 }
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001355
1356 if (getLangOptions().CPlusPlus && T->isFunctionType()) {
John McCall183700f2009-09-21 23:43:11 +00001357 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
Chris Lattner778ed742009-10-25 17:36:50 +00001358 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001359
1360 // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
1361 // for a nonstatic member function, the function type to which a pointer
1362 // to member refers, or the top-level function type of a function typedef
1363 // declaration.
Sebastian Redlc61bb202010-07-09 21:26:08 +00001364 bool FreeFunction = (D.getContext() != Declarator::MemberContext &&
1365 (!D.getCXXScopeSpec().isSet() ||
1366 !computeDeclContext(D.getCXXScopeSpec(), /*FIXME:*/true)->isRecord()));
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001367 if (FnTy->getTypeQuals() != 0 &&
1368 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
Sebastian Redlc61bb202010-07-09 21:26:08 +00001369 (FreeFunction ||
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001370 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001371 if (D.isFunctionDeclarator())
1372 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
1373 else
1374 Diag(D.getIdentifierLoc(),
Sebastian Redlc61bb202010-07-09 21:26:08 +00001375 diag::err_invalid_qualified_typedef_function_type_use)
1376 << FreeFunction;
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001377
1378 // Strip the cv-quals from the type.
1379 T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
Douglas Gregorce056bc2010-02-21 22:15:06 +00001380 FnTy->getNumArgs(), FnTy->isVariadic(), 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00001381 false, false, 0, 0, FunctionType::ExtInfo());
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00001382 }
1383 }
Mike Stump1eb44332009-09-09 15:08:12 +00001384
Sebastian Redl73780122010-06-09 21:19:43 +00001385 // If there's a constexpr specifier, treat it as a top-level const.
1386 if (D.getDeclSpec().isConstexprSpecified()) {
1387 T.addConst();
1388 }
1389
John McCall04a67a62010-02-05 21:31:56 +00001390 // Process any function attributes we might have delayed from the
1391 // declaration-specifiers.
1392 ProcessDelayedFnAttrs(*this, T, FnAttrsFromDeclSpec);
1393
1394 // If there were any type attributes applied to the decl itself, not
1395 // the type, apply them to the result type. But don't do this for
1396 // block-literal expressions, which are parsed wierdly.
1397 if (D.getContext() != Declarator::BlockLiteralContext)
1398 if (const AttributeList *Attrs = D.getAttributes())
Charles Davis328ce342010-02-24 02:27:18 +00001399 ProcessTypeAttributeList(*this, T, false, Attrs,
1400 FnAttrsFromPreviousChunk);
John McCall04a67a62010-02-05 21:31:56 +00001401
1402 DiagnoseDelayedFnAttrs(*this, FnAttrsFromPreviousChunk);
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001403
John McCallbf1a0282010-06-04 23:28:52 +00001404 if (T.isNull())
1405 return Context.getNullTypeSourceInfo();
1406 else if (D.isInvalidType())
1407 return Context.getTrivialTypeSourceInfo(T);
1408 return GetTypeSourceInfoForDeclarator(D, T, ReturnTypeInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001409}
1410
John McCall51bd8032009-10-18 01:05:36 +00001411namespace {
1412 class TypeSpecLocFiller : public TypeLocVisitor<TypeSpecLocFiller> {
1413 const DeclSpec &DS;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001414
John McCall51bd8032009-10-18 01:05:36 +00001415 public:
1416 TypeSpecLocFiller(const DeclSpec &DS) : DS(DS) {}
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001417
John McCall51bd8032009-10-18 01:05:36 +00001418 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
1419 Visit(TL.getUnqualifiedLoc());
1420 }
1421 void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
1422 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1423 }
1424 void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
1425 TL.setNameLoc(DS.getTypeSpecTypeLoc());
John McCallc12c5bb2010-05-15 11:32:37 +00001426 }
1427 void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
1428 // Handle the base type, which might not have been written explicitly.
1429 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) {
1430 TL.setHasBaseTypeAsWritten(false);
1431 TL.getBaseLoc().initialize(SourceLocation());
1432 } else {
1433 TL.setHasBaseTypeAsWritten(true);
1434 Visit(TL.getBaseLoc());
1435 }
Argyrios Kyrtzidiseb667592009-09-29 19:45:22 +00001436
John McCallc12c5bb2010-05-15 11:32:37 +00001437 // Protocol qualifiers.
John McCall54e14c42009-10-22 22:37:11 +00001438 if (DS.getProtocolQualifiers()) {
1439 assert(TL.getNumProtocols() > 0);
1440 assert(TL.getNumProtocols() == DS.getNumProtocolQualifiers());
1441 TL.setLAngleLoc(DS.getProtocolLAngleLoc());
1442 TL.setRAngleLoc(DS.getSourceRange().getEnd());
1443 for (unsigned i = 0, e = DS.getNumProtocolQualifiers(); i != e; ++i)
1444 TL.setProtocolLoc(i, DS.getProtocolLocs()[i]);
1445 } else {
1446 assert(TL.getNumProtocols() == 0);
1447 TL.setLAngleLoc(SourceLocation());
1448 TL.setRAngleLoc(SourceLocation());
1449 }
1450 }
1451 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
John McCall54e14c42009-10-22 22:37:11 +00001452 TL.setStarLoc(SourceLocation());
John McCallc12c5bb2010-05-15 11:32:37 +00001453 Visit(TL.getPointeeLoc());
John McCall51bd8032009-10-18 01:05:36 +00001454 }
John McCall833ca992009-10-29 08:12:44 +00001455 void VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) {
John McCalla93c9342009-12-07 02:54:59 +00001456 TypeSourceInfo *TInfo = 0;
1457 Sema::GetTypeFromParser(DS.getTypeRep(), &TInfo);
John McCall833ca992009-10-29 08:12:44 +00001458
1459 // If we got no declarator info from previous Sema routines,
1460 // just fill with the typespec loc.
John McCalla93c9342009-12-07 02:54:59 +00001461 if (!TInfo) {
John McCall833ca992009-10-29 08:12:44 +00001462 TL.initialize(DS.getTypeSpecTypeLoc());
1463 return;
1464 }
1465
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001466 TypeLoc OldTL = TInfo->getTypeLoc();
1467 if (TInfo->getType()->getAs<ElaboratedType>()) {
1468 ElaboratedTypeLoc ElabTL = cast<ElaboratedTypeLoc>(OldTL);
1469 TemplateSpecializationTypeLoc NamedTL =
1470 cast<TemplateSpecializationTypeLoc>(ElabTL.getNamedTypeLoc());
1471 TL.copy(NamedTL);
1472 }
1473 else
1474 TL.copy(cast<TemplateSpecializationTypeLoc>(OldTL));
John McCall833ca992009-10-29 08:12:44 +00001475 }
John McCallcfb708c2010-01-13 20:03:27 +00001476 void VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
1477 assert(DS.getTypeSpecType() == DeclSpec::TST_typeofExpr);
1478 TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
1479 TL.setParensRange(DS.getTypeofParensRange());
1480 }
1481 void VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
1482 assert(DS.getTypeSpecType() == DeclSpec::TST_typeofType);
1483 TL.setTypeofLoc(DS.getTypeSpecTypeLoc());
1484 TL.setParensRange(DS.getTypeofParensRange());
1485 assert(DS.getTypeRep());
1486 TypeSourceInfo *TInfo = 0;
1487 Sema::GetTypeFromParser(DS.getTypeRep(), &TInfo);
1488 TL.setUnderlyingTInfo(TInfo);
1489 }
Douglas Gregorddf889a2010-01-18 18:04:31 +00001490 void VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
1491 // By default, use the source location of the type specifier.
1492 TL.setBuiltinLoc(DS.getTypeSpecTypeLoc());
1493 if (TL.needsExtraLocalData()) {
1494 // Set info for the written builtin specifiers.
1495 TL.getWrittenBuiltinSpecs() = DS.getWrittenBuiltinSpecs();
1496 // Try to have a meaningful source location.
1497 if (TL.getWrittenSignSpec() != TSS_unspecified)
1498 // Sign spec loc overrides the others (e.g., 'unsigned long').
1499 TL.setBuiltinLoc(DS.getTypeSpecSignLoc());
1500 else if (TL.getWrittenWidthSpec() != TSW_unspecified)
1501 // Width spec loc overrides type spec loc (e.g., 'short int').
1502 TL.setBuiltinLoc(DS.getTypeSpecWidthLoc());
1503 }
1504 }
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001505 void VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
1506 ElaboratedTypeKeyword Keyword
1507 = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
1508 if (Keyword == ETK_Typename) {
1509 TypeSourceInfo *TInfo = 0;
1510 Sema::GetTypeFromParser(DS.getTypeRep(), &TInfo);
1511 if (TInfo) {
1512 TL.copy(cast<ElaboratedTypeLoc>(TInfo->getTypeLoc()));
1513 return;
1514 }
1515 }
1516 TL.setKeywordLoc(Keyword != ETK_None
1517 ? DS.getTypeSpecTypeLoc()
1518 : SourceLocation());
1519 const CXXScopeSpec& SS = DS.getTypeSpecScope();
1520 TL.setQualifierRange(SS.isEmpty() ? SourceRange(): SS.getRange());
1521 Visit(TL.getNextTypeLoc().getUnqualifiedLoc());
1522 }
1523 void VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
1524 ElaboratedTypeKeyword Keyword
1525 = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
1526 if (Keyword == ETK_Typename) {
1527 TypeSourceInfo *TInfo = 0;
1528 Sema::GetTypeFromParser(DS.getTypeRep(), &TInfo);
1529 if (TInfo) {
1530 TL.copy(cast<DependentNameTypeLoc>(TInfo->getTypeLoc()));
1531 return;
1532 }
1533 }
1534 TL.setKeywordLoc(Keyword != ETK_None
1535 ? DS.getTypeSpecTypeLoc()
1536 : SourceLocation());
1537 const CXXScopeSpec& SS = DS.getTypeSpecScope();
1538 TL.setQualifierRange(SS.isEmpty() ? SourceRange() : SS.getRange());
1539 // FIXME: load appropriate source location.
1540 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1541 }
John McCall33500952010-06-11 00:33:02 +00001542 void VisitDependentTemplateSpecializationTypeLoc(
1543 DependentTemplateSpecializationTypeLoc TL) {
1544 ElaboratedTypeKeyword Keyword
1545 = TypeWithKeyword::getKeywordForTypeSpec(DS.getTypeSpecType());
1546 if (Keyword == ETK_Typename) {
1547 TypeSourceInfo *TInfo = 0;
1548 Sema::GetTypeFromParser(DS.getTypeRep(), &TInfo);
1549 if (TInfo) {
1550 TL.copy(cast<DependentTemplateSpecializationTypeLoc>(
1551 TInfo->getTypeLoc()));
1552 return;
1553 }
1554 }
1555 TL.initializeLocal(SourceLocation());
1556 TL.setKeywordLoc(Keyword != ETK_None
1557 ? DS.getTypeSpecTypeLoc()
1558 : SourceLocation());
1559 const CXXScopeSpec& SS = DS.getTypeSpecScope();
1560 TL.setQualifierRange(SS.isEmpty() ? SourceRange() : SS.getRange());
1561 // FIXME: load appropriate source location.
1562 TL.setNameLoc(DS.getTypeSpecTypeLoc());
1563 }
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001564
John McCall51bd8032009-10-18 01:05:36 +00001565 void VisitTypeLoc(TypeLoc TL) {
1566 // FIXME: add other typespec types and change this to an assert.
1567 TL.initialize(DS.getTypeSpecTypeLoc());
1568 }
1569 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001570
John McCall51bd8032009-10-18 01:05:36 +00001571 class DeclaratorLocFiller : public TypeLocVisitor<DeclaratorLocFiller> {
1572 const DeclaratorChunk &Chunk;
1573
1574 public:
1575 DeclaratorLocFiller(const DeclaratorChunk &Chunk) : Chunk(Chunk) {}
1576
1577 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001578 llvm_unreachable("qualified type locs not expected here!");
John McCall51bd8032009-10-18 01:05:36 +00001579 }
1580
1581 void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
1582 assert(Chunk.Kind == DeclaratorChunk::BlockPointer);
1583 TL.setCaretLoc(Chunk.Loc);
1584 }
1585 void VisitPointerTypeLoc(PointerTypeLoc TL) {
1586 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1587 TL.setStarLoc(Chunk.Loc);
1588 }
1589 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
1590 assert(Chunk.Kind == DeclaratorChunk::Pointer);
1591 TL.setStarLoc(Chunk.Loc);
1592 }
1593 void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
1594 assert(Chunk.Kind == DeclaratorChunk::MemberPointer);
1595 TL.setStarLoc(Chunk.Loc);
1596 // FIXME: nested name specifier
1597 }
1598 void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
1599 assert(Chunk.Kind == DeclaratorChunk::Reference);
John McCall54e14c42009-10-22 22:37:11 +00001600 // 'Amp' is misleading: this might have been originally
1601 /// spelled with AmpAmp.
John McCall51bd8032009-10-18 01:05:36 +00001602 TL.setAmpLoc(Chunk.Loc);
1603 }
1604 void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
1605 assert(Chunk.Kind == DeclaratorChunk::Reference);
1606 assert(!Chunk.Ref.LValueRef);
1607 TL.setAmpAmpLoc(Chunk.Loc);
1608 }
1609 void VisitArrayTypeLoc(ArrayTypeLoc TL) {
1610 assert(Chunk.Kind == DeclaratorChunk::Array);
1611 TL.setLBracketLoc(Chunk.Loc);
1612 TL.setRBracketLoc(Chunk.EndLoc);
1613 TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts));
1614 }
1615 void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
1616 assert(Chunk.Kind == DeclaratorChunk::Function);
1617 TL.setLParenLoc(Chunk.Loc);
1618 TL.setRParenLoc(Chunk.EndLoc);
1619
1620 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
John McCall54e14c42009-10-22 22:37:11 +00001621 for (unsigned i = 0, e = TL.getNumArgs(), tpi = 0; i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001622 ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
John McCall54e14c42009-10-22 22:37:11 +00001623 TL.setArg(tpi++, Param);
John McCall51bd8032009-10-18 01:05:36 +00001624 }
1625 // FIXME: exception specs
1626 }
1627
1628 void VisitTypeLoc(TypeLoc TL) {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001629 llvm_unreachable("unsupported TypeLoc kind in declarator!");
John McCall51bd8032009-10-18 01:05:36 +00001630 }
1631 };
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001632}
1633
John McCalla93c9342009-12-07 02:54:59 +00001634/// \brief Create and instantiate a TypeSourceInfo with type source information.
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001635///
1636/// \param T QualType referring to the type as written in source code.
Douglas Gregor05baacb2010-04-12 23:19:01 +00001637///
1638/// \param ReturnTypeInfo For declarators whose return type does not show
1639/// up in the normal place in the declaration specifiers (such as a C++
1640/// conversion function), this pointer will refer to a type source information
1641/// for that return type.
John McCalla93c9342009-12-07 02:54:59 +00001642TypeSourceInfo *
Douglas Gregor05baacb2010-04-12 23:19:01 +00001643Sema::GetTypeSourceInfoForDeclarator(Declarator &D, QualType T,
1644 TypeSourceInfo *ReturnTypeInfo) {
John McCalla93c9342009-12-07 02:54:59 +00001645 TypeSourceInfo *TInfo = Context.CreateTypeSourceInfo(T);
1646 UnqualTypeLoc CurrTL = TInfo->getTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001647
Sebastian Redl8ce35b02009-10-25 21:45:37 +00001648 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
John McCall51bd8032009-10-18 01:05:36 +00001649 DeclaratorLocFiller(D.getTypeObject(i)).Visit(CurrTL);
1650 CurrTL = CurrTL.getNextTypeLoc().getUnqualifiedLoc();
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001651 }
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00001652
John McCall51bd8032009-10-18 01:05:36 +00001653 TypeSpecLocFiller(D.getDeclSpec()).Visit(CurrTL);
Douglas Gregor05baacb2010-04-12 23:19:01 +00001654
1655 // We have source information for the return type that was not in the
1656 // declaration specifiers; copy that information into the current type
1657 // location so that it will be retained. This occurs, for example, with
1658 // a C++ conversion function, where the return type occurs within the
1659 // declarator-id rather than in the declaration specifiers.
1660 if (ReturnTypeInfo && D.getDeclSpec().getTypeSpecType() == TST_unspecified) {
1661 TypeLoc TL = ReturnTypeInfo->getTypeLoc();
1662 assert(TL.getFullDataSize() == CurrTL.getFullDataSize());
1663 memcpy(CurrTL.getOpaqueData(), TL.getOpaqueData(), TL.getFullDataSize());
1664 }
1665
John McCalla93c9342009-12-07 02:54:59 +00001666 return TInfo;
Argyrios Kyrtzidis4adab7f2009-08-19 01:28:06 +00001667}
1668
John McCalla93c9342009-12-07 02:54:59 +00001669/// \brief Create a LocInfoType to hold the given QualType and TypeSourceInfo.
1670QualType Sema::CreateLocInfoType(QualType T, TypeSourceInfo *TInfo) {
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001671 // FIXME: LocInfoTypes are "transient", only needed for passing to/from Parser
1672 // and Sema during declaration parsing. Try deallocating/caching them when
1673 // it's appropriate, instead of allocating them and keeping them around.
1674 LocInfoType *LocT = (LocInfoType*)BumpAlloc.Allocate(sizeof(LocInfoType), 8);
John McCalla93c9342009-12-07 02:54:59 +00001675 new (LocT) LocInfoType(T, TInfo);
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001676 assert(LocT->getTypeClass() != T->getTypeClass() &&
1677 "LocInfoType's TypeClass conflicts with an existing Type class");
1678 return QualType(LocT, 0);
1679}
1680
1681void LocInfoType::getAsStringInternal(std::string &Str,
1682 const PrintingPolicy &Policy) const {
Argyrios Kyrtzidis35d44e52009-08-19 01:46:06 +00001683 assert(false && "LocInfoType leaked into the type system; an opaque TypeTy*"
1684 " was used directly instead of getting the QualType through"
1685 " GetTypeFromParser");
Argyrios Kyrtzidis1bb8a452009-08-19 01:28:17 +00001686}
1687
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001688Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001689 // C99 6.7.6: Type names have no identifier. This is already validated by
1690 // the parser.
1691 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
Mike Stump1eb44332009-09-09 15:08:12 +00001692
Douglas Gregor402abb52009-05-28 23:31:59 +00001693 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00001694 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
1695 QualType T = TInfo->getType();
Chris Lattner5153ee62009-04-25 08:47:54 +00001696 if (D.isInvalidType())
Douglas Gregor809070a2009-02-18 17:45:20 +00001697 return true;
Steve Naroff5912a352007-08-28 20:14:24 +00001698
Douglas Gregor402abb52009-05-28 23:31:59 +00001699 if (getLangOptions().CPlusPlus) {
1700 // Check that there are no default arguments (C++ only).
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001701 CheckExtraCXXDefaultArguments(D);
1702
Douglas Gregor402abb52009-05-28 23:31:59 +00001703 // C++0x [dcl.type]p3:
1704 // A type-specifier-seq shall not define a class or enumeration
1705 // unless it appears in the type-id of an alias-declaration
1706 // (7.1.3).
1707 if (OwnedTag && OwnedTag->isDefinition())
1708 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_type_specifier)
1709 << Context.getTypeDeclType(OwnedTag);
1710 }
1711
John McCallbf1a0282010-06-04 23:28:52 +00001712 T = CreateLocInfoType(T, TInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001713 return T.getAsOpaquePtr();
1714}
1715
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001716
1717
1718//===----------------------------------------------------------------------===//
1719// Type Attribute Processing
1720//===----------------------------------------------------------------------===//
1721
1722/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
1723/// specified type. The attribute contains 1 argument, the id of the address
1724/// space for the type.
Mike Stump1eb44332009-09-09 15:08:12 +00001725static void HandleAddressSpaceTypeAttribute(QualType &Type,
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001726 const AttributeList &Attr, Sema &S){
John McCall0953e762009-09-24 19:53:00 +00001727
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001728 // If this type is already address space qualified, reject it.
1729 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
1730 // for two or more different address spaces."
1731 if (Type.getAddressSpace()) {
1732 S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
Abramo Bagnarae215f722010-04-30 13:10:51 +00001733 Attr.setInvalid();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001734 return;
1735 }
Mike Stump1eb44332009-09-09 15:08:12 +00001736
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001737 // Check the attribute arguments.
1738 if (Attr.getNumArgs() != 1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001739 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001740 Attr.setInvalid();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001741 return;
1742 }
1743 Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
1744 llvm::APSInt addrSpace(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001745 if (ASArgExpr->isTypeDependent() || ASArgExpr->isValueDependent() ||
1746 !ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001747 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
1748 << ASArgExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001749 Attr.setInvalid();
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001750 return;
1751 }
1752
John McCallefadb772009-07-28 06:52:18 +00001753 // Bounds checking.
1754 if (addrSpace.isSigned()) {
1755 if (addrSpace.isNegative()) {
1756 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_negative)
1757 << ASArgExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001758 Attr.setInvalid();
John McCallefadb772009-07-28 06:52:18 +00001759 return;
1760 }
1761 addrSpace.setIsSigned(false);
1762 }
1763 llvm::APSInt max(addrSpace.getBitWidth());
John McCall0953e762009-09-24 19:53:00 +00001764 max = Qualifiers::MaxAddressSpace;
John McCallefadb772009-07-28 06:52:18 +00001765 if (addrSpace > max) {
1766 S.Diag(Attr.getLoc(), diag::err_attribute_address_space_too_high)
John McCall0953e762009-09-24 19:53:00 +00001767 << Qualifiers::MaxAddressSpace << ASArgExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001768 Attr.setInvalid();
John McCallefadb772009-07-28 06:52:18 +00001769 return;
1770 }
1771
Mike Stump1eb44332009-09-09 15:08:12 +00001772 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00001773 Type = S.Context.getAddrSpaceQualType(Type, ASIdx);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001774}
1775
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001776/// HandleObjCGCTypeAttribute - Process an objc's gc attribute on the
1777/// specified type. The attribute contains 1 argument, weak or strong.
Mike Stump1eb44332009-09-09 15:08:12 +00001778static void HandleObjCGCTypeAttribute(QualType &Type,
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001779 const AttributeList &Attr, Sema &S) {
John McCall0953e762009-09-24 19:53:00 +00001780 if (Type.getObjCGCAttr() != Qualifiers::GCNone) {
Fariborz Jahanian5934e752009-02-18 18:52:41 +00001781 S.Diag(Attr.getLoc(), diag::err_attribute_multiple_objc_gc);
Abramo Bagnarae215f722010-04-30 13:10:51 +00001782 Attr.setInvalid();
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001783 return;
1784 }
Mike Stump1eb44332009-09-09 15:08:12 +00001785
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001786 // Check the attribute arguments.
Mike Stump1eb44332009-09-09 15:08:12 +00001787 if (!Attr.getParameterName()) {
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001788 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1789 << "objc_gc" << 1;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001790 Attr.setInvalid();
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001791 return;
1792 }
John McCall0953e762009-09-24 19:53:00 +00001793 Qualifiers::GC GCAttr;
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001794 if (Attr.getNumArgs() != 0) {
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001795 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001796 Attr.setInvalid();
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001797 return;
1798 }
Mike Stump1eb44332009-09-09 15:08:12 +00001799 if (Attr.getParameterName()->isStr("weak"))
John McCall0953e762009-09-24 19:53:00 +00001800 GCAttr = Qualifiers::Weak;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001801 else if (Attr.getParameterName()->isStr("strong"))
John McCall0953e762009-09-24 19:53:00 +00001802 GCAttr = Qualifiers::Strong;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001803 else {
1804 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1805 << "objc_gc" << Attr.getParameterName();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001806 Attr.setInvalid();
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001807 return;
1808 }
Mike Stump1eb44332009-09-09 15:08:12 +00001809
Chris Lattner3b6b83b2009-02-18 22:58:38 +00001810 Type = S.Context.getObjCGCQualType(Type, GCAttr);
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001811}
1812
John McCall04a67a62010-02-05 21:31:56 +00001813/// Process an individual function attribute. Returns true if the
1814/// attribute does not make sense to apply to this type.
1815bool ProcessFnAttr(Sema &S, QualType &Type, const AttributeList &Attr) {
1816 if (Attr.getKind() == AttributeList::AT_noreturn) {
1817 // Complain immediately if the arg count is wrong.
1818 if (Attr.getNumArgs() != 0) {
1819 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001820 Attr.setInvalid();
John McCall04a67a62010-02-05 21:31:56 +00001821 return false;
1822 }
Mike Stump24556362009-07-25 21:26:53 +00001823
John McCall04a67a62010-02-05 21:31:56 +00001824 // Delay if this is not a function or pointer to block.
1825 if (!Type->isFunctionPointerType()
1826 && !Type->isBlockPointerType()
1827 && !Type->isFunctionType())
1828 return true;
Mike Stump24556362009-07-25 21:26:53 +00001829
John McCall04a67a62010-02-05 21:31:56 +00001830 // Otherwise we can process right away.
1831 Type = S.Context.getNoReturnType(Type);
1832 return false;
1833 }
Mike Stump24556362009-07-25 21:26:53 +00001834
Rafael Espindola425ef722010-03-30 22:15:11 +00001835 if (Attr.getKind() == AttributeList::AT_regparm) {
1836 // The warning is emitted elsewhere
1837 if (Attr.getNumArgs() != 1) {
1838 return false;
1839 }
1840
1841 // Delay if this is not a function or pointer to block.
1842 if (!Type->isFunctionPointerType()
1843 && !Type->isBlockPointerType()
1844 && !Type->isFunctionType())
1845 return true;
1846
1847 // Otherwise we can process right away.
1848 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
1849 llvm::APSInt NumParams(32);
1850
1851 // The warning is emitted elsewhere
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001852 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
1853 !NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context))
Rafael Espindola425ef722010-03-30 22:15:11 +00001854 return false;
1855
1856 Type = S.Context.getRegParmType(Type, NumParams.getZExtValue());
1857 return false;
1858 }
1859
John McCall04a67a62010-02-05 21:31:56 +00001860 // Otherwise, a calling convention.
1861 if (Attr.getNumArgs() != 0) {
1862 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001863 Attr.setInvalid();
John McCall04a67a62010-02-05 21:31:56 +00001864 return false;
1865 }
John McCallf82b4e82010-02-04 05:44:44 +00001866
John McCall04a67a62010-02-05 21:31:56 +00001867 QualType T = Type;
1868 if (const PointerType *PT = Type->getAs<PointerType>())
1869 T = PT->getPointeeType();
1870 const FunctionType *Fn = T->getAs<FunctionType>();
John McCallf82b4e82010-02-04 05:44:44 +00001871
John McCall04a67a62010-02-05 21:31:56 +00001872 // Delay if the type didn't work out to a function.
1873 if (!Fn) return true;
1874
1875 // TODO: diagnose uses of these conventions on the wrong target.
1876 CallingConv CC;
1877 switch (Attr.getKind()) {
1878 case AttributeList::AT_cdecl: CC = CC_C; break;
1879 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
1880 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00001881 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
John McCall04a67a62010-02-05 21:31:56 +00001882 default: llvm_unreachable("unexpected attribute kind"); return false;
1883 }
1884
1885 CallingConv CCOld = Fn->getCallConv();
Charles Davis064f7db2010-02-23 06:13:55 +00001886 if (S.Context.getCanonicalCallConv(CC) ==
Abramo Bagnarae215f722010-04-30 13:10:51 +00001887 S.Context.getCanonicalCallConv(CCOld)) {
1888 Attr.setInvalid();
1889 return false;
1890 }
John McCall04a67a62010-02-05 21:31:56 +00001891
1892 if (CCOld != CC_Default) {
1893 // Should we diagnose reapplications of the same convention?
1894 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1895 << FunctionType::getNameForCallConv(CC)
1896 << FunctionType::getNameForCallConv(CCOld);
Abramo Bagnarae215f722010-04-30 13:10:51 +00001897 Attr.setInvalid();
John McCall04a67a62010-02-05 21:31:56 +00001898 return false;
1899 }
1900
1901 // Diagnose the use of X86 fastcall on varargs or unprototyped functions.
1902 if (CC == CC_X86FastCall) {
1903 if (isa<FunctionNoProtoType>(Fn)) {
1904 S.Diag(Attr.getLoc(), diag::err_cconv_knr)
1905 << FunctionType::getNameForCallConv(CC);
Abramo Bagnarae215f722010-04-30 13:10:51 +00001906 Attr.setInvalid();
John McCall04a67a62010-02-05 21:31:56 +00001907 return false;
1908 }
1909
1910 const FunctionProtoType *FnP = cast<FunctionProtoType>(Fn);
1911 if (FnP->isVariadic()) {
1912 S.Diag(Attr.getLoc(), diag::err_cconv_varargs)
1913 << FunctionType::getNameForCallConv(CC);
Abramo Bagnarae215f722010-04-30 13:10:51 +00001914 Attr.setInvalid();
John McCall04a67a62010-02-05 21:31:56 +00001915 return false;
1916 }
1917 }
1918
1919 Type = S.Context.getCallConvType(Type, CC);
1920 return false;
John McCallf82b4e82010-02-04 05:44:44 +00001921}
1922
John Thompson6e132aa2009-12-04 21:51:28 +00001923/// HandleVectorSizeAttribute - this attribute is only applicable to integral
1924/// and float scalars, although arrays, pointers, and function return values are
1925/// allowed in conjunction with this construct. Aggregates with this attribute
1926/// are invalid, even if they are of the same size as a corresponding scalar.
1927/// The raw attribute should contain precisely 1 argument, the vector size for
1928/// the variable, measured in bytes. If curType and rawAttr are well formed,
1929/// this routine will return a new vector type.
Chris Lattner788b0fd2010-06-23 06:00:24 +00001930static void HandleVectorSizeAttr(QualType& CurType, const AttributeList &Attr,
1931 Sema &S) {
John Thompson6e132aa2009-12-04 21:51:28 +00001932 // Check the attribute arugments.
1933 if (Attr.getNumArgs() != 1) {
1934 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001935 Attr.setInvalid();
John Thompson6e132aa2009-12-04 21:51:28 +00001936 return;
1937 }
1938 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
1939 llvm::APSInt vecSize(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001940 if (sizeExpr->isTypeDependent() || sizeExpr->isValueDependent() ||
1941 !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
John Thompson6e132aa2009-12-04 21:51:28 +00001942 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1943 << "vector_size" << sizeExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001944 Attr.setInvalid();
John Thompson6e132aa2009-12-04 21:51:28 +00001945 return;
1946 }
1947 // the base type must be integer or float, and can't already be a vector.
Douglas Gregorf6094622010-07-23 15:58:24 +00001948 if (!CurType->isIntegerType() && !CurType->isRealFloatingType()) {
John Thompson6e132aa2009-12-04 21:51:28 +00001949 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
Abramo Bagnarae215f722010-04-30 13:10:51 +00001950 Attr.setInvalid();
John Thompson6e132aa2009-12-04 21:51:28 +00001951 return;
1952 }
1953 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
1954 // vecSize is specified in bytes - convert to bits.
1955 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
1956
1957 // the vector size needs to be an integral multiple of the type size.
1958 if (vectorSize % typeSize) {
1959 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
1960 << sizeExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001961 Attr.setInvalid();
John Thompson6e132aa2009-12-04 21:51:28 +00001962 return;
1963 }
1964 if (vectorSize == 0) {
1965 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
1966 << sizeExpr->getSourceRange();
Abramo Bagnarae215f722010-04-30 13:10:51 +00001967 Attr.setInvalid();
John Thompson6e132aa2009-12-04 21:51:28 +00001968 return;
1969 }
1970
1971 // Success! Instantiate the vector type, the number of elements is > 0, and
1972 // not required to be a power of 2, unlike GCC.
Chris Lattner788b0fd2010-06-23 06:00:24 +00001973 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
1974 VectorType::NotAltiVec);
John Thompson6e132aa2009-12-04 21:51:28 +00001975}
1976
John McCall04a67a62010-02-05 21:31:56 +00001977void ProcessTypeAttributeList(Sema &S, QualType &Result,
Charles Davis328ce342010-02-24 02:27:18 +00001978 bool IsDeclSpec, const AttributeList *AL,
John McCall04a67a62010-02-05 21:31:56 +00001979 DelayedAttributeSet &FnAttrs) {
Chris Lattner232e8822008-02-21 01:08:11 +00001980 // Scan through and apply attributes to this type where it makes sense. Some
1981 // attributes (such as __address_space__, __vector_size__, etc) apply to the
1982 // type, but others can be present in the type specifiers even though they
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001983 // apply to the decl. Here we apply type attributes and ignore the rest.
1984 for (; AL; AL = AL->getNext()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00001985 // Skip attributes that were marked to be invalid.
1986 if (AL->isInvalid())
1987 continue;
1988
Abramo Bagnarab1f1b262010-04-30 09:13:03 +00001989 // If this is an attribute we can handle, do so now,
1990 // otherwise, add it to the FnAttrs list for rechaining.
Chris Lattnerfca0ddd2008-06-26 06:27:57 +00001991 switch (AL->getKind()) {
Chris Lattner232e8822008-02-21 01:08:11 +00001992 default: break;
John McCall04a67a62010-02-05 21:31:56 +00001993
Chris Lattner232e8822008-02-21 01:08:11 +00001994 case AttributeList::AT_address_space:
John McCall04a67a62010-02-05 21:31:56 +00001995 HandleAddressSpaceTypeAttribute(Result, *AL, S);
Chris Lattnerc9b346d2008-06-29 00:50:08 +00001996 break;
Fariborz Jahaniand33d9c02009-02-18 05:09:49 +00001997 case AttributeList::AT_objc_gc:
John McCall04a67a62010-02-05 21:31:56 +00001998 HandleObjCGCTypeAttribute(Result, *AL, S);
Mike Stump24556362009-07-25 21:26:53 +00001999 break;
John Thompson6e132aa2009-12-04 21:51:28 +00002000 case AttributeList::AT_vector_size:
John McCall04a67a62010-02-05 21:31:56 +00002001 HandleVectorSizeAttr(Result, *AL, S);
2002 break;
2003
2004 case AttributeList::AT_noreturn:
2005 case AttributeList::AT_cdecl:
2006 case AttributeList::AT_fastcall:
2007 case AttributeList::AT_stdcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002008 case AttributeList::AT_thiscall:
Rafael Espindola425ef722010-03-30 22:15:11 +00002009 case AttributeList::AT_regparm:
Charles Davis328ce342010-02-24 02:27:18 +00002010 // Don't process these on the DeclSpec.
2011 if (IsDeclSpec ||
2012 ProcessFnAttr(S, Result, *AL))
John McCall04a67a62010-02-05 21:31:56 +00002013 FnAttrs.push_back(DelayedAttribute(AL, Result));
John Thompson6e132aa2009-12-04 21:51:28 +00002014 break;
Chris Lattner232e8822008-02-21 01:08:11 +00002015 }
Chris Lattner232e8822008-02-21 01:08:11 +00002016 }
Chris Lattner232e8822008-02-21 01:08:11 +00002017}
2018
Mike Stump1eb44332009-09-09 15:08:12 +00002019/// @brief Ensure that the type T is a complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002020///
2021/// This routine checks whether the type @p T is complete in any
2022/// context where a complete type is required. If @p T is a complete
Douglas Gregor86447ec2009-03-09 16:13:40 +00002023/// type, returns false. If @p T is a class template specialization,
2024/// this routine then attempts to perform class template
2025/// instantiation. If instantiation fails, or if @p T is incomplete
2026/// and cannot be completed, issues the diagnostic @p diag (giving it
2027/// the type @p T) and returns true.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002028///
2029/// @param Loc The location in the source that the incomplete type
2030/// diagnostic should refer to.
2031///
2032/// @param T The type that this routine is examining for completeness.
2033///
Mike Stump1eb44332009-09-09 15:08:12 +00002034/// @param PD The partial diagnostic that will be printed out if T is not a
Anders Carlssonb7906612009-08-26 23:45:07 +00002035/// complete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002036///
2037/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
2038/// @c false otherwise.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00002039bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00002040 const PartialDiagnostic &PD,
2041 std::pair<SourceLocation,
2042 PartialDiagnostic> Note) {
Anders Carlsson91a0cc92009-08-26 22:33:56 +00002043 unsigned diag = PD.getDiagID();
Mike Stump1eb44332009-09-09 15:08:12 +00002044
Douglas Gregor573d9c32009-10-21 23:19:44 +00002045 // FIXME: Add this assertion to make sure we always get instantiation points.
2046 // assert(!Loc.isInvalid() && "Invalid location in RequireCompleteType");
Douglas Gregor690dc7f2009-05-21 23:48:18 +00002047 // FIXME: Add this assertion to help us flush out problems with
2048 // checking for dependent types and type-dependent expressions.
2049 //
Mike Stump1eb44332009-09-09 15:08:12 +00002050 // assert(!T->isDependentType() &&
Douglas Gregor690dc7f2009-05-21 23:48:18 +00002051 // "Can't ask whether a dependent type is complete");
2052
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002053 // If we have a complete type, we're done.
2054 if (!T->isIncompleteType())
2055 return false;
Eli Friedman3c0eb162008-05-27 03:33:27 +00002056
Douglas Gregord475b8d2009-03-25 21:17:03 +00002057 // If we have a class template specialization or a class member of a
Sebastian Redl923d56d2009-11-05 15:52:31 +00002058 // class template specialization, or an array with known size of such,
2059 // try to instantiate it.
2060 QualType MaybeTemplate = T;
Douglas Gregor89c49f02009-11-09 22:08:55 +00002061 if (const ConstantArrayType *Array = Context.getAsConstantArrayType(T))
Sebastian Redl923d56d2009-11-05 15:52:31 +00002062 MaybeTemplate = Array->getElementType();
2063 if (const RecordType *Record = MaybeTemplate->getAs<RecordType>()) {
Douglas Gregor2943aed2009-03-03 04:44:36 +00002064 if (ClassTemplateSpecializationDecl *ClassTemplateSpec
Douglas Gregord475b8d2009-03-25 21:17:03 +00002065 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002066 if (ClassTemplateSpec->getSpecializationKind() == TSK_Undeclared)
2067 return InstantiateClassTemplateSpecialization(Loc, ClassTemplateSpec,
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002068 TSK_ImplicitInstantiation,
Douglas Gregor5842ba92009-08-24 15:23:48 +00002069 /*Complain=*/diag != 0);
Mike Stump1eb44332009-09-09 15:08:12 +00002070 } else if (CXXRecordDecl *Rec
Douglas Gregord475b8d2009-03-25 21:17:03 +00002071 = dyn_cast<CXXRecordDecl>(Record->getDecl())) {
2072 if (CXXRecordDecl *Pattern = Rec->getInstantiatedFromMemberClass()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002073 MemberSpecializationInfo *MSInfo = Rec->getMemberSpecializationInfo();
2074 assert(MSInfo && "Missing member specialization information?");
Douglas Gregor357bbd02009-08-28 20:50:45 +00002075 // This record was instantiated from a class within a template.
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00002076 if (MSInfo->getTemplateSpecializationKind()
Douglas Gregor972e6ce2009-10-27 06:26:26 +00002077 != TSK_ExplicitSpecialization)
Douglas Gregorf6b11852009-10-08 15:14:33 +00002078 return InstantiateClass(Loc, Rec, Pattern,
2079 getTemplateInstantiationArgs(Rec),
2080 TSK_ImplicitInstantiation,
2081 /*Complain=*/diag != 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +00002082 }
2083 }
2084 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00002085
Douglas Gregor5842ba92009-08-24 15:23:48 +00002086 if (diag == 0)
2087 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002088
Rafael Espindola01620702010-03-21 22:56:43 +00002089 const TagType *Tag = 0;
2090 if (const RecordType *Record = T->getAs<RecordType>())
2091 Tag = Record;
2092 else if (const EnumType *Enum = T->getAs<EnumType>())
2093 Tag = Enum;
2094
2095 // Avoid diagnosing invalid decls as incomplete.
2096 if (Tag && Tag->getDecl()->isInvalidDecl())
2097 return true;
2098
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002099 // We have an incomplete type. Produce a diagnostic.
Anders Carlsson91a0cc92009-08-26 22:33:56 +00002100 Diag(Loc, PD) << T;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002101
Anders Carlsson8c8d9192009-10-09 23:51:55 +00002102 // If we have a note, produce it.
2103 if (!Note.first.isInvalid())
2104 Diag(Note.first, Note.second);
2105
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002106 // If the type was a forward declaration of a class/struct/union
Rafael Espindola01620702010-03-21 22:56:43 +00002107 // type, produce a note.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002108 if (Tag && !Tag->getDecl()->isInvalidDecl())
Mike Stump1eb44332009-09-09 15:08:12 +00002109 Diag(Tag->getDecl()->getLocation(),
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002110 Tag->isBeingDefined() ? diag::note_type_being_defined
2111 : diag::note_forward_declaration)
2112 << QualType(Tag, 0);
2113
2114 return true;
2115}
Douglas Gregore6258932009-03-19 00:39:20 +00002116
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002117bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
2118 const PartialDiagnostic &PD) {
2119 return RequireCompleteType(Loc, T, PD,
2120 std::make_pair(SourceLocation(), PDiag(0)));
2121}
2122
2123bool Sema::RequireCompleteType(SourceLocation Loc, QualType T,
2124 unsigned DiagID) {
2125 return RequireCompleteType(Loc, T, PDiag(DiagID),
2126 std::make_pair(SourceLocation(), PDiag(0)));
2127}
2128
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002129/// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
2130/// and qualified by the nested-name-specifier contained in SS.
2131QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword,
2132 const CXXScopeSpec &SS, QualType T) {
2133 if (T.isNull())
Douglas Gregore6258932009-03-19 00:39:20 +00002134 return T;
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002135 NestedNameSpecifier *NNS;
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002136 if (SS.isValid())
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002137 NNS = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
2138 else {
2139 if (Keyword == ETK_None)
2140 return T;
2141 NNS = 0;
2142 }
2143 return Context.getElaboratedType(Keyword, NNS, T);
Douglas Gregore6258932009-03-19 00:39:20 +00002144}
Anders Carlssonaf017e62009-06-29 22:58:55 +00002145
2146QualType Sema::BuildTypeofExprType(Expr *E) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00002147 if (E->getType() == Context.OverloadTy) {
2148 // C++ [temp.arg.explicit]p3 allows us to resolve a template-id to a
2149 // function template specialization wherever deduction cannot occur.
2150 if (FunctionDecl *Specialization
2151 = ResolveSingleFunctionTemplateSpecialization(E)) {
John McCall161755a2010-04-06 21:38:20 +00002152 // The access doesn't really matter in this case.
2153 DeclAccessPair Found = DeclAccessPair::make(Specialization,
2154 Specialization->getAccess());
2155 E = FixOverloadedFunctionReference(E, Found, Specialization);
Douglas Gregor4b52e252009-12-21 23:17:24 +00002156 if (!E)
2157 return QualType();
2158 } else {
2159 Diag(E->getLocStart(),
2160 diag::err_cannot_determine_declared_type_of_overloaded_function)
2161 << false << E->getSourceRange();
2162 return QualType();
2163 }
2164 }
2165
Anders Carlssonaf017e62009-06-29 22:58:55 +00002166 return Context.getTypeOfExprType(E);
2167}
2168
2169QualType Sema::BuildDecltypeType(Expr *E) {
2170 if (E->getType() == Context.OverloadTy) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00002171 // C++ [temp.arg.explicit]p3 allows us to resolve a template-id to a
2172 // function template specialization wherever deduction cannot occur.
2173 if (FunctionDecl *Specialization
2174 = ResolveSingleFunctionTemplateSpecialization(E)) {
John McCall161755a2010-04-06 21:38:20 +00002175 // The access doesn't really matter in this case.
2176 DeclAccessPair Found = DeclAccessPair::make(Specialization,
2177 Specialization->getAccess());
2178 E = FixOverloadedFunctionReference(E, Found, Specialization);
Douglas Gregor4b52e252009-12-21 23:17:24 +00002179 if (!E)
2180 return QualType();
2181 } else {
2182 Diag(E->getLocStart(),
2183 diag::err_cannot_determine_declared_type_of_overloaded_function)
2184 << true << E->getSourceRange();
2185 return QualType();
2186 }
Anders Carlssonaf017e62009-06-29 22:58:55 +00002187 }
Douglas Gregor4b52e252009-12-21 23:17:24 +00002188
Anders Carlssonaf017e62009-06-29 22:58:55 +00002189 return Context.getDecltypeType(E);
2190}