blob: f717b4139a53ce121625fdb7add00b428e112c78 [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"
16#include "clang/AST/Decl.h"
Steve Naroff980e5082007-10-01 19:00:59 +000017#include "clang/AST/DeclObjC.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Parse/DeclSpec.h"
Chris Lattnerb23deda2007-08-28 16:40:32 +000019#include "clang/Basic/LangOptions.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
22/// ConvertDeclSpecToType - Convert the specified declspec to the appropriate
23/// type object. This returns null on error.
Chris Lattnerfab5b452008-02-20 23:53:49 +000024QualType Sema::ConvertDeclSpecToType(DeclSpec &DS) {
Reid Spencer5f016e22007-07-11 17:01:13 +000025 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
26 // checking.
Chris Lattner958858e2008-02-20 21:40:32 +000027 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +000028
29 switch (DS.getTypeSpecType()) {
30 default: return QualType(); // FIXME: Handle unimp cases!
Chris Lattnerfab5b452008-02-20 23:53:49 +000031 case DeclSpec::TST_void: return Context.VoidTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000032 case DeclSpec::TST_char:
33 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
Chris Lattnerfab5b452008-02-20 23:53:49 +000034 Result = Context.CharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000035 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
Chris Lattnerfab5b452008-02-20 23:53:49 +000036 Result = Context.SignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000037 else {
38 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
39 "Unknown TSS value");
Chris Lattnerfab5b452008-02-20 23:53:49 +000040 Result = Context.UnsignedCharTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000041 }
Chris Lattner958858e2008-02-20 21:40:32 +000042 break;
Chris Lattner7a543ad2007-07-13 21:02:29 +000043 case DeclSpec::TST_unspecified: // Unspecific typespec defaults to int.
Chris Lattner3cbc38b2007-08-21 17:02:28 +000044 case DeclSpec::TST_int: {
Reid Spencer5f016e22007-07-11 17:01:13 +000045 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
46 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +000047 case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
48 case DeclSpec::TSW_short: Result = Context.ShortTy; break;
49 case DeclSpec::TSW_long: Result = Context.LongTy; break;
50 case DeclSpec::TSW_longlong: Result = Context.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +000051 }
52 } else {
53 switch (DS.getTypeSpecWidth()) {
Chris Lattnerfab5b452008-02-20 23:53:49 +000054 case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
55 case DeclSpec::TSW_short: Result = Context.UnsignedShortTy; break;
56 case DeclSpec::TSW_long: Result = Context.UnsignedLongTy; break;
57 case DeclSpec::TSW_longlong: Result =Context.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +000058 }
59 }
Chris Lattner958858e2008-02-20 21:40:32 +000060 break;
Chris Lattner3cbc38b2007-08-21 17:02:28 +000061 }
Chris Lattnerfab5b452008-02-20 23:53:49 +000062 case DeclSpec::TST_float: Result = Context.FloatTy; break;
Chris Lattner958858e2008-02-20 21:40:32 +000063 case DeclSpec::TST_double:
64 if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
Chris Lattnerfab5b452008-02-20 23:53:49 +000065 Result = Context.LongDoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +000066 else
Chris Lattnerfab5b452008-02-20 23:53:49 +000067 Result = Context.DoubleTy;
Chris Lattner958858e2008-02-20 21:40:32 +000068 break;
Chris Lattnerfab5b452008-02-20 23:53:49 +000069 case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
Reid Spencer5f016e22007-07-11 17:01:13 +000070 case DeclSpec::TST_decimal32: // _Decimal32
71 case DeclSpec::TST_decimal64: // _Decimal64
72 case DeclSpec::TST_decimal128: // _Decimal128
73 assert(0 && "FIXME: GNU decimal extensions not supported yet!");
74 case DeclSpec::TST_enum:
75 case DeclSpec::TST_union:
76 case DeclSpec::TST_struct: {
77 Decl *D = static_cast<Decl *>(DS.getTypeRep());
78 assert(D && "Didn't get a decl for a enum/union/struct?");
79 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
80 DS.getTypeSpecSign() == 0 &&
81 "Can't handle qualifiers on typedef names yet!");
82 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +000083 Result = Context.getTagDeclType(cast<TagDecl>(D));
Chris Lattner958858e2008-02-20 21:40:32 +000084 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000085 }
86 case DeclSpec::TST_typedef: {
87 Decl *D = static_cast<Decl *>(DS.getTypeRep());
88 assert(D && "Didn't get a decl for a typedef?");
89 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
90 DS.getTypeSpecSign() == 0 &&
91 "Can't handle qualifiers on typedef names yet!");
Steve Naroff3536b442007-09-06 21:24:23 +000092 // FIXME: Adding a TST_objcInterface clause doesn't seem ideal, so
93 // we have this "hack" for now...
Ted Kremeneka526c5c2008-01-07 19:49:32 +000094 if (ObjCInterfaceDecl *ObjCIntDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
Chris Lattner958858e2008-02-20 21:40:32 +000095 if (DS.getProtocolQualifiers() == 0) {
Chris Lattnerfab5b452008-02-20 23:53:49 +000096 Result = Context.getObjCInterfaceType(ObjCIntDecl);
Chris Lattner958858e2008-02-20 21:40:32 +000097 break;
98 }
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +000099
100 Action::DeclTy **PPDecl = &(*DS.getProtocolQualifiers())[0];
Chris Lattnerfab5b452008-02-20 23:53:49 +0000101 Result = Context.getObjCQualifiedInterfaceType(ObjCIntDecl,
Chris Lattner958858e2008-02-20 21:40:32 +0000102 reinterpret_cast<ObjCProtocolDecl**>(PPDecl),
Chris Lattner76549142008-02-21 01:32:26 +0000103 DS.getNumProtocolQualifiers());
Chris Lattner958858e2008-02-20 21:40:32 +0000104 break;
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000105 }
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000106 else if (TypedefDecl *typeDecl = dyn_cast<TypedefDecl>(D)) {
Chris Lattnerfab5b452008-02-20 23:53:49 +0000107 if (Context.getObjCIdType() == Context.getTypedefType(typeDecl)
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000108 && DS.getProtocolQualifiers()) {
109 // id<protocol-list>
110 Action::DeclTy **PPDecl = &(*DS.getProtocolQualifiers())[0];
Chris Lattnerfab5b452008-02-20 23:53:49 +0000111 Result = Context.getObjCQualifiedIdType(typeDecl->getUnderlyingType(),
Chris Lattner958858e2008-02-20 21:40:32 +0000112 reinterpret_cast<ObjCProtocolDecl**>(PPDecl),
Chris Lattner76549142008-02-21 01:32:26 +0000113 DS.getNumProtocolQualifiers());
Chris Lattner958858e2008-02-20 21:40:32 +0000114 break;
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000115 }
116 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000117 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000118 Result = Context.getTypedefType(cast<TypedefDecl>(D));
Chris Lattner958858e2008-02-20 21:40:32 +0000119 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 }
Chris Lattner958858e2008-02-20 21:40:32 +0000121 case DeclSpec::TST_typeofType:
122 Result = QualType::getFromOpaquePtr(DS.getTypeRep());
123 assert(!Result.isNull() && "Didn't get a type for typeof?");
Steve Naroffd1861fd2007-07-31 12:34:36 +0000124 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000125 Result = Context.getTypeOfType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000126 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000127 case DeclSpec::TST_typeofExpr: {
128 Expr *E = static_cast<Expr *>(DS.getTypeRep());
129 assert(E && "Didn't get an expression for typeof?");
130 // TypeQuals handled by caller.
Chris Lattnerfab5b452008-02-20 23:53:49 +0000131 Result = Context.getTypeOfExpr(E);
Chris Lattner958858e2008-02-20 21:40:32 +0000132 break;
Steve Naroffd1861fd2007-07-31 12:34:36 +0000133 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000134 }
Chris Lattner958858e2008-02-20 21:40:32 +0000135
136 // Handle complex types.
137 if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex)
Chris Lattnerfab5b452008-02-20 23:53:49 +0000138 Result = Context.getComplexType(Result);
Chris Lattner958858e2008-02-20 21:40:32 +0000139
140 assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
141 "FIXME: imaginary types not supported yet!");
142
Chris Lattner38d8b982008-02-20 22:04:11 +0000143 // See if there are any attributes on the declspec that apply to the type (as
144 // opposed to the decl).
Chris Lattnerf1d705c2008-02-21 01:07:18 +0000145 if (AttributeList *AL = DS.getAttributes())
146 DS.SetAttributes(ProcessTypeAttributes(Result, AL));
147
148 return Result;
149}
150
Reid Spencer5f016e22007-07-11 17:01:13 +0000151/// GetTypeForDeclarator - Convert the type for the specified declarator to Type
152/// instances.
153QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S) {
Chris Lattnerb23deda2007-08-28 16:40:32 +0000154 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000155 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000156 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
157 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
158
Chris Lattnerfab5b452008-02-20 23:53:49 +0000159 QualType T = ConvertDeclSpecToType(D.getDeclSpec());
Steve Naroffe1223f72007-08-28 03:03:08 +0000160
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 // Apply const/volatile/restrict qualifiers to T.
162 T = T.getQualifiedType(D.getDeclSpec().getTypeQualifiers());
163
164 // Walk the DeclTypeInfo, building the recursive type as we go. DeclTypeInfos
165 // are ordered from the identifier out, which is opposite of what we want :).
166 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Chris Lattner76549142008-02-21 01:32:26 +0000167 DeclaratorChunk &DeclType = D.getTypeObject(e-i-1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 switch (DeclType.Kind) {
169 default: assert(0 && "Unknown decltype!");
170 case DeclaratorChunk::Pointer:
Chris Lattner02c642e2007-07-31 21:33:24 +0000171 if (T->isReferenceType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 // C++ 8.3.2p4: There shall be no ... pointers to references ...
173 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_pointer_to_reference,
Steve Naroff14f3f1b2008-01-14 23:33:18 +0000174 D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
Steve Naroffe1223f72007-08-28 03:03:08 +0000175 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000176 T = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 }
178
179 // Apply the pointer typequals to the pointer object.
180 T = Context.getPointerType(T).getQualifiedType(DeclType.Ptr.TypeQuals);
Chris Lattner76549142008-02-21 01:32:26 +0000181
182 // See if there are any attributes on the pointer that apply to it.
183 if (AttributeList *AL = DeclType.Ptr.AttrList)
184 DeclType.Ptr.AttrList = ProcessTypeAttributes(T, AL);
185
Reid Spencer5f016e22007-07-11 17:01:13 +0000186 break;
187 case DeclaratorChunk::Reference:
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000188 if (const ReferenceType *RT = T->getAsReferenceType()) {
Chris Lattnerbde71842008-02-21 01:32:57 +0000189 // C++ 8.3.2p4: There shall be no references to references.
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 Diag(D.getIdentifierLoc(),
191 diag::err_illegal_decl_reference_to_reference,
Steve Naroff14f3f1b2008-01-14 23:33:18 +0000192 D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
Steve Naroffe1223f72007-08-28 03:03:08 +0000193 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000194 T = RT->getReferenceeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 }
196
197 T = Context.getReferenceType(T);
Chris Lattner76549142008-02-21 01:32:26 +0000198
Chris Lattnerbde71842008-02-21 01:32:57 +0000199 // FIXME: Handle Ref.Restrict!
200
Chris Lattner76549142008-02-21 01:32:26 +0000201 // See if there are any attributes on the pointer that apply to it.
202 if (AttributeList *AL = DeclType.Ref.AttrList)
203 DeclType.Ref.AttrList = ProcessTypeAttributes(T, AL);
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 break;
205 case DeclaratorChunk::Array: {
206 const DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000207 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000208 ArrayType::ArraySizeModifier ASM;
209 if (ATI.isStar)
210 ASM = ArrayType::Star;
211 else if (ATI.hasStatic)
212 ASM = ArrayType::Static;
213 else
214 ASM = ArrayType::Normal;
Chris Lattner5265af52007-07-19 00:42:40 +0000215
Reid Spencer5f016e22007-07-11 17:01:13 +0000216 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
217 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
218 if (T->isIncompleteType()) {
219 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_incomplete_type,
220 T.getAsString());
Steve Naroffe1223f72007-08-28 03:03:08 +0000221 T = Context.IntTy;
222 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000223 } else if (T->isFunctionType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000224 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_functions,
Steve Naroff14f3f1b2008-01-14 23:33:18 +0000225 D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
Steve Naroffe1223f72007-08-28 03:03:08 +0000226 T = Context.getPointerType(T);
227 D.setInvalidType(true);
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000228 } else if (const ReferenceType *RT = T->getAsReferenceType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 // C++ 8.3.2p4: There shall be no ... arrays of references ...
230 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_references,
Steve Naroff14f3f1b2008-01-14 23:33:18 +0000231 D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
Steve Naroffe1223f72007-08-28 03:03:08 +0000232 T = RT->getReferenceeType();
233 D.setInvalidType(true);
Chris Lattner02c642e2007-07-31 21:33:24 +0000234 } else if (const RecordType *EltTy = T->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000235 // If the element type is a struct or union that contains a variadic
236 // array, reject it: C99 6.7.2.1p2.
237 if (EltTy->getDecl()->hasFlexibleArrayMember()) {
238 Diag(DeclType.Loc, diag::err_flexible_array_in_array,
239 T.getAsString());
Steve Naroffe1223f72007-08-28 03:03:08 +0000240 T = Context.IntTy;
241 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000242 }
243 }
Steve Naroff42471f82007-08-30 22:35:45 +0000244 // C99 6.7.5.2p1: The size expression shall have integer type.
245 if (ArraySize && !ArraySize->getType()->isIntegerType()) {
246 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int,
247 ArraySize->getType().getAsString(), ArraySize->getSourceRange());
248 D.setInvalidType(true);
249 }
Steve Naroffc9406122007-08-30 18:10:14 +0000250 llvm::APSInt ConstVal(32);
251 // If no expression was provided, we consider it a VLA.
Eli Friedmanc5773c42008-02-15 18:16:39 +0000252 if (!ArraySize) {
253 T = Context.getIncompleteArrayType(T, ASM, ATI.TypeQuals);
254 } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context)) {
Steve Naroffc9406122007-08-30 18:10:14 +0000255 T = Context.getVariableArrayType(T, ArraySize, ASM, ATI.TypeQuals);
Eli Friedmanc5773c42008-02-15 18:16:39 +0000256 } else {
Steve Naroff42471f82007-08-30 22:35:45 +0000257 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
258 // have a value greater than zero.
259 if (ConstVal.isSigned()) {
260 if (ConstVal.isNegative()) {
261 Diag(ArraySize->getLocStart(),
262 diag::err_typecheck_negative_array_size,
263 ArraySize->getSourceRange());
264 D.setInvalidType(true);
265 } else if (ConstVal == 0) {
266 // GCC accepts zero sized static arrays.
267 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size,
268 ArraySize->getSourceRange());
269 }
270 }
Steve Naroffc9406122007-08-30 18:10:14 +0000271 T = Context.getConstantArrayType(T, ConstVal, ASM, ATI.TypeQuals);
Steve Naroff42471f82007-08-30 22:35:45 +0000272 }
Chris Lattner94f81fd2007-08-28 16:54:00 +0000273 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
274 if (!getLangOptions().C99 &&
275 (ASM != ArrayType::Normal ||
276 (ArraySize && !ArraySize->isIntegerConstantExpr(Context))))
277 Diag(D.getIdentifierLoc(), diag::ext_vla);
Reid Spencer5f016e22007-07-11 17:01:13 +0000278 break;
279 }
280 case DeclaratorChunk::Function:
281 // If the function declarator has a prototype (i.e. it is not () and
282 // does not have a K&R-style identifier list), then the arguments are part
283 // of the type, otherwise the argument list is ().
284 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
Chris Lattner68cfd492007-12-19 18:01:43 +0000285
Chris Lattnercd881292007-12-19 05:31:29 +0000286 // C99 6.7.5.3p1: The return type may not be a function or array type.
Chris Lattner68cfd492007-12-19 18:01:43 +0000287 if (T->isArrayType() || T->isFunctionType()) {
Chris Lattnercd881292007-12-19 05:31:29 +0000288 Diag(DeclType.Loc, diag::err_func_returning_array_function,
289 T.getAsString());
290 T = Context.IntTy;
291 D.setInvalidType(true);
292 }
293
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 if (!FTI.hasPrototype) {
295 // Simple void foo(), where the incoming T is the result type.
296 T = Context.getFunctionTypeNoProto(T);
297
298 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
299 if (FTI.NumArgs != 0)
300 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
301
302 } else {
303 // Otherwise, we have a function with an argument list that is
304 // potentially variadic.
305 llvm::SmallVector<QualType, 16> ArgTys;
306
307 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
308 QualType ArgTy = QualType::getFromOpaquePtr(FTI.ArgInfo[i].TypeInfo);
Chris Lattner78c75fb2007-07-21 05:30:18 +0000309 assert(!ArgTy.isNull() && "Couldn't parse type?");
Steve Naroff08d51392007-09-10 22:17:00 +0000310 //
311 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
312 // This matches the conversion that is done in
Nate Begemanbff5f5c2007-11-13 21:49:48 +0000313 // Sema::ActOnParamDeclarator(). Without this conversion, the
Steve Naroff08d51392007-09-10 22:17:00 +0000314 // argument type in the function prototype *will not* match the
315 // type in ParmVarDecl (which makes the code generator unhappy).
316 //
317 // FIXME: We still apparently need the conversion in
318 // Sema::ParseParamDeclarator(). This doesn't make any sense, since
319 // it should be driving off the type being created here.
320 //
321 // FIXME: If a source translation tool needs to see the original type,
322 // then we need to consider storing both types somewhere...
323 //
Chris Lattner529bd022008-01-02 22:50:48 +0000324 if (const ArrayType *AT = ArgTy->getAsArrayType()) {
325 // int x[restrict 4] -> int *restrict
Steve Naroff08d51392007-09-10 22:17:00 +0000326 ArgTy = Context.getPointerType(AT->getElementType());
Chris Lattner529bd022008-01-02 22:50:48 +0000327 ArgTy = ArgTy.getQualifiedType(AT->getIndexTypeQualifier());
328 } else if (ArgTy->isFunctionType())
Steve Naroff08d51392007-09-10 22:17:00 +0000329 ArgTy = Context.getPointerType(ArgTy);
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 // Look for 'void'. void is allowed only as a single argument to a
331 // function with no other parameters (C99 6.7.5.3p10). We record
332 // int(void) as a FunctionTypeProto with an empty argument list.
Steve Naroff08d51392007-09-10 22:17:00 +0000333 else if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 // If this is something like 'float(int, void)', reject it. 'void'
335 // is an incomplete type (C99 6.2.5p19) and function decls cannot
336 // have arguments of incomplete type.
337 if (FTI.NumArgs != 1 || FTI.isVariadic) {
338 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +0000339 ArgTy = Context.IntTy;
Chris Lattner78c75fb2007-07-21 05:30:18 +0000340 FTI.ArgInfo[i].TypeInfo = ArgTy.getAsOpaquePtr();
Chris Lattner2ff54262007-07-21 05:18:12 +0000341 } else if (FTI.ArgInfo[i].Ident) {
342 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000343 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +0000344 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +0000345 ArgTy = Context.IntTy;
Chris Lattner78c75fb2007-07-21 05:30:18 +0000346 FTI.ArgInfo[i].TypeInfo = ArgTy.getAsOpaquePtr();
Chris Lattner2ff54262007-07-21 05:18:12 +0000347 } else {
348 // Reject, but continue to parse 'float(const void)'.
Chris Lattnerf46699c2008-02-20 20:55:12 +0000349 if (ArgTy.getCVRQualifiers())
Chris Lattner2ff54262007-07-21 05:18:12 +0000350 Diag(DeclType.Loc, diag::err_void_param_qualified);
351
352 // Do not add 'void' to the ArgTys list.
353 break;
354 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000355 }
356
357 ArgTys.push_back(ArgTy);
358 }
359 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
360 FTI.isVariadic);
361 }
362 break;
363 }
364 }
365
366 return T;
367}
368
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000369/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
Fariborz Jahanian360300c2007-11-09 22:27:59 +0000370/// declarator
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000371QualType Sema::ObjCGetTypeForMethodDefinition(DeclTy *D) {
372 ObjCMethodDecl *MDecl = dyn_cast<ObjCMethodDecl>(static_cast<Decl *>(D));
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000373 QualType T = MDecl->getResultType();
374 llvm::SmallVector<QualType, 16> ArgTys;
375
Fariborz Jahanian35600022007-11-09 17:18:29 +0000376 // Add the first two invisible argument types for self and _cmd.
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +0000377 if (MDecl->isInstance()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000378 QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +0000379 selfTy = Context.getPointerType(selfTy);
380 ArgTys.push_back(selfTy);
381 }
Fariborz Jahanian35600022007-11-09 17:18:29 +0000382 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000383 ArgTys.push_back(Context.getObjCIdType());
384 ArgTys.push_back(Context.getObjCSelType());
Fariborz Jahanian35600022007-11-09 17:18:29 +0000385
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000386 for (int i = 0; i < MDecl->getNumParams(); i++) {
387 ParmVarDecl *PDecl = MDecl->getParamDecl(i);
388 QualType ArgTy = PDecl->getType();
389 assert(!ArgTy.isNull() && "Couldn't parse type?");
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000390 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
391 // This matches the conversion that is done in
Steve Naroff66499922007-11-12 03:44:46 +0000392 // Sema::ParseParamDeclarator().
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000393 if (const ArrayType *AT = ArgTy->getAsArrayType())
394 ArgTy = Context.getPointerType(AT->getElementType());
395 else if (ArgTy->isFunctionType())
396 ArgTy = Context.getPointerType(ArgTy);
397 ArgTys.push_back(ArgTy);
398 }
399 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
Steve Naroffb99a4a32007-12-18 03:41:15 +0000400 MDecl->isVariadic());
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000401 return T;
402}
403
Steve Naroff08d92e42007-09-15 18:49:24 +0000404Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000405 // C99 6.7.6: Type names have no identifier. This is already validated by
406 // the parser.
407 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
408
409 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000410
411 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000412
Steve Naroff5912a352007-08-28 20:14:24 +0000413 // In this context, we *do not* check D.getInvalidType(). If the declarator
414 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
415 // though it will not reflect the user specified type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 return T.getAsOpaquePtr();
417}
418
Steve Naroffe1223f72007-08-28 03:03:08 +0000419// Called from Parser::ParseParenDeclarator().
Steve Naroff08d92e42007-09-15 18:49:24 +0000420Sema::TypeResult Sema::ActOnParamDeclaratorType(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000421 // Note: parameters have identifiers, but we don't care about them here, we
422 // just want the type converted.
423 QualType T = GetTypeForDeclarator(D, S);
424
Steve Naroff5912a352007-08-28 20:14:24 +0000425 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
426
427 // In this context, we *do not* check D.getInvalidType(). If the declarator
428 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
429 // though it will not reflect the user specified type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000430 return T.getAsOpaquePtr();
431}
Chris Lattner232e8822008-02-21 01:08:11 +0000432
433AttributeList *Sema::ProcessTypeAttributes(QualType &Result, AttributeList *AL){
434 // Scan through and apply attributes to this type where it makes sense. Some
435 // attributes (such as __address_space__, __vector_size__, etc) apply to the
436 // type, but others can be present in the type specifiers even though they
437 // apply to the decl. Here we apply and delete attributes that apply to the
438 // type and leave the others alone.
439 llvm::SmallVector<AttributeList *, 8> LeftOverAttrs;
440 while (AL) {
441 // Unlink this attribute from the chain, so we can process it independently.
442 AttributeList *ThisAttr = AL;
443 AL = AL->getNext();
444 ThisAttr->setNext(0);
445
446 // If this is an attribute we can handle, do so now, otherwise, add it to
447 // the LeftOverAttrs list for rechaining.
448 switch (ThisAttr->getKind()) {
449 default: break;
450 case AttributeList::AT_address_space:
451 Result = HandleAddressSpaceTypeAttribute(Result, ThisAttr);
452 delete ThisAttr; // Consume the attribute.
453 continue;
454 }
455
456 LeftOverAttrs.push_back(ThisAttr);
457 }
458
459 // Rechain any attributes that haven't been deleted to the DeclSpec.
460 AttributeList *List = 0;
461 for (unsigned i = 0, e = LeftOverAttrs.size(); i != e; ++i) {
462 LeftOverAttrs[i]->setNext(List);
463 List = LeftOverAttrs[i];
464 }
465
466 return List;
467}
468
469/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
470/// specified type.
471QualType Sema::HandleAddressSpaceTypeAttribute(QualType Type,
472 AttributeList *Attr) {
473 // If this type is already address space qualified, reject it.
474 // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
475 // for two or more different address spaces."
476 if (Type.getAddressSpace()) {
477 Diag(Attr->getLoc(), diag::err_attribute_address_multiple_qualifiers);
478 return Type;
479 }
480
481 // Check the attribute arguments.
482 if (Attr->getNumArgs() != 1) {
483 Diag(Attr->getLoc(), diag::err_attribute_wrong_number_arguments,
484 std::string("1"));
485 return Type;
486 }
487 Expr *ASArgExpr = static_cast<Expr *>(Attr->getArg(0));
488 llvm::APSInt addrSpace(32);
489 if (!ASArgExpr->isIntegerConstantExpr(addrSpace, Context)) {
490 Diag(Attr->getLoc(), diag::err_attribute_address_space_not_int,
491 ASArgExpr->getSourceRange());
492 return Type;
493 }
494
495 unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
496 return Context.getASQualType(Type, ASIdx);
497}
498