SemaDeclObjC.cpp revision 390b4cc8b45a05612349269ef08faab3e4688f06
1//===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===//
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 semantic analysis for Objective C declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/Sema/ExternalSemaSource.h"
16#include "clang/AST/Expr.h"
17#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclObjC.h"
19#include "clang/Parse/DeclSpec.h"
20using namespace clang;
21
22bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property,
23                                            ObjCMethodDecl *GetterMethod,
24                                            SourceLocation Loc) {
25  if (GetterMethod &&
26      GetterMethod->getResultType() != property->getType()) {
27    AssignConvertType result = Incompatible;
28    if (Context.isObjCObjectPointerType(property->getType()))
29      result = CheckAssignmentConstraints(GetterMethod->getResultType(), property->getType());
30    if (result != Compatible) {
31      Diag(Loc, diag::warn_accessor_property_type_mismatch)
32        << property->getDeclName()
33        << GetterMethod->getSelector();
34      Diag(GetterMethod->getLocation(), diag::note_declared_at);
35      return true;
36    }
37  }
38  return false;
39}
40
41/// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible
42/// and user declared, in the method definition's AST.
43void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, DeclPtrTy D) {
44  assert(getCurMethodDecl() == 0 && "Method parsing confused");
45  ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D.getAs<Decl>());
46
47  // If we don't have a valid method decl, simply return.
48  if (!MDecl)
49    return;
50
51  CurFunctionNeedsScopeChecking = false;
52
53  // Allow the rest of sema to find private method decl implementations.
54  if (MDecl->isInstanceMethod())
55    AddInstanceMethodToGlobalPool(MDecl);
56  else
57    AddFactoryMethodToGlobalPool(MDecl);
58
59  // Allow all of Sema to see that we are entering a method definition.
60  PushDeclContext(FnBodyScope, MDecl);
61
62  // Create Decl objects for each parameter, entrring them in the scope for
63  // binding to their use.
64
65  // Insert the invisible arguments, self and _cmd!
66  MDecl->createImplicitParams(Context, MDecl->getClassInterface());
67
68  PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope);
69  PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope);
70
71  // Introduce all of the other parameters into this scope.
72  for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
73       E = MDecl->param_end(); PI != E; ++PI)
74    if ((*PI)->getIdentifier())
75      PushOnScopeChains(*PI, FnBodyScope);
76}
77
78Sema::DeclPtrTy Sema::
79ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
80                         IdentifierInfo *ClassName, SourceLocation ClassLoc,
81                         IdentifierInfo *SuperName, SourceLocation SuperLoc,
82                         const DeclPtrTy *ProtoRefs, unsigned NumProtoRefs,
83                         SourceLocation EndProtoLoc, AttributeList *AttrList) {
84  assert(ClassName && "Missing class identifier");
85
86  // Check for another declaration kind with the same name.
87  NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName);
88  if (PrevDecl && PrevDecl->isTemplateParameter()) {
89    // Maybe we will complain about the shadowed template parameter.
90    DiagnoseTemplateParameterShadow(ClassLoc, PrevDecl);
91    // Just pretend that we didn't see the previous declaration.
92    PrevDecl = 0;
93  }
94
95  if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
96    Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
97    Diag(PrevDecl->getLocation(), diag::note_previous_definition);
98  }
99
100  ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
101  if (IDecl) {
102    // Class already seen. Is it a forward declaration?
103    if (!IDecl->isForwardDecl()) {
104      IDecl->setInvalidDecl();
105      Diag(AtInterfaceLoc, diag::err_duplicate_class_def)<<IDecl->getDeclName();
106      Diag(IDecl->getLocation(), diag::note_previous_definition);
107
108      // Return the previous class interface.
109      // FIXME: don't leak the objects passed in!
110      return DeclPtrTy::make(IDecl);
111    } else {
112      IDecl->setLocation(AtInterfaceLoc);
113      IDecl->setForwardDecl(false);
114    }
115  } else {
116    IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc,
117                                      ClassName, ClassLoc);
118    if (AttrList)
119      ProcessDeclAttributeList(IDecl, AttrList);
120
121    PushOnScopeChains(IDecl, TUScope);
122  }
123
124  if (SuperName) {
125    // Check if a different kind of symbol declared in this scope.
126    PrevDecl = LookupName(TUScope, SuperName, LookupOrdinaryName);
127
128    ObjCInterfaceDecl *SuperClassDecl =
129                                  dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
130
131    // Diagnose classes that inherit from deprecated classes.
132    if (SuperClassDecl)
133      (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
134
135    if (PrevDecl && SuperClassDecl == 0) {
136      // The previous declaration was not a class decl. Check if we have a
137      // typedef. If we do, get the underlying class type.
138      if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(PrevDecl)) {
139        QualType T = TDecl->getUnderlyingType();
140        if (T->isObjCInterfaceType()) {
141          if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl())
142            SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
143        }
144      }
145
146      // This handles the following case:
147      //
148      // typedef int SuperClass;
149      // @interface MyClass : SuperClass {} @end
150      //
151      if (!SuperClassDecl) {
152        Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
153        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
154      }
155    }
156
157    if (!dyn_cast_or_null<TypedefDecl>(PrevDecl)) {
158      if (!SuperClassDecl)
159        Diag(SuperLoc, diag::err_undef_superclass)
160          << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
161      else if (SuperClassDecl->isForwardDecl())
162        Diag(SuperLoc, diag::err_undef_superclass)
163          << SuperClassDecl->getDeclName() << ClassName
164          << SourceRange(AtInterfaceLoc, ClassLoc);
165    }
166    IDecl->setSuperClass(SuperClassDecl);
167    IDecl->setSuperClassLoc(SuperLoc);
168    IDecl->setLocEnd(SuperLoc);
169  } else { // we have a root class.
170    IDecl->setLocEnd(ClassLoc);
171  }
172
173  /// Check then save referenced protocols.
174  if (NumProtoRefs) {
175    IDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,
176                           Context);
177    IDecl->setLocEnd(EndProtoLoc);
178  }
179
180  CheckObjCDeclScope(IDecl);
181  return DeclPtrTy::make(IDecl);
182}
183
184/// ActOnCompatiblityAlias - this action is called after complete parsing of
185/// @compatibility_alias declaration. It sets up the alias relationships.
186Sema::DeclPtrTy Sema::ActOnCompatiblityAlias(SourceLocation AtLoc,
187                                             IdentifierInfo *AliasName,
188                                             SourceLocation AliasLocation,
189                                             IdentifierInfo *ClassName,
190                                             SourceLocation ClassLocation) {
191  // Look for previous declaration of alias name
192  NamedDecl *ADecl = LookupName(TUScope, AliasName, LookupOrdinaryName);
193  if (ADecl) {
194    if (isa<ObjCCompatibleAliasDecl>(ADecl))
195      Diag(AliasLocation, diag::warn_previous_alias_decl);
196    else
197      Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName;
198    Diag(ADecl->getLocation(), diag::note_previous_declaration);
199    return DeclPtrTy();
200  }
201  // Check for class declaration
202  NamedDecl *CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName);
203  if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(CDeclU)) {
204    QualType T = TDecl->getUnderlyingType();
205    if (T->isObjCInterfaceType()) {
206      if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl()) {
207        ClassName = IDecl->getIdentifier();
208        CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName);
209      }
210    }
211  }
212  ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU);
213  if (CDecl == 0) {
214    Diag(ClassLocation, diag::warn_undef_interface) << ClassName;
215    if (CDeclU)
216      Diag(CDeclU->getLocation(), diag::note_previous_declaration);
217    return DeclPtrTy();
218  }
219
220  // Everything checked out, instantiate a new alias declaration AST.
221  ObjCCompatibleAliasDecl *AliasDecl =
222    ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
223
224  if (!CheckObjCDeclScope(AliasDecl))
225    PushOnScopeChains(AliasDecl, TUScope);
226
227  return DeclPtrTy::make(AliasDecl);
228}
229
230void Sema::CheckForwardProtocolDeclarationForCircularDependency(
231  IdentifierInfo *PName,
232  SourceLocation &Ploc, SourceLocation PrevLoc,
233  const ObjCList<ObjCProtocolDecl> &PList)
234{
235  for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(),
236       E = PList.end(); I != E; ++I) {
237
238    if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier())) {
239      if (PDecl->getIdentifier() == PName) {
240        Diag(Ploc, diag::err_protocol_has_circular_dependency);
241        Diag(PrevLoc, diag::note_previous_definition);
242      }
243      CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc,
244        PDecl->getLocation(), PDecl->getReferencedProtocols());
245    }
246  }
247}
248
249Sema::DeclPtrTy
250Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc,
251                                  IdentifierInfo *ProtocolName,
252                                  SourceLocation ProtocolLoc,
253                                  const DeclPtrTy *ProtoRefs,
254                                  unsigned NumProtoRefs,
255                                  SourceLocation EndProtoLoc,
256                                  AttributeList *AttrList) {
257  // FIXME: Deal with AttrList.
258  assert(ProtocolName && "Missing protocol identifier");
259  ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolName);
260  if (PDecl) {
261    // Protocol already seen. Better be a forward protocol declaration
262    if (!PDecl->isForwardDecl()) {
263      Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName;
264      Diag(PDecl->getLocation(), diag::note_previous_definition);
265      // Just return the protocol we already had.
266      // FIXME: don't leak the objects passed in!
267      return DeclPtrTy::make(PDecl);
268    }
269    ObjCList<ObjCProtocolDecl> PList;
270    PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
271    CheckForwardProtocolDeclarationForCircularDependency(
272      ProtocolName, ProtocolLoc, PDecl->getLocation(), PList);
273    PList.Destroy(Context);
274
275    // Make sure the cached decl gets a valid start location.
276    PDecl->setLocation(AtProtoInterfaceLoc);
277    PDecl->setForwardDecl(false);
278  } else {
279    PDecl = ObjCProtocolDecl::Create(Context, CurContext,
280                                     AtProtoInterfaceLoc,ProtocolName);
281    PushOnScopeChains(PDecl, TUScope);
282    PDecl->setForwardDecl(false);
283  }
284  if (AttrList)
285    ProcessDeclAttributeList(PDecl, AttrList);
286  if (NumProtoRefs) {
287    /// Check then save referenced protocols.
288    PDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context);
289    PDecl->setLocEnd(EndProtoLoc);
290  }
291
292  CheckObjCDeclScope(PDecl);
293  return DeclPtrTy::make(PDecl);
294}
295
296/// FindProtocolDeclaration - This routine looks up protocols and
297/// issues an error if they are not declared. It returns list of
298/// protocol declarations in its 'Protocols' argument.
299void
300Sema::FindProtocolDeclaration(bool WarnOnDeclarations,
301                              const IdentifierLocPair *ProtocolId,
302                              unsigned NumProtocols,
303                              llvm::SmallVectorImpl<DeclPtrTy> &Protocols) {
304  for (unsigned i = 0; i != NumProtocols; ++i) {
305    ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first);
306    if (!PDecl) {
307      Diag(ProtocolId[i].second, diag::err_undeclared_protocol)
308        << ProtocolId[i].first;
309      continue;
310    }
311
312    (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second);
313
314    // If this is a forward declaration and we are supposed to warn in this
315    // case, do it.
316    if (WarnOnDeclarations && PDecl->isForwardDecl())
317      Diag(ProtocolId[i].second, diag::warn_undef_protocolref)
318        << ProtocolId[i].first;
319    Protocols.push_back(DeclPtrTy::make(PDecl));
320  }
321}
322
323/// DiagnosePropertyMismatch - Compares two properties for their
324/// attributes and types and warns on a variety of inconsistencies.
325///
326void
327Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
328                               ObjCPropertyDecl *SuperProperty,
329                               const IdentifierInfo *inheritedName) {
330  ObjCPropertyDecl::PropertyAttributeKind CAttr =
331  Property->getPropertyAttributes();
332  ObjCPropertyDecl::PropertyAttributeKind SAttr =
333  SuperProperty->getPropertyAttributes();
334  if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly)
335      && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite))
336    Diag(Property->getLocation(), diag::warn_readonly_property)
337      << Property->getDeclName() << inheritedName;
338  if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy)
339      != (SAttr & ObjCPropertyDecl::OBJC_PR_copy))
340    Diag(Property->getLocation(), diag::warn_property_attribute)
341      << Property->getDeclName() << "copy" << inheritedName;
342  else if ((CAttr & ObjCPropertyDecl::OBJC_PR_retain)
343           != (SAttr & ObjCPropertyDecl::OBJC_PR_retain))
344    Diag(Property->getLocation(), diag::warn_property_attribute)
345      << Property->getDeclName() << "retain" << inheritedName;
346
347  if ((CAttr & ObjCPropertyDecl::OBJC_PR_nonatomic)
348      != (SAttr & ObjCPropertyDecl::OBJC_PR_nonatomic))
349    Diag(Property->getLocation(), diag::warn_property_attribute)
350      << Property->getDeclName() << "atomic" << inheritedName;
351  if (Property->getSetterName() != SuperProperty->getSetterName())
352    Diag(Property->getLocation(), diag::warn_property_attribute)
353      << Property->getDeclName() << "setter" << inheritedName;
354  if (Property->getGetterName() != SuperProperty->getGetterName())
355    Diag(Property->getLocation(), diag::warn_property_attribute)
356      << Property->getDeclName() << "getter" << inheritedName;
357
358  QualType LHSType =
359    Context.getCanonicalType(SuperProperty->getType());
360  QualType RHSType =
361    Context.getCanonicalType(Property->getType());
362
363  if (!Context.typesAreCompatible(LHSType, RHSType)) {
364    // FIXME: Incorporate this test with typesAreCompatible.
365    if (LHSType->isObjCQualifiedIdType() && RHSType->isObjCQualifiedIdType())
366      if (ObjCQualifiedIdTypesAreCompatible(LHSType, RHSType, false))
367        return;
368    Diag(Property->getLocation(), diag::warn_property_types_are_incompatible)
369      << Property->getType() << SuperProperty->getType() << inheritedName;
370  }
371}
372
373/// ComparePropertiesInBaseAndSuper - This routine compares property
374/// declarations in base and its super class, if any, and issues
375/// diagnostics in a variety of inconsistant situations.
376///
377void Sema::ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl) {
378  ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
379  if (!SDecl)
380    return;
381  // FIXME: O(N^2)
382  for (ObjCInterfaceDecl::prop_iterator S = SDecl->prop_begin(Context),
383       E = SDecl->prop_end(Context); S != E; ++S) {
384    ObjCPropertyDecl *SuperPDecl = (*S);
385    // Does property in super class has declaration in current class?
386    for (ObjCInterfaceDecl::prop_iterator I = IDecl->prop_begin(Context),
387         E = IDecl->prop_end(Context); I != E; ++I) {
388      ObjCPropertyDecl *PDecl = (*I);
389      if (SuperPDecl->getIdentifier() == PDecl->getIdentifier())
390          DiagnosePropertyMismatch(PDecl, SuperPDecl,
391                                   SDecl->getIdentifier());
392    }
393  }
394}
395
396/// MergeOneProtocolPropertiesIntoClass - This routine goes thru the list
397/// of properties declared in a protocol and adds them to the list
398/// of properties for current class/category if it is not there already.
399void
400Sema::MergeOneProtocolPropertiesIntoClass(Decl *CDecl,
401                                          ObjCProtocolDecl *PDecl) {
402  ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
403  if (!IDecl) {
404    // Category
405    ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
406    assert (CatDecl && "MergeOneProtocolPropertiesIntoClass");
407    for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(Context),
408         E = PDecl->prop_end(Context); P != E; ++P) {
409      ObjCPropertyDecl *Pr = (*P);
410      ObjCCategoryDecl::prop_iterator CP, CE;
411      // Is this property already in  category's list of properties?
412      for (CP = CatDecl->prop_begin(Context), CE = CatDecl->prop_end(Context);
413           CP != CE; ++CP)
414        if ((*CP)->getIdentifier() == Pr->getIdentifier())
415          break;
416      if (CP != CE)
417        // Property protocol already exist in class. Diagnose any mismatch.
418        DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
419    }
420    return;
421  }
422  for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(Context),
423       E = PDecl->prop_end(Context); P != E; ++P) {
424    ObjCPropertyDecl *Pr = (*P);
425    ObjCInterfaceDecl::prop_iterator CP, CE;
426    // Is this property already in  class's list of properties?
427    for (CP = IDecl->prop_begin(Context), CE = IDecl->prop_end(Context);
428         CP != CE; ++CP)
429      if ((*CP)->getIdentifier() == Pr->getIdentifier())
430        break;
431    if (CP != CE)
432      // Property protocol already exist in class. Diagnose any mismatch.
433      DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
434    }
435}
436
437/// MergeProtocolPropertiesIntoClass - This routine merges properties
438/// declared in 'MergeItsProtocols' objects (which can be a class or an
439/// inherited protocol into the list of properties for class/category 'CDecl'
440///
441void Sema::MergeProtocolPropertiesIntoClass(Decl *CDecl,
442                                            DeclPtrTy MergeItsProtocols) {
443  Decl *ClassDecl = MergeItsProtocols.getAs<Decl>();
444  ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
445
446  if (!IDecl) {
447    // Category
448    ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
449    assert (CatDecl && "MergeProtocolPropertiesIntoClass");
450    if (ObjCCategoryDecl *MDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
451      for (ObjCCategoryDecl::protocol_iterator P = MDecl->protocol_begin(),
452           E = MDecl->protocol_end(); P != E; ++P)
453      // Merge properties of category (*P) into IDECL's
454      MergeOneProtocolPropertiesIntoClass(CatDecl, *P);
455
456      // Go thru the list of protocols for this category and recursively merge
457      // their properties into this class as well.
458      for (ObjCCategoryDecl::protocol_iterator P = CatDecl->protocol_begin(),
459           E = CatDecl->protocol_end(); P != E; ++P)
460        MergeProtocolPropertiesIntoClass(CatDecl, DeclPtrTy::make(*P));
461    } else {
462      ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
463      for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
464           E = MD->protocol_end(); P != E; ++P)
465        MergeOneProtocolPropertiesIntoClass(CatDecl, *P);
466    }
467    return;
468  }
469
470  if (ObjCInterfaceDecl *MDecl = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
471    for (ObjCInterfaceDecl::protocol_iterator P = MDecl->protocol_begin(),
472         E = MDecl->protocol_end(); P != E; ++P)
473      // Merge properties of class (*P) into IDECL's
474      MergeOneProtocolPropertiesIntoClass(IDecl, *P);
475
476    // Go thru the list of protocols for this class and recursively merge
477    // their properties into this class as well.
478    for (ObjCInterfaceDecl::protocol_iterator P = IDecl->protocol_begin(),
479         E = IDecl->protocol_end(); P != E; ++P)
480      MergeProtocolPropertiesIntoClass(IDecl, DeclPtrTy::make(*P));
481  } else {
482    ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
483    for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
484         E = MD->protocol_end(); P != E; ++P)
485      MergeOneProtocolPropertiesIntoClass(IDecl, *P);
486  }
487}
488
489/// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of
490/// a class method in its extension.
491///
492void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
493                                            ObjCInterfaceDecl *ID) {
494  if (!ID)
495    return;  // Possibly due to previous error
496
497  llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap;
498  for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(Context),
499       e =  ID->meth_end(Context); i != e; ++i) {
500    ObjCMethodDecl *MD = *i;
501    MethodMap[MD->getSelector()] = MD;
502  }
503
504  if (MethodMap.empty())
505    return;
506  for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(Context),
507       e =  CAT->meth_end(Context); i != e; ++i) {
508    ObjCMethodDecl *Method = *i;
509    const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()];
510    if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
511      Diag(Method->getLocation(), diag::err_duplicate_method_decl)
512            << Method->getDeclName();
513      Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
514    }
515  }
516}
517
518/// ActOnForwardProtocolDeclaration - Handle @protocol foo;
519Action::DeclPtrTy
520Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
521                                      const IdentifierLocPair *IdentList,
522                                      unsigned NumElts,
523                                      AttributeList *attrList) {
524  llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols;
525
526  for (unsigned i = 0; i != NumElts; ++i) {
527    IdentifierInfo *Ident = IdentList[i].first;
528    ObjCProtocolDecl *PDecl = LookupProtocol(Ident);
529    if (PDecl == 0) { // Not already seen?
530      PDecl = ObjCProtocolDecl::Create(Context, CurContext,
531                                       IdentList[i].second, Ident);
532      PushOnScopeChains(PDecl, TUScope);
533    }
534    if (attrList)
535      ProcessDeclAttributeList(PDecl, attrList);
536    Protocols.push_back(PDecl);
537  }
538
539  ObjCForwardProtocolDecl *PDecl =
540    ObjCForwardProtocolDecl::Create(Context, CurContext, AtProtocolLoc,
541                                    &Protocols[0], Protocols.size());
542  CurContext->addDecl(Context, PDecl);
543  CheckObjCDeclScope(PDecl);
544  return DeclPtrTy::make(PDecl);
545}
546
547Sema::DeclPtrTy Sema::
548ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
549                            IdentifierInfo *ClassName, SourceLocation ClassLoc,
550                            IdentifierInfo *CategoryName,
551                            SourceLocation CategoryLoc,
552                            const DeclPtrTy *ProtoRefs,
553                            unsigned NumProtoRefs,
554                            SourceLocation EndProtoLoc) {
555  ObjCCategoryDecl *CDecl =
556    ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc, CategoryName);
557  // FIXME: PushOnScopeChains?
558  CurContext->addDecl(Context, CDecl);
559
560  ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
561  /// Check that class of this category is already completely declared.
562  if (!IDecl || IDecl->isForwardDecl()) {
563    CDecl->setInvalidDecl();
564    Diag(ClassLoc, diag::err_undef_interface) << ClassName;
565    return DeclPtrTy::make(CDecl);
566  }
567
568  CDecl->setClassInterface(IDecl);
569
570  // If the interface is deprecated, warn about it.
571  (void)DiagnoseUseOfDecl(IDecl, ClassLoc);
572
573  /// Check for duplicate interface declaration for this category
574  ObjCCategoryDecl *CDeclChain;
575  for (CDeclChain = IDecl->getCategoryList(); CDeclChain;
576       CDeclChain = CDeclChain->getNextClassCategory()) {
577    if (CategoryName && CDeclChain->getIdentifier() == CategoryName) {
578      Diag(CategoryLoc, diag::warn_dup_category_def)
579      << ClassName << CategoryName;
580      Diag(CDeclChain->getLocation(), diag::note_previous_definition);
581      break;
582    }
583  }
584  if (!CDeclChain)
585    CDecl->insertNextClassCategory();
586
587  if (NumProtoRefs) {
588    CDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context);
589    CDecl->setLocEnd(EndProtoLoc);
590  }
591
592  CheckObjCDeclScope(CDecl);
593  return DeclPtrTy::make(CDecl);
594}
595
596/// ActOnStartCategoryImplementation - Perform semantic checks on the
597/// category implementation declaration and build an ObjCCategoryImplDecl
598/// object.
599Sema::DeclPtrTy Sema::ActOnStartCategoryImplementation(
600                      SourceLocation AtCatImplLoc,
601                      IdentifierInfo *ClassName, SourceLocation ClassLoc,
602                      IdentifierInfo *CatName, SourceLocation CatLoc) {
603  ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
604  ObjCCategoryImplDecl *CDecl =
605    ObjCCategoryImplDecl::Create(Context, CurContext, AtCatImplLoc, CatName,
606                                 IDecl);
607  /// Check that class of this category is already completely declared.
608  if (!IDecl || IDecl->isForwardDecl())
609    Diag(ClassLoc, diag::err_undef_interface) << ClassName;
610
611  // FIXME: PushOnScopeChains?
612  CurContext->addDecl(Context, CDecl);
613
614  /// TODO: Check that CatName, category name, is not used in another
615  // implementation.
616  ObjCCategoryImpls.push_back(CDecl);
617
618  CheckObjCDeclScope(CDecl);
619  return DeclPtrTy::make(CDecl);
620}
621
622Sema::DeclPtrTy Sema::ActOnStartClassImplementation(
623                      SourceLocation AtClassImplLoc,
624                      IdentifierInfo *ClassName, SourceLocation ClassLoc,
625                      IdentifierInfo *SuperClassname,
626                      SourceLocation SuperClassLoc) {
627  ObjCInterfaceDecl* IDecl = 0;
628  // Check for another declaration kind with the same name.
629  NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName);
630  if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
631    Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
632    Diag(PrevDecl->getLocation(), diag::note_previous_definition);
633  }  else {
634    // Is there an interface declaration of this class; if not, warn!
635    IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
636    if (!IDecl || IDecl->isForwardDecl()) {
637      Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
638      IDecl = 0;
639    }
640  }
641
642  // Check that super class name is valid class name
643  ObjCInterfaceDecl* SDecl = 0;
644  if (SuperClassname) {
645    // Check if a different kind of symbol declared in this scope.
646    PrevDecl = LookupName(TUScope, SuperClassname, LookupOrdinaryName);
647    if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
648      Diag(SuperClassLoc, diag::err_redefinition_different_kind)
649        << SuperClassname;
650      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
651    } else {
652      SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
653      if (!SDecl)
654        Diag(SuperClassLoc, diag::err_undef_superclass)
655          << SuperClassname << ClassName;
656      else if (IDecl && IDecl->getSuperClass() != SDecl) {
657        // This implementation and its interface do not have the same
658        // super class.
659        Diag(SuperClassLoc, diag::err_conflicting_super_class)
660          << SDecl->getDeclName();
661        Diag(SDecl->getLocation(), diag::note_previous_definition);
662      }
663    }
664  }
665
666  if (!IDecl) {
667    // Legacy case of @implementation with no corresponding @interface.
668    // Build, chain & install the interface decl into the identifier.
669
670    // FIXME: Do we support attributes on the @implementation? If so we should
671    // copy them over.
672    IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc,
673                                      ClassName, ClassLoc, false, true);
674    IDecl->setSuperClass(SDecl);
675    IDecl->setLocEnd(ClassLoc);
676
677    PushOnScopeChains(IDecl, TUScope);
678  } else {
679    // Mark the interface as being completed, even if it was just as
680    //   @class ....;
681    // declaration; the user cannot reopen it.
682    IDecl->setForwardDecl(false);
683  }
684
685  ObjCImplementationDecl* IMPDecl =
686    ObjCImplementationDecl::Create(Context, CurContext, AtClassImplLoc,
687                                   IDecl, SDecl);
688
689  if (CheckObjCDeclScope(IMPDecl))
690    return DeclPtrTy::make(IMPDecl);
691
692  // Check that there is no duplicate implementation of this class.
693  if (LookupObjCImplementation(ClassName))
694    // FIXME: Don't leak everything!
695    Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName;
696  else // add it to the list.
697    PushOnScopeChains(IMPDecl, TUScope);
698  return DeclPtrTy::make(IMPDecl);
699}
700
701void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
702                                    ObjCIvarDecl **ivars, unsigned numIvars,
703                                    SourceLocation RBrace) {
704  assert(ImpDecl && "missing implementation decl");
705  ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
706  if (!IDecl)
707    return;
708  /// Check case of non-existing @interface decl.
709  /// (legacy objective-c @implementation decl without an @interface decl).
710  /// Add implementations's ivar to the synthesize class's ivar list.
711  if (IDecl->isImplicitInterfaceDecl()) {
712    IDecl->setIVarList(ivars, numIvars, Context);
713    IDecl->setLocEnd(RBrace);
714    return;
715  }
716  // If implementation has empty ivar list, just return.
717  if (numIvars == 0)
718    return;
719
720  assert(ivars && "missing @implementation ivars");
721
722  // Check interface's Ivar list against those in the implementation.
723  // names and types must match.
724  //
725  unsigned j = 0;
726  ObjCInterfaceDecl::ivar_iterator
727    IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
728  for (; numIvars > 0 && IVI != IVE; ++IVI) {
729    ObjCIvarDecl* ImplIvar = ivars[j++];
730    ObjCIvarDecl* ClsIvar = *IVI;
731    assert (ImplIvar && "missing implementation ivar");
732    assert (ClsIvar && "missing class ivar");
733
734    // First, make sure the types match.
735    if (Context.getCanonicalType(ImplIvar->getType()) !=
736        Context.getCanonicalType(ClsIvar->getType())) {
737      Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type)
738        << ImplIvar->getIdentifier()
739        << ImplIvar->getType() << ClsIvar->getType();
740      Diag(ClsIvar->getLocation(), diag::note_previous_definition);
741    } else if (ImplIvar->isBitField() && ClsIvar->isBitField()) {
742      Expr *ImplBitWidth = ImplIvar->getBitWidth();
743      Expr *ClsBitWidth = ClsIvar->getBitWidth();
744      if (ImplBitWidth->EvaluateAsInt(Context).getZExtValue() !=
745          ClsBitWidth->EvaluateAsInt(Context).getZExtValue()) {
746        Diag(ImplBitWidth->getLocStart(), diag::err_conflicting_ivar_bitwidth)
747          << ImplIvar->getIdentifier();
748        Diag(ClsBitWidth->getLocStart(), diag::note_previous_definition);
749      }
750    }
751    // Make sure the names are identical.
752    if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
753      Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name)
754        << ImplIvar->getIdentifier() << ClsIvar->getIdentifier();
755      Diag(ClsIvar->getLocation(), diag::note_previous_definition);
756    }
757    --numIvars;
758  }
759
760  if (numIvars > 0)
761    Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
762  else if (IVI != IVE)
763    Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
764}
765
766void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
767                               bool &IncompleteImpl) {
768  if (!IncompleteImpl) {
769    Diag(ImpLoc, diag::warn_incomplete_impl);
770    IncompleteImpl = true;
771  }
772  Diag(ImpLoc, diag::warn_undef_method_impl) << method->getDeclName();
773}
774
775void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,
776                                       ObjCMethodDecl *IntfMethodDecl) {
777  if (!Context.typesAreCompatible(IntfMethodDecl->getResultType(),
778                                  ImpMethodDecl->getResultType()) &&
779      !QualifiedIdConformsQualifiedId(IntfMethodDecl->getResultType(),
780                                      ImpMethodDecl->getResultType())) {
781    Diag(ImpMethodDecl->getLocation(), diag::warn_conflicting_ret_types)
782      << ImpMethodDecl->getDeclName() << IntfMethodDecl->getResultType()
783      << ImpMethodDecl->getResultType();
784    Diag(IntfMethodDecl->getLocation(), diag::note_previous_definition);
785  }
786
787  for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
788       IF = IntfMethodDecl->param_begin(), EM = ImpMethodDecl->param_end();
789       IM != EM; ++IM, ++IF) {
790    if (Context.typesAreCompatible((*IF)->getType(), (*IM)->getType()) ||
791        QualifiedIdConformsQualifiedId((*IF)->getType(), (*IM)->getType()))
792      continue;
793
794    Diag((*IM)->getLocation(), diag::warn_conflicting_param_types)
795      << ImpMethodDecl->getDeclName() << (*IF)->getType()
796      << (*IM)->getType();
797    Diag((*IF)->getLocation(), diag::note_previous_definition);
798  }
799}
800
801/// isPropertyReadonly - Return true if property is readonly, by searching
802/// for the property in the class and in its categories and implementations
803///
804bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl,
805                              ObjCInterfaceDecl *IDecl) {
806  // by far the most common case.
807  if (!PDecl->isReadOnly())
808    return false;
809  // Even if property is ready only, if interface has a user defined setter,
810  // it is not considered read only.
811  if (IDecl->getInstanceMethod(Context, PDecl->getSetterName()))
812    return false;
813
814  // Main class has the property as 'readonly'. Must search
815  // through the category list to see if the property's
816  // attribute has been over-ridden to 'readwrite'.
817  for (ObjCCategoryDecl *Category = IDecl->getCategoryList();
818       Category; Category = Category->getNextClassCategory()) {
819    // Even if property is ready only, if a category has a user defined setter,
820    // it is not considered read only.
821    if (Category->getInstanceMethod(Context, PDecl->getSetterName()))
822      return false;
823    ObjCPropertyDecl *P =
824      Category->FindPropertyDeclaration(Context, PDecl->getIdentifier());
825    if (P && !P->isReadOnly())
826      return false;
827  }
828
829  // Also, check for definition of a setter method in the implementation if
830  // all else failed.
831  if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurContext)) {
832    if (ObjCImplementationDecl *IMD =
833        dyn_cast<ObjCImplementationDecl>(OMD->getDeclContext())) {
834      if (IMD->getInstanceMethod(Context, PDecl->getSetterName()))
835        return false;
836    }
837    else if (ObjCCategoryImplDecl *CIMD =
838             dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) {
839      if (CIMD->getInstanceMethod(Context, PDecl->getSetterName()))
840        return false;
841    }
842  }
843  // Lastly, look through the implementation (if one is in scope).
844  if (ObjCImplementationDecl *ImpDecl
845      = LookupObjCImplementation(IDecl->getIdentifier()))
846    if (ImpDecl->getInstanceMethod(Context, PDecl->getSetterName()))
847      return false;
848  // If all fails, look at the super class.
849  if (ObjCInterfaceDecl *SIDecl = IDecl->getSuperClass())
850    return isPropertyReadonly(PDecl, SIDecl);
851  return true;
852}
853
854/// FIXME: Type hierarchies in Objective-C can be deep. We could most likely
855/// improve the efficiency of selector lookups and type checking by associating
856/// with each protocol / interface / category the flattened instance tables. If
857/// we used an immutable set to keep the table then it wouldn't add significant
858/// memory cost and it would be handy for lookups.
859
860/// CheckProtocolMethodDefs - This routine checks unimplemented methods
861/// Declared in protocol, and those referenced by it.
862void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
863                                   ObjCProtocolDecl *PDecl,
864                                   bool& IncompleteImpl,
865                                   const llvm::DenseSet<Selector> &InsMap,
866                                   const llvm::DenseSet<Selector> &ClsMap,
867                                   ObjCInterfaceDecl *IDecl) {
868  ObjCInterfaceDecl *Super = IDecl->getSuperClass();
869
870  // If a method lookup fails locally we still need to look and see if
871  // the method was implemented by a base class or an inherited
872  // protocol. This lookup is slow, but occurs rarely in correct code
873  // and otherwise would terminate in a warning.
874
875  // check unimplemented instance methods.
876  for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(Context),
877       E = PDecl->instmeth_end(Context); I != E; ++I) {
878    ObjCMethodDecl *method = *I;
879    if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
880        !method->isSynthesized() && !InsMap.count(method->getSelector()) &&
881        (!Super ||
882         !Super->lookupInstanceMethod(Context, method->getSelector()))) {
883        // Ugly, but necessary. Method declared in protcol might have
884        // have been synthesized due to a property declared in the class which
885        // uses the protocol.
886        ObjCMethodDecl *MethodInClass =
887          IDecl->lookupInstanceMethod(Context, method->getSelector());
888        if (!MethodInClass || !MethodInClass->isSynthesized())
889          WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
890      }
891  }
892  // check unimplemented class methods
893  for (ObjCProtocolDecl::classmeth_iterator
894         I = PDecl->classmeth_begin(Context),
895         E = PDecl->classmeth_end(Context);
896       I != E; ++I) {
897    ObjCMethodDecl *method = *I;
898    if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
899        !ClsMap.count(method->getSelector()) &&
900        (!Super || !Super->lookupClassMethod(Context, method->getSelector())))
901      WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
902  }
903  // Check on this protocols's referenced protocols, recursively.
904  for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
905       E = PDecl->protocol_end(); PI != E; ++PI)
906    CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, IDecl);
907}
908
909/// MatchAllMethodDeclarations - Check methods declaraed in interface or
910/// or protocol against those declared in their implementations.
911///
912void Sema::MatchAllMethodDeclarations(const llvm::DenseSet<Selector> &InsMap,
913                                      const llvm::DenseSet<Selector> &ClsMap,
914                                      llvm::DenseSet<Selector> &InsMapSeen,
915                                      llvm::DenseSet<Selector> &ClsMapSeen,
916                                      ObjCImplDecl* IMPDecl,
917                                      ObjCContainerDecl* CDecl,
918                                      bool &IncompleteImpl,
919                                      bool ImmediateClass)
920{
921  // Check and see if instance methods in class interface have been
922  // implemented in the implementation class. If so, their types match.
923  for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(Context),
924       E = CDecl->instmeth_end(Context); I != E; ++I) {
925    if (InsMapSeen.count((*I)->getSelector()))
926        continue;
927    InsMapSeen.insert((*I)->getSelector());
928    if (!(*I)->isSynthesized() &&
929        !InsMap.count((*I)->getSelector())) {
930      if (ImmediateClass)
931        WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
932      continue;
933    }
934    else {
935      ObjCMethodDecl *ImpMethodDecl =
936      IMPDecl->getInstanceMethod(Context, (*I)->getSelector());
937      ObjCMethodDecl *IntfMethodDecl =
938      CDecl->getInstanceMethod(Context, (*I)->getSelector());
939      assert(IntfMethodDecl &&
940             "IntfMethodDecl is null in ImplMethodsVsClassMethods");
941      // ImpMethodDecl may be null as in a @dynamic property.
942      if (ImpMethodDecl)
943        WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl);
944    }
945  }
946
947  // Check and see if class methods in class interface have been
948  // implemented in the implementation class. If so, their types match.
949   for (ObjCInterfaceDecl::classmeth_iterator
950       I = CDecl->classmeth_begin(Context),
951       E = CDecl->classmeth_end(Context);
952        I != E; ++I) {
953     if (ClsMapSeen.count((*I)->getSelector()))
954       continue;
955     ClsMapSeen.insert((*I)->getSelector());
956    if (!ClsMap.count((*I)->getSelector())) {
957      if (ImmediateClass)
958        WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
959    }
960    else {
961      ObjCMethodDecl *ImpMethodDecl =
962      IMPDecl->getClassMethod(Context, (*I)->getSelector());
963      ObjCMethodDecl *IntfMethodDecl =
964      CDecl->getClassMethod(Context, (*I)->getSelector());
965      WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl);
966    }
967  }
968  if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
969    // Check for any implementation of a methods declared in protocol.
970    for (ObjCInterfaceDecl::protocol_iterator PI = I->protocol_begin(),
971         E = I->protocol_end(); PI != E; ++PI)
972      MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
973                                 IMPDecl,
974                                 (*PI), IncompleteImpl, false);
975    if (I->getSuperClass())
976      MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
977                                 IMPDecl,
978                                 I->getSuperClass(), IncompleteImpl, false);
979  }
980}
981
982void Sema::ImplMethodsVsClassMethods(ObjCImplDecl* IMPDecl,
983                                     ObjCContainerDecl* CDecl,
984                                     bool IncompleteImpl) {
985  llvm::DenseSet<Selector> InsMap;
986  // Check and see if instance methods in class interface have been
987  // implemented in the implementation class.
988  for (ObjCImplementationDecl::instmeth_iterator
989         I = IMPDecl->instmeth_begin(Context),
990         E = IMPDecl->instmeth_end(Context); I != E; ++I)
991    InsMap.insert((*I)->getSelector());
992
993  // Check and see if properties declared in the interface have either 1)
994  // an implementation or 2) there is a @synthesize/@dynamic implementation
995  // of the property in the @implementation.
996  if (isa<ObjCInterfaceDecl>(CDecl))
997      for (ObjCContainerDecl::prop_iterator P = CDecl->prop_begin(Context),
998       E = CDecl->prop_end(Context); P != E; ++P) {
999        ObjCPropertyDecl *Prop = (*P);
1000        if (Prop->isInvalidDecl())
1001          continue;
1002        ObjCPropertyImplDecl *PI = 0;
1003        // Is there a matching propery synthesize/dynamic?
1004        for (ObjCImplDecl::propimpl_iterator
1005               I = IMPDecl->propimpl_begin(Context),
1006               EI = IMPDecl->propimpl_end(Context); I != EI; ++I)
1007          if ((*I)->getPropertyDecl() == Prop) {
1008            PI = (*I);
1009            break;
1010          }
1011        if (PI)
1012          continue;
1013        if (!InsMap.count(Prop->getGetterName())) {
1014          Diag(Prop->getLocation(),
1015               diag::warn_setter_getter_impl_required)
1016          << Prop->getDeclName() << Prop->getGetterName();
1017          Diag(IMPDecl->getLocation(),
1018               diag::note_property_impl_required);
1019        }
1020
1021        if (!Prop->isReadOnly() && !InsMap.count(Prop->getSetterName())) {
1022          Diag(Prop->getLocation(),
1023               diag::warn_setter_getter_impl_required)
1024          << Prop->getDeclName() << Prop->getSetterName();
1025          Diag(IMPDecl->getLocation(),
1026               diag::note_property_impl_required);
1027        }
1028      }
1029
1030  llvm::DenseSet<Selector> ClsMap;
1031  for (ObjCImplementationDecl::classmeth_iterator
1032       I = IMPDecl->classmeth_begin(Context),
1033       E = IMPDecl->classmeth_end(Context); I != E; ++I)
1034    ClsMap.insert((*I)->getSelector());
1035
1036  // Check for type conflict of methods declared in a class/protocol and
1037  // its implementation; if any.
1038  llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen;
1039  MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1040                             IMPDecl, CDecl,
1041                             IncompleteImpl, true);
1042
1043  // Check the protocol list for unimplemented methods in the @implementation
1044  // class.
1045  // Check and see if class methods in class interface have been
1046  // implemented in the implementation class.
1047
1048  if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
1049    for (ObjCInterfaceDecl::protocol_iterator PI = I->protocol_begin(),
1050         E = I->protocol_end(); PI != E; ++PI)
1051      CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
1052                              InsMap, ClsMap, I);
1053    // Check class extensions (unnamed categories)
1054    for (ObjCCategoryDecl *Categories = I->getCategoryList();
1055         Categories; Categories = Categories->getNextClassCategory()) {
1056      if (!Categories->getIdentifier()) {
1057        ImplMethodsVsClassMethods(IMPDecl, Categories, IncompleteImpl);
1058        break;
1059      }
1060    }
1061  } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
1062    for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(),
1063         E = C->protocol_end(); PI != E; ++PI)
1064      CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
1065                              InsMap, ClsMap, C->getClassInterface());
1066  } else
1067    assert(false && "invalid ObjCContainerDecl type.");
1068}
1069
1070/// ActOnForwardClassDeclaration -
1071Action::DeclPtrTy
1072Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
1073                                   IdentifierInfo **IdentList,
1074                                   unsigned NumElts) {
1075  llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
1076
1077  for (unsigned i = 0; i != NumElts; ++i) {
1078    // Check for another declaration kind with the same name.
1079    NamedDecl *PrevDecl = LookupName(TUScope, IdentList[i], LookupOrdinaryName);
1080    if (PrevDecl && PrevDecl->isTemplateParameter()) {
1081      // Maybe we will complain about the shadowed template parameter.
1082      DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl);
1083      // Just pretend that we didn't see the previous declaration.
1084      PrevDecl = 0;
1085    }
1086
1087    if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
1088      // GCC apparently allows the following idiom:
1089      //
1090      // typedef NSObject < XCElementTogglerP > XCElementToggler;
1091      // @class XCElementToggler;
1092      //
1093      // FIXME: Make an extension?
1094      TypedefDecl *TDD = dyn_cast<TypedefDecl>(PrevDecl);
1095      if (!TDD || !isa<ObjCInterfaceType>(TDD->getUnderlyingType())) {
1096        Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i];
1097        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1098      }
1099      else if (TDD) {
1100        // a forward class declaration matching a typedef name of a class
1101        // refers to the underlying class.
1102        if (ObjCInterfaceType * OI =
1103              dyn_cast<ObjCInterfaceType>(TDD->getUnderlyingType()))
1104          PrevDecl = OI->getDecl();
1105      }
1106    }
1107    ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
1108    if (!IDecl) {  // Not already seen?  Make a forward decl.
1109      IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc,
1110                                        IdentList[i], SourceLocation(), true);
1111      PushOnScopeChains(IDecl, TUScope);
1112    }
1113
1114    Interfaces.push_back(IDecl);
1115  }
1116
1117  ObjCClassDecl *CDecl = ObjCClassDecl::Create(Context, CurContext, AtClassLoc,
1118                                               &Interfaces[0],
1119                                               Interfaces.size());
1120  CurContext->addDecl(Context, CDecl);
1121  CheckObjCDeclScope(CDecl);
1122  return DeclPtrTy::make(CDecl);
1123}
1124
1125
1126/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
1127/// returns true, or false, accordingly.
1128/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
1129bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
1130                                      const ObjCMethodDecl *PrevMethod,
1131                                      bool matchBasedOnSizeAndAlignment) {
1132  QualType T1 = Context.getCanonicalType(Method->getResultType());
1133  QualType T2 = Context.getCanonicalType(PrevMethod->getResultType());
1134
1135  if (T1 != T2) {
1136    // The result types are different.
1137    if (!matchBasedOnSizeAndAlignment)
1138      return false;
1139    // Incomplete types don't have a size and alignment.
1140    if (T1->isIncompleteType() || T2->isIncompleteType())
1141      return false;
1142    // Check is based on size and alignment.
1143    if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2))
1144      return false;
1145  }
1146
1147  ObjCMethodDecl::param_iterator ParamI = Method->param_begin(),
1148       E = Method->param_end();
1149  ObjCMethodDecl::param_iterator PrevI = PrevMethod->param_begin();
1150
1151  for (; ParamI != E; ++ParamI, ++PrevI) {
1152    assert(PrevI != PrevMethod->param_end() && "Param mismatch");
1153    T1 = Context.getCanonicalType((*ParamI)->getType());
1154    T2 = Context.getCanonicalType((*PrevI)->getType());
1155    if (T1 != T2) {
1156      // The result types are different.
1157      if (!matchBasedOnSizeAndAlignment)
1158        return false;
1159      // Incomplete types don't have a size and alignment.
1160      if (T1->isIncompleteType() || T2->isIncompleteType())
1161        return false;
1162      // Check is based on size and alignment.
1163      if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2))
1164        return false;
1165    }
1166  }
1167  return true;
1168}
1169
1170/// \brief Read the contents of the instance and factory method pools
1171/// for a given selector from external storage.
1172///
1173/// This routine should only be called once, when neither the instance
1174/// nor the factory method pool has an entry for this selector.
1175Sema::MethodPool::iterator Sema::ReadMethodPool(Selector Sel,
1176                                                bool isInstance) {
1177  assert(ExternalSource && "We need an external AST source");
1178  assert(InstanceMethodPool.find(Sel) == InstanceMethodPool.end() &&
1179         "Selector data already loaded into the instance method pool");
1180  assert(FactoryMethodPool.find(Sel) == FactoryMethodPool.end() &&
1181         "Selector data already loaded into the factory method pool");
1182
1183  // Read the method list from the external source.
1184  std::pair<ObjCMethodList, ObjCMethodList> Methods
1185    = ExternalSource->ReadMethodPool(Sel);
1186
1187  if (isInstance) {
1188    if (Methods.second.Method)
1189      FactoryMethodPool[Sel] = Methods.second;
1190    return InstanceMethodPool.insert(std::make_pair(Sel, Methods.first)).first;
1191  }
1192
1193  if (Methods.first.Method)
1194    InstanceMethodPool[Sel] = Methods.first;
1195
1196  return FactoryMethodPool.insert(std::make_pair(Sel, Methods.second)).first;
1197}
1198
1199void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) {
1200  llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos
1201    = InstanceMethodPool.find(Method->getSelector());
1202  if (Pos == InstanceMethodPool.end()) {
1203    if (ExternalSource && !FactoryMethodPool.count(Method->getSelector()))
1204      Pos = ReadMethodPool(Method->getSelector(), /*isInstance=*/true);
1205    else
1206      Pos = InstanceMethodPool.insert(std::make_pair(Method->getSelector(),
1207                                                     ObjCMethodList())).first;
1208  }
1209
1210  ObjCMethodList &Entry = Pos->second;
1211  if (Entry.Method == 0) {
1212    // Haven't seen a method with this selector name yet - add it.
1213    Entry.Method = Method;
1214    Entry.Next = 0;
1215    return;
1216  }
1217
1218  // We've seen a method with this name, see if we have already seen this type
1219  // signature.
1220  for (ObjCMethodList *List = &Entry; List; List = List->Next)
1221    if (MatchTwoMethodDeclarations(Method, List->Method))
1222      return;
1223
1224  // We have a new signature for an existing method - add it.
1225  // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
1226  Entry.Next = new ObjCMethodList(Method, Entry.Next);
1227}
1228
1229// FIXME: Finish implementing -Wno-strict-selector-match.
1230ObjCMethodDecl *Sema::LookupInstanceMethodInGlobalPool(Selector Sel,
1231                                                       SourceRange R) {
1232  llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos
1233    = InstanceMethodPool.find(Sel);
1234  if (Pos == InstanceMethodPool.end()) {
1235    if (ExternalSource && !FactoryMethodPool.count(Sel))
1236      Pos = ReadMethodPool(Sel, /*isInstance=*/true);
1237    else
1238      return 0;
1239  }
1240
1241  ObjCMethodList &MethList = Pos->second;
1242  bool issueWarning = false;
1243
1244  if (MethList.Method && MethList.Next) {
1245    for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1246      // This checks if the methods differ by size & alignment.
1247      if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, true))
1248        issueWarning = true;
1249  }
1250  if (issueWarning && (MethList.Method && MethList.Next)) {
1251    Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
1252    Diag(MethList.Method->getLocStart(), diag::note_using_decl)
1253      << MethList.Method->getSourceRange();
1254    for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1255      Diag(Next->Method->getLocStart(), diag::note_also_found_decl)
1256        << Next->Method->getSourceRange();
1257  }
1258  return MethList.Method;
1259}
1260
1261void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) {
1262  llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos
1263    = FactoryMethodPool.find(Method->getSelector());
1264  if (Pos == FactoryMethodPool.end()) {
1265    if (ExternalSource && !InstanceMethodPool.count(Method->getSelector()))
1266      Pos = ReadMethodPool(Method->getSelector(), /*isInstance=*/false);
1267    else
1268      Pos = FactoryMethodPool.insert(std::make_pair(Method->getSelector(),
1269                                                    ObjCMethodList())).first;
1270  }
1271
1272  ObjCMethodList &FirstMethod = Pos->second;
1273  if (!FirstMethod.Method) {
1274    // Haven't seen a method with this selector name yet - add it.
1275    FirstMethod.Method = Method;
1276    FirstMethod.Next = 0;
1277  } else {
1278    // We've seen a method with this name, now check the type signature(s).
1279    bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
1280
1281    for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
1282         Next = Next->Next)
1283      match = MatchTwoMethodDeclarations(Method, Next->Method);
1284
1285    if (!match) {
1286      // We have a new signature for an existing method - add it.
1287      // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
1288      struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
1289      FirstMethod.Next = OMI;
1290    }
1291  }
1292}
1293
1294ObjCMethodDecl *Sema::LookupFactoryMethodInGlobalPool(Selector Sel,
1295                                                      SourceRange R) {
1296  llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos
1297    = FactoryMethodPool.find(Sel);
1298  if (Pos == FactoryMethodPool.end()) {
1299    if (ExternalSource && !InstanceMethodPool.count(Sel))
1300      Pos = ReadMethodPool(Sel, /*isInstance=*/false);
1301    else
1302      return 0;
1303  }
1304
1305  ObjCMethodList &MethList = Pos->second;
1306  bool issueWarning = false;
1307
1308  if (MethList.Method && MethList.Next) {
1309    for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1310      // This checks if the methods differ by size & alignment.
1311      if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, true))
1312        issueWarning = true;
1313  }
1314  if (issueWarning && (MethList.Method && MethList.Next)) {
1315    Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
1316    Diag(MethList.Method->getLocStart(), diag::note_using_decl)
1317      << MethList.Method->getSourceRange();
1318    for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1319      Diag(Next->Method->getLocStart(), diag::note_also_found_decl)
1320        << Next->Method->getSourceRange();
1321  }
1322  return MethList.Method;
1323}
1324
1325/// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods
1326/// have the property type and issue diagnostics if they don't.
1327/// Also synthesize a getter/setter method if none exist (and update the
1328/// appropriate lookup tables. FIXME: Should reconsider if adding synthesized
1329/// methods is the "right" thing to do.
1330void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property,
1331                               ObjCContainerDecl *CD) {
1332  ObjCMethodDecl *GetterMethod, *SetterMethod;
1333
1334  GetterMethod = CD->getInstanceMethod(Context, property->getGetterName());
1335  SetterMethod = CD->getInstanceMethod(Context, property->getSetterName());
1336  DiagnosePropertyAccessorMismatch(property, GetterMethod,
1337                                   property->getLocation());
1338
1339  if (SetterMethod) {
1340    if (Context.getCanonicalType(SetterMethod->getResultType())
1341        != Context.VoidTy)
1342      Diag(SetterMethod->getLocation(), diag::err_setter_type_void);
1343    if (SetterMethod->param_size() != 1 ||
1344        ((*SetterMethod->param_begin())->getType() != property->getType())) {
1345      Diag(property->getLocation(),
1346           diag::warn_accessor_property_type_mismatch)
1347        << property->getDeclName()
1348        << SetterMethod->getSelector();
1349      Diag(SetterMethod->getLocation(), diag::note_declared_at);
1350    }
1351  }
1352
1353  // Synthesize getter/setter methods if none exist.
1354  // Find the default getter and if one not found, add one.
1355  // FIXME: The synthesized property we set here is misleading. We almost always
1356  // synthesize these methods unless the user explicitly provided prototypes
1357  // (which is odd, but allowed). Sema should be typechecking that the
1358  // declarations jive in that situation (which it is not currently).
1359  if (!GetterMethod) {
1360    // No instance method of same name as property getter name was found.
1361    // Declare a getter method and add it to the list of methods
1362    // for this class.
1363    GetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(),
1364                             property->getLocation(), property->getGetterName(),
1365                             property->getType(), CD, true, false, true,
1366                             (property->getPropertyImplementation() ==
1367                              ObjCPropertyDecl::Optional) ?
1368                             ObjCMethodDecl::Optional :
1369                             ObjCMethodDecl::Required);
1370    CD->addDecl(Context, GetterMethod);
1371  } else
1372    // A user declared getter will be synthesize when @synthesize of
1373    // the property with the same name is seen in the @implementation
1374    GetterMethod->setSynthesized(true);
1375  property->setGetterMethodDecl(GetterMethod);
1376
1377  // Skip setter if property is read-only.
1378  if (!property->isReadOnly()) {
1379    // Find the default setter and if one not found, add one.
1380    if (!SetterMethod) {
1381      // No instance method of same name as property setter name was found.
1382      // Declare a setter method and add it to the list of methods
1383      // for this class.
1384      SetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(),
1385                               property->getLocation(),
1386                               property->getSetterName(),
1387                               Context.VoidTy, CD, true, false, true,
1388                               (property->getPropertyImplementation() ==
1389                                ObjCPropertyDecl::Optional) ?
1390                               ObjCMethodDecl::Optional :
1391                               ObjCMethodDecl::Required);
1392      // Invent the arguments for the setter. We don't bother making a
1393      // nice name for the argument.
1394      ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod,
1395                                                  property->getLocation(),
1396                                                  property->getIdentifier(),
1397                                                  property->getType(),
1398                                                  VarDecl::None,
1399                                                  0);
1400      SetterMethod->setMethodParams(Context, &Argument, 1);
1401      CD->addDecl(Context, SetterMethod);
1402    } else
1403      // A user declared setter will be synthesize when @synthesize of
1404      // the property with the same name is seen in the @implementation
1405      SetterMethod->setSynthesized(true);
1406    property->setSetterMethodDecl(SetterMethod);
1407  }
1408  // Add any synthesized methods to the global pool. This allows us to
1409  // handle the following, which is supported by GCC (and part of the design).
1410  //
1411  // @interface Foo
1412  // @property double bar;
1413  // @end
1414  //
1415  // void thisIsUnfortunate() {
1416  //   id foo;
1417  //   double bar = [foo bar];
1418  // }
1419  //
1420  if (GetterMethod)
1421    AddInstanceMethodToGlobalPool(GetterMethod);
1422  if (SetterMethod)
1423    AddInstanceMethodToGlobalPool(SetterMethod);
1424}
1425
1426// Note: For class/category implemenations, allMethods/allProperties is
1427// always null.
1428void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclPtrTy classDecl,
1429                      DeclPtrTy *allMethods, unsigned allNum,
1430                      DeclPtrTy *allProperties, unsigned pNum,
1431                      DeclGroupPtrTy *allTUVars, unsigned tuvNum) {
1432  Decl *ClassDecl = classDecl.getAs<Decl>();
1433
1434  // FIXME: If we don't have a ClassDecl, we have an error. We should consider
1435  // always passing in a decl. If the decl has an error, isInvalidDecl()
1436  // should be true.
1437  if (!ClassDecl)
1438    return;
1439
1440  bool isInterfaceDeclKind =
1441        isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
1442         || isa<ObjCProtocolDecl>(ClassDecl);
1443  bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
1444
1445  DeclContext *DC = dyn_cast<DeclContext>(ClassDecl);
1446
1447  // FIXME: Remove these and use the ObjCContainerDecl/DeclContext.
1448  llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
1449  llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
1450
1451  for (unsigned i = 0; i < allNum; i++ ) {
1452    ObjCMethodDecl *Method =
1453      cast_or_null<ObjCMethodDecl>(allMethods[i].getAs<Decl>());
1454
1455    if (!Method) continue;  // Already issued a diagnostic.
1456    if (Method->isInstanceMethod()) {
1457      /// Check for instance method of the same name with incompatible types
1458      const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
1459      bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
1460                              : false;
1461      if ((isInterfaceDeclKind && PrevMethod && !match)
1462          || (checkIdenticalMethods && match)) {
1463          Diag(Method->getLocation(), diag::err_duplicate_method_decl)
1464            << Method->getDeclName();
1465          Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
1466      } else {
1467        DC->addDecl(Context, Method);
1468        InsMap[Method->getSelector()] = Method;
1469        /// The following allows us to typecheck messages to "id".
1470        AddInstanceMethodToGlobalPool(Method);
1471      }
1472    }
1473    else {
1474      /// Check for class method of the same name with incompatible types
1475      const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
1476      bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
1477                              : false;
1478      if ((isInterfaceDeclKind && PrevMethod && !match)
1479          || (checkIdenticalMethods && match)) {
1480        Diag(Method->getLocation(), diag::err_duplicate_method_decl)
1481          << Method->getDeclName();
1482        Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
1483      } else {
1484        DC->addDecl(Context, Method);
1485        ClsMap[Method->getSelector()] = Method;
1486        /// The following allows us to typecheck messages to "Class".
1487        AddFactoryMethodToGlobalPool(Method);
1488      }
1489    }
1490  }
1491  if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
1492    // Compares properties declared in this class to those of its
1493    // super class.
1494    ComparePropertiesInBaseAndSuper(I);
1495    MergeProtocolPropertiesIntoClass(I, DeclPtrTy::make(I));
1496  } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
1497    // Categories are used to extend the class by declaring new methods.
1498    // By the same token, they are also used to add new properties. No
1499    // need to compare the added property to those in the class.
1500
1501    // Merge protocol properties into category
1502    MergeProtocolPropertiesIntoClass(C, DeclPtrTy::make(C));
1503    if (C->getIdentifier() == 0)
1504      DiagnoseClassExtensionDupMethods(C, C->getClassInterface());
1505  }
1506  if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) {
1507    // ProcessPropertyDecl is responsible for diagnosing conflicts with any
1508    // user-defined setter/getter. It also synthesizes setter/getter methods
1509    // and adds them to the DeclContext and global method pools.
1510    for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(Context),
1511                                          E = CDecl->prop_end(Context);
1512         I != E; ++I)
1513      ProcessPropertyDecl(*I, CDecl);
1514    CDecl->setAtEndLoc(AtEndLoc);
1515  }
1516  if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
1517    IC->setLocEnd(AtEndLoc);
1518    if (ObjCInterfaceDecl* IDecl = IC->getClassInterface())
1519      ImplMethodsVsClassMethods(IC, IDecl);
1520  } else if (ObjCCategoryImplDecl* CatImplClass =
1521                                   dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
1522    CatImplClass->setLocEnd(AtEndLoc);
1523
1524    // Find category interface decl and then check that all methods declared
1525    // in this interface are implemented in the category @implementation.
1526    if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) {
1527      for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
1528           Categories; Categories = Categories->getNextClassCategory()) {
1529        if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
1530          ImplMethodsVsClassMethods(CatImplClass, Categories);
1531          break;
1532        }
1533      }
1534    }
1535  }
1536  if (isInterfaceDeclKind) {
1537    // Reject invalid vardecls.
1538    for (unsigned i = 0; i != tuvNum; i++) {
1539      DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>();
1540      for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
1541        if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) {
1542          if (!VDecl->hasExternalStorage())
1543            Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass);
1544        }
1545    }
1546  }
1547}
1548
1549
1550/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
1551/// objective-c's type qualifier from the parser version of the same info.
1552static Decl::ObjCDeclQualifier
1553CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
1554  Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None;
1555  if (PQTVal & ObjCDeclSpec::DQ_In)
1556    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In);
1557  if (PQTVal & ObjCDeclSpec::DQ_Inout)
1558    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
1559  if (PQTVal & ObjCDeclSpec::DQ_Out)
1560    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out);
1561  if (PQTVal & ObjCDeclSpec::DQ_Bycopy)
1562    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
1563  if (PQTVal & ObjCDeclSpec::DQ_Byref)
1564    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
1565  if (PQTVal & ObjCDeclSpec::DQ_Oneway)
1566    ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
1567
1568  return ret;
1569}
1570
1571Sema::DeclPtrTy Sema::ActOnMethodDeclaration(
1572    SourceLocation MethodLoc, SourceLocation EndLoc,
1573    tok::TokenKind MethodType, DeclPtrTy classDecl,
1574    ObjCDeclSpec &ReturnQT, TypeTy *ReturnType,
1575    Selector Sel,
1576    // optional arguments. The number of types/arguments is obtained
1577    // from the Sel.getNumArgs().
1578    ObjCArgInfo *ArgInfo,
1579    llvm::SmallVectorImpl<Declarator> &Cdecls,
1580    AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
1581    bool isVariadic) {
1582  Decl *ClassDecl = classDecl.getAs<Decl>();
1583
1584  // Make sure we can establish a context for the method.
1585  if (!ClassDecl) {
1586    Diag(MethodLoc, diag::error_missing_method_context);
1587    return DeclPtrTy();
1588  }
1589  QualType resultDeclType;
1590
1591  if (ReturnType) {
1592    resultDeclType = QualType::getFromOpaquePtr(ReturnType);
1593
1594    // Methods cannot return interface types. All ObjC objects are
1595    // passed by reference.
1596    if (resultDeclType->isObjCInterfaceType()) {
1597      Diag(MethodLoc, diag::err_object_cannot_be_passed_returned_by_value)
1598        << 0 << resultDeclType;
1599      return DeclPtrTy();
1600    }
1601  } else // get the type for "id".
1602    resultDeclType = Context.getObjCIdType();
1603
1604  ObjCMethodDecl* ObjCMethod =
1605    ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType,
1606                           cast<DeclContext>(ClassDecl),
1607                           MethodType == tok::minus, isVariadic,
1608                           false,
1609                           MethodDeclKind == tok::objc_optional ?
1610                           ObjCMethodDecl::Optional :
1611                           ObjCMethodDecl::Required);
1612
1613  llvm::SmallVector<ParmVarDecl*, 16> Params;
1614
1615  for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) {
1616    QualType ArgType, UnpromotedArgType;
1617
1618    if (ArgInfo[i].Type == 0) {
1619      UnpromotedArgType = ArgType = Context.getObjCIdType();
1620    } else {
1621      UnpromotedArgType = ArgType = QualType::getFromOpaquePtr(ArgInfo[i].Type);
1622      // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
1623      ArgType = adjustParameterType(ArgType);
1624    }
1625
1626    ParmVarDecl* Param;
1627    if (ArgType == UnpromotedArgType)
1628      Param = ParmVarDecl::Create(Context, ObjCMethod, ArgInfo[i].NameLoc,
1629                                  ArgInfo[i].Name, ArgType,
1630                                  VarDecl::None, 0);
1631    else
1632      Param = OriginalParmVarDecl::Create(Context, ObjCMethod,
1633                                          ArgInfo[i].NameLoc,
1634                                          ArgInfo[i].Name, ArgType,
1635                                          UnpromotedArgType,
1636                                          VarDecl::None, 0);
1637
1638    if (ArgType->isObjCInterfaceType()) {
1639      Diag(ArgInfo[i].NameLoc,
1640           diag::err_object_cannot_be_passed_returned_by_value)
1641        << 1 << ArgType;
1642      Param->setInvalidDecl();
1643    }
1644
1645    Param->setObjCDeclQualifier(
1646      CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier()));
1647
1648    // Apply the attributes to the parameter.
1649    ProcessDeclAttributeList(Param, ArgInfo[i].ArgAttrs);
1650
1651    Params.push_back(Param);
1652  }
1653
1654  ObjCMethod->setMethodParams(Context, &Params[0], Sel.getNumArgs());
1655  ObjCMethod->setObjCDeclQualifier(
1656    CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
1657  const ObjCMethodDecl *PrevMethod = 0;
1658
1659  if (AttrList)
1660    ProcessDeclAttributeList(ObjCMethod, AttrList);
1661
1662  // For implementations (which can be very "coarse grain"), we add the
1663  // method now. This allows the AST to implement lookup methods that work
1664  // incrementally (without waiting until we parse the @end). It also allows
1665  // us to flag multiple declaration errors as they occur.
1666  if (ObjCImplementationDecl *ImpDecl =
1667        dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
1668    if (MethodType == tok::minus) {
1669      PrevMethod = ImpDecl->getInstanceMethod(Context, Sel);
1670      ImpDecl->addInstanceMethod(Context, ObjCMethod);
1671    } else {
1672      PrevMethod = ImpDecl->getClassMethod(Context, Sel);
1673      ImpDecl->addClassMethod(Context, ObjCMethod);
1674    }
1675    if (AttrList)
1676      Diag(EndLoc, diag::warn_attribute_method_def);
1677  }
1678  else if (ObjCCategoryImplDecl *CatImpDecl =
1679            dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
1680    if (MethodType == tok::minus) {
1681      PrevMethod = CatImpDecl->getInstanceMethod(Context, Sel);
1682      CatImpDecl->addInstanceMethod(Context, ObjCMethod);
1683    } else {
1684      PrevMethod = CatImpDecl->getClassMethod(Context, Sel);
1685      CatImpDecl->addClassMethod(Context, ObjCMethod);
1686    }
1687    if (AttrList)
1688      Diag(EndLoc, diag::warn_attribute_method_def);
1689  }
1690  if (PrevMethod) {
1691    // You can never have two method definitions with the same name.
1692    Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl)
1693      << ObjCMethod->getDeclName();
1694    Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
1695  }
1696  return DeclPtrTy::make(ObjCMethod);
1697}
1698
1699void Sema::CheckObjCPropertyAttributes(QualType PropertyTy,
1700                                       SourceLocation Loc,
1701                                       unsigned &Attributes) {
1702  // FIXME: Improve the reported location.
1703
1704  // readonly and readwrite/assign/retain/copy conflict.
1705  if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1706      (Attributes & (ObjCDeclSpec::DQ_PR_readwrite |
1707                     ObjCDeclSpec::DQ_PR_assign |
1708                     ObjCDeclSpec::DQ_PR_copy |
1709                     ObjCDeclSpec::DQ_PR_retain))) {
1710    const char * which = (Attributes & ObjCDeclSpec::DQ_PR_readwrite) ?
1711                          "readwrite" :
1712                         (Attributes & ObjCDeclSpec::DQ_PR_assign) ?
1713                          "assign" :
1714                         (Attributes & ObjCDeclSpec::DQ_PR_copy) ?
1715                          "copy" : "retain";
1716
1717    Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ?
1718                 diag::err_objc_property_attr_mutually_exclusive :
1719                 diag::warn_objc_property_attr_mutually_exclusive)
1720      << "readonly" << which;
1721  }
1722
1723  // Check for copy or retain on non-object types.
1724  if ((Attributes & (ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain)) &&
1725      !Context.isObjCObjectPointerType(PropertyTy)) {
1726    Diag(Loc, diag::err_objc_property_requires_object)
1727      << (Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain");
1728    Attributes &= ~(ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain);
1729  }
1730
1731  // Check for more than one of { assign, copy, retain }.
1732  if (Attributes & ObjCDeclSpec::DQ_PR_assign) {
1733    if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1734      Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1735        << "assign" << "copy";
1736      Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
1737    }
1738    if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1739      Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1740        << "assign" << "retain";
1741      Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1742    }
1743  } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1744    if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1745      Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1746        << "copy" << "retain";
1747      Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1748    }
1749  }
1750
1751  // Warn if user supplied no assignment attribute, property is
1752  // readwrite, and this is an object type.
1753  if (!(Attributes & (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_copy |
1754                      ObjCDeclSpec::DQ_PR_retain)) &&
1755      !(Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1756      Context.isObjCObjectPointerType(PropertyTy)) {
1757    // Skip this warning in gc-only mode.
1758    if (getLangOptions().getGCMode() != LangOptions::GCOnly)
1759      Diag(Loc, diag::warn_objc_property_no_assignment_attribute);
1760
1761    // If non-gc code warn that this is likely inappropriate.
1762    if (getLangOptions().getGCMode() == LangOptions::NonGC)
1763      Diag(Loc, diag::warn_objc_property_default_assign_on_object);
1764
1765    // FIXME: Implement warning dependent on NSCopying being
1766    // implemented. See also:
1767    // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496>
1768    // (please trim this list while you are at it).
1769  }
1770
1771  if (!(Attributes & ObjCDeclSpec::DQ_PR_copy)
1772      && getLangOptions().getGCMode() == LangOptions::GCOnly
1773      && PropertyTy->isBlockPointerType())
1774    Diag(Loc, diag::warn_objc_property_copy_missing_on_block);
1775}
1776
1777Sema::DeclPtrTy Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
1778                                    FieldDeclarator &FD,
1779                                    ObjCDeclSpec &ODS,
1780                                    Selector GetterSel,
1781                                    Selector SetterSel,
1782                                    DeclPtrTy ClassCategory,
1783                                    bool *isOverridingProperty,
1784                                    tok::ObjCKeywordKind MethodImplKind) {
1785  unsigned Attributes = ODS.getPropertyAttributes();
1786  bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
1787                      // default is readwrite!
1788                      !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
1789  // property is defaulted to 'assign' if it is readwrite and is
1790  // not retain or copy
1791  bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
1792                   (isReadWrite &&
1793                    !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
1794                    !(Attributes & ObjCDeclSpec::DQ_PR_copy)));
1795  QualType T = GetTypeForDeclarator(FD.D, S);
1796  Decl *ClassDecl = ClassCategory.getAs<Decl>();
1797  ObjCInterfaceDecl *CCPrimary = 0; // continuation class's primary class
1798  // May modify Attributes.
1799  CheckObjCPropertyAttributes(T, AtLoc, Attributes);
1800  if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl))
1801    if (!CDecl->getIdentifier()) {
1802      // This is a continuation class. property requires special
1803      // handling.
1804      if ((CCPrimary = CDecl->getClassInterface())) {
1805        // Find the property in continuation class's primary class only.
1806        ObjCPropertyDecl *PIDecl = 0;
1807        IdentifierInfo *PropertyId = FD.D.getIdentifier();
1808        for (ObjCInterfaceDecl::prop_iterator
1809               I = CCPrimary->prop_begin(Context),
1810               E = CCPrimary->prop_end(Context);
1811             I != E; ++I)
1812          if ((*I)->getIdentifier() == PropertyId) {
1813            PIDecl = *I;
1814            break;
1815          }
1816
1817        if (PIDecl) {
1818          // property 'PIDecl's readonly attribute will be over-ridden
1819          // with continuation class's readwrite property attribute!
1820          unsigned PIkind = PIDecl->getPropertyAttributes();
1821          if (isReadWrite && (PIkind & ObjCPropertyDecl::OBJC_PR_readonly)) {
1822            if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) !=
1823                (PIkind & ObjCPropertyDecl::OBJC_PR_nonatomic))
1824              Diag(AtLoc, diag::warn_property_attr_mismatch);
1825            PIDecl->makeitReadWriteAttribute();
1826            if (Attributes & ObjCDeclSpec::DQ_PR_retain)
1827              PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
1828            if (Attributes & ObjCDeclSpec::DQ_PR_copy)
1829              PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
1830            PIDecl->setSetterName(SetterSel);
1831          }
1832          else
1833            Diag(AtLoc, diag::err_use_continuation_class)
1834              << CCPrimary->getDeclName();
1835          *isOverridingProperty = true;
1836          // Make sure setter decl is synthesized, and added to primary
1837          // class's list.
1838          ProcessPropertyDecl(PIDecl, CCPrimary);
1839          return DeclPtrTy();
1840        }
1841        // No matching property found in the primary class. Just fall thru
1842        // and add property to continuation class's primary class.
1843        ClassDecl = CCPrimary;
1844      } else {
1845        Diag(CDecl->getLocation(), diag::err_continuation_class);
1846        *isOverridingProperty = true;
1847        return DeclPtrTy();
1848      }
1849    }
1850
1851  DeclContext *DC = dyn_cast<DeclContext>(ClassDecl);
1852  assert(DC && "ClassDecl is not a DeclContext");
1853  ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC,
1854                                                     FD.D.getIdentifierLoc(),
1855                                                     FD.D.getIdentifier(), T);
1856  DC->addDecl(Context, PDecl);
1857
1858  if (T->isArrayType() || T->isFunctionType()) {
1859    Diag(AtLoc, diag::err_property_type) << T;
1860    PDecl->setInvalidDecl();
1861  }
1862
1863  ProcessDeclAttributes(PDecl, FD.D);
1864
1865  // Regardless of setter/getter attribute, we save the default getter/setter
1866  // selector names in anticipation of declaration of setter/getter methods.
1867  PDecl->setGetterName(GetterSel);
1868  PDecl->setSetterName(SetterSel);
1869
1870  if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
1871    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
1872
1873  if (Attributes & ObjCDeclSpec::DQ_PR_getter)
1874    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
1875
1876  if (Attributes & ObjCDeclSpec::DQ_PR_setter)
1877    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
1878
1879  if (isReadWrite)
1880    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
1881
1882  if (Attributes & ObjCDeclSpec::DQ_PR_retain)
1883    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
1884
1885  if (Attributes & ObjCDeclSpec::DQ_PR_copy)
1886    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
1887
1888  if (isAssign)
1889    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
1890
1891  if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
1892    PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
1893
1894  if (MethodImplKind == tok::objc_required)
1895    PDecl->setPropertyImplementation(ObjCPropertyDecl::Required);
1896  else if (MethodImplKind == tok::objc_optional)
1897    PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional);
1898  // A case of continuation class adding a new property in the class. This
1899  // is not what it was meant for. However, gcc supports it and so should we.
1900  // Make sure setter/getters are declared here.
1901  if (CCPrimary)
1902    ProcessPropertyDecl(PDecl, CCPrimary);
1903
1904  return DeclPtrTy::make(PDecl);
1905}
1906
1907/// ActOnPropertyImplDecl - This routine performs semantic checks and
1908/// builds the AST node for a property implementation declaration; declared
1909/// as @synthesize or @dynamic.
1910///
1911Sema::DeclPtrTy Sema::ActOnPropertyImplDecl(SourceLocation AtLoc,
1912                                            SourceLocation PropertyLoc,
1913                                            bool Synthesize,
1914                                            DeclPtrTy ClassCatImpDecl,
1915                                            IdentifierInfo *PropertyId,
1916                                            IdentifierInfo *PropertyIvar) {
1917  Decl *ClassImpDecl = ClassCatImpDecl.getAs<Decl>();
1918  // Make sure we have a context for the property implementation declaration.
1919  if (!ClassImpDecl) {
1920    Diag(AtLoc, diag::error_missing_property_context);
1921    return DeclPtrTy();
1922  }
1923  ObjCPropertyDecl *property = 0;
1924  ObjCInterfaceDecl* IDecl = 0;
1925  // Find the class or category class where this property must have
1926  // a declaration.
1927  ObjCImplementationDecl *IC = 0;
1928  ObjCCategoryImplDecl* CatImplClass = 0;
1929  if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
1930    IDecl = IC->getClassInterface();
1931    // We always synthesize an interface for an implementation
1932    // without an interface decl. So, IDecl is always non-zero.
1933    assert(IDecl &&
1934           "ActOnPropertyImplDecl - @implementation without @interface");
1935
1936    // Look for this property declaration in the @implementation's @interface
1937    property = IDecl->FindPropertyDeclaration(Context, PropertyId);
1938    if (!property) {
1939      Diag(PropertyLoc, diag::error_bad_property_decl) << IDecl->getDeclName();
1940      return DeclPtrTy();
1941    }
1942  }
1943  else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
1944    if (Synthesize) {
1945      Diag(AtLoc, diag::error_synthesize_category_decl);
1946      return DeclPtrTy();
1947    }
1948    IDecl = CatImplClass->getClassInterface();
1949    if (!IDecl) {
1950      Diag(AtLoc, diag::error_missing_property_interface);
1951      return DeclPtrTy();
1952    }
1953    ObjCCategoryDecl *Category =
1954      IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier());
1955
1956    // If category for this implementation not found, it is an error which
1957    // has already been reported eralier.
1958    if (!Category)
1959      return DeclPtrTy();
1960    // Look for this property declaration in @implementation's category
1961    property = Category->FindPropertyDeclaration(Context, PropertyId);
1962    if (!property) {
1963      Diag(PropertyLoc, diag::error_bad_category_property_decl)
1964        << Category->getDeclName();
1965      return DeclPtrTy();
1966    }
1967  } else {
1968    Diag(AtLoc, diag::error_bad_property_context);
1969    return DeclPtrTy();
1970  }
1971  ObjCIvarDecl *Ivar = 0;
1972  // Check that we have a valid, previously declared ivar for @synthesize
1973  if (Synthesize) {
1974    // @synthesize
1975    if (!PropertyIvar)
1976      PropertyIvar = PropertyId;
1977    QualType PropType = Context.getCanonicalType(property->getType());
1978    // Check that this is a previously declared 'ivar' in 'IDecl' interface
1979    ObjCInterfaceDecl *ClassDeclared;
1980    Ivar = IDecl->lookupInstanceVariable(Context, PropertyIvar, ClassDeclared);
1981    if (!Ivar) {
1982      Ivar = ObjCIvarDecl::Create(Context, CurContext, PropertyLoc,
1983                                  PropertyIvar, PropType,
1984                                  ObjCIvarDecl::Public,
1985                                  (Expr *)0);
1986      property->setPropertyIvarDecl(Ivar);
1987      if (!getLangOptions().ObjCNonFragileABI)
1988        Diag(PropertyLoc, diag::error_missing_property_ivar_decl) << PropertyId;
1989        // Note! I deliberately want it to fall thru so, we have a
1990        // a property implementation and to avoid future warnings.
1991    }
1992    else if (getLangOptions().ObjCNonFragileABI &&
1993             ClassDeclared != IDecl) {
1994      Diag(PropertyLoc, diag::error_ivar_in_superclass_use)
1995        << property->getDeclName() << Ivar->getDeclName()
1996        << ClassDeclared->getDeclName();
1997      Diag(Ivar->getLocation(), diag::note_previous_access_declaration)
1998        << Ivar << Ivar->getNameAsCString();
1999      // Note! I deliberately want it to fall thru so more errors are caught.
2000    }
2001    QualType IvarType = Context.getCanonicalType(Ivar->getType());
2002
2003    // Check that type of property and its ivar are type compatible.
2004    if (PropType != IvarType) {
2005      if (CheckAssignmentConstraints(PropType, IvarType) != Compatible) {
2006        Diag(PropertyLoc, diag::error_property_ivar_type)
2007          << property->getDeclName() << Ivar->getDeclName();
2008        // Note! I deliberately want it to fall thru so, we have a
2009        // a property implementation and to avoid future warnings.
2010      }
2011
2012      // FIXME! Rules for properties are somewhat different that those
2013      // for assignments. Use a new routine to consolidate all cases;
2014      // specifically for property redeclarations as well as for ivars.
2015      QualType lhsType =Context.getCanonicalType(PropType).getUnqualifiedType();
2016      QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
2017      if (lhsType != rhsType &&
2018          lhsType->isArithmeticType()) {
2019        Diag(PropertyLoc, diag::error_property_ivar_type)
2020        << property->getDeclName() << Ivar->getDeclName();
2021        // Fall thru - see previous comment
2022      }
2023      // __weak is explicit. So it works on Canonical type.
2024      if (PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() &&
2025          getLangOptions().getGCMode() != LangOptions::NonGC) {
2026        Diag(PropertyLoc, diag::error_weak_property)
2027        << property->getDeclName() << Ivar->getDeclName();
2028        // Fall thru - see previous comment
2029      }
2030      if ((Context.isObjCObjectPointerType(property->getType()) ||
2031           PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() &&
2032           getLangOptions().getGCMode() != LangOptions::NonGC) {
2033        Diag(PropertyLoc, diag::error_strong_property)
2034        << property->getDeclName() << Ivar->getDeclName();
2035        // Fall	thru - see previous comment
2036      }
2037    }
2038  } else if (PropertyIvar)
2039      // @dynamic
2040      Diag(PropertyLoc, diag::error_dynamic_property_ivar_decl);
2041  assert (property && "ActOnPropertyImplDecl - property declaration missing");
2042  ObjCPropertyImplDecl *PIDecl =
2043    ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc,
2044                                 property,
2045                                 (Synthesize ?
2046                                  ObjCPropertyImplDecl::Synthesize
2047                                  : ObjCPropertyImplDecl::Dynamic),
2048                                 Ivar);
2049  if (IC) {
2050    if (Synthesize)
2051      if (ObjCPropertyImplDecl *PPIDecl =
2052          IC->FindPropertyImplIvarDecl(Context, PropertyIvar)) {
2053        Diag(PropertyLoc, diag::error_duplicate_ivar_use)
2054          << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
2055          << PropertyIvar;
2056        Diag(PPIDecl->getLocation(), diag::note_previous_use);
2057      }
2058
2059    if (ObjCPropertyImplDecl *PPIDecl
2060          = IC->FindPropertyImplDecl(Context, PropertyId)) {
2061      Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
2062      Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
2063      return DeclPtrTy();
2064    }
2065    IC->addPropertyImplementation(Context, PIDecl);
2066  }
2067  else {
2068    if (Synthesize)
2069      if (ObjCPropertyImplDecl *PPIDecl =
2070          CatImplClass->FindPropertyImplIvarDecl(Context, PropertyIvar)) {
2071        Diag(PropertyLoc, diag::error_duplicate_ivar_use)
2072          << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
2073          << PropertyIvar;
2074        Diag(PPIDecl->getLocation(), diag::note_previous_use);
2075      }
2076
2077    if (ObjCPropertyImplDecl *PPIDecl =
2078          CatImplClass->FindPropertyImplDecl(Context, PropertyId)) {
2079      Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
2080      Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
2081      return DeclPtrTy();
2082    }
2083    CatImplClass->addPropertyImplementation(Context, PIDecl);
2084  }
2085
2086  return DeclPtrTy::make(PIDecl);
2087}
2088
2089bool Sema::CheckObjCDeclScope(Decl *D) {
2090  if (isa<TranslationUnitDecl>(CurContext->getLookupContext()))
2091    return false;
2092
2093  Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope);
2094  D->setInvalidDecl();
2095
2096  return true;
2097}
2098
2099/// Collect the instance variables declared in an Objective-C object.  Used in
2100/// the creation of structures from objects using the @defs directive.
2101/// FIXME: This should be consolidated with CollectObjCIvars as it is also
2102/// part of the AST generation logic of @defs.
2103static void CollectIvars(ObjCInterfaceDecl *Class, RecordDecl *Record,
2104                         ASTContext& Ctx,
2105                         llvm::SmallVectorImpl<Sema::DeclPtrTy> &ivars) {
2106  if (Class->getSuperClass())
2107    CollectIvars(Class->getSuperClass(), Record, Ctx, ivars);
2108
2109  // For each ivar, create a fresh ObjCAtDefsFieldDecl.
2110  for (ObjCInterfaceDecl::ivar_iterator I = Class->ivar_begin(),
2111       E = Class->ivar_end(); I != E; ++I) {
2112    ObjCIvarDecl* ID = *I;
2113    Decl *FD = ObjCAtDefsFieldDecl::Create(Ctx, Record, ID->getLocation(),
2114                                           ID->getIdentifier(), ID->getType(),
2115                                           ID->getBitWidth());
2116    ivars.push_back(Sema::DeclPtrTy::make(FD));
2117  }
2118}
2119
2120/// Called whenever @defs(ClassName) is encountered in the source.  Inserts the
2121/// instance variables of ClassName into Decls.
2122void Sema::ActOnDefs(Scope *S, DeclPtrTy TagD, SourceLocation DeclStart,
2123                     IdentifierInfo *ClassName,
2124                     llvm::SmallVectorImpl<DeclPtrTy> &Decls) {
2125  // Check that ClassName is a valid class
2126  ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
2127  if (!Class) {
2128    Diag(DeclStart, diag::err_undef_interface) << ClassName;
2129    return;
2130  }
2131  if (LangOpts.ObjCNonFragileABI) {
2132    Diag(DeclStart, diag::err_atdef_nonfragile_interface);
2133    return;
2134  }
2135
2136  // Collect the instance variables
2137  CollectIvars(Class, dyn_cast<RecordDecl>(TagD.getAs<Decl>()), Context, Decls);
2138
2139  // Introduce all of these fields into the appropriate scope.
2140  for (llvm::SmallVectorImpl<DeclPtrTy>::iterator D = Decls.begin();
2141       D != Decls.end(); ++D) {
2142    FieldDecl *FD = cast<FieldDecl>(D->getAs<Decl>());
2143    if (getLangOptions().CPlusPlus)
2144      PushOnScopeChains(cast<FieldDecl>(FD), S);
2145    else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD.getAs<Decl>()))
2146      Record->addDecl(Context, FD);
2147  }
2148}
2149
2150