SemaType.cpp revision 1a51b4a11b7db25cac2134249711ecaaf9d1c0a8
1//===--- SemaType.cpp - Semantic Analysis for Types -----------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// 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/DeclObjC.h"
17#include "clang/AST/Expr.h"
18#include "clang/Parse/DeclSpec.h"
19using namespace clang;
20
21/// \brief Convert the specified declspec to the appropriate type
22/// object.
23/// \param DS  the declaration specifiers
24/// \returns The type described by the declaration specifiers, or NULL
25/// if there was an error.
26QualType Sema::ConvertDeclSpecToType(const DeclSpec &DS) {
27  // FIXME: Should move the logic from DeclSpec::Finish to here for validity
28  // checking.
29  QualType Result;
30
31  switch (DS.getTypeSpecType()) {
32  default: assert(0 && "Unknown TypeSpecType!");
33  case DeclSpec::TST_void:
34    Result = Context.VoidTy;
35    break;
36  case DeclSpec::TST_char:
37    if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
38      Result = Context.CharTy;
39    else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
40      Result = Context.SignedCharTy;
41    else {
42      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
43             "Unknown TSS value");
44      Result = Context.UnsignedCharTy;
45    }
46    break;
47  case DeclSpec::TST_wchar:
48    if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
49      Result = Context.WCharTy;
50    else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
51      Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
52        << DS.getSpecifierName(DS.getTypeSpecType());
53      Result = Context.getSignedWCharType();
54    } else {
55      assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
56        "Unknown TSS value");
57      Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
58        << DS.getSpecifierName(DS.getTypeSpecType());
59      Result = Context.getUnsignedWCharType();
60    }
61    break;
62  case DeclSpec::TST_unspecified:
63    // "<proto1,proto2>" is an objc qualified ID with a missing id.
64    if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
65      Result = Context.getObjCQualifiedIdType((ObjCProtocolDecl**)PQ,
66                                              DS.getNumProtocolQualifiers());
67      break;
68    }
69
70    // Unspecified typespec defaults to int in C90.  However, the C90 grammar
71    // [C90 6.5] only allows a decl-spec if there was *some* type-specifier,
72    // type-qualifier, or storage-class-specifier.  If not, emit an extwarn.
73    // Note that the one exception to this is function definitions, which are
74    // allowed to be completely missing a declspec.  This is handled in the
75    // parser already though by it pretending to have seen an 'int' in this
76    // case.
77    if (getLangOptions().ImplicitInt) {
78      if ((DS.getParsedSpecifiers() & (DeclSpec::PQ_StorageClassSpecifier |
79                                       DeclSpec::PQ_TypeSpecifier |
80                                       DeclSpec::PQ_TypeQualifier)) == 0)
81        Diag(DS.getSourceRange().getBegin(), diag::ext_missing_declspec);
82    } else {
83      // C99 and C++ require a type specifier.  For example, C99 6.7.2p2 says:
84      // "At least one type specifier shall be given in the declaration
85      // specifiers in each declaration, and in the specifier-qualifier list in
86      // each struct declaration and type name."
87      // FIXME: this should be a hard error in C++
88      if (!DS.hasTypeSpecifier())
89        Diag(DS.getSourceRange().getBegin(), diag::ext_missing_type_specifier);
90    }
91
92    // FALL THROUGH.
93  case DeclSpec::TST_int: {
94    if (DS.getTypeSpecSign() != DeclSpec::TSS_unsigned) {
95      switch (DS.getTypeSpecWidth()) {
96      case DeclSpec::TSW_unspecified: Result = Context.IntTy; break;
97      case DeclSpec::TSW_short:       Result = Context.ShortTy; break;
98      case DeclSpec::TSW_long:        Result = Context.LongTy; break;
99      case DeclSpec::TSW_longlong:    Result = Context.LongLongTy; break;
100      }
101    } else {
102      switch (DS.getTypeSpecWidth()) {
103      case DeclSpec::TSW_unspecified: Result = Context.UnsignedIntTy; break;
104      case DeclSpec::TSW_short:       Result = Context.UnsignedShortTy; break;
105      case DeclSpec::TSW_long:        Result = Context.UnsignedLongTy; break;
106      case DeclSpec::TSW_longlong:    Result =Context.UnsignedLongLongTy; break;
107      }
108    }
109    break;
110  }
111  case DeclSpec::TST_float: Result = Context.FloatTy; break;
112  case DeclSpec::TST_double:
113    if (DS.getTypeSpecWidth() == DeclSpec::TSW_long)
114      Result = Context.LongDoubleTy;
115    else
116      Result = Context.DoubleTy;
117    break;
118  case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool
119  case DeclSpec::TST_decimal32:    // _Decimal32
120  case DeclSpec::TST_decimal64:    // _Decimal64
121  case DeclSpec::TST_decimal128:   // _Decimal128
122    assert(0 && "FIXME: GNU decimal extensions not supported yet!");
123  case DeclSpec::TST_class:
124  case DeclSpec::TST_enum:
125  case DeclSpec::TST_union:
126  case DeclSpec::TST_struct: {
127    Decl *D = static_cast<Decl *>(DS.getTypeRep());
128    assert(D && "Didn't get a decl for a class/enum/union/struct?");
129    assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
130           DS.getTypeSpecSign() == 0 &&
131           "Can't handle qualifiers on typedef names yet!");
132    // TypeQuals handled by caller.
133    Result = Context.getTypeDeclType(cast<TypeDecl>(D));
134    break;
135  }
136  case DeclSpec::TST_typename: {
137    assert(DS.getTypeSpecWidth() == 0 && DS.getTypeSpecComplex() == 0 &&
138           DS.getTypeSpecSign() == 0 &&
139           "Can't handle qualifiers on typedef names yet!");
140    Result = QualType::getFromOpaquePtr(DS.getTypeRep());
141
142    if (DeclSpec::ProtocolQualifierListTy PQ = DS.getProtocolQualifiers()) {
143      // FIXME: Adding a TST_objcInterface clause doesn't seem ideal, so
144      // we have this "hack" for now...
145      if (const ObjCInterfaceType *Interface = Result->getAsObjCInterfaceType())
146        Result = Context.getObjCQualifiedInterfaceType(Interface->getDecl(),
147                                                       (ObjCProtocolDecl**)PQ,
148                                               DS.getNumProtocolQualifiers());
149      else if (Result == Context.getObjCIdType())
150        // id<protocol-list>
151        Result = Context.getObjCQualifiedIdType((ObjCProtocolDecl**)PQ,
152                                                DS.getNumProtocolQualifiers());
153    }
154    // TypeQuals handled by caller.
155    break;
156  }
157  case DeclSpec::TST_typeofType:
158    Result = QualType::getFromOpaquePtr(DS.getTypeRep());
159    assert(!Result.isNull() && "Didn't get a type for typeof?");
160    // TypeQuals handled by caller.
161    Result = Context.getTypeOfType(Result);
162    break;
163  case DeclSpec::TST_typeofExpr: {
164    Expr *E = static_cast<Expr *>(DS.getTypeRep());
165    assert(E && "Didn't get an expression for typeof?");
166    // TypeQuals handled by caller.
167    Result = Context.getTypeOfExpr(E);
168    break;
169  }
170  }
171
172  // Handle complex types.
173  if (DS.getTypeSpecComplex() == DeclSpec::TSC_complex)
174    Result = Context.getComplexType(Result);
175
176  assert(DS.getTypeSpecComplex() != DeclSpec::TSC_imaginary &&
177         "FIXME: imaginary types not supported yet!");
178
179  // See if there are any attributes on the declspec that apply to the type (as
180  // opposed to the decl).
181  if (const AttributeList *AL = DS.getAttributes())
182    ProcessTypeAttributeList(Result, AL);
183
184  // Apply const/volatile/restrict qualifiers to T.
185  if (unsigned TypeQuals = DS.getTypeQualifiers()) {
186
187    // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
188    // or incomplete types shall not be restrict-qualified."  C++ also allows
189    // restrict-qualified references.
190    if (TypeQuals & QualType::Restrict) {
191      if (const PointerLikeType *PT = Result->getAsPointerLikeType()) {
192        QualType EltTy = PT->getPointeeType();
193
194        // If we have a pointer or reference, the pointee must have an object or
195        // incomplete type.
196        if (!EltTy->isIncompleteOrObjectType()) {
197          Diag(DS.getRestrictSpecLoc(),
198               diag::err_typecheck_invalid_restrict_invalid_pointee)
199            << EltTy << DS.getSourceRange();
200          TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
201        }
202      } else {
203        Diag(DS.getRestrictSpecLoc(),
204             diag::err_typecheck_invalid_restrict_not_pointer)
205          << Result << DS.getSourceRange();
206        TypeQuals &= ~QualType::Restrict; // Remove the restrict qualifier.
207      }
208    }
209
210    // Warn about CV qualifiers on functions: C99 6.7.3p8: "If the specification
211    // of a function type includes any type qualifiers, the behavior is
212    // undefined."
213    if (Result->isFunctionType() && TypeQuals) {
214      // Get some location to point at, either the C or V location.
215      SourceLocation Loc;
216      if (TypeQuals & QualType::Const)
217        Loc = DS.getConstSpecLoc();
218      else {
219        assert((TypeQuals & QualType::Volatile) &&
220               "Has CV quals but not C or V?");
221        Loc = DS.getVolatileSpecLoc();
222      }
223      Diag(Loc, diag::warn_typecheck_function_qualifiers)
224        << Result << DS.getSourceRange();
225    }
226
227    // C++ [dcl.ref]p1:
228    //   Cv-qualified references are ill-formed except when the
229    //   cv-qualifiers are introduced through the use of a typedef
230    //   (7.1.3) or of a template type argument (14.3), in which
231    //   case the cv-qualifiers are ignored.
232    // FIXME: Shouldn't we be checking SCS_typedef here?
233    if (DS.getTypeSpecType() == DeclSpec::TST_typename &&
234        TypeQuals && Result->isReferenceType()) {
235      TypeQuals &= ~QualType::Const;
236      TypeQuals &= ~QualType::Volatile;
237    }
238
239    Result = Result.getQualifiedType(TypeQuals);
240  }
241  return Result;
242}
243
244/// GetTypeForDeclarator - Convert the type for the specified
245/// declarator to Type instances. Skip the outermost Skip type
246/// objects.
247QualType Sema::GetTypeForDeclarator(Declarator &D, Scope *S, unsigned Skip) {
248  bool OmittedReturnType = false;
249
250  if (D.getContext() == Declarator::BlockLiteralContext
251      && Skip == 0
252      && !D.getDeclSpec().hasTypeSpecifier()
253      && (D.getNumTypeObjects() == 0
254          || (D.getNumTypeObjects() == 1
255              && D.getTypeObject(0).Kind == DeclaratorChunk::Function)))
256    OmittedReturnType = true;
257
258  // long long is a C99 feature.
259  if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
260      D.getDeclSpec().getTypeSpecWidth() == DeclSpec::TSW_longlong)
261    Diag(D.getDeclSpec().getTypeSpecWidthLoc(), diag::ext_longlong);
262
263  // Determine the type of the declarator. Not all forms of declarator
264  // have a type.
265  QualType T;
266  switch (D.getKind()) {
267  case Declarator::DK_Abstract:
268  case Declarator::DK_Normal:
269  case Declarator::DK_Operator: {
270    const DeclSpec& DS = D.getDeclSpec();
271    if (OmittedReturnType)
272      // We default to a dependent type initially.  Can be modified by
273      // the first return statement.
274      T = Context.DependentTy;
275    else
276      T = ConvertDeclSpecToType(DS);
277    break;
278  }
279
280  case Declarator::DK_Constructor:
281  case Declarator::DK_Destructor:
282  case Declarator::DK_Conversion:
283    // Constructors and destructors don't have return types. Use
284    // "void" instead. Conversion operators will check their return
285    // types separately.
286    T = Context.VoidTy;
287    break;
288  }
289
290  // Walk the DeclTypeInfo, building the recursive type as we go.
291  // DeclTypeInfos are ordered from the identifier out, which is
292  // opposite of what we want :).
293  for (unsigned i = Skip, e = D.getNumTypeObjects(); i != e; ++i) {
294    DeclaratorChunk &DeclType = D.getTypeObject(e-i-1+Skip);
295    switch (DeclType.Kind) {
296    default: assert(0 && "Unknown decltype!");
297    case DeclaratorChunk::BlockPointer:
298      if (DeclType.Cls.TypeQuals)
299        Diag(D.getIdentifierLoc(), diag::err_qualified_block_pointer_type);
300      if (!T.getTypePtr()->isFunctionType())
301        Diag(D.getIdentifierLoc(), diag::err_nonfunction_block_type);
302      else
303        T = Context.getBlockPointerType(T);
304      break;
305    case DeclaratorChunk::Pointer:
306      if (T->isReferenceType()) {
307        // C++ 8.3.2p4: There shall be no ... pointers to references ...
308        Diag(DeclType.Loc, diag::err_illegal_decl_pointer_to_reference)
309         << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
310        D.setInvalidType(true);
311        T = Context.IntTy;
312      }
313
314      // Enforce C99 6.7.3p2: "Types other than pointer types derived from
315      // object or incomplete types shall not be restrict-qualified."
316      if ((DeclType.Ptr.TypeQuals & QualType::Restrict) &&
317          !T->isIncompleteOrObjectType()) {
318        Diag(DeclType.Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
319          << T;
320        DeclType.Ptr.TypeQuals &= ~QualType::Restrict;
321      }
322
323      // Apply the pointer typequals to the pointer object.
324      T = Context.getPointerType(T).getQualifiedType(DeclType.Ptr.TypeQuals);
325      break;
326    case DeclaratorChunk::Reference: {
327      // Whether we should suppress the creation of the reference.
328      bool SuppressReference = false;
329      if (T->isReferenceType()) {
330        // C++ [dcl.ref]p4: There shall be no references to references.
331        //
332        // According to C++ DR 106, references to references are only
333        // diagnosed when they are written directly (e.g., "int & &"),
334        // but not when they happen via a typedef:
335        //
336        //   typedef int& intref;
337        //   typedef intref& intref2;
338        //
339        // Parser::ParserDeclaratorInternal diagnoses the case where
340        // references are written directly; here, we handle the
341        // collapsing of references-to-references as described in C++
342        // DR 106 and amended by C++ DR 540.
343        SuppressReference = true;
344      }
345
346      // C++ [dcl.ref]p1:
347      //   A declarator that specifies the type “reference to cv void”
348      //   is ill-formed.
349      if (T->isVoidType()) {
350        Diag(DeclType.Loc, diag::err_reference_to_void);
351        D.setInvalidType(true);
352        T = Context.IntTy;
353      }
354
355      // Enforce C99 6.7.3p2: "Types other than pointer types derived from
356      // object or incomplete types shall not be restrict-qualified."
357      if (DeclType.Ref.HasRestrict &&
358          !T->isIncompleteOrObjectType()) {
359        Diag(DeclType.Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
360          << T;
361        DeclType.Ref.HasRestrict = false;
362      }
363
364      if (!SuppressReference)
365        T = Context.getReferenceType(T);
366
367      // Handle restrict on references.
368      if (DeclType.Ref.HasRestrict)
369        T.addRestrict();
370      break;
371    }
372    case DeclaratorChunk::Array: {
373      DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr;
374      Expr *ArraySize = static_cast<Expr*>(ATI.NumElts);
375      ArrayType::ArraySizeModifier ASM;
376      if (ATI.isStar)
377        ASM = ArrayType::Star;
378      else if (ATI.hasStatic)
379        ASM = ArrayType::Static;
380      else
381        ASM = ArrayType::Normal;
382
383      // C99 6.7.5.2p1: If the element type is an incomplete or function type,
384      // reject it (e.g. void ary[7], struct foo ary[7], void ary[7]())
385      if (DiagnoseIncompleteType(D.getIdentifierLoc(), T,
386                                 diag::err_illegal_decl_array_incomplete_type)) {
387        T = Context.IntTy;
388        D.setInvalidType(true);
389      } else if (T->isFunctionType()) {
390        Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_functions)
391          << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
392        T = Context.getPointerType(T);
393        D.setInvalidType(true);
394      } else if (const ReferenceType *RT = T->getAsReferenceType()) {
395        // C++ 8.3.2p4: There shall be no ... arrays of references ...
396        Diag(D.getIdentifierLoc(), diag::err_illegal_decl_array_of_references)
397          << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
398        T = RT->getPointeeType();
399        D.setInvalidType(true);
400      } else if (const RecordType *EltTy = T->getAsRecordType()) {
401        // If the element type is a struct or union that contains a variadic
402        // array, reject it: C99 6.7.2.1p2.
403        if (EltTy->getDecl()->hasFlexibleArrayMember()) {
404          Diag(DeclType.Loc, diag::err_flexible_array_in_array) << T;
405          T = Context.IntTy;
406          D.setInvalidType(true);
407        }
408      } else if (T->isObjCInterfaceType()) {
409        Diag(DeclType.Loc, diag::warn_objc_array_of_interfaces) << T;
410      }
411
412      // C99 6.7.5.2p1: The size expression shall have integer type.
413      if (ArraySize && !ArraySize->getType()->isIntegerType()) {
414        Diag(ArraySize->getLocStart(), diag::err_array_size_non_int)
415          << ArraySize->getType() << ArraySize->getSourceRange();
416        D.setInvalidType(true);
417        ArraySize->Destroy(Context);
418        ATI.NumElts = ArraySize = 0;
419      }
420      llvm::APSInt ConstVal(32);
421      if (!ArraySize) {
422        T = Context.getIncompleteArrayType(T, ASM, ATI.TypeQuals);
423      } else if (ArraySize->isValueDependent()) {
424        T = Context.getDependentSizedArrayType(T, ArraySize, ASM, ATI.TypeQuals);
425      } else if (!ArraySize->isIntegerConstantExpr(ConstVal, Context) ||
426                 !T->isConstantSizeType()) {
427        // Per C99, a variable array is an array with either a non-constant
428        // size or an element type that has a non-constant-size
429        T = Context.getVariableArrayType(T, ArraySize, ASM, ATI.TypeQuals);
430      } else {
431        // C99 6.7.5.2p1: If the expression is a constant expression, it shall
432        // have a value greater than zero.
433        if (ConstVal.isSigned()) {
434          if (ConstVal.isNegative()) {
435            Diag(ArraySize->getLocStart(),
436                 diag::err_typecheck_negative_array_size)
437              << ArraySize->getSourceRange();
438            D.setInvalidType(true);
439          } else if (ConstVal == 0) {
440            // GCC accepts zero sized static arrays.
441            Diag(ArraySize->getLocStart(), diag::ext_typecheck_zero_array_size)
442              << ArraySize->getSourceRange();
443          }
444        }
445        T = Context.getConstantArrayType(T, ConstVal, ASM, ATI.TypeQuals);
446      }
447      // If this is not C99, extwarn about VLA's and C99 array size modifiers.
448      if (!getLangOptions().C99) {
449        if (ArraySize && !ArraySize->isValueDependent() &&
450            !ArraySize->isIntegerConstantExpr(Context))
451          Diag(D.getIdentifierLoc(), diag::ext_vla);
452        else if (ASM != ArrayType::Normal || ATI.TypeQuals != 0)
453          Diag(D.getIdentifierLoc(), diag::ext_c99_array_usage);
454      }
455      break;
456    }
457    case DeclaratorChunk::Function: {
458      // If the function declarator has a prototype (i.e. it is not () and
459      // does not have a K&R-style identifier list), then the arguments are part
460      // of the type, otherwise the argument list is ().
461      const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
462
463      // C99 6.7.5.3p1: The return type may not be a function or array type.
464      if (T->isArrayType() || T->isFunctionType()) {
465        Diag(DeclType.Loc, diag::err_func_returning_array_function) << T;
466        T = Context.IntTy;
467        D.setInvalidType(true);
468      }
469
470      if (FTI.NumArgs == 0) {
471        if (getLangOptions().CPlusPlus) {
472          // C++ 8.3.5p2: If the parameter-declaration-clause is empty, the
473          // function takes no arguments.
474          T = Context.getFunctionType(T, NULL, 0, FTI.isVariadic,FTI.TypeQuals);
475        } else {
476          // Simple void foo(), where the incoming T is the result type.
477          T = Context.getFunctionTypeNoProto(T);
478        }
479      } else if (FTI.ArgInfo[0].Param == 0) {
480        // C99 6.7.5.3p3: Reject int(x,y,z) when it's not a function definition.
481        Diag(FTI.ArgInfo[0].IdentLoc, diag::err_ident_list_in_fn_declaration);
482      } else {
483        // Otherwise, we have a function with an argument list that is
484        // potentially variadic.
485        llvm::SmallVector<QualType, 16> ArgTys;
486
487        for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
488          ParmVarDecl *Param = (ParmVarDecl *)FTI.ArgInfo[i].Param;
489          QualType ArgTy = Param->getType();
490          assert(!ArgTy.isNull() && "Couldn't parse type?");
491          //
492          // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
493          // This matches the conversion that is done in
494          // Sema::ActOnParamDeclarator(). Without this conversion, the
495          // argument type in the function prototype *will not* match the
496          // type in ParmVarDecl (which makes the code generator unhappy).
497          //
498          // FIXME: We still apparently need the conversion in
499          // Sema::ActOnParamDeclarator(). This doesn't make any sense, since
500          // it should be driving off the type being created here.
501          //
502          // FIXME: If a source translation tool needs to see the original type,
503          // then we need to consider storing both types somewhere...
504          //
505          if (ArgTy->isArrayType()) {
506            ArgTy = Context.getArrayDecayedType(ArgTy);
507          } else if (ArgTy->isFunctionType())
508            ArgTy = Context.getPointerType(ArgTy);
509
510          // Look for 'void'.  void is allowed only as a single argument to a
511          // function with no other parameters (C99 6.7.5.3p10).  We record
512          // int(void) as a FunctionTypeProto with an empty argument list.
513          else if (ArgTy->isVoidType()) {
514            // If this is something like 'float(int, void)', reject it.  'void'
515            // is an incomplete type (C99 6.2.5p19) and function decls cannot
516            // have arguments of incomplete type.
517            if (FTI.NumArgs != 1 || FTI.isVariadic) {
518              Diag(DeclType.Loc, diag::err_void_only_param);
519              ArgTy = Context.IntTy;
520              Param->setType(ArgTy);
521            } else if (FTI.ArgInfo[i].Ident) {
522              // Reject, but continue to parse 'int(void abc)'.
523              Diag(FTI.ArgInfo[i].IdentLoc,
524                   diag::err_param_with_void_type);
525              ArgTy = Context.IntTy;
526              Param->setType(ArgTy);
527            } else {
528              // Reject, but continue to parse 'float(const void)'.
529              if (ArgTy.getCVRQualifiers())
530                Diag(DeclType.Loc, diag::err_void_param_qualified);
531
532              // Do not add 'void' to the ArgTys list.
533              break;
534            }
535          } else if (!FTI.hasPrototype) {
536            if (ArgTy->isPromotableIntegerType()) {
537              ArgTy = Context.IntTy;
538            } else if (const BuiltinType* BTy = ArgTy->getAsBuiltinType()) {
539              if (BTy->getKind() == BuiltinType::Float)
540                ArgTy = Context.DoubleTy;
541            }
542          }
543
544          ArgTys.push_back(ArgTy);
545        }
546        T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
547                                    FTI.isVariadic, FTI.TypeQuals);
548      }
549      break;
550    }
551    case DeclaratorChunk::MemberPointer:
552      // The scope spec must refer to a class, or be dependent.
553      DeclContext *DC = static_cast<DeclContext*>(
554        DeclType.Mem.Scope().getScopeRep());
555      QualType ClsType;
556      // FIXME: Extend for dependent types when it's actually supported.
557      // See ActOnCXXNestedNameSpecifier.
558      if (CXXRecordDecl *RD = dyn_cast_or_null<CXXRecordDecl>(DC)) {
559        ClsType = Context.getTagDeclType(RD);
560      } else {
561        if (DC) {
562          Diag(DeclType.Mem.Scope().getBeginLoc(),
563               diag::err_illegal_decl_mempointer_in_nonclass)
564            << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name")
565            << DeclType.Mem.Scope().getRange();
566        }
567        D.setInvalidType(true);
568        ClsType = Context.IntTy;
569      }
570
571      // C++ 8.3.3p3: A pointer to member shall not pointer to ... a member
572      //   with reference type, or "cv void."
573      if (T->isReferenceType()) {
574        Diag(DeclType.Loc, diag::err_illegal_decl_pointer_to_reference)
575          << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
576        D.setInvalidType(true);
577        T = Context.IntTy;
578      }
579      if (T->isVoidType()) {
580        Diag(DeclType.Loc, diag::err_illegal_decl_mempointer_to_void)
581          << (D.getIdentifier() ? D.getIdentifier()->getName() : "type name");
582        T = Context.IntTy;
583      }
584
585      // Enforce C99 6.7.3p2: "Types other than pointer types derived from
586      // object or incomplete types shall not be restrict-qualified."
587      if ((DeclType.Mem.TypeQuals & QualType::Restrict) &&
588          !T->isIncompleteOrObjectType()) {
589        Diag(DeclType.Loc, diag::err_typecheck_invalid_restrict_invalid_pointee)
590          << T;
591        DeclType.Mem.TypeQuals &= ~QualType::Restrict;
592      }
593
594      T = Context.getMemberPointerType(T, ClsType.getTypePtr()).
595                    getQualifiedType(DeclType.Mem.TypeQuals);
596
597      break;
598    }
599
600    // See if there are any attributes on this declarator chunk.
601    if (const AttributeList *AL = DeclType.getAttrs())
602      ProcessTypeAttributeList(T, AL);
603  }
604
605  if (getLangOptions().CPlusPlus && T->isFunctionType()) {
606    const FunctionTypeProto *FnTy = T->getAsFunctionTypeProto();
607    assert(FnTy && "Why oh why is there not a FunctionTypeProto here ?");
608
609    // C++ 8.3.5p4: A cv-qualifier-seq shall only be part of the function type
610    // for a nonstatic member function, the function type to which a pointer
611    // to member refers, or the top-level function type of a function typedef
612    // declaration.
613    if (FnTy->getTypeQuals() != 0 &&
614        D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
615        ((D.getContext() != Declarator::MemberContext &&
616          (!D.getCXXScopeSpec().isSet() ||
617           !static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep())
618              ->isRecord())) ||
619         D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static)) {
620      if (D.isFunctionDeclarator())
621        Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_function_type);
622      else
623        Diag(D.getIdentifierLoc(),
624             diag::err_invalid_qualified_typedef_function_type_use);
625
626      // Strip the cv-quals from the type.
627      T = Context.getFunctionType(FnTy->getResultType(), FnTy->arg_type_begin(),
628                                  FnTy->getNumArgs(), FnTy->isVariadic(), 0);
629    }
630  }
631
632  // If there were any type attributes applied to the decl itself (not the
633  // type, apply the type attribute to the type!)
634  if (const AttributeList *Attrs = D.getAttributes())
635    ProcessTypeAttributeList(T, Attrs);
636
637  return T;
638}
639
640/// ObjCGetTypeForMethodDefinition - Builds the type for a method definition
641/// declarator
642QualType Sema::ObjCGetTypeForMethodDefinition(DeclTy *D) {
643  ObjCMethodDecl *MDecl = dyn_cast<ObjCMethodDecl>(static_cast<Decl *>(D));
644  QualType T = MDecl->getResultType();
645  llvm::SmallVector<QualType, 16> ArgTys;
646
647  // Add the first two invisible argument types for self and _cmd.
648  if (MDecl->isInstanceMethod()) {
649    QualType selfTy = Context.getObjCInterfaceType(MDecl->getClassInterface());
650    selfTy = Context.getPointerType(selfTy);
651    ArgTys.push_back(selfTy);
652  }
653  else
654    ArgTys.push_back(Context.getObjCIdType());
655  ArgTys.push_back(Context.getObjCSelType());
656
657  for (int i = 0, e = MDecl->getNumParams(); i != e; ++i) {
658    ParmVarDecl *PDecl = MDecl->getParamDecl(i);
659    QualType ArgTy = PDecl->getType();
660    assert(!ArgTy.isNull() && "Couldn't parse type?");
661    // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
662    // This matches the conversion that is done in
663    // Sema::ActOnParamDeclarator().
664    if (ArgTy->isArrayType())
665      ArgTy = Context.getArrayDecayedType(ArgTy);
666    else if (ArgTy->isFunctionType())
667      ArgTy = Context.getPointerType(ArgTy);
668    ArgTys.push_back(ArgTy);
669  }
670  T = Context.getFunctionType(T, &ArgTys[0], ArgTys.size(),
671                              MDecl->isVariadic(), 0);
672  return T;
673}
674
675/// UnwrapSimilarPointerTypes - If T1 and T2 are pointer types  that
676/// may be similar (C++ 4.4), replaces T1 and T2 with the type that
677/// they point to and return true. If T1 and T2 aren't pointer types
678/// or pointer-to-member types, or if they are not similar at this
679/// level, returns false and leaves T1 and T2 unchanged. Top-level
680/// qualifiers on T1 and T2 are ignored. This function will typically
681/// be called in a loop that successively "unwraps" pointer and
682/// pointer-to-member types to compare them at each level.
683bool Sema::UnwrapSimilarPointerTypes(QualType& T1, QualType& T2)
684{
685  const PointerType *T1PtrType = T1->getAsPointerType(),
686                    *T2PtrType = T2->getAsPointerType();
687  if (T1PtrType && T2PtrType) {
688    T1 = T1PtrType->getPointeeType();
689    T2 = T2PtrType->getPointeeType();
690    return true;
691  }
692
693  const MemberPointerType *T1MPType = T1->getAsMemberPointerType(),
694                          *T2MPType = T2->getAsMemberPointerType();
695  if (T1MPType && T2MPType &&
696      Context.getCanonicalType(T1MPType->getClass()) ==
697      Context.getCanonicalType(T2MPType->getClass())) {
698    T1 = T1MPType->getPointeeType();
699    T2 = T2MPType->getPointeeType();
700    return true;
701  }
702  return false;
703}
704
705Sema::TypeResult Sema::ActOnTypeName(Scope *S, Declarator &D) {
706  // C99 6.7.6: Type names have no identifier.  This is already validated by
707  // the parser.
708  assert(D.getIdentifier() == 0 && "Type name should have no identifier!");
709
710  QualType T = GetTypeForDeclarator(D, S);
711
712  assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
713
714  // Check that there are no default arguments (C++ only).
715  if (getLangOptions().CPlusPlus)
716    CheckExtraCXXDefaultArguments(D);
717
718  // In this context, we *do not* check D.getInvalidType(). If the declarator
719  // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
720  // though it will not reflect the user specified type.
721  return T.getAsOpaquePtr();
722}
723
724
725
726//===----------------------------------------------------------------------===//
727// Type Attribute Processing
728//===----------------------------------------------------------------------===//
729
730/// HandleAddressSpaceTypeAttribute - Process an address_space attribute on the
731/// specified type.  The attribute contains 1 argument, the id of the address
732/// space for the type.
733static void HandleAddressSpaceTypeAttribute(QualType &Type,
734                                            const AttributeList &Attr, Sema &S){
735  // If this type is already address space qualified, reject it.
736  // Clause 6.7.3 - Type qualifiers: "No type shall be qualified by qualifiers
737  // for two or more different address spaces."
738  if (Type.getAddressSpace()) {
739    S.Diag(Attr.getLoc(), diag::err_attribute_address_multiple_qualifiers);
740    return;
741  }
742
743  // Check the attribute arguments.
744  if (Attr.getNumArgs() != 1) {
745    S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
746    return;
747  }
748  Expr *ASArgExpr = static_cast<Expr *>(Attr.getArg(0));
749  llvm::APSInt addrSpace(32);
750  if (!ASArgExpr->isIntegerConstantExpr(addrSpace, S.Context)) {
751    S.Diag(Attr.getLoc(), diag::err_attribute_address_space_not_int)
752      << ASArgExpr->getSourceRange();
753    return;
754  }
755
756  unsigned ASIdx = static_cast<unsigned>(addrSpace.getZExtValue());
757  Type = S.Context.getASQualType(Type, ASIdx);
758}
759
760void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) {
761  // Scan through and apply attributes to this type where it makes sense.  Some
762  // attributes (such as __address_space__, __vector_size__, etc) apply to the
763  // type, but others can be present in the type specifiers even though they
764  // apply to the decl.  Here we apply type attributes and ignore the rest.
765  for (; AL; AL = AL->getNext()) {
766    // If this is an attribute we can handle, do so now, otherwise, add it to
767    // the LeftOverAttrs list for rechaining.
768    switch (AL->getKind()) {
769    default: break;
770    case AttributeList::AT_address_space:
771      HandleAddressSpaceTypeAttribute(Result, *AL, *this);
772      break;
773    }
774  }
775}
776
777/// @brief If the type T is incomplete and cannot be completed,
778/// produce a suitable diagnostic.
779///
780/// This routine checks whether the type @p T is complete in any
781/// context where a complete type is required. If @p T is a complete
782/// type, returns false. If @p T is incomplete, issues the diagnostic
783/// @p diag (giving it the type @p T) and returns true.
784///
785/// @param Loc  The location in the source that the incomplete type
786/// diagnostic should refer to.
787///
788/// @param T  The type that this routine is examining for completeness.
789///
790/// @param diag The diagnostic value (e.g.,
791/// @c diag::err_typecheck_decl_incomplete_type) that will be used
792/// for the error message if @p T is incomplete.
793///
794/// @param Range1  An optional range in the source code that will be a
795/// part of the "incomplete type" error message.
796///
797/// @param Range2  An optional range in the source code that will be a
798/// part of the "incomplete type" error message.
799///
800/// @param PrintType If non-NULL, the type that should be printed
801/// instead of @p T. This parameter should be used when the type that
802/// we're checking for incompleteness isn't the type that should be
803/// displayed to the user, e.g., when T is a type and PrintType is a
804/// pointer to T.
805///
806/// @returns @c true if @p T is incomplete and a diagnostic was emitted,
807/// @c false otherwise.
808///
809/// @todo When Clang gets proper support for C++ templates, this
810/// routine will also be able perform template instantiation when @p T
811/// is a class template specialization.
812bool Sema::DiagnoseIncompleteType(SourceLocation Loc, QualType T, unsigned diag,
813                                  SourceRange Range1, SourceRange Range2,
814                                  QualType PrintType) {
815  // If we have a complete type, we're done.
816  if (!T->isIncompleteType())
817    return false;
818
819  if (PrintType.isNull())
820    PrintType = T;
821
822  // We have an incomplete type. Produce a diagnostic.
823  Diag(Loc, diag) << PrintType << Range1 << Range2;
824
825  // If the type was a forward declaration of a class/struct/union
826  // type, produce
827  const TagType *Tag = 0;
828  if (const RecordType *Record = T->getAsRecordType())
829    Tag = Record;
830  else if (const EnumType *Enum = T->getAsEnumType())
831    Tag = Enum;
832
833  if (Tag && !Tag->getDecl()->isInvalidDecl())
834    Diag(Tag->getDecl()->getLocation(),
835         Tag->isBeingDefined() ? diag::note_type_being_defined
836                               : diag::note_forward_declaration)
837        << QualType(Tag, 0);
838
839  return true;
840}
841