1 //===--- DeclObjC.h - Classes for representing declarations -----*- C++ -*-===//
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 defines the DeclObjC interface and subclasses.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_AST_DECLOBJC_H
15 #define LLVM_CLANG_AST_DECLOBJC_H
16
17 #include "clang/AST/Decl.h"
18 #include "clang/AST/SelectorLocationsKind.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/Support/Compiler.h"
21
22 namespace clang {
23 class Expr;
24 class Stmt;
25 class FunctionDecl;
26 class RecordDecl;
27 class ObjCIvarDecl;
28 class ObjCMethodDecl;
29 class ObjCProtocolDecl;
30 class ObjCCategoryDecl;
31 class ObjCPropertyDecl;
32 class ObjCPropertyImplDecl;
33 class CXXCtorInitializer;
34
35 class ObjCListBase {
36 ObjCListBase(const ObjCListBase &) = delete;
37 void operator=(const ObjCListBase &) = delete;
38 protected:
39 /// List is an array of pointers to objects that are not owned by this object.
40 void **List;
41 unsigned NumElts;
42
43 public:
ObjCListBase()44 ObjCListBase() : List(nullptr), NumElts(0) {}
size()45 unsigned size() const { return NumElts; }
empty()46 bool empty() const { return NumElts == 0; }
47
48 protected:
49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
50 };
51
52
53 /// ObjCList - This is a simple template class used to hold various lists of
54 /// decls etc, which is heavily used by the ObjC front-end. This only use case
55 /// this supports is setting the list all at once and then reading elements out
56 /// of it.
57 template <typename T>
58 class ObjCList : public ObjCListBase {
59 public:
set(T * const * InList,unsigned Elts,ASTContext & Ctx)60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) {
61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx);
62 }
63
64 typedef T* const * iterator;
begin()65 iterator begin() const { return (iterator)List; }
end()66 iterator end() const { return (iterator)List+NumElts; }
67
68 T* operator[](unsigned Idx) const {
69 assert(Idx < NumElts && "Invalid access");
70 return (T*)List[Idx];
71 }
72 };
73
74 /// \brief A list of Objective-C protocols, along with the source
75 /// locations at which they were referenced.
76 class ObjCProtocolList : public ObjCList<ObjCProtocolDecl> {
77 SourceLocation *Locations;
78
79 using ObjCList<ObjCProtocolDecl>::set;
80
81 public:
ObjCProtocolList()82 ObjCProtocolList() : ObjCList<ObjCProtocolDecl>(), Locations(nullptr) { }
83
84 typedef const SourceLocation *loc_iterator;
loc_begin()85 loc_iterator loc_begin() const { return Locations; }
loc_end()86 loc_iterator loc_end() const { return Locations + size(); }
87
88 void set(ObjCProtocolDecl* const* InList, unsigned Elts,
89 const SourceLocation *Locs, ASTContext &Ctx);
90 };
91
92
93 /// ObjCMethodDecl - Represents an instance or class method declaration.
94 /// ObjC methods can be declared within 4 contexts: class interfaces,
95 /// categories, protocols, and class implementations. While C++ member
96 /// functions leverage C syntax, Objective-C method syntax is modeled after
97 /// Smalltalk (using colons to specify argument types/expressions).
98 /// Here are some brief examples:
99 ///
100 /// Setter/getter instance methods:
101 /// - (void)setMenu:(NSMenu *)menu;
102 /// - (NSMenu *)menu;
103 ///
104 /// Instance method that takes 2 NSView arguments:
105 /// - (void)replaceSubview:(NSView *)oldView with:(NSView *)newView;
106 ///
107 /// Getter class method:
108 /// + (NSMenu *)defaultMenu;
109 ///
110 /// A selector represents a unique name for a method. The selector names for
111 /// the above methods are setMenu:, menu, replaceSubview:with:, and defaultMenu.
112 ///
113 class ObjCMethodDecl : public NamedDecl, public DeclContext {
114 public:
115 enum ImplementationControl { None, Required, Optional };
116 private:
117 // The conventional meaning of this method; an ObjCMethodFamily.
118 // This is not serialized; instead, it is computed on demand and
119 // cached.
120 mutable unsigned Family : ObjCMethodFamilyBitWidth;
121
122 /// instance (true) or class (false) method.
123 unsigned IsInstance : 1;
124 unsigned IsVariadic : 1;
125
126 /// True if this method is the getter or setter for an explicit property.
127 unsigned IsPropertyAccessor : 1;
128
129 // Method has a definition.
130 unsigned IsDefined : 1;
131
132 /// \brief Method redeclaration in the same interface.
133 unsigned IsRedeclaration : 1;
134
135 /// \brief Is redeclared in the same interface.
136 mutable unsigned HasRedeclaration : 1;
137
138 // NOTE: VC++ treats enums as signed, avoid using ImplementationControl enum
139 /// \@required/\@optional
140 unsigned DeclImplementation : 2;
141
142 // NOTE: VC++ treats enums as signed, avoid using the ObjCDeclQualifier enum
143 /// in, inout, etc.
144 unsigned objcDeclQualifier : 7;
145
146 /// \brief Indicates whether this method has a related result type.
147 unsigned RelatedResultType : 1;
148
149 /// \brief Whether the locations of the selector identifiers are in a
150 /// "standard" position, a enum SelectorLocationsKind.
151 unsigned SelLocsKind : 2;
152
153 /// \brief Whether this method overrides any other in the class hierarchy.
154 ///
155 /// A method is said to override any method in the class's
156 /// base classes, its protocols, or its categories' protocols, that has
157 /// the same selector and is of the same kind (class or instance).
158 /// A method in an implementation is not considered as overriding the same
159 /// method in the interface or its categories.
160 unsigned IsOverriding : 1;
161
162 /// \brief Indicates if the method was a definition but its body was skipped.
163 unsigned HasSkippedBody : 1;
164
165 // Return type of this method.
166 QualType MethodDeclType;
167
168 // Type source information for the return type.
169 TypeSourceInfo *ReturnTInfo;
170
171 /// \brief Array of ParmVarDecls for the formal parameters of this method
172 /// and optionally followed by selector locations.
173 void *ParamsAndSelLocs;
174 unsigned NumParams;
175
176 /// List of attributes for this method declaration.
177 SourceLocation DeclEndLoc; // the location of the ';' or '{'.
178
179 // The following are only used for method definitions, null otherwise.
180 LazyDeclStmtPtr Body;
181
182 /// SelfDecl - Decl for the implicit self parameter. This is lazily
183 /// constructed by createImplicitParams.
184 ImplicitParamDecl *SelfDecl;
185 /// CmdDecl - Decl for the implicit _cmd parameter. This is lazily
186 /// constructed by createImplicitParams.
187 ImplicitParamDecl *CmdDecl;
188
getSelLocsKind()189 SelectorLocationsKind getSelLocsKind() const {
190 return (SelectorLocationsKind)SelLocsKind;
191 }
hasStandardSelLocs()192 bool hasStandardSelLocs() const {
193 return getSelLocsKind() != SelLoc_NonStandard;
194 }
195
196 /// \brief Get a pointer to the stored selector identifiers locations array.
197 /// No locations will be stored if HasStandardSelLocs is true.
getStoredSelLocs()198 SourceLocation *getStoredSelLocs() {
199 return reinterpret_cast<SourceLocation*>(getParams() + NumParams);
200 }
getStoredSelLocs()201 const SourceLocation *getStoredSelLocs() const {
202 return reinterpret_cast<const SourceLocation*>(getParams() + NumParams);
203 }
204
205 /// \brief Get a pointer to the stored selector identifiers locations array.
206 /// No locations will be stored if HasStandardSelLocs is true.
getParams()207 ParmVarDecl **getParams() {
208 return reinterpret_cast<ParmVarDecl **>(ParamsAndSelLocs);
209 }
getParams()210 const ParmVarDecl *const *getParams() const {
211 return reinterpret_cast<const ParmVarDecl *const *>(ParamsAndSelLocs);
212 }
213
214 /// \brief Get the number of stored selector identifiers locations.
215 /// No locations will be stored if HasStandardSelLocs is true.
getNumStoredSelLocs()216 unsigned getNumStoredSelLocs() const {
217 if (hasStandardSelLocs())
218 return 0;
219 return getNumSelectorLocs();
220 }
221
222 void setParamsAndSelLocs(ASTContext &C,
223 ArrayRef<ParmVarDecl*> Params,
224 ArrayRef<SourceLocation> SelLocs);
225
226 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
227 Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo,
228 DeclContext *contextDecl, bool isInstance = true,
229 bool isVariadic = false, bool isPropertyAccessor = false,
230 bool isImplicitlyDeclared = false, bool isDefined = false,
231 ImplementationControl impControl = None,
232 bool HasRelatedResultType = false)
NamedDecl(ObjCMethod,contextDecl,beginLoc,SelInfo)233 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo),
234 DeclContext(ObjCMethod), Family(InvalidObjCMethodFamily),
235 IsInstance(isInstance), IsVariadic(isVariadic),
236 IsPropertyAccessor(isPropertyAccessor), IsDefined(isDefined),
237 IsRedeclaration(0), HasRedeclaration(0), DeclImplementation(impControl),
238 objcDeclQualifier(OBJC_TQ_None),
239 RelatedResultType(HasRelatedResultType),
240 SelLocsKind(SelLoc_StandardNoSpace), IsOverriding(0), HasSkippedBody(0),
241 MethodDeclType(T), ReturnTInfo(ReturnTInfo), ParamsAndSelLocs(nullptr),
242 NumParams(0), DeclEndLoc(endLoc), Body(), SelfDecl(nullptr),
243 CmdDecl(nullptr) {
244 setImplicit(isImplicitlyDeclared);
245 }
246
247 /// \brief A definition will return its interface declaration.
248 /// An interface declaration will return its definition.
249 /// Otherwise it will return itself.
250 ObjCMethodDecl *getNextRedeclarationImpl() override;
251
252 public:
253 static ObjCMethodDecl *
254 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
255 Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo,
256 DeclContext *contextDecl, bool isInstance = true,
257 bool isVariadic = false, bool isPropertyAccessor = false,
258 bool isImplicitlyDeclared = false, bool isDefined = false,
259 ImplementationControl impControl = None,
260 bool HasRelatedResultType = false);
261
262 static ObjCMethodDecl *CreateDeserialized(ASTContext &C, unsigned ID);
263
264 ObjCMethodDecl *getCanonicalDecl() override;
getCanonicalDecl()265 const ObjCMethodDecl *getCanonicalDecl() const {
266 return const_cast<ObjCMethodDecl*>(this)->getCanonicalDecl();
267 }
268
getObjCDeclQualifier()269 ObjCDeclQualifier getObjCDeclQualifier() const {
270 return ObjCDeclQualifier(objcDeclQualifier);
271 }
setObjCDeclQualifier(ObjCDeclQualifier QV)272 void setObjCDeclQualifier(ObjCDeclQualifier QV) { objcDeclQualifier = QV; }
273
274 /// \brief Determine whether this method has a result type that is related
275 /// to the message receiver's type.
hasRelatedResultType()276 bool hasRelatedResultType() const { return RelatedResultType; }
277
278 /// \brief Note whether this method has a related result type.
279 void SetRelatedResultType(bool RRT = true) { RelatedResultType = RRT; }
280
281 /// \brief True if this is a method redeclaration in the same interface.
isRedeclaration()282 bool isRedeclaration() const { return IsRedeclaration; }
283 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
284
285 /// \brief Returns the location where the declarator ends. It will be
286 /// the location of ';' for a method declaration and the location of '{'
287 /// for a method definition.
getDeclaratorEndLoc()288 SourceLocation getDeclaratorEndLoc() const { return DeclEndLoc; }
289
290 // Location information, modeled after the Stmt API.
getLocStart()291 SourceLocation getLocStart() const LLVM_READONLY { return getLocation(); }
292 SourceLocation getLocEnd() const LLVM_READONLY;
getSourceRange()293 SourceRange getSourceRange() const override LLVM_READONLY {
294 return SourceRange(getLocation(), getLocEnd());
295 }
296
getSelectorStartLoc()297 SourceLocation getSelectorStartLoc() const {
298 if (isImplicit())
299 return getLocStart();
300 return getSelectorLoc(0);
301 }
getSelectorLoc(unsigned Index)302 SourceLocation getSelectorLoc(unsigned Index) const {
303 assert(Index < getNumSelectorLocs() && "Index out of range!");
304 if (hasStandardSelLocs())
305 return getStandardSelectorLoc(Index, getSelector(),
306 getSelLocsKind() == SelLoc_StandardWithSpace,
307 parameters(),
308 DeclEndLoc);
309 return getStoredSelLocs()[Index];
310 }
311
312 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
313
getNumSelectorLocs()314 unsigned getNumSelectorLocs() const {
315 if (isImplicit())
316 return 0;
317 Selector Sel = getSelector();
318 if (Sel.isUnarySelector())
319 return 1;
320 return Sel.getNumArgs();
321 }
322
323 ObjCInterfaceDecl *getClassInterface();
getClassInterface()324 const ObjCInterfaceDecl *getClassInterface() const {
325 return const_cast<ObjCMethodDecl*>(this)->getClassInterface();
326 }
327
getSelector()328 Selector getSelector() const { return getDeclName().getObjCSelector(); }
329
getReturnType()330 QualType getReturnType() const { return MethodDeclType; }
setReturnType(QualType T)331 void setReturnType(QualType T) { MethodDeclType = T; }
332 SourceRange getReturnTypeSourceRange() const;
333
334 /// \brief Determine the type of an expression that sends a message to this
335 /// function. This replaces the type parameters with the types they would
336 /// get if the receiver was parameterless (e.g. it may replace the type
337 /// parameter with 'id').
338 QualType getSendResultType() const;
339
340 /// Determine the type of an expression that sends a message to this
341 /// function with the given receiver type.
342 QualType getSendResultType(QualType receiverType) const;
343
getReturnTypeSourceInfo()344 TypeSourceInfo *getReturnTypeSourceInfo() const { return ReturnTInfo; }
setReturnTypeSourceInfo(TypeSourceInfo * TInfo)345 void setReturnTypeSourceInfo(TypeSourceInfo *TInfo) { ReturnTInfo = TInfo; }
346
347 // Iterator access to formal parameters.
param_size()348 unsigned param_size() const { return NumParams; }
349 typedef const ParmVarDecl *const *param_const_iterator;
350 typedef ParmVarDecl *const *param_iterator;
351 typedef llvm::iterator_range<param_iterator> param_range;
352 typedef llvm::iterator_range<param_const_iterator> param_const_range;
353
params()354 param_range params() { return param_range(param_begin(), param_end()); }
params()355 param_const_range params() const {
356 return param_const_range(param_begin(), param_end());
357 }
358
param_begin()359 param_const_iterator param_begin() const {
360 return param_const_iterator(getParams());
361 }
param_end()362 param_const_iterator param_end() const {
363 return param_const_iterator(getParams() + NumParams);
364 }
param_begin()365 param_iterator param_begin() { return param_iterator(getParams()); }
param_end()366 param_iterator param_end() { return param_iterator(getParams() + NumParams); }
367
368 // This method returns and of the parameters which are part of the selector
369 // name mangling requirements.
sel_param_end()370 param_const_iterator sel_param_end() const {
371 return param_begin() + getSelector().getNumArgs();
372 }
373
374 // ArrayRef access to formal parameters. This should eventually
375 // replace the iterator interface above.
parameters()376 ArrayRef<ParmVarDecl*> parameters() const {
377 return llvm::makeArrayRef(const_cast<ParmVarDecl**>(getParams()),
378 NumParams);
379 }
380
381 /// \brief Sets the method's parameters and selector source locations.
382 /// If the method is implicit (not coming from source) \p SelLocs is
383 /// ignored.
384 void setMethodParams(ASTContext &C,
385 ArrayRef<ParmVarDecl*> Params,
386 ArrayRef<SourceLocation> SelLocs = llvm::None);
387
388 // Iterator access to parameter types.
389 typedef std::const_mem_fun_t<QualType, ParmVarDecl> deref_fun;
390 typedef llvm::mapped_iterator<param_const_iterator, deref_fun>
391 param_type_iterator;
392
param_type_begin()393 param_type_iterator param_type_begin() const {
394 return llvm::map_iterator(param_begin(), deref_fun(&ParmVarDecl::getType));
395 }
param_type_end()396 param_type_iterator param_type_end() const {
397 return llvm::map_iterator(param_end(), deref_fun(&ParmVarDecl::getType));
398 }
399
400 /// createImplicitParams - Used to lazily create the self and cmd
401 /// implict parameters. This must be called prior to using getSelfDecl()
402 /// or getCmdDecl(). The call is ignored if the implicit paramters
403 /// have already been created.
404 void createImplicitParams(ASTContext &Context, const ObjCInterfaceDecl *ID);
405
406 /// \return the type for \c self and set \arg selfIsPseudoStrong and
407 /// \arg selfIsConsumed accordingly.
408 QualType getSelfType(ASTContext &Context, const ObjCInterfaceDecl *OID,
409 bool &selfIsPseudoStrong, bool &selfIsConsumed);
410
getSelfDecl()411 ImplicitParamDecl * getSelfDecl() const { return SelfDecl; }
setSelfDecl(ImplicitParamDecl * SD)412 void setSelfDecl(ImplicitParamDecl *SD) { SelfDecl = SD; }
getCmdDecl()413 ImplicitParamDecl * getCmdDecl() const { return CmdDecl; }
setCmdDecl(ImplicitParamDecl * CD)414 void setCmdDecl(ImplicitParamDecl *CD) { CmdDecl = CD; }
415
416 /// Determines the family of this method.
417 ObjCMethodFamily getMethodFamily() const;
418
isInstanceMethod()419 bool isInstanceMethod() const { return IsInstance; }
setInstanceMethod(bool isInst)420 void setInstanceMethod(bool isInst) { IsInstance = isInst; }
isVariadic()421 bool isVariadic() const { return IsVariadic; }
setVariadic(bool isVar)422 void setVariadic(bool isVar) { IsVariadic = isVar; }
423
isClassMethod()424 bool isClassMethod() const { return !IsInstance; }
425
isPropertyAccessor()426 bool isPropertyAccessor() const { return IsPropertyAccessor; }
setPropertyAccessor(bool isAccessor)427 void setPropertyAccessor(bool isAccessor) { IsPropertyAccessor = isAccessor; }
428
isDefined()429 bool isDefined() const { return IsDefined; }
setDefined(bool isDefined)430 void setDefined(bool isDefined) { IsDefined = isDefined; }
431
432 /// \brief Whether this method overrides any other in the class hierarchy.
433 ///
434 /// A method is said to override any method in the class's
435 /// base classes, its protocols, or its categories' protocols, that has
436 /// the same selector and is of the same kind (class or instance).
437 /// A method in an implementation is not considered as overriding the same
438 /// method in the interface or its categories.
isOverriding()439 bool isOverriding() const { return IsOverriding; }
setOverriding(bool isOverriding)440 void setOverriding(bool isOverriding) { IsOverriding = isOverriding; }
441
442 /// \brief Return overridden methods for the given \p Method.
443 ///
444 /// An ObjC method is considered to override any method in the class's
445 /// base classes (and base's categories), its protocols, or its categories'
446 /// protocols, that has
447 /// the same selector and is of the same kind (class or instance).
448 /// A method in an implementation is not considered as overriding the same
449 /// method in the interface or its categories.
450 void getOverriddenMethods(
451 SmallVectorImpl<const ObjCMethodDecl *> &Overridden) const;
452
453 /// \brief True if the method was a definition but its body was skipped.
hasSkippedBody()454 bool hasSkippedBody() const { return HasSkippedBody; }
455 void setHasSkippedBody(bool Skipped = true) { HasSkippedBody = Skipped; }
456
457 /// \brief Returns the property associated with this method's selector.
458 ///
459 /// Note that even if this particular method is not marked as a property
460 /// accessor, it is still possible for it to match a property declared in a
461 /// superclass. Pass \c false if you only want to check the current class.
462 const ObjCPropertyDecl *findPropertyDecl(bool CheckOverrides = true) const;
463
464 // Related to protocols declared in \@protocol
setDeclImplementation(ImplementationControl ic)465 void setDeclImplementation(ImplementationControl ic) {
466 DeclImplementation = ic;
467 }
getImplementationControl()468 ImplementationControl getImplementationControl() const {
469 return ImplementationControl(DeclImplementation);
470 }
471
472 /// Returns true if this specific method declaration is marked with the
473 /// designated initializer attribute.
474 bool isThisDeclarationADesignatedInitializer() const;
475
476 /// Returns true if the method selector resolves to a designated initializer
477 /// in the class's interface.
478 ///
479 /// \param InitMethod if non-null and the function returns true, it receives
480 /// the method declaration that was marked with the designated initializer
481 /// attribute.
482 bool isDesignatedInitializerForTheInterface(
483 const ObjCMethodDecl **InitMethod = nullptr) const;
484
485 /// \brief Determine whether this method has a body.
hasBody()486 bool hasBody() const override { return Body.isValid(); }
487
488 /// \brief Retrieve the body of this method, if it has one.
489 Stmt *getBody() const override;
490
setLazyBody(uint64_t Offset)491 void setLazyBody(uint64_t Offset) { Body = Offset; }
492
getCompoundBody()493 CompoundStmt *getCompoundBody() { return (CompoundStmt*)getBody(); }
setBody(Stmt * B)494 void setBody(Stmt *B) { Body = B; }
495
496 /// \brief Returns whether this specific method is a definition.
isThisDeclarationADefinition()497 bool isThisDeclarationADefinition() const { return hasBody(); }
498
499 // Implement isa/cast/dyncast/etc.
classof(const Decl * D)500 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)501 static bool classofKind(Kind K) { return K == ObjCMethod; }
castToDeclContext(const ObjCMethodDecl * D)502 static DeclContext *castToDeclContext(const ObjCMethodDecl *D) {
503 return static_cast<DeclContext *>(const_cast<ObjCMethodDecl*>(D));
504 }
castFromDeclContext(const DeclContext * DC)505 static ObjCMethodDecl *castFromDeclContext(const DeclContext *DC) {
506 return static_cast<ObjCMethodDecl *>(const_cast<DeclContext*>(DC));
507 }
508
509 friend class ASTDeclReader;
510 friend class ASTDeclWriter;
511 };
512
513 /// Describes the variance of a given generic parameter.
514 enum class ObjCTypeParamVariance : uint8_t {
515 /// The parameter is invariant: must match exactly.
516 Invariant,
517 /// The parameter is covariant, e.g., X<T> is a subtype of X<U> when
518 /// the type parameter is covariant and T is a subtype of U.
519 Covariant,
520 /// The parameter is contravariant, e.g., X<T> is a subtype of X<U>
521 /// when the type parameter is covariant and U is a subtype of T.
522 Contravariant,
523 };
524
525 /// Represents the declaration of an Objective-C type parameter.
526 ///
527 /// \code
528 /// @interface NSDictionary<Key : id<NSCopying>, Value>
529 /// @end
530 /// \endcode
531 ///
532 /// In the example above, both \c Key and \c Value are represented by
533 /// \c ObjCTypeParamDecl. \c Key has an explicit bound of \c id<NSCopying>,
534 /// while \c Value gets an implicit bound of \c id.
535 ///
536 /// Objective-C type parameters are typedef-names in the grammar,
537 class ObjCTypeParamDecl : public TypedefNameDecl {
538 void anchor() override;
539
540 /// Index of this type parameter in the type parameter list.
541 unsigned Index : 14;
542
543 /// The variance of the type parameter.
544 unsigned Variance : 2;
545
546 /// The location of the variance, if any.
547 SourceLocation VarianceLoc;
548
549 /// The location of the ':', which will be valid when the bound was
550 /// explicitly specified.
551 SourceLocation ColonLoc;
552
ObjCTypeParamDecl(ASTContext & ctx,DeclContext * dc,ObjCTypeParamVariance variance,SourceLocation varianceLoc,unsigned index,SourceLocation nameLoc,IdentifierInfo * name,SourceLocation colonLoc,TypeSourceInfo * boundInfo)553 ObjCTypeParamDecl(ASTContext &ctx, DeclContext *dc,
554 ObjCTypeParamVariance variance, SourceLocation varianceLoc,
555 unsigned index,
556 SourceLocation nameLoc, IdentifierInfo *name,
557 SourceLocation colonLoc, TypeSourceInfo *boundInfo)
558 : TypedefNameDecl(ObjCTypeParam, ctx, dc, nameLoc, nameLoc, name,
559 boundInfo),
560 Index(index), Variance(static_cast<unsigned>(variance)),
561 VarianceLoc(varianceLoc), ColonLoc(colonLoc) { }
562
563 public:
564 static ObjCTypeParamDecl *Create(ASTContext &ctx, DeclContext *dc,
565 ObjCTypeParamVariance variance,
566 SourceLocation varianceLoc,
567 unsigned index,
568 SourceLocation nameLoc,
569 IdentifierInfo *name,
570 SourceLocation colonLoc,
571 TypeSourceInfo *boundInfo);
572 static ObjCTypeParamDecl *CreateDeserialized(ASTContext &ctx, unsigned ID);
573
574 SourceRange getSourceRange() const override LLVM_READONLY;
575
576 /// Determine the variance of this type parameter.
getVariance()577 ObjCTypeParamVariance getVariance() const {
578 return static_cast<ObjCTypeParamVariance>(Variance);
579 }
580
581 /// Set the variance of this type parameter.
setVariance(ObjCTypeParamVariance variance)582 void setVariance(ObjCTypeParamVariance variance) {
583 Variance = static_cast<unsigned>(variance);
584 }
585
586 /// Retrieve the location of the variance keyword.
getVarianceLoc()587 SourceLocation getVarianceLoc() const { return VarianceLoc; }
588
589 /// Retrieve the index into its type parameter list.
getIndex()590 unsigned getIndex() const { return Index; }
591
592 /// Whether this type parameter has an explicitly-written type bound, e.g.,
593 /// "T : NSView".
hasExplicitBound()594 bool hasExplicitBound() const { return ColonLoc.isValid(); }
595
596 /// Retrieve the location of the ':' separating the type parameter name
597 /// from the explicitly-specified bound.
getColonLoc()598 SourceLocation getColonLoc() const { return ColonLoc; }
599
600 // Implement isa/cast/dyncast/etc.
classof(const Decl * D)601 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)602 static bool classofKind(Kind K) { return K == ObjCTypeParam; }
603
604 friend class ASTDeclReader;
605 friend class ASTDeclWriter;
606 };
607
608 /// Stores a list of Objective-C type parameters for a parameterized class
609 /// or a category/extension thereof.
610 ///
611 /// \code
612 /// @interface NSArray<T> // stores the <T>
613 /// @end
614 /// \endcode
615 class ObjCTypeParamList {
616 /// Stores the components of a SourceRange as a POD.
617 struct PODSourceRange {
618 unsigned Begin;
619 unsigned End;
620 };
621
622 union {
623 /// Location of the left and right angle brackets.
624 PODSourceRange Brackets;
625
626 // Used only for alignment.
627 ObjCTypeParamDecl *AlignmentHack;
628 };
629
630 /// The number of parameters in the list, which are tail-allocated.
631 unsigned NumParams;
632
633 ObjCTypeParamList(SourceLocation lAngleLoc,
634 ArrayRef<ObjCTypeParamDecl *> typeParams,
635 SourceLocation rAngleLoc);
636
637 public:
638 /// Create a new Objective-C type parameter list.
639 static ObjCTypeParamList *create(ASTContext &ctx,
640 SourceLocation lAngleLoc,
641 ArrayRef<ObjCTypeParamDecl *> typeParams,
642 SourceLocation rAngleLoc);
643
644 /// Iterate through the type parameters in the list.
645 typedef ObjCTypeParamDecl **iterator;
646
begin()647 iterator begin() { return reinterpret_cast<ObjCTypeParamDecl **>(this + 1); }
648
end()649 iterator end() { return begin() + size(); }
650
651 /// Determine the number of type parameters in this list.
size()652 unsigned size() const { return NumParams; }
653
654 // Iterate through the type parameters in the list.
655 typedef ObjCTypeParamDecl * const *const_iterator;
656
begin()657 const_iterator begin() const {
658 return reinterpret_cast<ObjCTypeParamDecl * const *>(this + 1);
659 }
660
end()661 const_iterator end() const {
662 return begin() + size();
663 }
664
front()665 ObjCTypeParamDecl *front() const {
666 assert(size() > 0 && "empty Objective-C type parameter list");
667 return *begin();
668 }
669
back()670 ObjCTypeParamDecl *back() const {
671 assert(size() > 0 && "empty Objective-C type parameter list");
672 return *(end() - 1);
673 }
674
getLAngleLoc()675 SourceLocation getLAngleLoc() const {
676 return SourceLocation::getFromRawEncoding(Brackets.Begin);
677 }
getRAngleLoc()678 SourceLocation getRAngleLoc() const {
679 return SourceLocation::getFromRawEncoding(Brackets.End);
680 }
getSourceRange()681 SourceRange getSourceRange() const {
682 return SourceRange(getLAngleLoc(), getRAngleLoc());
683 }
684
685 /// Gather the default set of type arguments to be substituted for
686 /// these type parameters when dealing with an unspecialized type.
687 void gatherDefaultTypeArgs(SmallVectorImpl<QualType> &typeArgs) const;
688 };
689
690 /// ObjCContainerDecl - Represents a container for method declarations.
691 /// Current sub-classes are ObjCInterfaceDecl, ObjCCategoryDecl,
692 /// ObjCProtocolDecl, and ObjCImplDecl.
693 ///
694 class ObjCContainerDecl : public NamedDecl, public DeclContext {
695 void anchor() override;
696
697 SourceLocation AtStart;
698
699 // These two locations in the range mark the end of the method container.
700 // The first points to the '@' token, and the second to the 'end' token.
701 SourceRange AtEnd;
702 public:
703
ObjCContainerDecl(Kind DK,DeclContext * DC,IdentifierInfo * Id,SourceLocation nameLoc,SourceLocation atStartLoc)704 ObjCContainerDecl(Kind DK, DeclContext *DC,
705 IdentifierInfo *Id, SourceLocation nameLoc,
706 SourceLocation atStartLoc)
707 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
708
709 // Iterator access to properties.
710 typedef specific_decl_iterator<ObjCPropertyDecl> prop_iterator;
711 typedef llvm::iterator_range<specific_decl_iterator<ObjCPropertyDecl>>
712 prop_range;
713
properties()714 prop_range properties() const { return prop_range(prop_begin(), prop_end()); }
prop_begin()715 prop_iterator prop_begin() const {
716 return prop_iterator(decls_begin());
717 }
prop_end()718 prop_iterator prop_end() const {
719 return prop_iterator(decls_end());
720 }
721
722 // Iterator access to instance/class methods.
723 typedef specific_decl_iterator<ObjCMethodDecl> method_iterator;
724 typedef llvm::iterator_range<specific_decl_iterator<ObjCMethodDecl>>
725 method_range;
726
methods()727 method_range methods() const {
728 return method_range(meth_begin(), meth_end());
729 }
meth_begin()730 method_iterator meth_begin() const {
731 return method_iterator(decls_begin());
732 }
meth_end()733 method_iterator meth_end() const {
734 return method_iterator(decls_end());
735 }
736
737 typedef filtered_decl_iterator<ObjCMethodDecl,
738 &ObjCMethodDecl::isInstanceMethod>
739 instmeth_iterator;
740 typedef llvm::iterator_range<instmeth_iterator> instmeth_range;
741
instance_methods()742 instmeth_range instance_methods() const {
743 return instmeth_range(instmeth_begin(), instmeth_end());
744 }
instmeth_begin()745 instmeth_iterator instmeth_begin() const {
746 return instmeth_iterator(decls_begin());
747 }
instmeth_end()748 instmeth_iterator instmeth_end() const {
749 return instmeth_iterator(decls_end());
750 }
751
752 typedef filtered_decl_iterator<ObjCMethodDecl,
753 &ObjCMethodDecl::isClassMethod>
754 classmeth_iterator;
755 typedef llvm::iterator_range<classmeth_iterator> classmeth_range;
756
class_methods()757 classmeth_range class_methods() const {
758 return classmeth_range(classmeth_begin(), classmeth_end());
759 }
classmeth_begin()760 classmeth_iterator classmeth_begin() const {
761 return classmeth_iterator(decls_begin());
762 }
classmeth_end()763 classmeth_iterator classmeth_end() const {
764 return classmeth_iterator(decls_end());
765 }
766
767 // Get the local instance/class method declared in this interface.
768 ObjCMethodDecl *getMethod(Selector Sel, bool isInstance,
769 bool AllowHidden = false) const;
770 ObjCMethodDecl *getInstanceMethod(Selector Sel,
771 bool AllowHidden = false) const {
772 return getMethod(Sel, true/*isInstance*/, AllowHidden);
773 }
774 ObjCMethodDecl *getClassMethod(Selector Sel, bool AllowHidden = false) const {
775 return getMethod(Sel, false/*isInstance*/, AllowHidden);
776 }
777 bool HasUserDeclaredSetterMethod(const ObjCPropertyDecl *P) const;
778 ObjCIvarDecl *getIvarDecl(IdentifierInfo *Id) const;
779
780 ObjCPropertyDecl *
781 FindPropertyDeclaration(const IdentifierInfo *PropertyId) const;
782
783 typedef llvm::DenseMap<IdentifierInfo*, ObjCPropertyDecl*> PropertyMap;
784
785 typedef llvm::DenseMap<const ObjCProtocolDecl *, ObjCPropertyDecl*>
786 ProtocolPropertyMap;
787
788 typedef llvm::SmallVector<ObjCPropertyDecl*, 8> PropertyDeclOrder;
789
790 /// This routine collects list of properties to be implemented in the class.
791 /// This includes, class's and its conforming protocols' properties.
792 /// Note, the superclass's properties are not included in the list.
collectPropertiesToImplement(PropertyMap & PM,PropertyDeclOrder & PO)793 virtual void collectPropertiesToImplement(PropertyMap &PM,
794 PropertyDeclOrder &PO) const {}
795
getAtStartLoc()796 SourceLocation getAtStartLoc() const { return AtStart; }
setAtStartLoc(SourceLocation Loc)797 void setAtStartLoc(SourceLocation Loc) { AtStart = Loc; }
798
799 // Marks the end of the container.
getAtEndRange()800 SourceRange getAtEndRange() const {
801 return AtEnd;
802 }
setAtEndRange(SourceRange atEnd)803 void setAtEndRange(SourceRange atEnd) {
804 AtEnd = atEnd;
805 }
806
getSourceRange()807 SourceRange getSourceRange() const override LLVM_READONLY {
808 return SourceRange(AtStart, getAtEndRange().getEnd());
809 }
810
811 // Implement isa/cast/dyncast/etc.
classof(const Decl * D)812 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)813 static bool classofKind(Kind K) {
814 return K >= firstObjCContainer &&
815 K <= lastObjCContainer;
816 }
817
castToDeclContext(const ObjCContainerDecl * D)818 static DeclContext *castToDeclContext(const ObjCContainerDecl *D) {
819 return static_cast<DeclContext *>(const_cast<ObjCContainerDecl*>(D));
820 }
castFromDeclContext(const DeclContext * DC)821 static ObjCContainerDecl *castFromDeclContext(const DeclContext *DC) {
822 return static_cast<ObjCContainerDecl *>(const_cast<DeclContext*>(DC));
823 }
824 };
825
826 /// \brief Represents an ObjC class declaration.
827 ///
828 /// For example:
829 ///
830 /// \code
831 /// // MostPrimitive declares no super class (not particularly useful).
832 /// \@interface MostPrimitive
833 /// // no instance variables or methods.
834 /// \@end
835 ///
836 /// // NSResponder inherits from NSObject & implements NSCoding (a protocol).
837 /// \@interface NSResponder : NSObject \<NSCoding>
838 /// { // instance variables are represented by ObjCIvarDecl.
839 /// id nextResponder; // nextResponder instance variable.
840 /// }
841 /// - (NSResponder *)nextResponder; // return a pointer to NSResponder.
842 /// - (void)mouseMoved:(NSEvent *)theEvent; // return void, takes a pointer
843 /// \@end // to an NSEvent.
844 /// \endcode
845 ///
846 /// Unlike C/C++, forward class declarations are accomplished with \@class.
847 /// Unlike C/C++, \@class allows for a list of classes to be forward declared.
848 /// Unlike C++, ObjC is a single-rooted class model. In Cocoa, classes
849 /// typically inherit from NSObject (an exception is NSProxy).
850 ///
851 class ObjCInterfaceDecl : public ObjCContainerDecl
852 , public Redeclarable<ObjCInterfaceDecl> {
853 void anchor() override;
854
855 /// TypeForDecl - This indicates the Type object that represents this
856 /// TypeDecl. It is a cache maintained by ASTContext::getObjCInterfaceType
857 mutable const Type *TypeForDecl;
858 friend class ASTContext;
859
860 struct DefinitionData {
861 /// \brief The definition of this class, for quick access from any
862 /// declaration.
863 ObjCInterfaceDecl *Definition;
864
865 /// When non-null, this is always an ObjCObjectType.
866 TypeSourceInfo *SuperClassTInfo;
867
868 /// Protocols referenced in the \@interface declaration
869 ObjCProtocolList ReferencedProtocols;
870
871 /// Protocols reference in both the \@interface and class extensions.
872 ObjCList<ObjCProtocolDecl> AllReferencedProtocols;
873
874 /// \brief List of categories and class extensions defined for this class.
875 ///
876 /// Categories are stored as a linked list in the AST, since the categories
877 /// and class extensions come long after the initial interface declaration,
878 /// and we avoid dynamically-resized arrays in the AST wherever possible.
879 ObjCCategoryDecl *CategoryList;
880
881 /// IvarList - List of all ivars defined by this class; including class
882 /// extensions and implementation. This list is built lazily.
883 ObjCIvarDecl *IvarList;
884
885 /// \brief Indicates that the contents of this Objective-C class will be
886 /// completed by the external AST source when required.
887 mutable bool ExternallyCompleted : 1;
888
889 /// \brief Indicates that the ivar cache does not yet include ivars
890 /// declared in the implementation.
891 mutable bool IvarListMissingImplementation : 1;
892
893 /// Indicates that this interface decl contains at least one initializer
894 /// marked with the 'objc_designated_initializer' attribute.
895 bool HasDesignatedInitializers : 1;
896
897 enum InheritedDesignatedInitializersState {
898 /// We didn't calculate whether the designated initializers should be
899 /// inherited or not.
900 IDI_Unknown = 0,
901 /// Designated initializers are inherited for the super class.
902 IDI_Inherited = 1,
903 /// The class does not inherit designated initializers.
904 IDI_NotInherited = 2
905 };
906 /// One of the \c InheritedDesignatedInitializersState enumeratos.
907 mutable unsigned InheritedDesignatedInitializers : 2;
908
909 /// \brief The location of the last location in this declaration, before
910 /// the properties/methods. For example, this will be the '>', '}', or
911 /// identifier,
912 SourceLocation EndLoc;
913
DefinitionDataDefinitionData914 DefinitionData() : Definition(), SuperClassTInfo(), CategoryList(), IvarList(),
915 ExternallyCompleted(),
916 IvarListMissingImplementation(true),
917 HasDesignatedInitializers(),
918 InheritedDesignatedInitializers(IDI_Unknown) { }
919 };
920
921 ObjCInterfaceDecl(const ASTContext &C, DeclContext *DC, SourceLocation AtLoc,
922 IdentifierInfo *Id, ObjCTypeParamList *typeParamList,
923 SourceLocation CLoc, ObjCInterfaceDecl *PrevDecl,
924 bool IsInternal);
925
926 void LoadExternalDefinition() const;
927
928 /// The type parameters associated with this class, if any.
929 ObjCTypeParamList *TypeParamList;
930
931 /// \brief Contains a pointer to the data associated with this class,
932 /// which will be NULL if this class has not yet been defined.
933 ///
934 /// The bit indicates when we don't need to check for out-of-date
935 /// declarations. It will be set unless modules are enabled.
936 llvm::PointerIntPair<DefinitionData *, 1, bool> Data;
937
data()938 DefinitionData &data() const {
939 assert(Data.getPointer() && "Declaration has no definition!");
940 return *Data.getPointer();
941 }
942
943 /// \brief Allocate the definition data for this class.
944 void allocateDefinitionData();
945
946 typedef Redeclarable<ObjCInterfaceDecl> redeclarable_base;
getNextRedeclarationImpl()947 ObjCInterfaceDecl *getNextRedeclarationImpl() override {
948 return getNextRedeclaration();
949 }
getPreviousDeclImpl()950 ObjCInterfaceDecl *getPreviousDeclImpl() override {
951 return getPreviousDecl();
952 }
getMostRecentDeclImpl()953 ObjCInterfaceDecl *getMostRecentDeclImpl() override {
954 return getMostRecentDecl();
955 }
956
957 public:
958 static ObjCInterfaceDecl *Create(const ASTContext &C, DeclContext *DC,
959 SourceLocation atLoc,
960 IdentifierInfo *Id,
961 ObjCTypeParamList *typeParamList,
962 ObjCInterfaceDecl *PrevDecl,
963 SourceLocation ClassLoc = SourceLocation(),
964 bool isInternal = false);
965
966 static ObjCInterfaceDecl *CreateDeserialized(const ASTContext &C, unsigned ID);
967
968 /// Retrieve the type parameters of this class.
969 ///
970 /// This function looks for a type parameter list for the given
971 /// class; if the class has been declared (with \c \@class) but not
972 /// defined (with \c \@interface), it will search for a declaration that
973 /// has type parameters, skipping any declarations that do not.
974 ObjCTypeParamList *getTypeParamList() const;
975
976 /// Set the type parameters of this class.
977 ///
978 /// This function is used by the AST importer, which must import the type
979 /// parameters after creating their DeclContext to avoid loops.
980 void setTypeParamList(ObjCTypeParamList *TPL);
981
982 /// Retrieve the type parameters written on this particular declaration of
983 /// the class.
getTypeParamListAsWritten()984 ObjCTypeParamList *getTypeParamListAsWritten() const {
985 return TypeParamList;
986 }
987
getSourceRange()988 SourceRange getSourceRange() const override LLVM_READONLY {
989 if (isThisDeclarationADefinition())
990 return ObjCContainerDecl::getSourceRange();
991
992 return SourceRange(getAtStartLoc(), getLocation());
993 }
994
995 /// \brief Indicate that this Objective-C class is complete, but that
996 /// the external AST source will be responsible for filling in its contents
997 /// when a complete class is required.
998 void setExternallyCompleted();
999
1000 /// Indicate that this interface decl contains at least one initializer
1001 /// marked with the 'objc_designated_initializer' attribute.
1002 void setHasDesignatedInitializers();
1003
1004 /// Returns true if this interface decl contains at least one initializer
1005 /// marked with the 'objc_designated_initializer' attribute.
1006 bool hasDesignatedInitializers() const;
1007
1008 /// Returns true if this interface decl declares a designated initializer
1009 /// or it inherites one from its super class.
declaresOrInheritsDesignatedInitializers()1010 bool declaresOrInheritsDesignatedInitializers() const {
1011 return hasDesignatedInitializers() || inheritsDesignatedInitializers();
1012 }
1013
getReferencedProtocols()1014 const ObjCProtocolList &getReferencedProtocols() const {
1015 assert(hasDefinition() && "Caller did not check for forward reference!");
1016 if (data().ExternallyCompleted)
1017 LoadExternalDefinition();
1018
1019 return data().ReferencedProtocols;
1020 }
1021
1022 ObjCImplementationDecl *getImplementation() const;
1023 void setImplementation(ObjCImplementationDecl *ImplD);
1024
1025 ObjCCategoryDecl *FindCategoryDeclaration(IdentifierInfo *CategoryId) const;
1026
1027 // Get the local instance/class method declared in a category.
1028 ObjCMethodDecl *getCategoryInstanceMethod(Selector Sel) const;
1029 ObjCMethodDecl *getCategoryClassMethod(Selector Sel) const;
getCategoryMethod(Selector Sel,bool isInstance)1030 ObjCMethodDecl *getCategoryMethod(Selector Sel, bool isInstance) const {
1031 return isInstance ? getCategoryInstanceMethod(Sel)
1032 : getCategoryClassMethod(Sel);
1033 }
1034
1035 typedef ObjCProtocolList::iterator protocol_iterator;
1036 typedef llvm::iterator_range<protocol_iterator> protocol_range;
1037
protocols()1038 protocol_range protocols() const {
1039 return protocol_range(protocol_begin(), protocol_end());
1040 }
protocol_begin()1041 protocol_iterator protocol_begin() const {
1042 // FIXME: Should make sure no callers ever do this.
1043 if (!hasDefinition())
1044 return protocol_iterator();
1045
1046 if (data().ExternallyCompleted)
1047 LoadExternalDefinition();
1048
1049 return data().ReferencedProtocols.begin();
1050 }
protocol_end()1051 protocol_iterator protocol_end() const {
1052 // FIXME: Should make sure no callers ever do this.
1053 if (!hasDefinition())
1054 return protocol_iterator();
1055
1056 if (data().ExternallyCompleted)
1057 LoadExternalDefinition();
1058
1059 return data().ReferencedProtocols.end();
1060 }
1061
1062 typedef ObjCProtocolList::loc_iterator protocol_loc_iterator;
1063 typedef llvm::iterator_range<protocol_loc_iterator> protocol_loc_range;
1064
protocol_locs()1065 protocol_loc_range protocol_locs() const {
1066 return protocol_loc_range(protocol_loc_begin(), protocol_loc_end());
1067 }
protocol_loc_begin()1068 protocol_loc_iterator protocol_loc_begin() const {
1069 // FIXME: Should make sure no callers ever do this.
1070 if (!hasDefinition())
1071 return protocol_loc_iterator();
1072
1073 if (data().ExternallyCompleted)
1074 LoadExternalDefinition();
1075
1076 return data().ReferencedProtocols.loc_begin();
1077 }
1078
protocol_loc_end()1079 protocol_loc_iterator protocol_loc_end() const {
1080 // FIXME: Should make sure no callers ever do this.
1081 if (!hasDefinition())
1082 return protocol_loc_iterator();
1083
1084 if (data().ExternallyCompleted)
1085 LoadExternalDefinition();
1086
1087 return data().ReferencedProtocols.loc_end();
1088 }
1089
1090 typedef ObjCList<ObjCProtocolDecl>::iterator all_protocol_iterator;
1091 typedef llvm::iterator_range<all_protocol_iterator> all_protocol_range;
1092
all_referenced_protocols()1093 all_protocol_range all_referenced_protocols() const {
1094 return all_protocol_range(all_referenced_protocol_begin(),
1095 all_referenced_protocol_end());
1096 }
all_referenced_protocol_begin()1097 all_protocol_iterator all_referenced_protocol_begin() const {
1098 // FIXME: Should make sure no callers ever do this.
1099 if (!hasDefinition())
1100 return all_protocol_iterator();
1101
1102 if (data().ExternallyCompleted)
1103 LoadExternalDefinition();
1104
1105 return data().AllReferencedProtocols.empty()
1106 ? protocol_begin()
1107 : data().AllReferencedProtocols.begin();
1108 }
all_referenced_protocol_end()1109 all_protocol_iterator all_referenced_protocol_end() const {
1110 // FIXME: Should make sure no callers ever do this.
1111 if (!hasDefinition())
1112 return all_protocol_iterator();
1113
1114 if (data().ExternallyCompleted)
1115 LoadExternalDefinition();
1116
1117 return data().AllReferencedProtocols.empty()
1118 ? protocol_end()
1119 : data().AllReferencedProtocols.end();
1120 }
1121
1122 typedef specific_decl_iterator<ObjCIvarDecl> ivar_iterator;
1123 typedef llvm::iterator_range<specific_decl_iterator<ObjCIvarDecl>> ivar_range;
1124
ivars()1125 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); }
ivar_begin()1126 ivar_iterator ivar_begin() const {
1127 if (const ObjCInterfaceDecl *Def = getDefinition())
1128 return ivar_iterator(Def->decls_begin());
1129
1130 // FIXME: Should make sure no callers ever do this.
1131 return ivar_iterator();
1132 }
ivar_end()1133 ivar_iterator ivar_end() const {
1134 if (const ObjCInterfaceDecl *Def = getDefinition())
1135 return ivar_iterator(Def->decls_end());
1136
1137 // FIXME: Should make sure no callers ever do this.
1138 return ivar_iterator();
1139 }
1140
ivar_size()1141 unsigned ivar_size() const {
1142 return std::distance(ivar_begin(), ivar_end());
1143 }
1144
ivar_empty()1145 bool ivar_empty() const { return ivar_begin() == ivar_end(); }
1146
1147 ObjCIvarDecl *all_declared_ivar_begin();
all_declared_ivar_begin()1148 const ObjCIvarDecl *all_declared_ivar_begin() const {
1149 // Even though this modifies IvarList, it's conceptually const:
1150 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
1151 return const_cast<ObjCInterfaceDecl *>(this)->all_declared_ivar_begin();
1152 }
setIvarList(ObjCIvarDecl * ivar)1153 void setIvarList(ObjCIvarDecl *ivar) { data().IvarList = ivar; }
1154
1155 /// setProtocolList - Set the list of protocols that this interface
1156 /// implements.
setProtocolList(ObjCProtocolDecl * const * List,unsigned Num,const SourceLocation * Locs,ASTContext & C)1157 void setProtocolList(ObjCProtocolDecl *const* List, unsigned Num,
1158 const SourceLocation *Locs, ASTContext &C) {
1159 data().ReferencedProtocols.set(List, Num, Locs, C);
1160 }
1161
1162 /// mergeClassExtensionProtocolList - Merge class extension's protocol list
1163 /// into the protocol list for this class.
1164 void mergeClassExtensionProtocolList(ObjCProtocolDecl *const* List,
1165 unsigned Num,
1166 ASTContext &C);
1167
1168 /// Produce a name to be used for class's metadata. It comes either via
1169 /// objc_runtime_name attribute or class name.
1170 StringRef getObjCRuntimeNameAsString() const;
1171
1172 /// Returns the designated initializers for the interface.
1173 ///
1174 /// If this declaration does not have methods marked as designated
1175 /// initializers then the interface inherits the designated initializers of
1176 /// its super class.
1177 void getDesignatedInitializers(
1178 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const;
1179
1180 /// Returns true if the given selector is a designated initializer for the
1181 /// interface.
1182 ///
1183 /// If this declaration does not have methods marked as designated
1184 /// initializers then the interface inherits the designated initializers of
1185 /// its super class.
1186 ///
1187 /// \param InitMethod if non-null and the function returns true, it receives
1188 /// the method that was marked as a designated initializer.
1189 bool
1190 isDesignatedInitializer(Selector Sel,
1191 const ObjCMethodDecl **InitMethod = nullptr) const;
1192
1193 /// \brief Determine whether this particular declaration of this class is
1194 /// actually also a definition.
isThisDeclarationADefinition()1195 bool isThisDeclarationADefinition() const {
1196 return getDefinition() == this;
1197 }
1198
1199 /// \brief Determine whether this class has been defined.
hasDefinition()1200 bool hasDefinition() const {
1201 // If the name of this class is out-of-date, bring it up-to-date, which
1202 // might bring in a definition.
1203 // Note: a null value indicates that we don't have a definition and that
1204 // modules are enabled.
1205 if (!Data.getOpaqueValue()) {
1206 if (IdentifierInfo *II = getIdentifier()) {
1207 if (II->isOutOfDate()) {
1208 updateOutOfDate(*II);
1209 }
1210 }
1211 }
1212
1213 return Data.getPointer();
1214 }
1215
1216 /// \brief Retrieve the definition of this class, or NULL if this class
1217 /// has been forward-declared (with \@class) but not yet defined (with
1218 /// \@interface).
getDefinition()1219 ObjCInterfaceDecl *getDefinition() {
1220 return hasDefinition()? Data.getPointer()->Definition : nullptr;
1221 }
1222
1223 /// \brief Retrieve the definition of this class, or NULL if this class
1224 /// has been forward-declared (with \@class) but not yet defined (with
1225 /// \@interface).
getDefinition()1226 const ObjCInterfaceDecl *getDefinition() const {
1227 return hasDefinition()? Data.getPointer()->Definition : nullptr;
1228 }
1229
1230 /// \brief Starts the definition of this Objective-C class, taking it from
1231 /// a forward declaration (\@class) to a definition (\@interface).
1232 void startDefinition();
1233
1234 /// Retrieve the superclass type.
getSuperClassType()1235 const ObjCObjectType *getSuperClassType() const {
1236 if (TypeSourceInfo *TInfo = getSuperClassTInfo())
1237 return TInfo->getType()->castAs<ObjCObjectType>();
1238
1239 return nullptr;
1240 }
1241
1242 // Retrieve the type source information for the superclass.
getSuperClassTInfo()1243 TypeSourceInfo *getSuperClassTInfo() const {
1244 // FIXME: Should make sure no callers ever do this.
1245 if (!hasDefinition())
1246 return nullptr;
1247
1248 if (data().ExternallyCompleted)
1249 LoadExternalDefinition();
1250
1251 return data().SuperClassTInfo;
1252 }
1253
1254 // Retrieve the declaration for the superclass of this class, which
1255 // does not include any type arguments that apply to the superclass.
1256 ObjCInterfaceDecl *getSuperClass() const;
1257
setSuperClass(TypeSourceInfo * superClass)1258 void setSuperClass(TypeSourceInfo *superClass) {
1259 data().SuperClassTInfo = superClass;
1260 }
1261
1262 /// \brief Iterator that walks over the list of categories, filtering out
1263 /// those that do not meet specific criteria.
1264 ///
1265 /// This class template is used for the various permutations of category
1266 /// and extension iterators.
1267 template<bool (*Filter)(ObjCCategoryDecl *)>
1268 class filtered_category_iterator {
1269 ObjCCategoryDecl *Current;
1270
1271 void findAcceptableCategory();
1272
1273 public:
1274 typedef ObjCCategoryDecl * value_type;
1275 typedef value_type reference;
1276 typedef value_type pointer;
1277 typedef std::ptrdiff_t difference_type;
1278 typedef std::input_iterator_tag iterator_category;
1279
filtered_category_iterator()1280 filtered_category_iterator() : Current(nullptr) { }
filtered_category_iterator(ObjCCategoryDecl * Current)1281 explicit filtered_category_iterator(ObjCCategoryDecl *Current)
1282 : Current(Current)
1283 {
1284 findAcceptableCategory();
1285 }
1286
1287 reference operator*() const { return Current; }
1288 pointer operator->() const { return Current; }
1289
1290 filtered_category_iterator &operator++();
1291
1292 filtered_category_iterator operator++(int) {
1293 filtered_category_iterator Tmp = *this;
1294 ++(*this);
1295 return Tmp;
1296 }
1297
1298 friend bool operator==(filtered_category_iterator X,
1299 filtered_category_iterator Y) {
1300 return X.Current == Y.Current;
1301 }
1302
1303 friend bool operator!=(filtered_category_iterator X,
1304 filtered_category_iterator Y) {
1305 return X.Current != Y.Current;
1306 }
1307 };
1308
1309 private:
1310 /// \brief Test whether the given category is visible.
1311 ///
1312 /// Used in the \c visible_categories_iterator.
1313 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1314
1315 public:
1316 /// \brief Iterator that walks over the list of categories and extensions
1317 /// that are visible, i.e., not hidden in a non-imported submodule.
1318 typedef filtered_category_iterator<isVisibleCategory>
1319 visible_categories_iterator;
1320
1321 typedef llvm::iterator_range<visible_categories_iterator>
1322 visible_categories_range;
1323
visible_categories()1324 visible_categories_range visible_categories() const {
1325 return visible_categories_range(visible_categories_begin(),
1326 visible_categories_end());
1327 }
1328
1329 /// \brief Retrieve an iterator to the beginning of the visible-categories
1330 /// list.
visible_categories_begin()1331 visible_categories_iterator visible_categories_begin() const {
1332 return visible_categories_iterator(getCategoryListRaw());
1333 }
1334
1335 /// \brief Retrieve an iterator to the end of the visible-categories list.
visible_categories_end()1336 visible_categories_iterator visible_categories_end() const {
1337 return visible_categories_iterator();
1338 }
1339
1340 /// \brief Determine whether the visible-categories list is empty.
visible_categories_empty()1341 bool visible_categories_empty() const {
1342 return visible_categories_begin() == visible_categories_end();
1343 }
1344
1345 private:
1346 /// \brief Test whether the given category... is a category.
1347 ///
1348 /// Used in the \c known_categories_iterator.
isKnownCategory(ObjCCategoryDecl *)1349 static bool isKnownCategory(ObjCCategoryDecl *) { return true; }
1350
1351 public:
1352 /// \brief Iterator that walks over all of the known categories and
1353 /// extensions, including those that are hidden.
1354 typedef filtered_category_iterator<isKnownCategory> known_categories_iterator;
1355 typedef llvm::iterator_range<known_categories_iterator>
1356 known_categories_range;
1357
known_categories()1358 known_categories_range known_categories() const {
1359 return known_categories_range(known_categories_begin(),
1360 known_categories_end());
1361 }
1362
1363 /// \brief Retrieve an iterator to the beginning of the known-categories
1364 /// list.
known_categories_begin()1365 known_categories_iterator known_categories_begin() const {
1366 return known_categories_iterator(getCategoryListRaw());
1367 }
1368
1369 /// \brief Retrieve an iterator to the end of the known-categories list.
known_categories_end()1370 known_categories_iterator known_categories_end() const {
1371 return known_categories_iterator();
1372 }
1373
1374 /// \brief Determine whether the known-categories list is empty.
known_categories_empty()1375 bool known_categories_empty() const {
1376 return known_categories_begin() == known_categories_end();
1377 }
1378
1379 private:
1380 /// \brief Test whether the given category is a visible extension.
1381 ///
1382 /// Used in the \c visible_extensions_iterator.
1383 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1384
1385 public:
1386 /// \brief Iterator that walks over all of the visible extensions, skipping
1387 /// any that are known but hidden.
1388 typedef filtered_category_iterator<isVisibleExtension>
1389 visible_extensions_iterator;
1390
1391 typedef llvm::iterator_range<visible_extensions_iterator>
1392 visible_extensions_range;
1393
visible_extensions()1394 visible_extensions_range visible_extensions() const {
1395 return visible_extensions_range(visible_extensions_begin(),
1396 visible_extensions_end());
1397 }
1398
1399 /// \brief Retrieve an iterator to the beginning of the visible-extensions
1400 /// list.
visible_extensions_begin()1401 visible_extensions_iterator visible_extensions_begin() const {
1402 return visible_extensions_iterator(getCategoryListRaw());
1403 }
1404
1405 /// \brief Retrieve an iterator to the end of the visible-extensions list.
visible_extensions_end()1406 visible_extensions_iterator visible_extensions_end() const {
1407 return visible_extensions_iterator();
1408 }
1409
1410 /// \brief Determine whether the visible-extensions list is empty.
visible_extensions_empty()1411 bool visible_extensions_empty() const {
1412 return visible_extensions_begin() == visible_extensions_end();
1413 }
1414
1415 private:
1416 /// \brief Test whether the given category is an extension.
1417 ///
1418 /// Used in the \c known_extensions_iterator.
1419 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1420
1421 public:
1422 /// \brief Iterator that walks over all of the known extensions.
1423 typedef filtered_category_iterator<isKnownExtension>
1424 known_extensions_iterator;
1425 typedef llvm::iterator_range<known_extensions_iterator>
1426 known_extensions_range;
1427
known_extensions()1428 known_extensions_range known_extensions() const {
1429 return known_extensions_range(known_extensions_begin(),
1430 known_extensions_end());
1431 }
1432
1433 /// \brief Retrieve an iterator to the beginning of the known-extensions
1434 /// list.
known_extensions_begin()1435 known_extensions_iterator known_extensions_begin() const {
1436 return known_extensions_iterator(getCategoryListRaw());
1437 }
1438
1439 /// \brief Retrieve an iterator to the end of the known-extensions list.
known_extensions_end()1440 known_extensions_iterator known_extensions_end() const {
1441 return known_extensions_iterator();
1442 }
1443
1444 /// \brief Determine whether the known-extensions list is empty.
known_extensions_empty()1445 bool known_extensions_empty() const {
1446 return known_extensions_begin() == known_extensions_end();
1447 }
1448
1449 /// \brief Retrieve the raw pointer to the start of the category/extension
1450 /// list.
getCategoryListRaw()1451 ObjCCategoryDecl* getCategoryListRaw() const {
1452 // FIXME: Should make sure no callers ever do this.
1453 if (!hasDefinition())
1454 return nullptr;
1455
1456 if (data().ExternallyCompleted)
1457 LoadExternalDefinition();
1458
1459 return data().CategoryList;
1460 }
1461
1462 /// \brief Set the raw pointer to the start of the category/extension
1463 /// list.
setCategoryListRaw(ObjCCategoryDecl * category)1464 void setCategoryListRaw(ObjCCategoryDecl *category) {
1465 data().CategoryList = category;
1466 }
1467
1468 ObjCPropertyDecl
1469 *FindPropertyVisibleInPrimaryClass(IdentifierInfo *PropertyId) const;
1470
1471 void collectPropertiesToImplement(PropertyMap &PM,
1472 PropertyDeclOrder &PO) const override;
1473
1474 /// isSuperClassOf - Return true if this class is the specified class or is a
1475 /// super class of the specified interface class.
isSuperClassOf(const ObjCInterfaceDecl * I)1476 bool isSuperClassOf(const ObjCInterfaceDecl *I) const {
1477 // If RHS is derived from LHS it is OK; else it is not OK.
1478 while (I != nullptr) {
1479 if (declaresSameEntity(this, I))
1480 return true;
1481
1482 I = I->getSuperClass();
1483 }
1484 return false;
1485 }
1486
1487 /// isArcWeakrefUnavailable - Checks for a class or one of its super classes
1488 /// to be incompatible with __weak references. Returns true if it is.
1489 bool isArcWeakrefUnavailable() const;
1490
1491 /// isObjCRequiresPropertyDefs - Checks that a class or one of its super
1492 /// classes must not be auto-synthesized. Returns class decl. if it must not
1493 /// be; 0, otherwise.
1494 const ObjCInterfaceDecl *isObjCRequiresPropertyDefs() const;
1495
1496 ObjCIvarDecl *lookupInstanceVariable(IdentifierInfo *IVarName,
1497 ObjCInterfaceDecl *&ClassDeclared);
lookupInstanceVariable(IdentifierInfo * IVarName)1498 ObjCIvarDecl *lookupInstanceVariable(IdentifierInfo *IVarName) {
1499 ObjCInterfaceDecl *ClassDeclared;
1500 return lookupInstanceVariable(IVarName, ClassDeclared);
1501 }
1502
1503 ObjCProtocolDecl *lookupNestedProtocol(IdentifierInfo *Name);
1504
1505 // Lookup a method. First, we search locally. If a method isn't
1506 // found, we search referenced protocols and class categories.
1507 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
1508 bool shallowCategoryLookup = false,
1509 bool followSuper = true,
1510 const ObjCCategoryDecl *C = nullptr) const;
1511
1512 /// Lookup an instance method for a given selector.
lookupInstanceMethod(Selector Sel)1513 ObjCMethodDecl *lookupInstanceMethod(Selector Sel) const {
1514 return lookupMethod(Sel, true/*isInstance*/);
1515 }
1516
1517 /// Lookup a class method for a given selector.
lookupClassMethod(Selector Sel)1518 ObjCMethodDecl *lookupClassMethod(Selector Sel) const {
1519 return lookupMethod(Sel, false/*isInstance*/);
1520 }
1521 ObjCInterfaceDecl *lookupInheritedClass(const IdentifierInfo *ICName);
1522
1523 /// \brief Lookup a method in the classes implementation hierarchy.
1524 ObjCMethodDecl *lookupPrivateMethod(const Selector &Sel,
1525 bool Instance=true) const;
1526
lookupPrivateClassMethod(const Selector & Sel)1527 ObjCMethodDecl *lookupPrivateClassMethod(const Selector &Sel) {
1528 return lookupPrivateMethod(Sel, false);
1529 }
1530
1531 /// \brief Lookup a setter or getter in the class hierarchy,
1532 /// including in all categories except for category passed
1533 /// as argument.
lookupPropertyAccessor(const Selector Sel,const ObjCCategoryDecl * Cat)1534 ObjCMethodDecl *lookupPropertyAccessor(const Selector Sel,
1535 const ObjCCategoryDecl *Cat) const {
1536 return lookupMethod(Sel, true/*isInstance*/,
1537 false/*shallowCategoryLookup*/,
1538 true /* followsSuper */,
1539 Cat);
1540 }
1541
getEndOfDefinitionLoc()1542 SourceLocation getEndOfDefinitionLoc() const {
1543 if (!hasDefinition())
1544 return getLocation();
1545
1546 return data().EndLoc;
1547 }
1548
setEndOfDefinitionLoc(SourceLocation LE)1549 void setEndOfDefinitionLoc(SourceLocation LE) { data().EndLoc = LE; }
1550
1551 /// Retrieve the starting location of the superclass.
1552 SourceLocation getSuperClassLoc() const;
1553
1554 /// isImplicitInterfaceDecl - check that this is an implicitly declared
1555 /// ObjCInterfaceDecl node. This is for legacy objective-c \@implementation
1556 /// declaration without an \@interface declaration.
isImplicitInterfaceDecl()1557 bool isImplicitInterfaceDecl() const {
1558 return hasDefinition() ? data().Definition->isImplicit() : isImplicit();
1559 }
1560
1561 /// ClassImplementsProtocol - Checks that 'lProto' protocol
1562 /// has been implemented in IDecl class, its super class or categories (if
1563 /// lookupCategory is true).
1564 bool ClassImplementsProtocol(ObjCProtocolDecl *lProto,
1565 bool lookupCategory,
1566 bool RHSIsQualifiedID = false);
1567
1568 typedef redeclarable_base::redecl_range redecl_range;
1569 typedef redeclarable_base::redecl_iterator redecl_iterator;
1570 using redeclarable_base::redecls_begin;
1571 using redeclarable_base::redecls_end;
1572 using redeclarable_base::redecls;
1573 using redeclarable_base::getPreviousDecl;
1574 using redeclarable_base::getMostRecentDecl;
1575 using redeclarable_base::isFirstDecl;
1576
1577 /// Retrieves the canonical declaration of this Objective-C class.
getCanonicalDecl()1578 ObjCInterfaceDecl *getCanonicalDecl() override { return getFirstDecl(); }
getCanonicalDecl()1579 const ObjCInterfaceDecl *getCanonicalDecl() const { return getFirstDecl(); }
1580
1581 // Low-level accessor
getTypeForDecl()1582 const Type *getTypeForDecl() const { return TypeForDecl; }
setTypeForDecl(const Type * TD)1583 void setTypeForDecl(const Type *TD) const { TypeForDecl = TD; }
1584
classof(const Decl * D)1585 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)1586 static bool classofKind(Kind K) { return K == ObjCInterface; }
1587
1588 friend class ASTReader;
1589 friend class ASTDeclReader;
1590 friend class ASTDeclWriter;
1591
1592 private:
1593 const ObjCInterfaceDecl *findInterfaceWithDesignatedInitializers() const;
1594 bool inheritsDesignatedInitializers() const;
1595 };
1596
1597 /// ObjCIvarDecl - Represents an ObjC instance variable. In general, ObjC
1598 /// instance variables are identical to C. The only exception is Objective-C
1599 /// supports C++ style access control. For example:
1600 ///
1601 /// \@interface IvarExample : NSObject
1602 /// {
1603 /// id defaultToProtected;
1604 /// \@public:
1605 /// id canBePublic; // same as C++.
1606 /// \@protected:
1607 /// id canBeProtected; // same as C++.
1608 /// \@package:
1609 /// id canBePackage; // framework visibility (not available in C++).
1610 /// }
1611 ///
1612 class ObjCIvarDecl : public FieldDecl {
1613 void anchor() override;
1614
1615 public:
1616 enum AccessControl {
1617 None, Private, Protected, Public, Package
1618 };
1619
1620 private:
ObjCIvarDecl(ObjCContainerDecl * DC,SourceLocation StartLoc,SourceLocation IdLoc,IdentifierInfo * Id,QualType T,TypeSourceInfo * TInfo,AccessControl ac,Expr * BW,bool synthesized)1621 ObjCIvarDecl(ObjCContainerDecl *DC, SourceLocation StartLoc,
1622 SourceLocation IdLoc, IdentifierInfo *Id,
1623 QualType T, TypeSourceInfo *TInfo, AccessControl ac, Expr *BW,
1624 bool synthesized)
1625 : FieldDecl(ObjCIvar, DC, StartLoc, IdLoc, Id, T, TInfo, BW,
1626 /*Mutable=*/false, /*HasInit=*/ICIS_NoInit),
1627 NextIvar(nullptr), DeclAccess(ac), Synthesized(synthesized) {}
1628
1629 public:
1630 static ObjCIvarDecl *Create(ASTContext &C, ObjCContainerDecl *DC,
1631 SourceLocation StartLoc, SourceLocation IdLoc,
1632 IdentifierInfo *Id, QualType T,
1633 TypeSourceInfo *TInfo,
1634 AccessControl ac, Expr *BW = nullptr,
1635 bool synthesized=false);
1636
1637 static ObjCIvarDecl *CreateDeserialized(ASTContext &C, unsigned ID);
1638
1639 /// \brief Return the class interface that this ivar is logically contained
1640 /// in; this is either the interface where the ivar was declared, or the
1641 /// interface the ivar is conceptually a part of in the case of synthesized
1642 /// ivars.
1643 const ObjCInterfaceDecl *getContainingInterface() const;
1644
getNextIvar()1645 ObjCIvarDecl *getNextIvar() { return NextIvar; }
getNextIvar()1646 const ObjCIvarDecl *getNextIvar() const { return NextIvar; }
setNextIvar(ObjCIvarDecl * ivar)1647 void setNextIvar(ObjCIvarDecl *ivar) { NextIvar = ivar; }
1648
setAccessControl(AccessControl ac)1649 void setAccessControl(AccessControl ac) { DeclAccess = ac; }
1650
getAccessControl()1651 AccessControl getAccessControl() const { return AccessControl(DeclAccess); }
1652
getCanonicalAccessControl()1653 AccessControl getCanonicalAccessControl() const {
1654 return DeclAccess == None ? Protected : AccessControl(DeclAccess);
1655 }
1656
setSynthesize(bool synth)1657 void setSynthesize(bool synth) { Synthesized = synth; }
getSynthesize()1658 bool getSynthesize() const { return Synthesized; }
1659
1660 /// Retrieve the type of this instance variable when viewed as a member of a
1661 /// specific object type.
1662 QualType getUsageType(QualType objectType) const;
1663
1664 // Implement isa/cast/dyncast/etc.
classof(const Decl * D)1665 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)1666 static bool classofKind(Kind K) { return K == ObjCIvar; }
1667 private:
1668 /// NextIvar - Next Ivar in the list of ivars declared in class; class's
1669 /// extensions and class's implementation
1670 ObjCIvarDecl *NextIvar;
1671
1672 // NOTE: VC++ treats enums as signed, avoid using the AccessControl enum
1673 unsigned DeclAccess : 3;
1674 unsigned Synthesized : 1;
1675 };
1676
1677
1678 /// \brief Represents a field declaration created by an \@defs(...).
1679 class ObjCAtDefsFieldDecl : public FieldDecl {
1680 void anchor() override;
ObjCAtDefsFieldDecl(DeclContext * DC,SourceLocation StartLoc,SourceLocation IdLoc,IdentifierInfo * Id,QualType T,Expr * BW)1681 ObjCAtDefsFieldDecl(DeclContext *DC, SourceLocation StartLoc,
1682 SourceLocation IdLoc, IdentifierInfo *Id,
1683 QualType T, Expr *BW)
1684 : FieldDecl(ObjCAtDefsField, DC, StartLoc, IdLoc, Id, T,
1685 /*TInfo=*/nullptr, // FIXME: Do ObjCAtDefs have declarators ?
1686 BW, /*Mutable=*/false, /*HasInit=*/ICIS_NoInit) {}
1687
1688 public:
1689 static ObjCAtDefsFieldDecl *Create(ASTContext &C, DeclContext *DC,
1690 SourceLocation StartLoc,
1691 SourceLocation IdLoc, IdentifierInfo *Id,
1692 QualType T, Expr *BW);
1693
1694 static ObjCAtDefsFieldDecl *CreateDeserialized(ASTContext &C, unsigned ID);
1695
1696 // Implement isa/cast/dyncast/etc.
classof(const Decl * D)1697 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)1698 static bool classofKind(Kind K) { return K == ObjCAtDefsField; }
1699 };
1700
1701 /// \brief Represents an Objective-C protocol declaration.
1702 ///
1703 /// Objective-C protocols declare a pure abstract type (i.e., no instance
1704 /// variables are permitted). Protocols originally drew inspiration from
1705 /// C++ pure virtual functions (a C++ feature with nice semantics and lousy
1706 /// syntax:-). Here is an example:
1707 ///
1708 /// \code
1709 /// \@protocol NSDraggingInfo <refproto1, refproto2>
1710 /// - (NSWindow *)draggingDestinationWindow;
1711 /// - (NSImage *)draggedImage;
1712 /// \@end
1713 /// \endcode
1714 ///
1715 /// This says that NSDraggingInfo requires two methods and requires everything
1716 /// that the two "referenced protocols" 'refproto1' and 'refproto2' require as
1717 /// well.
1718 ///
1719 /// \code
1720 /// \@interface ImplementsNSDraggingInfo : NSObject \<NSDraggingInfo>
1721 /// \@end
1722 /// \endcode
1723 ///
1724 /// ObjC protocols inspired Java interfaces. Unlike Java, ObjC classes and
1725 /// protocols are in distinct namespaces. For example, Cocoa defines both
1726 /// an NSObject protocol and class (which isn't allowed in Java). As a result,
1727 /// protocols are referenced using angle brackets as follows:
1728 ///
1729 /// id \<NSDraggingInfo> anyObjectThatImplementsNSDraggingInfo;
1730 ///
1731 class ObjCProtocolDecl : public ObjCContainerDecl,
1732 public Redeclarable<ObjCProtocolDecl> {
1733 void anchor() override;
1734
1735 struct DefinitionData {
1736 // \brief The declaration that defines this protocol.
1737 ObjCProtocolDecl *Definition;
1738
1739 /// \brief Referenced protocols
1740 ObjCProtocolList ReferencedProtocols;
1741 };
1742
1743 /// \brief Contains a pointer to the data associated with this class,
1744 /// which will be NULL if this class has not yet been defined.
1745 ///
1746 /// The bit indicates when we don't need to check for out-of-date
1747 /// declarations. It will be set unless modules are enabled.
1748 llvm::PointerIntPair<DefinitionData *, 1, bool> Data;
1749
data()1750 DefinitionData &data() const {
1751 assert(Data.getPointer() && "Objective-C protocol has no definition!");
1752 return *Data.getPointer();
1753 }
1754
1755 ObjCProtocolDecl(ASTContext &C, DeclContext *DC, IdentifierInfo *Id,
1756 SourceLocation nameLoc, SourceLocation atStartLoc,
1757 ObjCProtocolDecl *PrevDecl);
1758
1759 void allocateDefinitionData();
1760
1761 typedef Redeclarable<ObjCProtocolDecl> redeclarable_base;
getNextRedeclarationImpl()1762 ObjCProtocolDecl *getNextRedeclarationImpl() override {
1763 return getNextRedeclaration();
1764 }
getPreviousDeclImpl()1765 ObjCProtocolDecl *getPreviousDeclImpl() override {
1766 return getPreviousDecl();
1767 }
getMostRecentDeclImpl()1768 ObjCProtocolDecl *getMostRecentDeclImpl() override {
1769 return getMostRecentDecl();
1770 }
1771
1772 public:
1773 static ObjCProtocolDecl *Create(ASTContext &C, DeclContext *DC,
1774 IdentifierInfo *Id,
1775 SourceLocation nameLoc,
1776 SourceLocation atStartLoc,
1777 ObjCProtocolDecl *PrevDecl);
1778
1779 static ObjCProtocolDecl *CreateDeserialized(ASTContext &C, unsigned ID);
1780
getReferencedProtocols()1781 const ObjCProtocolList &getReferencedProtocols() const {
1782 assert(hasDefinition() && "No definition available!");
1783 return data().ReferencedProtocols;
1784 }
1785 typedef ObjCProtocolList::iterator protocol_iterator;
1786 typedef llvm::iterator_range<protocol_iterator> protocol_range;
1787
protocols()1788 protocol_range protocols() const {
1789 return protocol_range(protocol_begin(), protocol_end());
1790 }
protocol_begin()1791 protocol_iterator protocol_begin() const {
1792 if (!hasDefinition())
1793 return protocol_iterator();
1794
1795 return data().ReferencedProtocols.begin();
1796 }
protocol_end()1797 protocol_iterator protocol_end() const {
1798 if (!hasDefinition())
1799 return protocol_iterator();
1800
1801 return data().ReferencedProtocols.end();
1802 }
1803 typedef ObjCProtocolList::loc_iterator protocol_loc_iterator;
1804 typedef llvm::iterator_range<protocol_loc_iterator> protocol_loc_range;
1805
protocol_locs()1806 protocol_loc_range protocol_locs() const {
1807 return protocol_loc_range(protocol_loc_begin(), protocol_loc_end());
1808 }
protocol_loc_begin()1809 protocol_loc_iterator protocol_loc_begin() const {
1810 if (!hasDefinition())
1811 return protocol_loc_iterator();
1812
1813 return data().ReferencedProtocols.loc_begin();
1814 }
protocol_loc_end()1815 protocol_loc_iterator protocol_loc_end() const {
1816 if (!hasDefinition())
1817 return protocol_loc_iterator();
1818
1819 return data().ReferencedProtocols.loc_end();
1820 }
protocol_size()1821 unsigned protocol_size() const {
1822 if (!hasDefinition())
1823 return 0;
1824
1825 return data().ReferencedProtocols.size();
1826 }
1827
1828 /// setProtocolList - Set the list of protocols that this interface
1829 /// implements.
setProtocolList(ObjCProtocolDecl * const * List,unsigned Num,const SourceLocation * Locs,ASTContext & C)1830 void setProtocolList(ObjCProtocolDecl *const*List, unsigned Num,
1831 const SourceLocation *Locs, ASTContext &C) {
1832 assert(hasDefinition() && "Protocol is not defined");
1833 data().ReferencedProtocols.set(List, Num, Locs, C);
1834 }
1835
1836 ObjCProtocolDecl *lookupProtocolNamed(IdentifierInfo *PName);
1837
1838 // Lookup a method. First, we search locally. If a method isn't
1839 // found, we search referenced protocols and class categories.
1840 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
lookupInstanceMethod(Selector Sel)1841 ObjCMethodDecl *lookupInstanceMethod(Selector Sel) const {
1842 return lookupMethod(Sel, true/*isInstance*/);
1843 }
lookupClassMethod(Selector Sel)1844 ObjCMethodDecl *lookupClassMethod(Selector Sel) const {
1845 return lookupMethod(Sel, false/*isInstance*/);
1846 }
1847
1848 /// \brief Determine whether this protocol has a definition.
hasDefinition()1849 bool hasDefinition() const {
1850 // If the name of this protocol is out-of-date, bring it up-to-date, which
1851 // might bring in a definition.
1852 // Note: a null value indicates that we don't have a definition and that
1853 // modules are enabled.
1854 if (!Data.getOpaqueValue()) {
1855 if (IdentifierInfo *II = getIdentifier()) {
1856 if (II->isOutOfDate()) {
1857 updateOutOfDate(*II);
1858 }
1859 }
1860 }
1861
1862 return Data.getPointer();
1863 }
1864
1865 /// \brief Retrieve the definition of this protocol, if any.
getDefinition()1866 ObjCProtocolDecl *getDefinition() {
1867 return hasDefinition()? Data.getPointer()->Definition : nullptr;
1868 }
1869
1870 /// \brief Retrieve the definition of this protocol, if any.
getDefinition()1871 const ObjCProtocolDecl *getDefinition() const {
1872 return hasDefinition()? Data.getPointer()->Definition : nullptr;
1873 }
1874
1875 /// \brief Determine whether this particular declaration is also the
1876 /// definition.
isThisDeclarationADefinition()1877 bool isThisDeclarationADefinition() const {
1878 return getDefinition() == this;
1879 }
1880
1881 /// \brief Starts the definition of this Objective-C protocol.
1882 void startDefinition();
1883
1884 /// Produce a name to be used for protocol's metadata. It comes either via
1885 /// objc_runtime_name attribute or protocol name.
1886 StringRef getObjCRuntimeNameAsString() const;
1887
getSourceRange()1888 SourceRange getSourceRange() const override LLVM_READONLY {
1889 if (isThisDeclarationADefinition())
1890 return ObjCContainerDecl::getSourceRange();
1891
1892 return SourceRange(getAtStartLoc(), getLocation());
1893 }
1894
1895 typedef redeclarable_base::redecl_range redecl_range;
1896 typedef redeclarable_base::redecl_iterator redecl_iterator;
1897 using redeclarable_base::redecls_begin;
1898 using redeclarable_base::redecls_end;
1899 using redeclarable_base::redecls;
1900 using redeclarable_base::getPreviousDecl;
1901 using redeclarable_base::getMostRecentDecl;
1902 using redeclarable_base::isFirstDecl;
1903
1904 /// Retrieves the canonical declaration of this Objective-C protocol.
getCanonicalDecl()1905 ObjCProtocolDecl *getCanonicalDecl() override { return getFirstDecl(); }
getCanonicalDecl()1906 const ObjCProtocolDecl *getCanonicalDecl() const { return getFirstDecl(); }
1907
1908 void collectPropertiesToImplement(PropertyMap &PM,
1909 PropertyDeclOrder &PO) const override;
1910
1911 void collectInheritedProtocolProperties(const ObjCPropertyDecl *Property,
1912 ProtocolPropertyMap &PM) const;
1913
classof(const Decl * D)1914 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)1915 static bool classofKind(Kind K) { return K == ObjCProtocol; }
1916
1917 friend class ASTReader;
1918 friend class ASTDeclReader;
1919 friend class ASTDeclWriter;
1920 };
1921
1922 /// ObjCCategoryDecl - Represents a category declaration. A category allows
1923 /// you to add methods to an existing class (without subclassing or modifying
1924 /// the original class interface or implementation:-). Categories don't allow
1925 /// you to add instance data. The following example adds "myMethod" to all
1926 /// NSView's within a process:
1927 ///
1928 /// \@interface NSView (MyViewMethods)
1929 /// - myMethod;
1930 /// \@end
1931 ///
1932 /// Categories also allow you to split the implementation of a class across
1933 /// several files (a feature more naturally supported in C++).
1934 ///
1935 /// Categories were originally inspired by dynamic languages such as Common
1936 /// Lisp and Smalltalk. More traditional class-based languages (C++, Java)
1937 /// don't support this level of dynamism, which is both powerful and dangerous.
1938 ///
1939 class ObjCCategoryDecl : public ObjCContainerDecl {
1940 void anchor() override;
1941
1942 /// Interface belonging to this category
1943 ObjCInterfaceDecl *ClassInterface;
1944
1945 /// The type parameters associated with this category, if any.
1946 ObjCTypeParamList *TypeParamList;
1947
1948 /// referenced protocols in this category.
1949 ObjCProtocolList ReferencedProtocols;
1950
1951 /// Next category belonging to this class.
1952 /// FIXME: this should not be a singly-linked list. Move storage elsewhere.
1953 ObjCCategoryDecl *NextClassCategory;
1954
1955 /// \brief The location of the category name in this declaration.
1956 SourceLocation CategoryNameLoc;
1957
1958 /// class extension may have private ivars.
1959 SourceLocation IvarLBraceLoc;
1960 SourceLocation IvarRBraceLoc;
1961
1962 ObjCCategoryDecl(DeclContext *DC, SourceLocation AtLoc,
1963 SourceLocation ClassNameLoc, SourceLocation CategoryNameLoc,
1964 IdentifierInfo *Id, ObjCInterfaceDecl *IDecl,
1965 ObjCTypeParamList *typeParamList,
1966 SourceLocation IvarLBraceLoc=SourceLocation(),
1967 SourceLocation IvarRBraceLoc=SourceLocation());
1968
1969 public:
1970
1971 static ObjCCategoryDecl *Create(ASTContext &C, DeclContext *DC,
1972 SourceLocation AtLoc,
1973 SourceLocation ClassNameLoc,
1974 SourceLocation CategoryNameLoc,
1975 IdentifierInfo *Id,
1976 ObjCInterfaceDecl *IDecl,
1977 ObjCTypeParamList *typeParamList,
1978 SourceLocation IvarLBraceLoc=SourceLocation(),
1979 SourceLocation IvarRBraceLoc=SourceLocation());
1980 static ObjCCategoryDecl *CreateDeserialized(ASTContext &C, unsigned ID);
1981
getClassInterface()1982 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; }
getClassInterface()1983 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; }
1984
1985 /// Retrieve the type parameter list associated with this category or
1986 /// extension.
getTypeParamList()1987 ObjCTypeParamList *getTypeParamList() const { return TypeParamList; }
1988
1989 /// Set the type parameters of this category.
1990 ///
1991 /// This function is used by the AST importer, which must import the type
1992 /// parameters after creating their DeclContext to avoid loops.
1993 void setTypeParamList(ObjCTypeParamList *TPL);
1994
1995
1996 ObjCCategoryImplDecl *getImplementation() const;
1997 void setImplementation(ObjCCategoryImplDecl *ImplD);
1998
1999 /// setProtocolList - Set the list of protocols that this interface
2000 /// implements.
setProtocolList(ObjCProtocolDecl * const * List,unsigned Num,const SourceLocation * Locs,ASTContext & C)2001 void setProtocolList(ObjCProtocolDecl *const*List, unsigned Num,
2002 const SourceLocation *Locs, ASTContext &C) {
2003 ReferencedProtocols.set(List, Num, Locs, C);
2004 }
2005
getReferencedProtocols()2006 const ObjCProtocolList &getReferencedProtocols() const {
2007 return ReferencedProtocols;
2008 }
2009
2010 typedef ObjCProtocolList::iterator protocol_iterator;
2011 typedef llvm::iterator_range<protocol_iterator> protocol_range;
2012
protocols()2013 protocol_range protocols() const {
2014 return protocol_range(protocol_begin(), protocol_end());
2015 }
protocol_begin()2016 protocol_iterator protocol_begin() const {
2017 return ReferencedProtocols.begin();
2018 }
protocol_end()2019 protocol_iterator protocol_end() const { return ReferencedProtocols.end(); }
protocol_size()2020 unsigned protocol_size() const { return ReferencedProtocols.size(); }
2021 typedef ObjCProtocolList::loc_iterator protocol_loc_iterator;
2022 typedef llvm::iterator_range<protocol_loc_iterator> protocol_loc_range;
2023
protocol_locs()2024 protocol_loc_range protocol_locs() const {
2025 return protocol_loc_range(protocol_loc_begin(), protocol_loc_end());
2026 }
protocol_loc_begin()2027 protocol_loc_iterator protocol_loc_begin() const {
2028 return ReferencedProtocols.loc_begin();
2029 }
protocol_loc_end()2030 protocol_loc_iterator protocol_loc_end() const {
2031 return ReferencedProtocols.loc_end();
2032 }
2033
getNextClassCategory()2034 ObjCCategoryDecl *getNextClassCategory() const { return NextClassCategory; }
2035
2036 /// \brief Retrieve the pointer to the next stored category (or extension),
2037 /// which may be hidden.
getNextClassCategoryRaw()2038 ObjCCategoryDecl *getNextClassCategoryRaw() const {
2039 return NextClassCategory;
2040 }
2041
IsClassExtension()2042 bool IsClassExtension() const { return getIdentifier() == nullptr; }
2043
2044 typedef specific_decl_iterator<ObjCIvarDecl> ivar_iterator;
2045 typedef llvm::iterator_range<specific_decl_iterator<ObjCIvarDecl>> ivar_range;
2046
ivars()2047 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); }
ivar_begin()2048 ivar_iterator ivar_begin() const {
2049 return ivar_iterator(decls_begin());
2050 }
ivar_end()2051 ivar_iterator ivar_end() const {
2052 return ivar_iterator(decls_end());
2053 }
ivar_size()2054 unsigned ivar_size() const {
2055 return std::distance(ivar_begin(), ivar_end());
2056 }
ivar_empty()2057 bool ivar_empty() const {
2058 return ivar_begin() == ivar_end();
2059 }
2060
getCategoryNameLoc()2061 SourceLocation getCategoryNameLoc() const { return CategoryNameLoc; }
setCategoryNameLoc(SourceLocation Loc)2062 void setCategoryNameLoc(SourceLocation Loc) { CategoryNameLoc = Loc; }
2063
setIvarLBraceLoc(SourceLocation Loc)2064 void setIvarLBraceLoc(SourceLocation Loc) { IvarLBraceLoc = Loc; }
getIvarLBraceLoc()2065 SourceLocation getIvarLBraceLoc() const { return IvarLBraceLoc; }
setIvarRBraceLoc(SourceLocation Loc)2066 void setIvarRBraceLoc(SourceLocation Loc) { IvarRBraceLoc = Loc; }
getIvarRBraceLoc()2067 SourceLocation getIvarRBraceLoc() const { return IvarRBraceLoc; }
2068
classof(const Decl * D)2069 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2070 static bool classofKind(Kind K) { return K == ObjCCategory; }
2071
2072 friend class ASTDeclReader;
2073 friend class ASTDeclWriter;
2074 };
2075
2076 class ObjCImplDecl : public ObjCContainerDecl {
2077 void anchor() override;
2078
2079 /// Class interface for this class/category implementation
2080 ObjCInterfaceDecl *ClassInterface;
2081
2082 protected:
ObjCImplDecl(Kind DK,DeclContext * DC,ObjCInterfaceDecl * classInterface,SourceLocation nameLoc,SourceLocation atStartLoc)2083 ObjCImplDecl(Kind DK, DeclContext *DC,
2084 ObjCInterfaceDecl *classInterface,
2085 SourceLocation nameLoc, SourceLocation atStartLoc)
2086 : ObjCContainerDecl(DK, DC,
2087 classInterface? classInterface->getIdentifier()
2088 : nullptr,
2089 nameLoc, atStartLoc),
2090 ClassInterface(classInterface) {}
2091
2092 public:
getClassInterface()2093 const ObjCInterfaceDecl *getClassInterface() const { return ClassInterface; }
getClassInterface()2094 ObjCInterfaceDecl *getClassInterface() { return ClassInterface; }
2095 void setClassInterface(ObjCInterfaceDecl *IFace);
2096
addInstanceMethod(ObjCMethodDecl * method)2097 void addInstanceMethod(ObjCMethodDecl *method) {
2098 // FIXME: Context should be set correctly before we get here.
2099 method->setLexicalDeclContext(this);
2100 addDecl(method);
2101 }
addClassMethod(ObjCMethodDecl * method)2102 void addClassMethod(ObjCMethodDecl *method) {
2103 // FIXME: Context should be set correctly before we get here.
2104 method->setLexicalDeclContext(this);
2105 addDecl(method);
2106 }
2107
2108 void addPropertyImplementation(ObjCPropertyImplDecl *property);
2109
2110 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;
2111 ObjCPropertyImplDecl *FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const;
2112
2113 // Iterator access to properties.
2114 typedef specific_decl_iterator<ObjCPropertyImplDecl> propimpl_iterator;
2115 typedef llvm::iterator_range<specific_decl_iterator<ObjCPropertyImplDecl>>
2116 propimpl_range;
2117
property_impls()2118 propimpl_range property_impls() const {
2119 return propimpl_range(propimpl_begin(), propimpl_end());
2120 }
propimpl_begin()2121 propimpl_iterator propimpl_begin() const {
2122 return propimpl_iterator(decls_begin());
2123 }
propimpl_end()2124 propimpl_iterator propimpl_end() const {
2125 return propimpl_iterator(decls_end());
2126 }
2127
classof(const Decl * D)2128 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2129 static bool classofKind(Kind K) {
2130 return K >= firstObjCImpl && K <= lastObjCImpl;
2131 }
2132 };
2133
2134 /// ObjCCategoryImplDecl - An object of this class encapsulates a category
2135 /// \@implementation declaration. If a category class has declaration of a
2136 /// property, its implementation must be specified in the category's
2137 /// \@implementation declaration. Example:
2138 /// \@interface I \@end
2139 /// \@interface I(CATEGORY)
2140 /// \@property int p1, d1;
2141 /// \@end
2142 /// \@implementation I(CATEGORY)
2143 /// \@dynamic p1,d1;
2144 /// \@end
2145 ///
2146 /// ObjCCategoryImplDecl
2147 class ObjCCategoryImplDecl : public ObjCImplDecl {
2148 void anchor() override;
2149
2150 // Category name
2151 IdentifierInfo *Id;
2152
2153 // Category name location
2154 SourceLocation CategoryNameLoc;
2155
ObjCCategoryImplDecl(DeclContext * DC,IdentifierInfo * Id,ObjCInterfaceDecl * classInterface,SourceLocation nameLoc,SourceLocation atStartLoc,SourceLocation CategoryNameLoc)2156 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id,
2157 ObjCInterfaceDecl *classInterface,
2158 SourceLocation nameLoc, SourceLocation atStartLoc,
2159 SourceLocation CategoryNameLoc)
2160 : ObjCImplDecl(ObjCCategoryImpl, DC, classInterface, nameLoc, atStartLoc),
2161 Id(Id), CategoryNameLoc(CategoryNameLoc) {}
2162 public:
2163 static ObjCCategoryImplDecl *Create(ASTContext &C, DeclContext *DC,
2164 IdentifierInfo *Id,
2165 ObjCInterfaceDecl *classInterface,
2166 SourceLocation nameLoc,
2167 SourceLocation atStartLoc,
2168 SourceLocation CategoryNameLoc);
2169 static ObjCCategoryImplDecl *CreateDeserialized(ASTContext &C, unsigned ID);
2170
2171 /// getIdentifier - Get the identifier that names the category
2172 /// interface associated with this implementation.
2173 /// FIXME: This is a bad API, we are hiding NamedDecl::getIdentifier()
2174 /// with a different meaning. For example:
2175 /// ((NamedDecl *)SomeCategoryImplDecl)->getIdentifier()
2176 /// returns the class interface name, whereas
2177 /// ((ObjCCategoryImplDecl *)SomeCategoryImplDecl)->getIdentifier()
2178 /// returns the category name.
getIdentifier()2179 IdentifierInfo *getIdentifier() const {
2180 return Id;
2181 }
setIdentifier(IdentifierInfo * II)2182 void setIdentifier(IdentifierInfo *II) { Id = II; }
2183
2184 ObjCCategoryDecl *getCategoryDecl() const;
2185
getCategoryNameLoc()2186 SourceLocation getCategoryNameLoc() const { return CategoryNameLoc; }
2187
2188 /// getName - Get the name of identifier for the class interface associated
2189 /// with this implementation as a StringRef.
2190 //
2191 // FIXME: This is a bad API, we are hiding NamedDecl::getName with a different
2192 // meaning.
getName()2193 StringRef getName() const { return Id ? Id->getName() : StringRef(); }
2194
2195 /// @brief Get the name of the class associated with this interface.
2196 //
2197 // FIXME: Deprecated, move clients to getName().
getNameAsString()2198 std::string getNameAsString() const {
2199 return getName();
2200 }
2201
classof(const Decl * D)2202 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2203 static bool classofKind(Kind K) { return K == ObjCCategoryImpl;}
2204
2205 friend class ASTDeclReader;
2206 friend class ASTDeclWriter;
2207 };
2208
2209 raw_ostream &operator<<(raw_ostream &OS, const ObjCCategoryImplDecl &CID);
2210
2211 /// ObjCImplementationDecl - Represents a class definition - this is where
2212 /// method definitions are specified. For example:
2213 ///
2214 /// @code
2215 /// \@implementation MyClass
2216 /// - (void)myMethod { /* do something */ }
2217 /// \@end
2218 /// @endcode
2219 ///
2220 /// In a non-fragile runtime, instance variables can appear in the class
2221 /// interface, class extensions (nameless categories), and in the implementation
2222 /// itself, as well as being synthesized as backing storage for properties.
2223 ///
2224 /// In a fragile runtime, instance variables are specified in the class
2225 /// interface, \em not in the implementation. Nevertheless (for legacy reasons),
2226 /// we allow instance variables to be specified in the implementation. When
2227 /// specified, they need to be \em identical to the interface.
2228 class ObjCImplementationDecl : public ObjCImplDecl {
2229 void anchor() override;
2230 /// Implementation Class's super class.
2231 ObjCInterfaceDecl *SuperClass;
2232 SourceLocation SuperLoc;
2233
2234 /// \@implementation may have private ivars.
2235 SourceLocation IvarLBraceLoc;
2236 SourceLocation IvarRBraceLoc;
2237
2238 /// Support for ivar initialization.
2239 /// \brief The arguments used to initialize the ivars
2240 LazyCXXCtorInitializersPtr IvarInitializers;
2241 unsigned NumIvarInitializers;
2242
2243 /// Do the ivars of this class require initialization other than
2244 /// zero-initialization?
2245 bool HasNonZeroConstructors : 1;
2246
2247 /// Do the ivars of this class require non-trivial destruction?
2248 bool HasDestructors : 1;
2249
2250 ObjCImplementationDecl(DeclContext *DC,
2251 ObjCInterfaceDecl *classInterface,
2252 ObjCInterfaceDecl *superDecl,
2253 SourceLocation nameLoc, SourceLocation atStartLoc,
2254 SourceLocation superLoc = SourceLocation(),
2255 SourceLocation IvarLBraceLoc=SourceLocation(),
2256 SourceLocation IvarRBraceLoc=SourceLocation())
ObjCImplDecl(ObjCImplementation,DC,classInterface,nameLoc,atStartLoc)2257 : ObjCImplDecl(ObjCImplementation, DC, classInterface, nameLoc, atStartLoc),
2258 SuperClass(superDecl), SuperLoc(superLoc), IvarLBraceLoc(IvarLBraceLoc),
2259 IvarRBraceLoc(IvarRBraceLoc),
2260 IvarInitializers(nullptr), NumIvarInitializers(0),
2261 HasNonZeroConstructors(false), HasDestructors(false) {}
2262 public:
2263 static ObjCImplementationDecl *Create(ASTContext &C, DeclContext *DC,
2264 ObjCInterfaceDecl *classInterface,
2265 ObjCInterfaceDecl *superDecl,
2266 SourceLocation nameLoc,
2267 SourceLocation atStartLoc,
2268 SourceLocation superLoc = SourceLocation(),
2269 SourceLocation IvarLBraceLoc=SourceLocation(),
2270 SourceLocation IvarRBraceLoc=SourceLocation());
2271
2272 static ObjCImplementationDecl *CreateDeserialized(ASTContext &C, unsigned ID);
2273
2274 /// init_iterator - Iterates through the ivar initializer list.
2275 typedef CXXCtorInitializer **init_iterator;
2276
2277 /// init_const_iterator - Iterates through the ivar initializer list.
2278 typedef CXXCtorInitializer * const * init_const_iterator;
2279
2280 typedef llvm::iterator_range<init_iterator> init_range;
2281 typedef llvm::iterator_range<init_const_iterator> init_const_range;
2282
inits()2283 init_range inits() { return init_range(init_begin(), init_end()); }
inits()2284 init_const_range inits() const {
2285 return init_const_range(init_begin(), init_end());
2286 }
2287
2288 /// init_begin() - Retrieve an iterator to the first initializer.
init_begin()2289 init_iterator init_begin() {
2290 const auto *ConstThis = this;
2291 return const_cast<init_iterator>(ConstThis->init_begin());
2292 }
2293 /// begin() - Retrieve an iterator to the first initializer.
2294 init_const_iterator init_begin() const;
2295
2296 /// init_end() - Retrieve an iterator past the last initializer.
init_end()2297 init_iterator init_end() {
2298 return init_begin() + NumIvarInitializers;
2299 }
2300 /// end() - Retrieve an iterator past the last initializer.
init_end()2301 init_const_iterator init_end() const {
2302 return init_begin() + NumIvarInitializers;
2303 }
2304 /// getNumArgs - Number of ivars which must be initialized.
getNumIvarInitializers()2305 unsigned getNumIvarInitializers() const {
2306 return NumIvarInitializers;
2307 }
2308
setNumIvarInitializers(unsigned numNumIvarInitializers)2309 void setNumIvarInitializers(unsigned numNumIvarInitializers) {
2310 NumIvarInitializers = numNumIvarInitializers;
2311 }
2312
2313 void setIvarInitializers(ASTContext &C,
2314 CXXCtorInitializer ** initializers,
2315 unsigned numInitializers);
2316
2317 /// Do any of the ivars of this class (not counting its base classes)
2318 /// require construction other than zero-initialization?
hasNonZeroConstructors()2319 bool hasNonZeroConstructors() const { return HasNonZeroConstructors; }
setHasNonZeroConstructors(bool val)2320 void setHasNonZeroConstructors(bool val) { HasNonZeroConstructors = val; }
2321
2322 /// Do any of the ivars of this class (not counting its base classes)
2323 /// require non-trivial destruction?
hasDestructors()2324 bool hasDestructors() const { return HasDestructors; }
setHasDestructors(bool val)2325 void setHasDestructors(bool val) { HasDestructors = val; }
2326
2327 /// getIdentifier - Get the identifier that names the class
2328 /// interface associated with this implementation.
getIdentifier()2329 IdentifierInfo *getIdentifier() const {
2330 return getClassInterface()->getIdentifier();
2331 }
2332
2333 /// getName - Get the name of identifier for the class interface associated
2334 /// with this implementation as a StringRef.
2335 //
2336 // FIXME: This is a bad API, we are hiding NamedDecl::getName with a different
2337 // meaning.
getName()2338 StringRef getName() const {
2339 assert(getIdentifier() && "Name is not a simple identifier");
2340 return getIdentifier()->getName();
2341 }
2342
2343 /// @brief Get the name of the class associated with this interface.
2344 //
2345 // FIXME: Move to StringRef API.
getNameAsString()2346 std::string getNameAsString() const {
2347 return getName();
2348 }
2349
2350 /// Produce a name to be used for class's metadata. It comes either via
2351 /// class's objc_runtime_name attribute or class name.
2352 StringRef getObjCRuntimeNameAsString() const;
2353
getSuperClass()2354 const ObjCInterfaceDecl *getSuperClass() const { return SuperClass; }
getSuperClass()2355 ObjCInterfaceDecl *getSuperClass() { return SuperClass; }
getSuperClassLoc()2356 SourceLocation getSuperClassLoc() const { return SuperLoc; }
2357
setSuperClass(ObjCInterfaceDecl * superCls)2358 void setSuperClass(ObjCInterfaceDecl * superCls) { SuperClass = superCls; }
2359
setIvarLBraceLoc(SourceLocation Loc)2360 void setIvarLBraceLoc(SourceLocation Loc) { IvarLBraceLoc = Loc; }
getIvarLBraceLoc()2361 SourceLocation getIvarLBraceLoc() const { return IvarLBraceLoc; }
setIvarRBraceLoc(SourceLocation Loc)2362 void setIvarRBraceLoc(SourceLocation Loc) { IvarRBraceLoc = Loc; }
getIvarRBraceLoc()2363 SourceLocation getIvarRBraceLoc() const { return IvarRBraceLoc; }
2364
2365 typedef specific_decl_iterator<ObjCIvarDecl> ivar_iterator;
2366 typedef llvm::iterator_range<specific_decl_iterator<ObjCIvarDecl>> ivar_range;
2367
ivars()2368 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); }
ivar_begin()2369 ivar_iterator ivar_begin() const {
2370 return ivar_iterator(decls_begin());
2371 }
ivar_end()2372 ivar_iterator ivar_end() const {
2373 return ivar_iterator(decls_end());
2374 }
ivar_size()2375 unsigned ivar_size() const {
2376 return std::distance(ivar_begin(), ivar_end());
2377 }
ivar_empty()2378 bool ivar_empty() const {
2379 return ivar_begin() == ivar_end();
2380 }
2381
classof(const Decl * D)2382 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2383 static bool classofKind(Kind K) { return K == ObjCImplementation; }
2384
2385 friend class ASTDeclReader;
2386 friend class ASTDeclWriter;
2387 };
2388
2389 raw_ostream &operator<<(raw_ostream &OS, const ObjCImplementationDecl &ID);
2390
2391 /// ObjCCompatibleAliasDecl - Represents alias of a class. This alias is
2392 /// declared as \@compatibility_alias alias class.
2393 class ObjCCompatibleAliasDecl : public NamedDecl {
2394 void anchor() override;
2395 /// Class that this is an alias of.
2396 ObjCInterfaceDecl *AliasedClass;
2397
ObjCCompatibleAliasDecl(DeclContext * DC,SourceLocation L,IdentifierInfo * Id,ObjCInterfaceDecl * aliasedClass)2398 ObjCCompatibleAliasDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id,
2399 ObjCInterfaceDecl* aliasedClass)
2400 : NamedDecl(ObjCCompatibleAlias, DC, L, Id), AliasedClass(aliasedClass) {}
2401 public:
2402 static ObjCCompatibleAliasDecl *Create(ASTContext &C, DeclContext *DC,
2403 SourceLocation L, IdentifierInfo *Id,
2404 ObjCInterfaceDecl* aliasedClass);
2405
2406 static ObjCCompatibleAliasDecl *CreateDeserialized(ASTContext &C,
2407 unsigned ID);
2408
getClassInterface()2409 const ObjCInterfaceDecl *getClassInterface() const { return AliasedClass; }
getClassInterface()2410 ObjCInterfaceDecl *getClassInterface() { return AliasedClass; }
setClassInterface(ObjCInterfaceDecl * D)2411 void setClassInterface(ObjCInterfaceDecl *D) { AliasedClass = D; }
2412
classof(const Decl * D)2413 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2414 static bool classofKind(Kind K) { return K == ObjCCompatibleAlias; }
2415
2416 };
2417
2418 /// \brief Represents one property declaration in an Objective-C interface.
2419 ///
2420 /// For example:
2421 /// \code{.mm}
2422 /// \@property (assign, readwrite) int MyProperty;
2423 /// \endcode
2424 class ObjCPropertyDecl : public NamedDecl {
2425 void anchor() override;
2426 public:
2427 enum PropertyAttributeKind {
2428 OBJC_PR_noattr = 0x00,
2429 OBJC_PR_readonly = 0x01,
2430 OBJC_PR_getter = 0x02,
2431 OBJC_PR_assign = 0x04,
2432 OBJC_PR_readwrite = 0x08,
2433 OBJC_PR_retain = 0x10,
2434 OBJC_PR_copy = 0x20,
2435 OBJC_PR_nonatomic = 0x40,
2436 OBJC_PR_setter = 0x80,
2437 OBJC_PR_atomic = 0x100,
2438 OBJC_PR_weak = 0x200,
2439 OBJC_PR_strong = 0x400,
2440 OBJC_PR_unsafe_unretained = 0x800,
2441 /// Indicates that the nullability of the type was spelled with a
2442 /// property attribute rather than a type qualifier.
2443 OBJC_PR_nullability = 0x1000,
2444 OBJC_PR_null_resettable = 0x2000
2445 // Adding a property should change NumPropertyAttrsBits
2446 };
2447
2448 enum {
2449 /// \brief Number of bits fitting all the property attributes.
2450 NumPropertyAttrsBits = 14
2451 };
2452
2453 enum SetterKind { Assign, Retain, Copy, Weak };
2454 enum PropertyControl { None, Required, Optional };
2455 private:
2456 SourceLocation AtLoc; // location of \@property
2457 SourceLocation LParenLoc; // location of '(' starting attribute list or null.
2458 QualType DeclType;
2459 TypeSourceInfo *DeclTypeSourceInfo;
2460 unsigned PropertyAttributes : NumPropertyAttrsBits;
2461 unsigned PropertyAttributesAsWritten : NumPropertyAttrsBits;
2462 // \@required/\@optional
2463 unsigned PropertyImplementation : 2;
2464
2465 Selector GetterName; // getter name of NULL if no getter
2466 Selector SetterName; // setter name of NULL if no setter
2467
2468 ObjCMethodDecl *GetterMethodDecl; // Declaration of getter instance method
2469 ObjCMethodDecl *SetterMethodDecl; // Declaration of setter instance method
2470 ObjCIvarDecl *PropertyIvarDecl; // Synthesize ivar for this property
2471
ObjCPropertyDecl(DeclContext * DC,SourceLocation L,IdentifierInfo * Id,SourceLocation AtLocation,SourceLocation LParenLocation,QualType T,TypeSourceInfo * TSI,PropertyControl propControl)2472 ObjCPropertyDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id,
2473 SourceLocation AtLocation, SourceLocation LParenLocation,
2474 QualType T, TypeSourceInfo *TSI,
2475 PropertyControl propControl)
2476 : NamedDecl(ObjCProperty, DC, L, Id), AtLoc(AtLocation),
2477 LParenLoc(LParenLocation), DeclType(T), DeclTypeSourceInfo(TSI),
2478 PropertyAttributes(OBJC_PR_noattr),
2479 PropertyAttributesAsWritten(OBJC_PR_noattr),
2480 PropertyImplementation(propControl),
2481 GetterName(Selector()),
2482 SetterName(Selector()),
2483 GetterMethodDecl(nullptr), SetterMethodDecl(nullptr),
2484 PropertyIvarDecl(nullptr) {}
2485
2486 public:
2487 static ObjCPropertyDecl *Create(ASTContext &C, DeclContext *DC,
2488 SourceLocation L,
2489 IdentifierInfo *Id, SourceLocation AtLocation,
2490 SourceLocation LParenLocation,
2491 QualType T,
2492 TypeSourceInfo *TSI,
2493 PropertyControl propControl = None);
2494
2495 static ObjCPropertyDecl *CreateDeserialized(ASTContext &C, unsigned ID);
2496
getAtLoc()2497 SourceLocation getAtLoc() const { return AtLoc; }
setAtLoc(SourceLocation L)2498 void setAtLoc(SourceLocation L) { AtLoc = L; }
2499
getLParenLoc()2500 SourceLocation getLParenLoc() const { return LParenLoc; }
setLParenLoc(SourceLocation L)2501 void setLParenLoc(SourceLocation L) { LParenLoc = L; }
2502
getTypeSourceInfo()2503 TypeSourceInfo *getTypeSourceInfo() const { return DeclTypeSourceInfo; }
2504
getType()2505 QualType getType() const { return DeclType; }
2506
setType(QualType T,TypeSourceInfo * TSI)2507 void setType(QualType T, TypeSourceInfo *TSI) {
2508 DeclType = T;
2509 DeclTypeSourceInfo = TSI;
2510 }
2511
2512 /// Retrieve the type when this property is used with a specific base object
2513 /// type.
2514 QualType getUsageType(QualType objectType) const;
2515
getPropertyAttributes()2516 PropertyAttributeKind getPropertyAttributes() const {
2517 return PropertyAttributeKind(PropertyAttributes);
2518 }
setPropertyAttributes(PropertyAttributeKind PRVal)2519 void setPropertyAttributes(PropertyAttributeKind PRVal) {
2520 PropertyAttributes |= PRVal;
2521 }
2522
getPropertyAttributesAsWritten()2523 PropertyAttributeKind getPropertyAttributesAsWritten() const {
2524 return PropertyAttributeKind(PropertyAttributesAsWritten);
2525 }
2526
hasWrittenStorageAttribute()2527 bool hasWrittenStorageAttribute() const {
2528 return PropertyAttributesAsWritten & (OBJC_PR_assign | OBJC_PR_copy |
2529 OBJC_PR_unsafe_unretained | OBJC_PR_retain | OBJC_PR_strong |
2530 OBJC_PR_weak);
2531 }
2532
setPropertyAttributesAsWritten(PropertyAttributeKind PRVal)2533 void setPropertyAttributesAsWritten(PropertyAttributeKind PRVal) {
2534 PropertyAttributesAsWritten = PRVal;
2535 }
2536
makeitReadWriteAttribute()2537 void makeitReadWriteAttribute() {
2538 PropertyAttributes &= ~OBJC_PR_readonly;
2539 PropertyAttributes |= OBJC_PR_readwrite;
2540 }
2541
2542 // Helper methods for accessing attributes.
2543
2544 /// isReadOnly - Return true iff the property has a setter.
isReadOnly()2545 bool isReadOnly() const {
2546 return (PropertyAttributes & OBJC_PR_readonly);
2547 }
2548
2549 /// isAtomic - Return true if the property is atomic.
isAtomic()2550 bool isAtomic() const {
2551 return (PropertyAttributes & OBJC_PR_atomic);
2552 }
2553
2554 /// isRetaining - Return true if the property retains its value.
isRetaining()2555 bool isRetaining() const {
2556 return (PropertyAttributes &
2557 (OBJC_PR_retain | OBJC_PR_strong | OBJC_PR_copy));
2558 }
2559
2560 /// getSetterKind - Return the method used for doing assignment in
2561 /// the property setter. This is only valid if the property has been
2562 /// defined to have a setter.
getSetterKind()2563 SetterKind getSetterKind() const {
2564 if (PropertyAttributes & OBJC_PR_strong)
2565 return getType()->isBlockPointerType() ? Copy : Retain;
2566 if (PropertyAttributes & OBJC_PR_retain)
2567 return Retain;
2568 if (PropertyAttributes & OBJC_PR_copy)
2569 return Copy;
2570 if (PropertyAttributes & OBJC_PR_weak)
2571 return Weak;
2572 return Assign;
2573 }
2574
getGetterName()2575 Selector getGetterName() const { return GetterName; }
setGetterName(Selector Sel)2576 void setGetterName(Selector Sel) { GetterName = Sel; }
2577
getSetterName()2578 Selector getSetterName() const { return SetterName; }
setSetterName(Selector Sel)2579 void setSetterName(Selector Sel) { SetterName = Sel; }
2580
getGetterMethodDecl()2581 ObjCMethodDecl *getGetterMethodDecl() const { return GetterMethodDecl; }
setGetterMethodDecl(ObjCMethodDecl * gDecl)2582 void setGetterMethodDecl(ObjCMethodDecl *gDecl) { GetterMethodDecl = gDecl; }
2583
getSetterMethodDecl()2584 ObjCMethodDecl *getSetterMethodDecl() const { return SetterMethodDecl; }
setSetterMethodDecl(ObjCMethodDecl * gDecl)2585 void setSetterMethodDecl(ObjCMethodDecl *gDecl) { SetterMethodDecl = gDecl; }
2586
2587 // Related to \@optional/\@required declared in \@protocol
setPropertyImplementation(PropertyControl pc)2588 void setPropertyImplementation(PropertyControl pc) {
2589 PropertyImplementation = pc;
2590 }
getPropertyImplementation()2591 PropertyControl getPropertyImplementation() const {
2592 return PropertyControl(PropertyImplementation);
2593 }
2594
setPropertyIvarDecl(ObjCIvarDecl * Ivar)2595 void setPropertyIvarDecl(ObjCIvarDecl *Ivar) {
2596 PropertyIvarDecl = Ivar;
2597 }
getPropertyIvarDecl()2598 ObjCIvarDecl *getPropertyIvarDecl() const {
2599 return PropertyIvarDecl;
2600 }
2601
getSourceRange()2602 SourceRange getSourceRange() const override LLVM_READONLY {
2603 return SourceRange(AtLoc, getLocation());
2604 }
2605
2606 /// Get the default name of the synthesized ivar.
2607 IdentifierInfo *getDefaultSynthIvarName(ASTContext &Ctx) const;
2608
2609 /// Lookup a property by name in the specified DeclContext.
2610 static ObjCPropertyDecl *findPropertyDecl(const DeclContext *DC,
2611 const IdentifierInfo *propertyID);
2612
classof(const Decl * D)2613 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Kind K)2614 static bool classofKind(Kind K) { return K == ObjCProperty; }
2615 };
2616
2617 /// ObjCPropertyImplDecl - Represents implementation declaration of a property
2618 /// in a class or category implementation block. For example:
2619 /// \@synthesize prop1 = ivar1;
2620 ///
2621 class ObjCPropertyImplDecl : public Decl {
2622 public:
2623 enum Kind {
2624 Synthesize,
2625 Dynamic
2626 };
2627 private:
2628 SourceLocation AtLoc; // location of \@synthesize or \@dynamic
2629
2630 /// \brief For \@synthesize, the location of the ivar, if it was written in
2631 /// the source code.
2632 ///
2633 /// \code
2634 /// \@synthesize int a = b
2635 /// \endcode
2636 SourceLocation IvarLoc;
2637
2638 /// Property declaration being implemented
2639 ObjCPropertyDecl *PropertyDecl;
2640
2641 /// Null for \@dynamic. Required for \@synthesize.
2642 ObjCIvarDecl *PropertyIvarDecl;
2643
2644 /// Null for \@dynamic. Non-null if property must be copy-constructed in
2645 /// getter.
2646 Expr *GetterCXXConstructor;
2647
2648 /// Null for \@dynamic. Non-null if property has assignment operator to call
2649 /// in Setter synthesis.
2650 Expr *SetterCXXAssignment;
2651
ObjCPropertyImplDecl(DeclContext * DC,SourceLocation atLoc,SourceLocation L,ObjCPropertyDecl * property,Kind PK,ObjCIvarDecl * ivarDecl,SourceLocation ivarLoc)2652 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L,
2653 ObjCPropertyDecl *property,
2654 Kind PK,
2655 ObjCIvarDecl *ivarDecl,
2656 SourceLocation ivarLoc)
2657 : Decl(ObjCPropertyImpl, DC, L), AtLoc(atLoc),
2658 IvarLoc(ivarLoc), PropertyDecl(property), PropertyIvarDecl(ivarDecl),
2659 GetterCXXConstructor(nullptr), SetterCXXAssignment(nullptr) {
2660 assert (PK == Dynamic || PropertyIvarDecl);
2661 }
2662
2663 public:
2664 static ObjCPropertyImplDecl *Create(ASTContext &C, DeclContext *DC,
2665 SourceLocation atLoc, SourceLocation L,
2666 ObjCPropertyDecl *property,
2667 Kind PK,
2668 ObjCIvarDecl *ivarDecl,
2669 SourceLocation ivarLoc);
2670
2671 static ObjCPropertyImplDecl *CreateDeserialized(ASTContext &C, unsigned ID);
2672
2673 SourceRange getSourceRange() const override LLVM_READONLY;
2674
getLocStart()2675 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
setAtLoc(SourceLocation Loc)2676 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }
2677
getPropertyDecl()2678 ObjCPropertyDecl *getPropertyDecl() const {
2679 return PropertyDecl;
2680 }
setPropertyDecl(ObjCPropertyDecl * Prop)2681 void setPropertyDecl(ObjCPropertyDecl *Prop) { PropertyDecl = Prop; }
2682
getPropertyImplementation()2683 Kind getPropertyImplementation() const {
2684 return PropertyIvarDecl ? Synthesize : Dynamic;
2685 }
2686
getPropertyIvarDecl()2687 ObjCIvarDecl *getPropertyIvarDecl() const {
2688 return PropertyIvarDecl;
2689 }
getPropertyIvarDeclLoc()2690 SourceLocation getPropertyIvarDeclLoc() const { return IvarLoc; }
2691
setPropertyIvarDecl(ObjCIvarDecl * Ivar,SourceLocation IvarLoc)2692 void setPropertyIvarDecl(ObjCIvarDecl *Ivar,
2693 SourceLocation IvarLoc) {
2694 PropertyIvarDecl = Ivar;
2695 this->IvarLoc = IvarLoc;
2696 }
2697
2698 /// \brief For \@synthesize, returns true if an ivar name was explicitly
2699 /// specified.
2700 ///
2701 /// \code
2702 /// \@synthesize int a = b; // true
2703 /// \@synthesize int a; // false
2704 /// \endcode
isIvarNameSpecified()2705 bool isIvarNameSpecified() const {
2706 return IvarLoc.isValid() && IvarLoc != getLocation();
2707 }
2708
getGetterCXXConstructor()2709 Expr *getGetterCXXConstructor() const {
2710 return GetterCXXConstructor;
2711 }
setGetterCXXConstructor(Expr * getterCXXConstructor)2712 void setGetterCXXConstructor(Expr *getterCXXConstructor) {
2713 GetterCXXConstructor = getterCXXConstructor;
2714 }
2715
getSetterCXXAssignment()2716 Expr *getSetterCXXAssignment() const {
2717 return SetterCXXAssignment;
2718 }
setSetterCXXAssignment(Expr * setterCXXAssignment)2719 void setSetterCXXAssignment(Expr *setterCXXAssignment) {
2720 SetterCXXAssignment = setterCXXAssignment;
2721 }
2722
classof(const Decl * D)2723 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
classofKind(Decl::Kind K)2724 static bool classofKind(Decl::Kind K) { return K == ObjCPropertyImpl; }
2725
2726 friend class ASTDeclReader;
2727 };
2728
2729 template<bool (*Filter)(ObjCCategoryDecl *)>
2730 void
2731 ObjCInterfaceDecl::filtered_category_iterator<Filter>::
findAcceptableCategory()2732 findAcceptableCategory() {
2733 while (Current && !Filter(Current))
2734 Current = Current->getNextClassCategoryRaw();
2735 }
2736
2737 template<bool (*Filter)(ObjCCategoryDecl *)>
2738 inline ObjCInterfaceDecl::filtered_category_iterator<Filter> &
2739 ObjCInterfaceDecl::filtered_category_iterator<Filter>::operator++() {
2740 Current = Current->getNextClassCategoryRaw();
2741 findAcceptableCategory();
2742 return *this;
2743 }
2744
isVisibleCategory(ObjCCategoryDecl * Cat)2745 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) {
2746 return !Cat->isHidden();
2747 }
2748
isVisibleExtension(ObjCCategoryDecl * Cat)2749 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) {
2750 return Cat->IsClassExtension() && !Cat->isHidden();
2751 }
2752
isKnownExtension(ObjCCategoryDecl * Cat)2753 inline bool ObjCInterfaceDecl::isKnownExtension(ObjCCategoryDecl *Cat) {
2754 return Cat->IsClassExtension();
2755 }
2756
2757 } // end namespace clang
2758 #endif
2759