blob: b9592fc6c2d8fee9d0fb61cdc4e42afe81108c31 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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.
24static QualType ConvertDeclSpecToType(const DeclSpec &DS, ASTContext &Ctx) {
25 // FIXME: Should move the logic from DeclSpec::Finish to here for validity
26 // checking.
27
28 switch (DS.getTypeSpecType()) {
29 default: return QualType(); // FIXME: Handle unimp cases!
30 case DeclSpec::TST_void: return Ctx.VoidTy;
31 case DeclSpec::TST_char:
32 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
33 return Ctx.CharTy;
34 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
35 return Ctx.SignedCharTy;
36 else {
37 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
38 "Unknown TSS value");
39 return Ctx.UnsignedCharTy;
40 }
Chris Lattner7a543ad2007-07-13 21:02:29 +000041 case DeclSpec::TST_unspecified: // Unspecific typespec defaults to int.
Chris Lattner3cbc38b2007-08-21 17:02:28 +000042 case DeclSpec::TST_int: {
43 QualType Result;
Reid Spencer5f016e22007-07-11 17:01:13 +000044 if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
45 switch (DS.getTypeSpecWidth()) {
Chris Lattner3cbc38b2007-08-21 17:02:28 +000046 case DeclSpec::TSW_unspecified: Result = Ctx.IntTy; break;
47 case DeclSpec::TSW_short: Result = Ctx.ShortTy; break;
48 case DeclSpec::TSW_long: Result = Ctx.LongTy; break;
49 case DeclSpec::TSW_longlong: Result = Ctx.LongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +000050 }
51 } else {
52 switch (DS.getTypeSpecWidth()) {
Chris Lattner3cbc38b2007-08-21 17:02:28 +000053 case DeclSpec::TSW_unspecified: Result = Ctx.UnsignedIntTy; break;
54 case DeclSpec::TSW_short: Result = Ctx.UnsignedShortTy; break;
55 case DeclSpec::TSW_long: Result = Ctx.UnsignedLongTy; break;
56 case DeclSpec::TSW_longlong: Result = Ctx.UnsignedLongLongTy; break;
Reid Spencer5f016e22007-07-11 17:01:13 +000057 }
58 }
Chris Lattner3cbc38b2007-08-21 17:02:28 +000059 // Handle complex integer types.
60 if (DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified)
61 return Result;
62 assert(DS.getTypeSpecComplex() == DeclSpec::TSC_complex &&
63 "FIXME: imaginary types not supported yet!");
64 return Ctx.getComplexType(Result);
65 }
Reid Spencer5f016e22007-07-11 17:01:13 +000066 case DeclSpec::TST_float:
67 if (DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified)
68 return Ctx.FloatTy;
69 assert(DS.getTypeSpecComplex() == DeclSpec::TSC_complex &&
70 "FIXME: imaginary types not supported yet!");
Chris Lattner3cbc38b2007-08-21 17:02:28 +000071 return Ctx.getComplexType(Ctx.FloatTy);
Reid Spencer5f016e22007-07-11 17:01:13 +000072
73 case DeclSpec::TST_double: {
74 bool isLong = DS.getTypeSpecWidth() == DeclSpec::TSW_long;
Chris Lattner3cbc38b2007-08-21 17:02:28 +000075 QualType T = isLong ? Ctx.LongDoubleTy : Ctx.DoubleTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000076 if (DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified)
Chris Lattner3cbc38b2007-08-21 17:02:28 +000077 return T;
Reid Spencer5f016e22007-07-11 17:01:13 +000078 assert(DS.getTypeSpecComplex() == DeclSpec::TSC_complex &&
79 "FIXME: imaginary types not supported yet!");
Chris Lattner3cbc38b2007-08-21 17:02:28 +000080 return Ctx.getComplexType(T);
Reid Spencer5f016e22007-07-11 17:01:13 +000081 }
82 case DeclSpec::TST_bool: // _Bool or bool
83 return Ctx.BoolTy;
84 case DeclSpec::TST_decimal32: // _Decimal32
85 case DeclSpec::TST_decimal64: // _Decimal64
86 case DeclSpec::TST_decimal128: // _Decimal128
87 assert(0 && "FIXME: GNU decimal extensions not supported yet!");
88 case DeclSpec::TST_enum:
89 case DeclSpec::TST_union:
90 case DeclSpec::TST_struct: {
91 Decl *D = static_cast<Decl *>(DS.getTypeRep());
92 assert(D && "Didn't get a decl for a enum/union/struct?");
93 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
94 DS.getTypeSpecSign() == 0 &&
95 "Can't handle qualifiers on typedef names yet!");
96 // TypeQuals handled by caller.
97 return Ctx.getTagDeclType(cast<TagDecl>(D));
98 }
99 case DeclSpec::TST_typedef: {
100 Decl *D = static_cast<Decl *>(DS.getTypeRep());
101 assert(D && "Didn't get a decl for a typedef?");
102 assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
103 DS.getTypeSpecSign() == 0 &&
104 "Can't handle qualifiers on typedef names yet!");
Steve Naroff3536b442007-09-06 21:24:23 +0000105 // FIXME: Adding a TST_objcInterface clause doesn't seem ideal, so
106 // we have this "hack" for now...
Fariborz Jahanian4b6c9052007-10-11 00:55:41 +0000107 if (ObjcInterfaceDecl *ObjcIntDecl = dyn_cast<ObjcInterfaceDecl>(D)) {
108 if (DS.getProtocolQualifiers() == 0)
109 return Ctx.getObjcInterfaceType(ObjcIntDecl);
110
111 Action::DeclTy **PPDecl = &(*DS.getProtocolQualifiers())[0];
112 return Ctx.getObjcQualifiedInterfaceType(ObjcIntDecl,
113 reinterpret_cast<ObjcProtocolDecl**>(PPDecl),
114 DS.NumProtocolQualifiers());
115 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 // TypeQuals handled by caller.
117 return Ctx.getTypedefType(cast<TypedefDecl>(D));
118 }
Steve Naroffd1861fd2007-07-31 12:34:36 +0000119 case DeclSpec::TST_typeofType: {
120 QualType T = QualType::getFromOpaquePtr(DS.getTypeRep());
121 assert(!T.isNull() && "Didn't get a type for typeof?");
122 // TypeQuals handled by caller.
123 return Ctx.getTypeOfType(T);
124 }
125 case DeclSpec::TST_typeofExpr: {
126 Expr *E = static_cast<Expr *>(DS.getTypeRep());
127 assert(E && "Didn't get an expression for typeof?");
128 // TypeQuals handled by caller.
Steve Naroff8d1a3b82007-08-01 17:20:42 +0000129 return Ctx.getTypeOfExpr(E);
Steve Naroffd1861fd2007-07-31 12:34:36 +0000130 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 }
132}
133
134/// GetTypeForDeclarator - Convert the type for the specified declarator to Type
135/// instances.
136QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S) {
Chris Lattnerb23deda2007-08-28 16:40:32 +0000137 // long long is a C99 feature.
Chris Lattnerd1eb3322007-08-28 16:41:29 +0000138 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Chris Lattnerb23deda2007-08-28 16:40:32 +0000139 D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
140 Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
141
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 QualType T = ConvertDeclSpecToType(D.getDeclSpec(), Context);
Steve Naroffe1223f72007-08-28 03:03:08 +0000143
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 // Apply const/volatile/restrict qualifiers to T.
145 T = T.getQualifiedType(D.getDeclSpec().getTypeQualifiers());
146
147 // Walk the DeclTypeInfo, building the recursive type as we go. DeclTypeInfos
148 // are ordered from the identifier out, which is opposite of what we want :).
149 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
150 const DeclaratorChunk &DeclType = D.getTypeObject(e-i-1);
151 switch (DeclType.Kind) {
152 default: assert(0 && "Unknown decltype!");
153 case DeclaratorChunk::Pointer:
Chris Lattner02c642e2007-07-31 21:33:24 +0000154 if (T->isReferenceType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 // C++ 8.3.2p4: There shall be no ... pointers to references ...
156 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_pointer_to_reference,
157 D.getIdentifier()->getName());
Steve Naroffe1223f72007-08-28 03:03:08 +0000158 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000159 T = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 }
161
162 // Apply the pointer typequals to the pointer object.
163 T = Context.getPointerType(T).getQualifiedType(DeclType.Ptr.TypeQuals);
164 break;
165 case DeclaratorChunk::Reference:
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000166 if (const ReferenceType *RT = T->getAsReferenceType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 // C++ 8.3.2p4: There shall be no references to references ...
168 Diag(D.getIdentifierLoc(),
169 diag::err_illegal_decl_reference_to_reference,
170 D.getIdentifier()->getName());
Steve Naroffe1223f72007-08-28 03:03:08 +0000171 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000172 T = RT->getReferenceeType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 }
174
175 T = Context.getReferenceType(T);
176 break;
177 case DeclaratorChunk::Array: {
178 const DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
Chris Lattner94f81fd2007-08-28 16:54:00 +0000179 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 ArrayType::ArraySizeModifier ASM;
181 if (ATI.isStar)
182 ASM = ArrayType::Star;
183 else if (ATI.hasStatic)
184 ASM = ArrayType::Static;
185 else
186 ASM = ArrayType::Normal;
Chris Lattner5265af52007-07-19 00:42:40 +0000187
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 // C99 6.7.5.2p1: If the element type is an incomplete or function type,
189 // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
190 if (T->isIncompleteType()) {
191 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_incomplete_type,
192 T.getAsString());
Steve Naroffe1223f72007-08-28 03:03:08 +0000193 T = Context.IntTy;
194 D.setInvalidType(true);
Chris Lattner5265af52007-07-19 00:42:40 +0000195 } else if (T->isFunctionType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_functions,
197 D.getIdentifier()->getName());
Steve Naroffe1223f72007-08-28 03:03:08 +0000198 T = Context.getPointerType(T);
199 D.setInvalidType(true);
Chris Lattnera1d9fde2007-07-31 16:56:34 +0000200 } else if (const ReferenceType *RT = T->getAsReferenceType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000201 // C++ 8.3.2p4: There shall be no ... arrays of references ...
202 Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_references,
203 D.getIdentifier()->getName());
Steve Naroffe1223f72007-08-28 03:03:08 +0000204 T = RT->getReferenceeType();
205 D.setInvalidType(true);
Chris Lattner02c642e2007-07-31 21:33:24 +0000206 } else if (const RecordType *EltTy = T->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 // If the element type is a struct or union that contains a variadic
208 // array, reject it: C99 6.7.2.1p2.
209 if (EltTy->getDecl()->hasFlexibleArrayMember()) {
210 Diag(DeclType.Loc, diag::err_flexible_array_in_array,
211 T.getAsString());
Steve Naroffe1223f72007-08-28 03:03:08 +0000212 T = Context.IntTy;
213 D.setInvalidType(true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 }
215 }
Steve Naroff42471f82007-08-30 22:35:45 +0000216 // C99 6.7.5.2p1: The size expression shall have integer type.
217 if (ArraySize && !ArraySize->getType()->isIntegerType()) {
218 Diag(ArraySize->getLocStart(), diag::err_array_size_non_int,
219 ArraySize->getType().getAsString(), ArraySize->getSourceRange());
220 D.setInvalidType(true);
221 }
Steve Naroffc9406122007-08-30 18:10:14 +0000222 llvm::APSInt ConstVal(32);
223 // If no expression was provided, we consider it a VLA.
224 if (!ArraySize || !ArraySize->isIntegerConstantExpr(ConstVal, Context))
225 T = Context.getVariableArrayType(T, ArraySize, ASM, ATI.TypeQuals);
Steve Naroff42471f82007-08-30 22:35:45 +0000226 else {
227 // C99 6.7.5.2p1: If the expression is a constant expression, it shall
228 // have a value greater than zero.
229 if (ConstVal.isSigned()) {
230 if (ConstVal.isNegative()) {
231 Diag(ArraySize->getLocStart(),
232 diag::err_typecheck_negative_array_size,
233 ArraySize->getSourceRange());
234 D.setInvalidType(true);
235 } else if (ConstVal == 0) {
236 // GCC accepts zero sized static arrays.
237 Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size,
238 ArraySize->getSourceRange());
239 }
240 }
Steve Naroffc9406122007-08-30 18:10:14 +0000241 T = Context.getConstantArrayType(T, ConstVal, ASM, ATI.TypeQuals);
Steve Naroff42471f82007-08-30 22:35:45 +0000242 }
Chris Lattner94f81fd2007-08-28 16:54:00 +0000243 // If this is not C99, extwarn about VLA's and C99 array size modifiers.
244 if (!getLangOptions().C99 &&
245 (ASM != ArrayType::Normal ||
246 (ArraySize && !ArraySize->isIntegerConstantExpr(Context))))
247 Diag(D.getIdentifierLoc(), diag::ext_vla);
Reid Spencer5f016e22007-07-11 17:01:13 +0000248 break;
249 }
250 case DeclaratorChunk::Function:
251 // If the function declarator has a prototype (i.e. it is not () and
252 // does not have a K&R-style identifier list), then the arguments are part
253 // of the type, otherwise the argument list is ().
254 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
255 if (!FTI.hasPrototype) {
256 // Simple void foo(), where the incoming T is the result type.
257 T = Context.getFunctionTypeNoProto(T);
258
259 // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
260 if (FTI.NumArgs != 0)
261 Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
262
263 } else {
264 // Otherwise, we have a function with an argument list that is
265 // potentially variadic.
266 llvm::SmallVector<QualType, 16> ArgTys;
267
268 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
269 QualType ArgTy = QualType::getFromOpaquePtr(FTI.ArgInfo[i].TypeInfo);
Chris Lattner78c75fb2007-07-21 05:30:18 +0000270 assert(!ArgTy.isNull() && "Couldn't parse type?");
Steve Naroff08d51392007-09-10 22:17:00 +0000271 //
272 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
273 // This matches the conversion that is done in
Nate Begemanbff5f5c2007-11-13 21:49:48 +0000274 // Sema::ActOnParamDeclarator(). Without this conversion, the
Steve Naroff08d51392007-09-10 22:17:00 +0000275 // argument type in the function prototype *will not* match the
276 // type in ParmVarDecl (which makes the code generator unhappy).
277 //
278 // FIXME: We still apparently need the conversion in
279 // Sema::ParseParamDeclarator(). This doesn't make any sense, since
280 // it should be driving off the type being created here.
281 //
282 // FIXME: If a source translation tool needs to see the original type,
283 // then we need to consider storing both types somewhere...
284 //
285 if (const ArrayType *AT = ArgTy->getAsArrayType())
286 ArgTy = Context.getPointerType(AT->getElementType());
287 else if (ArgTy->isFunctionType())
288 ArgTy = Context.getPointerType(ArgTy);
Reid Spencer5f016e22007-07-11 17:01:13 +0000289 // Look for 'void'. void is allowed only as a single argument to a
290 // function with no other parameters (C99 6.7.5.3p10). We record
291 // int(void) as a FunctionTypeProto with an empty argument list.
Steve Naroff08d51392007-09-10 22:17:00 +0000292 else if (ArgTy->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 // If this is something like 'float(int, void)', reject it. 'void'
294 // is an incomplete type (C99 6.2.5p19) and function decls cannot
295 // have arguments of incomplete type.
296 if (FTI.NumArgs != 1 || FTI.isVariadic) {
297 Diag(DeclType.Loc, diag::err_void_only_param);
Chris Lattner2ff54262007-07-21 05:18:12 +0000298 ArgTy = Context.IntTy;
Chris Lattner78c75fb2007-07-21 05:30:18 +0000299 FTI.ArgInfo[i].TypeInfo = ArgTy.getAsOpaquePtr();
Chris Lattner2ff54262007-07-21 05:18:12 +0000300 } else if (FTI.ArgInfo[i].Ident) {
301 // Reject, but continue to parse 'int(void abc)'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000302 Diag(FTI.ArgInfo[i].IdentLoc,
Chris Lattner4565d4e2007-07-21 05:26:43 +0000303 diag::err_param_with_void_type);
Chris Lattner2ff54262007-07-21 05:18:12 +0000304 ArgTy = Context.IntTy;
Chris Lattner78c75fb2007-07-21 05:30:18 +0000305 FTI.ArgInfo[i].TypeInfo = ArgTy.getAsOpaquePtr();
Chris Lattner2ff54262007-07-21 05:18:12 +0000306 } else {
307 // Reject, but continue to parse 'float(const void)'.
308 if (ArgTy.getQualifiers())
309 Diag(DeclType.Loc, diag::err_void_param_qualified);
310
311 // Do not add 'void' to the ArgTys list.
312 break;
313 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000314 }
315
316 ArgTys.push_back(ArgTy);
317 }
318 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
319 FTI.isVariadic);
320 }
321 break;
322 }
323 }
324
325 return T;
326}
327
Fariborz Jahanian360300c2007-11-09 22:27:59 +0000328/// ObjcGetTypeForMethodDefinition - Builds the type for a method definition
329/// declarator
330QualType Sema::ObjcGetTypeForMethodDefinition(DeclTy *D, Scope *S) {
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000331 ObjcMethodDecl *MDecl = dyn_cast<ObjcMethodDecl>(static_cast<Decl *>(D));
332 QualType T = MDecl->getResultType();
333 llvm::SmallVector<QualType, 16> ArgTys;
334
Fariborz Jahanian35600022007-11-09 17:18:29 +0000335 // Add the first two invisible argument types for self and _cmd.
Fariborz Jahanian1f7b6f82007-11-09 19:52:12 +0000336 if (MDecl->isInstance()) {
337 QualType selfTy = Context.getObjcInterfaceType(MDecl->getClassInterface());
338 selfTy = Context.getPointerType(selfTy);
339 ArgTys.push_back(selfTy);
340 }
Fariborz Jahanian35600022007-11-09 17:18:29 +0000341 else
342 ArgTys.push_back(Context.getObjcIdType());
343 ArgTys.push_back(Context.getObjcSelType());
344
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000345 for (int i = 0; i < MDecl->getNumParams(); i++) {
346 ParmVarDecl *PDecl = MDecl->getParamDecl(i);
347 QualType ArgTy = PDecl->getType();
348 assert(!ArgTy.isNull() && "Couldn't parse type?");
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000349 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
350 // This matches the conversion that is done in
Steve Naroff66499922007-11-12 03:44:46 +0000351 // Sema::ParseParamDeclarator().
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000352 if (const ArrayType *AT = ArgTy->getAsArrayType())
353 ArgTy = Context.getPointerType(AT->getElementType());
354 else if (ArgTy->isFunctionType())
355 ArgTy = Context.getPointerType(ArgTy);
356 ArgTys.push_back(ArgTy);
357 }
358 T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
359 false);
360 return T;
361}
362
Steve Naroff08d92e42007-09-15 18:49:24 +0000363Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 // C99 6.7.6: Type names have no identifier. This is already validated by
365 // the parser.
366 assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
367
368 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000369
370 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000371
Steve Naroff5912a352007-08-28 20:14:24 +0000372 // In this context, we *do not* check D.getInvalidType(). If the declarator
373 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
374 // though it will not reflect the user specified type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 return T.getAsOpaquePtr();
376}
377
Steve Naroffe1223f72007-08-28 03:03:08 +0000378// Called from Parser::ParseParenDeclarator().
Steve Naroff08d92e42007-09-15 18:49:24 +0000379Sema::TypeResult Sema::ActOnParamDeclaratorType(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000380 // Note: parameters have identifiers, but we don't care about them here, we
381 // just want the type converted.
382 QualType T = GetTypeForDeclarator(D, S);
383
Steve Naroff5912a352007-08-28 20:14:24 +0000384 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
385
386 // In this context, we *do not* check D.getInvalidType(). If the declarator
387 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
388 // though it will not reflect the user specified type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000389 return T.getAsOpaquePtr();
390}