Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 1 | //===---------------- SemaCodeComplete.cpp - Code Completion ----*- 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 code-completion semantic actions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 13 | #include "clang/Sema/SemaInternal.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 14 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 15 | #include "clang/AST/ExprCXX.h" |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 16 | #include "clang/AST/ExprObjC.h" |
Jordan Rose | 223f0ff | 2013-02-09 10:09:43 +0000 | [diff] [blame] | 17 | #include "clang/Basic/CharInfo.h" |
Douglas Gregor | c5b2e58 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 18 | #include "clang/Lex/HeaderSearch.h" |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 19 | #include "clang/Lex/MacroInfo.h" |
| 20 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/Sema/CodeCompleteConsumer.h" |
| 22 | #include "clang/Sema/ExternalSemaSource.h" |
| 23 | #include "clang/Sema/Lookup.h" |
| 24 | #include "clang/Sema/Overload.h" |
| 25 | #include "clang/Sema/Scope.h" |
| 26 | #include "clang/Sema/ScopeInfo.h" |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/DenseSet.h" |
Benjamin Kramer | 013b366 | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallBitVector.h" |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallPtrSet.h" |
Benjamin Kramer | 8fe83e1 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallString.h" |
Douglas Gregor | 6a68403 | 2009-09-28 03:51:44 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/StringSwitch.h" |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/Twine.h" |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 34 | #include <list> |
| 35 | #include <map> |
| 36 | #include <vector> |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 37 | |
| 38 | using namespace clang; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 39 | using namespace sema; |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 40 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 41 | namespace { |
| 42 | /// \brief A container of code-completion results. |
| 43 | class ResultBuilder { |
| 44 | public: |
| 45 | /// \brief The type of a name-lookup filter, which can be provided to the |
| 46 | /// name-lookup routines to specify which declarations should be included in |
| 47 | /// the result set (when it returns true) and which declarations should be |
| 48 | /// filtered out (returns false). |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 49 | typedef bool (ResultBuilder::*LookupFilter)(const NamedDecl *) const; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 50 | |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 51 | typedef CodeCompletionResult Result; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 52 | |
| 53 | private: |
| 54 | /// \brief The actual results we have found. |
| 55 | std::vector<Result> Results; |
| 56 | |
| 57 | /// \brief A record of all of the declarations we have found and placed |
| 58 | /// into the result set, used to ensure that no declaration ever gets into |
| 59 | /// the result set twice. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 60 | llvm::SmallPtrSet<const Decl*, 16> AllDeclsFound; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 61 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 62 | typedef std::pair<const NamedDecl *, unsigned> DeclIndexPair; |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 63 | |
| 64 | /// \brief An entry in the shadow map, which is optimized to store |
| 65 | /// a single (declaration, index) mapping (the common case) but |
| 66 | /// can also store a list of (declaration, index) mappings. |
| 67 | class ShadowMapEntry { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 68 | typedef SmallVector<DeclIndexPair, 4> DeclIndexPairVector; |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 69 | |
| 70 | /// \brief Contains either the solitary NamedDecl * or a vector |
| 71 | /// of (declaration, index) pairs. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 72 | llvm::PointerUnion<const NamedDecl *, DeclIndexPairVector*> DeclOrVector; |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 73 | |
| 74 | /// \brief When the entry contains a single declaration, this is |
| 75 | /// the index associated with that entry. |
| 76 | unsigned SingleDeclIndex; |
| 77 | |
| 78 | public: |
| 79 | ShadowMapEntry() : DeclOrVector(), SingleDeclIndex(0) { } |
| 80 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 81 | void Add(const NamedDecl *ND, unsigned Index) { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 82 | if (DeclOrVector.isNull()) { |
| 83 | // 0 - > 1 elements: just set the single element information. |
| 84 | DeclOrVector = ND; |
| 85 | SingleDeclIndex = Index; |
| 86 | return; |
| 87 | } |
| 88 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 89 | if (const NamedDecl *PrevND = |
| 90 | DeclOrVector.dyn_cast<const NamedDecl *>()) { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 91 | // 1 -> 2 elements: create the vector of results and push in the |
| 92 | // existing declaration. |
| 93 | DeclIndexPairVector *Vec = new DeclIndexPairVector; |
| 94 | Vec->push_back(DeclIndexPair(PrevND, SingleDeclIndex)); |
| 95 | DeclOrVector = Vec; |
| 96 | } |
| 97 | |
| 98 | // Add the new element to the end of the vector. |
| 99 | DeclOrVector.get<DeclIndexPairVector*>()->push_back( |
| 100 | DeclIndexPair(ND, Index)); |
| 101 | } |
| 102 | |
| 103 | void Destroy() { |
| 104 | if (DeclIndexPairVector *Vec |
| 105 | = DeclOrVector.dyn_cast<DeclIndexPairVector *>()) { |
| 106 | delete Vec; |
| 107 | DeclOrVector = ((NamedDecl *)0); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | // Iteration. |
| 112 | class iterator; |
| 113 | iterator begin() const; |
| 114 | iterator end() const; |
| 115 | }; |
| 116 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 117 | /// \brief A mapping from declaration names to the declarations that have |
| 118 | /// this name within a particular scope and their index within the list of |
| 119 | /// results. |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 120 | typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 121 | |
| 122 | /// \brief The semantic analysis object for which results are being |
| 123 | /// produced. |
| 124 | Sema &SemaRef; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 125 | |
| 126 | /// \brief The allocator used to allocate new code-completion strings. |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 127 | CodeCompletionAllocator &Allocator; |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 128 | |
| 129 | CodeCompletionTUInfo &CCTUInfo; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 130 | |
| 131 | /// \brief If non-NULL, a filter function used to remove any code-completion |
| 132 | /// results that are not desirable. |
| 133 | LookupFilter Filter; |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 134 | |
| 135 | /// \brief Whether we should allow declarations as |
| 136 | /// nested-name-specifiers that would otherwise be filtered out. |
| 137 | bool AllowNestedNameSpecifiers; |
| 138 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 139 | /// \brief If set, the type that we would prefer our resulting value |
| 140 | /// declarations to have. |
| 141 | /// |
| 142 | /// Closely matching the preferred type gives a boost to a result's |
| 143 | /// priority. |
| 144 | CanQualType PreferredType; |
| 145 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 146 | /// \brief A list of shadow maps, which is used to model name hiding at |
| 147 | /// different levels of, e.g., the inheritance hierarchy. |
| 148 | std::list<ShadowMap> ShadowMaps; |
| 149 | |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 150 | /// \brief If we're potentially referring to a C++ member function, the set |
| 151 | /// of qualifiers applied to the object type. |
| 152 | Qualifiers ObjectTypeQualifiers; |
| 153 | |
| 154 | /// \brief Whether the \p ObjectTypeQualifiers field is active. |
| 155 | bool HasObjectTypeQualifiers; |
| 156 | |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 157 | /// \brief The selector that we prefer. |
| 158 | Selector PreferredSelector; |
| 159 | |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 160 | /// \brief The completion context in which we are gathering results. |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 161 | CodeCompletionContext CompletionContext; |
| 162 | |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 163 | /// \brief If we are in an instance method definition, the \@implementation |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 164 | /// object. |
| 165 | ObjCImplementationDecl *ObjCImplementation; |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 166 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 167 | void AdjustResultPriorityForDecl(Result &R); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 168 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 169 | void MaybeAddConstructorResults(Result R); |
| 170 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 171 | public: |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 172 | explicit ResultBuilder(Sema &SemaRef, CodeCompletionAllocator &Allocator, |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 173 | CodeCompletionTUInfo &CCTUInfo, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 174 | const CodeCompletionContext &CompletionContext, |
| 175 | LookupFilter Filter = 0) |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 176 | : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo), |
| 177 | Filter(Filter), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 178 | AllowNestedNameSpecifiers(false), HasObjectTypeQualifiers(false), |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 179 | CompletionContext(CompletionContext), |
| 180 | ObjCImplementation(0) |
| 181 | { |
| 182 | // If this is an Objective-C instance method definition, dig out the |
| 183 | // corresponding implementation. |
| 184 | switch (CompletionContext.getKind()) { |
| 185 | case CodeCompletionContext::CCC_Expression: |
| 186 | case CodeCompletionContext::CCC_ObjCMessageReceiver: |
| 187 | case CodeCompletionContext::CCC_ParenthesizedExpression: |
| 188 | case CodeCompletionContext::CCC_Statement: |
| 189 | case CodeCompletionContext::CCC_Recovery: |
| 190 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) |
| 191 | if (Method->isInstanceMethod()) |
| 192 | if (ObjCInterfaceDecl *Interface = Method->getClassInterface()) |
| 193 | ObjCImplementation = Interface->getImplementation(); |
| 194 | break; |
| 195 | |
| 196 | default: |
| 197 | break; |
| 198 | } |
| 199 | } |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 200 | |
| 201 | /// \brief Determine the priority for a reference to the given declaration. |
| 202 | unsigned getBasePriority(const NamedDecl *D); |
| 203 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 204 | /// \brief Whether we should include code patterns in the completion |
| 205 | /// results. |
| 206 | bool includeCodePatterns() const { |
| 207 | return SemaRef.CodeCompleter && |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 208 | SemaRef.CodeCompleter->includeCodePatterns(); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 211 | /// \brief Set the filter used for code-completion results. |
| 212 | void setFilter(LookupFilter Filter) { |
| 213 | this->Filter = Filter; |
| 214 | } |
| 215 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 216 | Result *data() { return Results.empty()? 0 : &Results.front(); } |
| 217 | unsigned size() const { return Results.size(); } |
| 218 | bool empty() const { return Results.empty(); } |
| 219 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 220 | /// \brief Specify the preferred type. |
| 221 | void setPreferredType(QualType T) { |
| 222 | PreferredType = SemaRef.Context.getCanonicalType(T); |
| 223 | } |
| 224 | |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 225 | /// \brief Set the cv-qualifiers on the object type, for us in filtering |
| 226 | /// calls to member functions. |
| 227 | /// |
| 228 | /// When there are qualifiers in this set, they will be used to filter |
| 229 | /// out member functions that aren't available (because there will be a |
| 230 | /// cv-qualifier mismatch) or prefer functions with an exact qualifier |
| 231 | /// match. |
| 232 | void setObjectTypeQualifiers(Qualifiers Quals) { |
| 233 | ObjectTypeQualifiers = Quals; |
| 234 | HasObjectTypeQualifiers = true; |
| 235 | } |
| 236 | |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 237 | /// \brief Set the preferred selector. |
| 238 | /// |
| 239 | /// When an Objective-C method declaration result is added, and that |
| 240 | /// method's selector matches this preferred selector, we give that method |
| 241 | /// a slight priority boost. |
| 242 | void setPreferredSelector(Selector Sel) { |
| 243 | PreferredSelector = Sel; |
| 244 | } |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 245 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 246 | /// \brief Retrieve the code-completion context for which results are |
| 247 | /// being collected. |
| 248 | const CodeCompletionContext &getCompletionContext() const { |
| 249 | return CompletionContext; |
| 250 | } |
| 251 | |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 252 | /// \brief Specify whether nested-name-specifiers are allowed. |
| 253 | void allowNestedNameSpecifiers(bool Allow = true) { |
| 254 | AllowNestedNameSpecifiers = Allow; |
| 255 | } |
| 256 | |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 257 | /// \brief Return the semantic analysis object for which we are collecting |
| 258 | /// code completion results. |
| 259 | Sema &getSema() const { return SemaRef; } |
| 260 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 261 | /// \brief Retrieve the allocator used to allocate code completion strings. |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 262 | CodeCompletionAllocator &getAllocator() const { return Allocator; } |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 263 | |
| 264 | CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 265 | |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 266 | /// \brief Determine whether the given declaration is at all interesting |
| 267 | /// as a code-completion result. |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 268 | /// |
| 269 | /// \param ND the declaration that we are inspecting. |
| 270 | /// |
| 271 | /// \param AsNestedNameSpecifier will be set true if this declaration is |
| 272 | /// only interesting when it is a nested-name-specifier. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 273 | bool isInterestingDecl(const NamedDecl *ND, |
| 274 | bool &AsNestedNameSpecifier) const; |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 275 | |
| 276 | /// \brief Check whether the result is hidden by the Hiding declaration. |
| 277 | /// |
| 278 | /// \returns true if the result is hidden and cannot be found, false if |
| 279 | /// the hidden result could still be found. When false, \p R may be |
| 280 | /// modified to describe how the result can be found (e.g., via extra |
| 281 | /// qualification). |
| 282 | bool CheckHiddenResult(Result &R, DeclContext *CurContext, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 283 | const NamedDecl *Hiding); |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 284 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 285 | /// \brief Add a new result to this result set (if it isn't already in one |
| 286 | /// of the shadow maps), or replace an existing result (for, e.g., a |
| 287 | /// redeclaration). |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 288 | /// |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 289 | /// \param R the result to add (if it is unique). |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 290 | /// |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 291 | /// \param CurContext the context in which this result will be named. |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 292 | void MaybeAddResult(Result R, DeclContext *CurContext = 0); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 293 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 294 | /// \brief Add a new result to this result set, where we already know |
| 295 | /// the hiding declation (if any). |
| 296 | /// |
| 297 | /// \param R the result to add (if it is unique). |
| 298 | /// |
| 299 | /// \param CurContext the context in which this result will be named. |
| 300 | /// |
| 301 | /// \param Hiding the declaration that hides the result. |
Douglas Gregor | 0cc8404 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 302 | /// |
| 303 | /// \param InBaseClass whether the result was found in a base |
| 304 | /// class of the searched context. |
| 305 | void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding, |
| 306 | bool InBaseClass); |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 307 | |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 308 | /// \brief Add a new non-declaration result to this result set. |
| 309 | void AddResult(Result R); |
| 310 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 311 | /// \brief Enter into a new scope. |
| 312 | void EnterNewScope(); |
| 313 | |
| 314 | /// \brief Exit from the current scope. |
| 315 | void ExitScope(); |
| 316 | |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 317 | /// \brief Ignore this declaration, if it is seen again. |
Dmitri Gribenko | 68a932d | 2013-02-14 13:53:30 +0000 | [diff] [blame] | 318 | void Ignore(const Decl *D) { AllDeclsFound.insert(D->getCanonicalDecl()); } |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 319 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 320 | /// \name Name lookup predicates |
| 321 | /// |
| 322 | /// These predicates can be passed to the name lookup functions to filter the |
| 323 | /// results of name lookup. All of the predicates have the same type, so that |
| 324 | /// |
| 325 | //@{ |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 326 | bool IsOrdinaryName(const NamedDecl *ND) const; |
| 327 | bool IsOrdinaryNonTypeName(const NamedDecl *ND) const; |
| 328 | bool IsIntegralConstantValue(const NamedDecl *ND) const; |
| 329 | bool IsOrdinaryNonValueName(const NamedDecl *ND) const; |
| 330 | bool IsNestedNameSpecifier(const NamedDecl *ND) const; |
| 331 | bool IsEnum(const NamedDecl *ND) const; |
| 332 | bool IsClassOrStruct(const NamedDecl *ND) const; |
| 333 | bool IsUnion(const NamedDecl *ND) const; |
| 334 | bool IsNamespace(const NamedDecl *ND) const; |
| 335 | bool IsNamespaceOrAlias(const NamedDecl *ND) const; |
| 336 | bool IsType(const NamedDecl *ND) const; |
| 337 | bool IsMember(const NamedDecl *ND) const; |
| 338 | bool IsObjCIvar(const NamedDecl *ND) const; |
| 339 | bool IsObjCMessageReceiver(const NamedDecl *ND) const; |
| 340 | bool IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const; |
| 341 | bool IsObjCCollection(const NamedDecl *ND) const; |
| 342 | bool IsImpossibleToSatisfy(const NamedDecl *ND) const; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 343 | //@} |
| 344 | }; |
| 345 | } |
| 346 | |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 347 | class ResultBuilder::ShadowMapEntry::iterator { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 348 | llvm::PointerUnion<const NamedDecl *, const DeclIndexPair *> DeclOrIterator; |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 349 | unsigned SingleDeclIndex; |
| 350 | |
| 351 | public: |
| 352 | typedef DeclIndexPair value_type; |
| 353 | typedef value_type reference; |
| 354 | typedef std::ptrdiff_t difference_type; |
| 355 | typedef std::input_iterator_tag iterator_category; |
| 356 | |
| 357 | class pointer { |
| 358 | DeclIndexPair Value; |
| 359 | |
| 360 | public: |
| 361 | pointer(const DeclIndexPair &Value) : Value(Value) { } |
| 362 | |
| 363 | const DeclIndexPair *operator->() const { |
| 364 | return &Value; |
| 365 | } |
| 366 | }; |
| 367 | |
| 368 | iterator() : DeclOrIterator((NamedDecl *)0), SingleDeclIndex(0) { } |
| 369 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 370 | iterator(const NamedDecl *SingleDecl, unsigned Index) |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 371 | : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { } |
| 372 | |
| 373 | iterator(const DeclIndexPair *Iterator) |
| 374 | : DeclOrIterator(Iterator), SingleDeclIndex(0) { } |
| 375 | |
| 376 | iterator &operator++() { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 377 | if (DeclOrIterator.is<const NamedDecl *>()) { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 378 | DeclOrIterator = (NamedDecl *)0; |
| 379 | SingleDeclIndex = 0; |
| 380 | return *this; |
| 381 | } |
| 382 | |
| 383 | const DeclIndexPair *I = DeclOrIterator.get<const DeclIndexPair*>(); |
| 384 | ++I; |
| 385 | DeclOrIterator = I; |
| 386 | return *this; |
| 387 | } |
| 388 | |
Chris Lattner | 66392d4 | 2010-09-04 18:12:20 +0000 | [diff] [blame] | 389 | /*iterator operator++(int) { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 390 | iterator tmp(*this); |
| 391 | ++(*this); |
| 392 | return tmp; |
Chris Lattner | 66392d4 | 2010-09-04 18:12:20 +0000 | [diff] [blame] | 393 | }*/ |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 394 | |
| 395 | reference operator*() const { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 396 | if (const NamedDecl *ND = DeclOrIterator.dyn_cast<const NamedDecl *>()) |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 397 | return reference(ND, SingleDeclIndex); |
| 398 | |
Douglas Gregor | d490f95 | 2009-12-06 21:27:58 +0000 | [diff] [blame] | 399 | return *DeclOrIterator.get<const DeclIndexPair*>(); |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | pointer operator->() const { |
| 403 | return pointer(**this); |
| 404 | } |
| 405 | |
| 406 | friend bool operator==(const iterator &X, const iterator &Y) { |
Douglas Gregor | d490f95 | 2009-12-06 21:27:58 +0000 | [diff] [blame] | 407 | return X.DeclOrIterator.getOpaqueValue() |
| 408 | == Y.DeclOrIterator.getOpaqueValue() && |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 409 | X.SingleDeclIndex == Y.SingleDeclIndex; |
| 410 | } |
| 411 | |
| 412 | friend bool operator!=(const iterator &X, const iterator &Y) { |
Douglas Gregor | d490f95 | 2009-12-06 21:27:58 +0000 | [diff] [blame] | 413 | return !(X == Y); |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 414 | } |
| 415 | }; |
| 416 | |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 417 | ResultBuilder::ShadowMapEntry::iterator |
| 418 | ResultBuilder::ShadowMapEntry::begin() const { |
| 419 | if (DeclOrVector.isNull()) |
| 420 | return iterator(); |
| 421 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 422 | if (const NamedDecl *ND = DeclOrVector.dyn_cast<const NamedDecl *>()) |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 423 | return iterator(ND, SingleDeclIndex); |
| 424 | |
| 425 | return iterator(DeclOrVector.get<DeclIndexPairVector *>()->begin()); |
| 426 | } |
| 427 | |
| 428 | ResultBuilder::ShadowMapEntry::iterator |
| 429 | ResultBuilder::ShadowMapEntry::end() const { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 430 | if (DeclOrVector.is<const NamedDecl *>() || DeclOrVector.isNull()) |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 431 | return iterator(); |
| 432 | |
| 433 | return iterator(DeclOrVector.get<DeclIndexPairVector *>()->end()); |
| 434 | } |
| 435 | |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 436 | /// \brief Compute the qualification required to get from the current context |
| 437 | /// (\p CurContext) to the target context (\p TargetContext). |
| 438 | /// |
| 439 | /// \param Context the AST context in which the qualification will be used. |
| 440 | /// |
| 441 | /// \param CurContext the context where an entity is being named, which is |
| 442 | /// typically based on the current scope. |
| 443 | /// |
| 444 | /// \param TargetContext the context in which the named entity actually |
| 445 | /// resides. |
| 446 | /// |
| 447 | /// \returns a nested name specifier that refers into the target context, or |
| 448 | /// NULL if no qualification is needed. |
| 449 | static NestedNameSpecifier * |
| 450 | getRequiredQualification(ASTContext &Context, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 451 | const DeclContext *CurContext, |
| 452 | const DeclContext *TargetContext) { |
| 453 | SmallVector<const DeclContext *, 4> TargetParents; |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 454 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 455 | for (const DeclContext *CommonAncestor = TargetContext; |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 456 | CommonAncestor && !CommonAncestor->Encloses(CurContext); |
| 457 | CommonAncestor = CommonAncestor->getLookupParent()) { |
| 458 | if (CommonAncestor->isTransparentContext() || |
| 459 | CommonAncestor->isFunctionOrMethod()) |
| 460 | continue; |
| 461 | |
| 462 | TargetParents.push_back(CommonAncestor); |
| 463 | } |
| 464 | |
| 465 | NestedNameSpecifier *Result = 0; |
| 466 | while (!TargetParents.empty()) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 467 | const DeclContext *Parent = TargetParents.back(); |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 468 | TargetParents.pop_back(); |
| 469 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 470 | if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Parent)) { |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 471 | if (!Namespace->getIdentifier()) |
| 472 | continue; |
| 473 | |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 474 | Result = NestedNameSpecifier::Create(Context, Result, Namespace); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 475 | } |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 476 | else if (const TagDecl *TD = dyn_cast<TagDecl>(Parent)) |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 477 | Result = NestedNameSpecifier::Create(Context, Result, |
| 478 | false, |
| 479 | Context.getTypeDeclType(TD).getTypePtr()); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 480 | } |
Douglas Gregor | 456c4a1 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 481 | return Result; |
| 482 | } |
| 483 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 484 | bool ResultBuilder::isInterestingDecl(const NamedDecl *ND, |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 485 | bool &AsNestedNameSpecifier) const { |
| 486 | AsNestedNameSpecifier = false; |
| 487 | |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 488 | ND = ND->getUnderlyingDecl(); |
| 489 | unsigned IDNS = ND->getIdentifierNamespace(); |
Douglas Gregor | f52cede | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 490 | |
| 491 | // Skip unnamed entities. |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 492 | if (!ND->getDeclName()) |
| 493 | return false; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 494 | |
| 495 | // Friend declarations and declarations introduced due to friends are never |
| 496 | // added as results. |
John McCall | 92b7f70 | 2010-03-11 07:50:04 +0000 | [diff] [blame] | 497 | if (IDNS & (Decl::IDNS_OrdinaryFriend | Decl::IDNS_TagFriend)) |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 498 | return false; |
| 499 | |
Douglas Gregor | 7628294 | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 500 | // Class template (partial) specializations are never added as results. |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 501 | if (isa<ClassTemplateSpecializationDecl>(ND) || |
| 502 | isa<ClassTemplatePartialSpecializationDecl>(ND)) |
| 503 | return false; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 504 | |
Douglas Gregor | 7628294 | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 505 | // Using declarations themselves are never added as results. |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 506 | if (isa<UsingDecl>(ND)) |
| 507 | return false; |
| 508 | |
| 509 | // Some declarations have reserved names that we don't want to ever show. |
| 510 | if (const IdentifierInfo *Id = ND->getIdentifier()) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 511 | // __va_list_tag is a freak of nature. Find it and skip it. |
| 512 | if (Id->isStr("__va_list_tag") || Id->isStr("__builtin_va_list")) |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 513 | return false; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 514 | |
Douglas Gregor | f52cede | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 515 | // Filter out names reserved for the implementation (C99 7.1.3, |
Douglas Gregor | 797efb5 | 2010-07-14 17:44:04 +0000 | [diff] [blame] | 516 | // C++ [lib.global.names]) if they come from a system header. |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 517 | // |
| 518 | // FIXME: Add predicate for this. |
Douglas Gregor | f52cede | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 519 | if (Id->getLength() >= 2) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 520 | const char *Name = Id->getNameStart(); |
Douglas Gregor | f52cede | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 521 | if (Name[0] == '_' && |
Douglas Gregor | 797efb5 | 2010-07-14 17:44:04 +0000 | [diff] [blame] | 522 | (Name[1] == '_' || (Name[1] >= 'A' && Name[1] <= 'Z')) && |
| 523 | (ND->getLocation().isInvalid() || |
| 524 | SemaRef.SourceMgr.isInSystemHeader( |
| 525 | SemaRef.SourceMgr.getSpellingLoc(ND->getLocation())))) |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 526 | return false; |
Douglas Gregor | f52cede | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 527 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 528 | } |
Douglas Gregor | 9b0ba87 | 2010-11-09 03:59:40 +0000 | [diff] [blame] | 529 | |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 530 | if (Filter == &ResultBuilder::IsNestedNameSpecifier || |
| 531 | ((isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) && |
| 532 | Filter != &ResultBuilder::IsNamespace && |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 533 | Filter != &ResultBuilder::IsNamespaceOrAlias && |
| 534 | Filter != 0)) |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 535 | AsNestedNameSpecifier = true; |
| 536 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 537 | // Filter out any unwanted results. |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 538 | if (Filter && !(this->*Filter)(ND)) { |
| 539 | // Check whether it is interesting as a nested-name-specifier. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 540 | if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus && |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 541 | IsNestedNameSpecifier(ND) && |
| 542 | (Filter != &ResultBuilder::IsMember || |
| 543 | (isa<CXXRecordDecl>(ND) && |
| 544 | cast<CXXRecordDecl>(ND)->isInjectedClassName()))) { |
| 545 | AsNestedNameSpecifier = true; |
| 546 | return true; |
| 547 | } |
| 548 | |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 549 | return false; |
Douglas Gregor | a5fb7c3 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 550 | } |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 551 | // ... then it must be interesting! |
| 552 | return true; |
| 553 | } |
| 554 | |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 555 | bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 556 | const NamedDecl *Hiding) { |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 557 | // In C, there is no way to refer to a hidden name. |
| 558 | // FIXME: This isn't true; we can find a tag name hidden by an ordinary |
| 559 | // name if we introduce the tag type. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 560 | if (!SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 561 | return true; |
| 562 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 563 | const DeclContext *HiddenCtx = |
| 564 | R.Declaration->getDeclContext()->getRedeclContext(); |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 565 | |
| 566 | // There is no way to qualify a name declared in a function or method. |
| 567 | if (HiddenCtx->isFunctionOrMethod()) |
| 568 | return true; |
| 569 | |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 570 | if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext()) |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 571 | return true; |
| 572 | |
| 573 | // We can refer to the result with the appropriate qualification. Do it. |
| 574 | R.Hidden = true; |
| 575 | R.QualifierIsInformative = false; |
| 576 | |
| 577 | if (!R.Qualifier) |
| 578 | R.Qualifier = getRequiredQualification(SemaRef.Context, |
| 579 | CurContext, |
| 580 | R.Declaration->getDeclContext()); |
| 581 | return false; |
| 582 | } |
| 583 | |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 584 | /// \brief A simplified classification of types used to determine whether two |
| 585 | /// types are "similar enough" when adjusting priorities. |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 586 | SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) { |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 587 | switch (T->getTypeClass()) { |
| 588 | case Type::Builtin: |
| 589 | switch (cast<BuiltinType>(T)->getKind()) { |
| 590 | case BuiltinType::Void: |
| 591 | return STC_Void; |
| 592 | |
| 593 | case BuiltinType::NullPtr: |
| 594 | return STC_Pointer; |
| 595 | |
| 596 | case BuiltinType::Overload: |
| 597 | case BuiltinType::Dependent: |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 598 | return STC_Other; |
| 599 | |
| 600 | case BuiltinType::ObjCId: |
| 601 | case BuiltinType::ObjCClass: |
| 602 | case BuiltinType::ObjCSel: |
| 603 | return STC_ObjectiveC; |
| 604 | |
| 605 | default: |
| 606 | return STC_Arithmetic; |
| 607 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 608 | |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 609 | case Type::Complex: |
| 610 | return STC_Arithmetic; |
| 611 | |
| 612 | case Type::Pointer: |
| 613 | return STC_Pointer; |
| 614 | |
| 615 | case Type::BlockPointer: |
| 616 | return STC_Block; |
| 617 | |
| 618 | case Type::LValueReference: |
| 619 | case Type::RValueReference: |
| 620 | return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType()); |
| 621 | |
| 622 | case Type::ConstantArray: |
| 623 | case Type::IncompleteArray: |
| 624 | case Type::VariableArray: |
| 625 | case Type::DependentSizedArray: |
| 626 | return STC_Array; |
| 627 | |
| 628 | case Type::DependentSizedExtVector: |
| 629 | case Type::Vector: |
| 630 | case Type::ExtVector: |
| 631 | return STC_Arithmetic; |
| 632 | |
| 633 | case Type::FunctionProto: |
| 634 | case Type::FunctionNoProto: |
| 635 | return STC_Function; |
| 636 | |
| 637 | case Type::Record: |
| 638 | return STC_Record; |
| 639 | |
| 640 | case Type::Enum: |
| 641 | return STC_Arithmetic; |
| 642 | |
| 643 | case Type::ObjCObject: |
| 644 | case Type::ObjCInterface: |
| 645 | case Type::ObjCObjectPointer: |
| 646 | return STC_ObjectiveC; |
| 647 | |
| 648 | default: |
| 649 | return STC_Other; |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | /// \brief Get the type that a given expression will have if this declaration |
| 654 | /// is used as an expression in its "typical" code-completion form. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 655 | QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) { |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 656 | ND = cast<NamedDecl>(ND->getUnderlyingDecl()); |
| 657 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 658 | if (const TypeDecl *Type = dyn_cast<TypeDecl>(ND)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 659 | return C.getTypeDeclType(Type); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 660 | if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 661 | return C.getObjCInterfaceType(Iface); |
| 662 | |
| 663 | QualType T; |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 664 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 665 | T = Function->getCallResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 666 | else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 667 | T = Method->getSendResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 668 | else if (const FunctionTemplateDecl *FunTmpl = |
| 669 | dyn_cast<FunctionTemplateDecl>(ND)) |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 670 | T = FunTmpl->getTemplatedDecl()->getCallResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 671 | else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 672 | T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext())); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 673 | else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 674 | T = Property->getType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 675 | else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 676 | T = Value->getType(); |
| 677 | else |
| 678 | return QualType(); |
Douglas Gregor | 3e64d56 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 679 | |
| 680 | // Dig through references, function pointers, and block pointers to |
| 681 | // get down to the likely type of an expression when the entity is |
| 682 | // used. |
| 683 | do { |
| 684 | if (const ReferenceType *Ref = T->getAs<ReferenceType>()) { |
| 685 | T = Ref->getPointeeType(); |
| 686 | continue; |
| 687 | } |
| 688 | |
| 689 | if (const PointerType *Pointer = T->getAs<PointerType>()) { |
| 690 | if (Pointer->getPointeeType()->isFunctionType()) { |
| 691 | T = Pointer->getPointeeType(); |
| 692 | continue; |
| 693 | } |
| 694 | |
| 695 | break; |
| 696 | } |
| 697 | |
| 698 | if (const BlockPointerType *Block = T->getAs<BlockPointerType>()) { |
| 699 | T = Block->getPointeeType(); |
| 700 | continue; |
| 701 | } |
| 702 | |
| 703 | if (const FunctionType *Function = T->getAs<FunctionType>()) { |
| 704 | T = Function->getResultType(); |
| 705 | continue; |
| 706 | } |
| 707 | |
| 708 | break; |
| 709 | } while (true); |
| 710 | |
| 711 | return T; |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 714 | unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) { |
| 715 | if (!ND) |
| 716 | return CCP_Unlikely; |
| 717 | |
| 718 | // Context-based decisions. |
| 719 | const DeclContext *DC = ND->getDeclContext()->getRedeclContext(); |
| 720 | if (DC->isFunctionOrMethod() || isa<BlockDecl>(DC)) { |
| 721 | // _cmd is relatively rare |
| 722 | if (const ImplicitParamDecl *ImplicitParam = |
| 723 | dyn_cast<ImplicitParamDecl>(ND)) |
| 724 | if (ImplicitParam->getIdentifier() && |
| 725 | ImplicitParam->getIdentifier()->isStr("_cmd")) |
| 726 | return CCP_ObjC_cmd; |
| 727 | |
| 728 | return CCP_LocalDeclaration; |
| 729 | } |
| 730 | if (DC->isRecord() || isa<ObjCContainerDecl>(DC)) |
| 731 | return CCP_MemberDeclaration; |
| 732 | |
| 733 | // Content-based decisions. |
| 734 | if (isa<EnumConstantDecl>(ND)) |
| 735 | return CCP_Constant; |
| 736 | |
Douglas Gregor | 626799b | 2013-01-31 05:03:46 +0000 | [diff] [blame] | 737 | // Use CCP_Type for type declarations unless we're in a statement, Objective-C |
| 738 | // message receiver, or parenthesized expression context. There, it's as |
| 739 | // likely that the user will want to write a type as other declarations. |
| 740 | if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) && |
| 741 | !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement || |
| 742 | CompletionContext.getKind() |
| 743 | == CodeCompletionContext::CCC_ObjCMessageReceiver || |
| 744 | CompletionContext.getKind() |
| 745 | == CodeCompletionContext::CCC_ParenthesizedExpression)) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 746 | return CCP_Type; |
| 747 | |
| 748 | return CCP_Declaration; |
| 749 | } |
| 750 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 751 | void ResultBuilder::AdjustResultPriorityForDecl(Result &R) { |
| 752 | // If this is an Objective-C method declaration whose selector matches our |
| 753 | // preferred selector, give it a priority boost. |
| 754 | if (!PreferredSelector.isNull()) |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 755 | if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration)) |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 756 | if (PreferredSelector == Method->getSelector()) |
| 757 | R.Priority += CCD_SelectorMatch; |
Douglas Gregor | 08f43cd | 2010-09-20 23:11:55 +0000 | [diff] [blame] | 758 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 759 | // If we have a preferred type, adjust the priority for results with exactly- |
| 760 | // matching or nearly-matching types. |
| 761 | if (!PreferredType.isNull()) { |
| 762 | QualType T = getDeclUsageType(SemaRef.Context, R.Declaration); |
| 763 | if (!T.isNull()) { |
| 764 | CanQualType TC = SemaRef.Context.getCanonicalType(T); |
| 765 | // Check for exactly-matching types (modulo qualifiers). |
| 766 | if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC)) |
| 767 | R.Priority /= CCF_ExactTypeMatch; |
| 768 | // Check for nearly-matching types, based on classification of each. |
| 769 | else if ((getSimplifiedTypeClass(PreferredType) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 770 | == getSimplifiedTypeClass(TC)) && |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 771 | !(PreferredType->isEnumeralType() && TC->isEnumeralType())) |
| 772 | R.Priority /= CCF_SimilarTypeMatch; |
| 773 | } |
| 774 | } |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 777 | void ResultBuilder::MaybeAddConstructorResults(Result R) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 778 | if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration || |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 779 | !CompletionContext.wantConstructorResults()) |
| 780 | return; |
| 781 | |
| 782 | ASTContext &Context = SemaRef.Context; |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 783 | const NamedDecl *D = R.Declaration; |
| 784 | const CXXRecordDecl *Record = 0; |
| 785 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 786 | Record = ClassTemplate->getTemplatedDecl(); |
| 787 | else if ((Record = dyn_cast<CXXRecordDecl>(D))) { |
| 788 | // Skip specializations and partial specializations. |
| 789 | if (isa<ClassTemplateSpecializationDecl>(Record)) |
| 790 | return; |
| 791 | } else { |
| 792 | // There are no constructors here. |
| 793 | return; |
| 794 | } |
| 795 | |
| 796 | Record = Record->getDefinition(); |
| 797 | if (!Record) |
| 798 | return; |
| 799 | |
| 800 | |
| 801 | QualType RecordTy = Context.getTypeDeclType(Record); |
| 802 | DeclarationName ConstructorName |
| 803 | = Context.DeclarationNames.getCXXConstructorName( |
| 804 | Context.getCanonicalType(RecordTy)); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 805 | DeclContext::lookup_const_result Ctors = Record->lookup(ConstructorName); |
| 806 | for (DeclContext::lookup_const_iterator I = Ctors.begin(), |
| 807 | E = Ctors.end(); |
| 808 | I != E; ++I) { |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 809 | R.Declaration = *I; |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 810 | R.CursorKind = getCursorKindForDecl(R.Declaration); |
| 811 | Results.push_back(R); |
| 812 | } |
| 813 | } |
| 814 | |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 815 | void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) { |
| 816 | assert(!ShadowMaps.empty() && "Must enter into a results scope"); |
| 817 | |
| 818 | if (R.Kind != Result::RK_Declaration) { |
| 819 | // For non-declaration results, just add the result. |
| 820 | Results.push_back(R); |
| 821 | return; |
| 822 | } |
| 823 | |
| 824 | // Look through using declarations. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 825 | if (const UsingShadowDecl *Using = |
| 826 | dyn_cast<UsingShadowDecl>(R.Declaration)) { |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 827 | MaybeAddResult(Result(Using->getTargetDecl(), |
| 828 | getBasePriority(Using->getTargetDecl()), |
| 829 | R.Qualifier), |
| 830 | CurContext); |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 831 | return; |
| 832 | } |
| 833 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 834 | const Decl *CanonDecl = R.Declaration->getCanonicalDecl(); |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 835 | unsigned IDNS = CanonDecl->getIdentifierNamespace(); |
| 836 | |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 837 | bool AsNestedNameSpecifier = false; |
| 838 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | e495b7f | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 839 | return; |
| 840 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 841 | // C++ constructors are never found by name lookup. |
| 842 | if (isa<CXXConstructorDecl>(R.Declaration)) |
| 843 | return; |
| 844 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 845 | ShadowMap &SMap = ShadowMaps.back(); |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 846 | ShadowMapEntry::iterator I, IEnd; |
| 847 | ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName()); |
| 848 | if (NamePos != SMap.end()) { |
| 849 | I = NamePos->second.begin(); |
| 850 | IEnd = NamePos->second.end(); |
| 851 | } |
| 852 | |
| 853 | for (; I != IEnd; ++I) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 854 | const NamedDecl *ND = I->first; |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 855 | unsigned Index = I->second; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 856 | if (ND->getCanonicalDecl() == CanonDecl) { |
| 857 | // This is a redeclaration. Always pick the newer declaration. |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 858 | Results[Index].Declaration = R.Declaration; |
| 859 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 860 | // We're done. |
| 861 | return; |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | // This is a new declaration in this scope. However, check whether this |
| 866 | // declaration name is hidden by a similarly-named declaration in an outer |
| 867 | // scope. |
| 868 | std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end(); |
| 869 | --SMEnd; |
| 870 | for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 871 | ShadowMapEntry::iterator I, IEnd; |
| 872 | ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName()); |
| 873 | if (NamePos != SM->end()) { |
| 874 | I = NamePos->second.begin(); |
| 875 | IEnd = NamePos->second.end(); |
| 876 | } |
| 877 | for (; I != IEnd; ++I) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 878 | // A tag declaration does not hide a non-tag declaration. |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 879 | if (I->first->hasTagIdentifierNamespace() && |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 880 | (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | |
| 881 | Decl::IDNS_ObjCProtocol))) |
| 882 | continue; |
| 883 | |
| 884 | // Protocols are in distinct namespaces from everything else. |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 885 | if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 886 | || (IDNS & Decl::IDNS_ObjCProtocol)) && |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 887 | I->first->getIdentifierNamespace() != IDNS) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 888 | continue; |
| 889 | |
| 890 | // The newly-added result is hidden by an entry in the shadow map. |
Douglas Gregor | 6660d84 | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 891 | if (CheckHiddenResult(R, CurContext, I->first)) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 892 | return; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 893 | |
| 894 | break; |
| 895 | } |
| 896 | } |
| 897 | |
| 898 | // Make sure that any given declaration only shows up in the result set once. |
| 899 | if (!AllDeclsFound.insert(CanonDecl)) |
| 900 | return; |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 901 | |
Douglas Gregor | eb5758b | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 902 | // If the filter is for nested-name-specifiers, then this result starts a |
| 903 | // nested-name-specifier. |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 904 | if (AsNestedNameSpecifier) { |
Douglas Gregor | eb5758b | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 905 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 906 | R.Priority = CCP_NestedNameSpecifier; |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 907 | } else |
| 908 | AdjustResultPriorityForDecl(R); |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 909 | |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 910 | // If this result is supposed to have an informative qualifier, add one. |
Douglas Gregor | eb5758b | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 911 | if (R.QualifierIsInformative && !R.Qualifier && |
| 912 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 913 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
| 914 | if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 915 | R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 916 | else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx)) |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 917 | R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, false, |
| 918 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
| 919 | else |
| 920 | R.QualifierIsInformative = false; |
| 921 | } |
Douglas Gregor | eb5758b | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 922 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 923 | // Insert this result into the set of results and into the current shadow |
| 924 | // map. |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 925 | SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size()); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 926 | Results.push_back(R); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 927 | |
| 928 | if (!AsNestedNameSpecifier) |
| 929 | MaybeAddConstructorResults(R); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 930 | } |
| 931 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 932 | void ResultBuilder::AddResult(Result R, DeclContext *CurContext, |
Douglas Gregor | 0cc8404 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 933 | NamedDecl *Hiding, bool InBaseClass = false) { |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 934 | if (R.Kind != Result::RK_Declaration) { |
| 935 | // For non-declaration results, just add the result. |
| 936 | Results.push_back(R); |
| 937 | return; |
| 938 | } |
| 939 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 940 | // Look through using declarations. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 941 | if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) { |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 942 | AddResult(Result(Using->getTargetDecl(), |
| 943 | getBasePriority(Using->getTargetDecl()), |
| 944 | R.Qualifier), |
| 945 | CurContext, Hiding); |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 946 | return; |
| 947 | } |
| 948 | |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 949 | bool AsNestedNameSpecifier = false; |
| 950 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 951 | return; |
| 952 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 953 | // C++ constructors are never found by name lookup. |
| 954 | if (isa<CXXConstructorDecl>(R.Declaration)) |
| 955 | return; |
| 956 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 957 | if (Hiding && CheckHiddenResult(R, CurContext, Hiding)) |
| 958 | return; |
Nick Lewycky | 173a37a | 2012-04-03 21:44:08 +0000 | [diff] [blame] | 959 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 960 | // Make sure that any given declaration only shows up in the result set once. |
| 961 | if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl())) |
| 962 | return; |
| 963 | |
| 964 | // If the filter is for nested-name-specifiers, then this result starts a |
| 965 | // nested-name-specifier. |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 966 | if (AsNestedNameSpecifier) { |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 967 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 968 | R.Priority = CCP_NestedNameSpecifier; |
| 969 | } |
Douglas Gregor | 0cc8404 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 970 | else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass && |
| 971 | isa<CXXRecordDecl>(R.Declaration->getDeclContext() |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 972 | ->getRedeclContext())) |
Douglas Gregor | 0cc8404 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 973 | R.QualifierIsInformative = true; |
| 974 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 975 | // If this result is supposed to have an informative qualifier, add one. |
| 976 | if (R.QualifierIsInformative && !R.Qualifier && |
| 977 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 978 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
| 979 | if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 980 | R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 981 | else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx)) |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 982 | R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, false, |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 983 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 984 | else |
| 985 | R.QualifierIsInformative = false; |
| 986 | } |
| 987 | |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 988 | // Adjust the priority if this result comes from a base class. |
| 989 | if (InBaseClass) |
| 990 | R.Priority += CCD_InBaseClass; |
| 991 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 992 | AdjustResultPriorityForDecl(R); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 993 | |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 994 | if (HasObjectTypeQualifiers) |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 995 | if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration)) |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 996 | if (Method->isInstance()) { |
| 997 | Qualifiers MethodQuals |
| 998 | = Qualifiers::fromCVRMask(Method->getTypeQualifiers()); |
| 999 | if (ObjectTypeQualifiers == MethodQuals) |
| 1000 | R.Priority += CCD_ObjectQualifierMatch; |
| 1001 | else if (ObjectTypeQualifiers - MethodQuals) { |
| 1002 | // The method cannot be invoked, because doing so would drop |
| 1003 | // qualifiers. |
| 1004 | return; |
| 1005 | } |
| 1006 | } |
| 1007 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1008 | // Insert this result into the set of results. |
| 1009 | Results.push_back(R); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1010 | |
| 1011 | if (!AsNestedNameSpecifier) |
| 1012 | MaybeAddConstructorResults(R); |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1015 | void ResultBuilder::AddResult(Result R) { |
| 1016 | assert(R.Kind != Result::RK_Declaration && |
| 1017 | "Declaration results need more context"); |
| 1018 | Results.push_back(R); |
| 1019 | } |
| 1020 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1021 | /// \brief Enter into a new scope. |
| 1022 | void ResultBuilder::EnterNewScope() { |
| 1023 | ShadowMaps.push_back(ShadowMap()); |
| 1024 | } |
| 1025 | |
| 1026 | /// \brief Exit from the current scope. |
| 1027 | void ResultBuilder::ExitScope() { |
Douglas Gregor | fbcb5d6 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1028 | for (ShadowMap::iterator E = ShadowMaps.back().begin(), |
| 1029 | EEnd = ShadowMaps.back().end(); |
| 1030 | E != EEnd; |
| 1031 | ++E) |
| 1032 | E->second.Destroy(); |
| 1033 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1034 | ShadowMaps.pop_back(); |
| 1035 | } |
| 1036 | |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1037 | /// \brief Determines whether this given declaration will be found by |
| 1038 | /// ordinary name lookup. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1039 | bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const { |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1040 | ND = cast<NamedDecl>(ND->getUnderlyingDecl()); |
| 1041 | |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1042 | unsigned IDNS = Decl::IDNS_Ordinary; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1043 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9b30b26 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1044 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1045 | else if (SemaRef.getLangOpts().ObjC1) { |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1046 | if (isa<ObjCIvarDecl>(ND)) |
| 1047 | return true; |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1048 | } |
| 1049 | |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1050 | return ND->getIdentifierNamespace() & IDNS; |
| 1051 | } |
| 1052 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1053 | /// \brief Determines whether this given declaration will be found by |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1054 | /// ordinary name lookup but is not a type name. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1055 | bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const { |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1056 | ND = cast<NamedDecl>(ND->getUnderlyingDecl()); |
| 1057 | if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) |
| 1058 | return false; |
| 1059 | |
| 1060 | unsigned IDNS = Decl::IDNS_Ordinary; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1061 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9b30b26 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1062 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1063 | else if (SemaRef.getLangOpts().ObjC1) { |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1064 | if (isa<ObjCIvarDecl>(ND)) |
| 1065 | return true; |
Douglas Gregor | ca45da0 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1068 | return ND->getIdentifierNamespace() & IDNS; |
| 1069 | } |
| 1070 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1071 | bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const { |
Douglas Gregor | f957843 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1072 | if (!IsOrdinaryNonTypeName(ND)) |
| 1073 | return 0; |
| 1074 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1075 | if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl())) |
Douglas Gregor | f957843 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1076 | if (VD->getType()->isIntegralOrEnumerationType()) |
| 1077 | return true; |
| 1078 | |
| 1079 | return false; |
| 1080 | } |
| 1081 | |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1082 | /// \brief Determines whether this given declaration will be found by |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1083 | /// ordinary name lookup. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1084 | bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const { |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1085 | ND = cast<NamedDecl>(ND->getUnderlyingDecl()); |
| 1086 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1087 | unsigned IDNS = Decl::IDNS_Ordinary; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1088 | if (SemaRef.getLangOpts().CPlusPlus) |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 1089 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1090 | |
| 1091 | return (ND->getIdentifierNamespace() & IDNS) && |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1092 | !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) && |
| 1093 | !isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1094 | } |
| 1095 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1096 | /// \brief Determines whether the given declaration is suitable as the |
| 1097 | /// start of a C++ nested-name-specifier, e.g., a class or namespace. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1098 | bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1099 | // Allow us to find class templates, too. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1100 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1101 | ND = ClassTemplate->getTemplatedDecl(); |
| 1102 | |
| 1103 | return SemaRef.isAcceptableNestedNameSpecifier(ND); |
| 1104 | } |
| 1105 | |
| 1106 | /// \brief Determines whether the given declaration is an enumeration. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1107 | bool ResultBuilder::IsEnum(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1108 | return isa<EnumDecl>(ND); |
| 1109 | } |
| 1110 | |
| 1111 | /// \brief Determines whether the given declaration is a class or struct. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1112 | bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1113 | // Allow us to find class templates, too. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1114 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1115 | ND = ClassTemplate->getTemplatedDecl(); |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1116 | |
| 1117 | // For purposes of this check, interfaces match too. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1118 | if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND)) |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1119 | return RD->getTagKind() == TTK_Class || |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1120 | RD->getTagKind() == TTK_Struct || |
| 1121 | RD->getTagKind() == TTK_Interface; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1122 | |
| 1123 | return false; |
| 1124 | } |
| 1125 | |
| 1126 | /// \brief Determines whether the given declaration is a union. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1127 | bool ResultBuilder::IsUnion(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1128 | // Allow us to find class templates, too. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1129 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1130 | ND = ClassTemplate->getTemplatedDecl(); |
| 1131 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1132 | if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND)) |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1133 | return RD->getTagKind() == TTK_Union; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1134 | |
| 1135 | return false; |
| 1136 | } |
| 1137 | |
| 1138 | /// \brief Determines whether the given declaration is a namespace. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1139 | bool ResultBuilder::IsNamespace(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1140 | return isa<NamespaceDecl>(ND); |
| 1141 | } |
| 1142 | |
| 1143 | /// \brief Determines whether the given declaration is a namespace or |
| 1144 | /// namespace alias. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1145 | bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1146 | return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); |
| 1147 | } |
| 1148 | |
Douglas Gregor | 7628294 | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 1149 | /// \brief Determines whether the given declaration is a type. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1150 | bool ResultBuilder::IsType(const NamedDecl *ND) const { |
| 1151 | if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND)) |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 1152 | ND = Using->getTargetDecl(); |
| 1153 | |
| 1154 | return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1155 | } |
| 1156 | |
Douglas Gregor | 7628294 | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 1157 | /// \brief Determines which members of a class should be visible via |
| 1158 | /// "." or "->". Only value declarations, nested name specifiers, and |
| 1159 | /// using declarations thereof should show up. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1160 | bool ResultBuilder::IsMember(const NamedDecl *ND) const { |
| 1161 | if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND)) |
Douglas Gregor | 7628294 | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 1162 | ND = Using->getTargetDecl(); |
| 1163 | |
Douglas Gregor | ce82196 | 2009-12-11 18:14:22 +0000 | [diff] [blame] | 1164 | return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) || |
| 1165 | isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | eb5758b | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1168 | static bool isObjCReceiverType(ASTContext &C, QualType T) { |
| 1169 | T = C.getCanonicalType(T); |
| 1170 | switch (T->getTypeClass()) { |
| 1171 | case Type::ObjCObject: |
| 1172 | case Type::ObjCInterface: |
| 1173 | case Type::ObjCObjectPointer: |
| 1174 | return true; |
| 1175 | |
| 1176 | case Type::Builtin: |
| 1177 | switch (cast<BuiltinType>(T)->getKind()) { |
| 1178 | case BuiltinType::ObjCId: |
| 1179 | case BuiltinType::ObjCClass: |
| 1180 | case BuiltinType::ObjCSel: |
| 1181 | return true; |
| 1182 | |
| 1183 | default: |
| 1184 | break; |
| 1185 | } |
| 1186 | return false; |
| 1187 | |
| 1188 | default: |
| 1189 | break; |
| 1190 | } |
| 1191 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1192 | if (!C.getLangOpts().CPlusPlus) |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1193 | return false; |
| 1194 | |
| 1195 | // FIXME: We could perform more analysis here to determine whether a |
| 1196 | // particular class type has any conversions to Objective-C types. For now, |
| 1197 | // just accept all class types. |
| 1198 | return T->isDependentType() || T->isRecordType(); |
| 1199 | } |
| 1200 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1201 | bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const { |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1202 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1203 | if (T.isNull()) |
| 1204 | return false; |
| 1205 | |
| 1206 | T = SemaRef.Context.getBaseElementType(T); |
| 1207 | return isObjCReceiverType(SemaRef.Context, T); |
| 1208 | } |
| 1209 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1210 | bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const { |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1211 | if (IsObjCMessageReceiver(ND)) |
| 1212 | return true; |
| 1213 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1214 | const VarDecl *Var = dyn_cast<VarDecl>(ND); |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1215 | if (!Var) |
| 1216 | return false; |
| 1217 | |
| 1218 | return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>(); |
| 1219 | } |
| 1220 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1221 | bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1222 | if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) || |
| 1223 | (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND))) |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1224 | return false; |
| 1225 | |
| 1226 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1227 | if (T.isNull()) |
| 1228 | return false; |
| 1229 | |
| 1230 | T = SemaRef.Context.getBaseElementType(T); |
| 1231 | return T->isObjCObjectType() || T->isObjCObjectPointerType() || |
| 1232 | T->isObjCIdType() || |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1233 | (SemaRef.getLangOpts().CPlusPlus && T->isRecordType()); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1234 | } |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1235 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1236 | bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const { |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1237 | return false; |
| 1238 | } |
| 1239 | |
James Dennett | de23c7e | 2012-06-17 05:33:25 +0000 | [diff] [blame] | 1240 | /// \brief Determines whether the given declaration is an Objective-C |
Douglas Gregor | 80f4f4c | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1241 | /// instance variable. |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1242 | bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const { |
Douglas Gregor | 80f4f4c | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1243 | return isa<ObjCIvarDecl>(ND); |
| 1244 | } |
| 1245 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1246 | namespace { |
| 1247 | /// \brief Visible declaration consumer that adds a code-completion result |
| 1248 | /// for each visible declaration. |
| 1249 | class CodeCompletionDeclConsumer : public VisibleDeclConsumer { |
| 1250 | ResultBuilder &Results; |
| 1251 | DeclContext *CurContext; |
| 1252 | |
| 1253 | public: |
| 1254 | CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext) |
| 1255 | : Results(Results), CurContext(CurContext) { } |
| 1256 | |
Erik Verbruggen | d120596 | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 1257 | virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx, |
| 1258 | bool InBaseClass) { |
| 1259 | bool Accessible = true; |
Douglas Gregor | 17015ef | 2011-11-03 16:51:37 +0000 | [diff] [blame] | 1260 | if (Ctx) |
| 1261 | Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx); |
| 1262 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 1263 | ResultBuilder::Result Result(ND, Results.getBasePriority(ND), 0, false, |
| 1264 | Accessible); |
Erik Verbruggen | d120596 | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 1265 | Results.AddResult(Result, CurContext, Hiding, InBaseClass); |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1266 | } |
| 1267 | }; |
| 1268 | } |
| 1269 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1270 | /// \brief Add type specifiers for the current language as keyword results. |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1271 | static void AddTypeSpecifierResults(const LangOptions &LangOpts, |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1272 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1273 | typedef CodeCompletionResult Result; |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1274 | Results.AddResult(Result("short", CCP_Type)); |
| 1275 | Results.AddResult(Result("long", CCP_Type)); |
| 1276 | Results.AddResult(Result("signed", CCP_Type)); |
| 1277 | Results.AddResult(Result("unsigned", CCP_Type)); |
| 1278 | Results.AddResult(Result("void", CCP_Type)); |
| 1279 | Results.AddResult(Result("char", CCP_Type)); |
| 1280 | Results.AddResult(Result("int", CCP_Type)); |
| 1281 | Results.AddResult(Result("float", CCP_Type)); |
| 1282 | Results.AddResult(Result("double", CCP_Type)); |
| 1283 | Results.AddResult(Result("enum", CCP_Type)); |
| 1284 | Results.AddResult(Result("struct", CCP_Type)); |
| 1285 | Results.AddResult(Result("union", CCP_Type)); |
| 1286 | Results.AddResult(Result("const", CCP_Type)); |
| 1287 | Results.AddResult(Result("volatile", CCP_Type)); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1288 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1289 | if (LangOpts.C99) { |
| 1290 | // C99-specific |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1291 | Results.AddResult(Result("_Complex", CCP_Type)); |
| 1292 | Results.AddResult(Result("_Imaginary", CCP_Type)); |
| 1293 | Results.AddResult(Result("_Bool", CCP_Type)); |
| 1294 | Results.AddResult(Result("restrict", CCP_Type)); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1295 | } |
| 1296 | |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1297 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1298 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1299 | if (LangOpts.CPlusPlus) { |
| 1300 | // C++-specific |
Douglas Gregor | b05496d | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 1301 | Results.AddResult(Result("bool", CCP_Type + |
| 1302 | (LangOpts.ObjC1? CCD_bool_in_ObjC : 0))); |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1303 | Results.AddResult(Result("class", CCP_Type)); |
| 1304 | Results.AddResult(Result("wchar_t", CCP_Type)); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1305 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1306 | // typename qualified-id |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1307 | Builder.AddTypedTextChunk("typename"); |
| 1308 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1309 | Builder.AddPlaceholderChunk("qualifier"); |
| 1310 | Builder.AddTextChunk("::"); |
| 1311 | Builder.AddPlaceholderChunk("name"); |
| 1312 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1313 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1314 | if (LangOpts.CPlusPlus11) { |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1315 | Results.AddResult(Result("auto", CCP_Type)); |
| 1316 | Results.AddResult(Result("char16_t", CCP_Type)); |
| 1317 | Results.AddResult(Result("char32_t", CCP_Type)); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1318 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1319 | Builder.AddTypedTextChunk("decltype"); |
| 1320 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1321 | Builder.AddPlaceholderChunk("expression"); |
| 1322 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1323 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1324 | } |
| 1325 | } |
| 1326 | |
| 1327 | // GNU extensions |
| 1328 | if (LangOpts.GNUMode) { |
| 1329 | // FIXME: Enable when we actually support decimal floating point. |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1330 | // Results.AddResult(Result("_Decimal32")); |
| 1331 | // Results.AddResult(Result("_Decimal64")); |
| 1332 | // Results.AddResult(Result("_Decimal128")); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1333 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1334 | Builder.AddTypedTextChunk("typeof"); |
| 1335 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1336 | Builder.AddPlaceholderChunk("expression"); |
| 1337 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1338 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1339 | Builder.AddTypedTextChunk("typeof"); |
| 1340 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1341 | Builder.AddPlaceholderChunk("type"); |
| 1342 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1343 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1344 | } |
| 1345 | } |
| 1346 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1347 | static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1348 | const LangOptions &LangOpts, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1349 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1350 | typedef CodeCompletionResult Result; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1351 | // Note: we don't suggest either "auto" or "register", because both |
| 1352 | // are pointless as storage specifiers. Elsewhere, we suggest "auto" |
| 1353 | // in C++0x as a type specifier. |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1354 | Results.AddResult(Result("extern")); |
| 1355 | Results.AddResult(Result("static")); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1358 | static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1359 | const LangOptions &LangOpts, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1360 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1361 | typedef CodeCompletionResult Result; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1362 | switch (CCC) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1363 | case Sema::PCC_Class: |
| 1364 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1365 | if (LangOpts.CPlusPlus) { |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1366 | Results.AddResult(Result("explicit")); |
| 1367 | Results.AddResult(Result("friend")); |
| 1368 | Results.AddResult(Result("mutable")); |
| 1369 | Results.AddResult(Result("virtual")); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1370 | } |
| 1371 | // Fall through |
| 1372 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1373 | case Sema::PCC_ObjCInterface: |
| 1374 | case Sema::PCC_ObjCImplementation: |
| 1375 | case Sema::PCC_Namespace: |
| 1376 | case Sema::PCC_Template: |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1377 | if (LangOpts.CPlusPlus || LangOpts.C99) |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1378 | Results.AddResult(Result("inline")); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1379 | break; |
| 1380 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1381 | case Sema::PCC_ObjCInstanceVariableList: |
| 1382 | case Sema::PCC_Expression: |
| 1383 | case Sema::PCC_Statement: |
| 1384 | case Sema::PCC_ForInit: |
| 1385 | case Sema::PCC_Condition: |
| 1386 | case Sema::PCC_RecoveryInFunction: |
| 1387 | case Sema::PCC_Type: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1388 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1389 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1390 | break; |
| 1391 | } |
| 1392 | } |
| 1393 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1394 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt); |
| 1395 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt); |
| 1396 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1397 | ResultBuilder &Results, |
| 1398 | bool NeedAt); |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1399 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1400 | ResultBuilder &Results, |
| 1401 | bool NeedAt); |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1402 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1403 | ResultBuilder &Results, |
| 1404 | bool NeedAt); |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1405 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1406 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1407 | static void AddTypedefResult(ResultBuilder &Results) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1408 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1409 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1410 | Builder.AddTypedTextChunk("typedef"); |
| 1411 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1412 | Builder.AddPlaceholderChunk("type"); |
| 1413 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1414 | Builder.AddPlaceholderChunk("name"); |
| 1415 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1416 | } |
| 1417 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1418 | static bool WantTypesInContext(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1419 | const LangOptions &LangOpts) { |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1420 | switch (CCC) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1421 | case Sema::PCC_Namespace: |
| 1422 | case Sema::PCC_Class: |
| 1423 | case Sema::PCC_ObjCInstanceVariableList: |
| 1424 | case Sema::PCC_Template: |
| 1425 | case Sema::PCC_MemberTemplate: |
| 1426 | case Sema::PCC_Statement: |
| 1427 | case Sema::PCC_RecoveryInFunction: |
| 1428 | case Sema::PCC_Type: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1429 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1430 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1431 | return true; |
| 1432 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1433 | case Sema::PCC_Expression: |
| 1434 | case Sema::PCC_Condition: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1435 | return LangOpts.CPlusPlus; |
| 1436 | |
| 1437 | case Sema::PCC_ObjCInterface: |
| 1438 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1439 | return false; |
| 1440 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1441 | case Sema::PCC_ForInit: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1442 | return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99; |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1443 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 1444 | |
| 1445 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1448 | static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context, |
| 1449 | const Preprocessor &PP) { |
| 1450 | PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP); |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1451 | Policy.AnonymousTagLocations = false; |
| 1452 | Policy.SuppressStrongLifetime = true; |
Douglas Gregor | 25270b6 | 2011-11-03 00:16:13 +0000 | [diff] [blame] | 1453 | Policy.SuppressUnwrittenScope = true; |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1454 | return Policy; |
| 1455 | } |
| 1456 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1457 | /// \brief Retrieve a printing policy suitable for code completion. |
| 1458 | static PrintingPolicy getCompletionPrintingPolicy(Sema &S) { |
| 1459 | return getCompletionPrintingPolicy(S.Context, S.PP); |
| 1460 | } |
| 1461 | |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1462 | /// \brief Retrieve the string representation of the given type as a string |
| 1463 | /// that has the appropriate lifetime for code completion. |
| 1464 | /// |
| 1465 | /// This routine provides a fast path where we provide constant strings for |
| 1466 | /// common type names. |
| 1467 | static const char *GetCompletionTypeString(QualType T, |
| 1468 | ASTContext &Context, |
| 1469 | const PrintingPolicy &Policy, |
| 1470 | CodeCompletionAllocator &Allocator) { |
| 1471 | if (!T.getLocalQualifiers()) { |
| 1472 | // Built-in type names are constant strings. |
| 1473 | if (const BuiltinType *BT = dyn_cast<BuiltinType>(T)) |
Argyrios Kyrtzidis | 27a0097 | 2012-05-05 04:20:28 +0000 | [diff] [blame] | 1474 | return BT->getNameAsCString(Policy); |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1475 | |
| 1476 | // Anonymous tag types are constant strings. |
| 1477 | if (const TagType *TagT = dyn_cast<TagType>(T)) |
| 1478 | if (TagDecl *Tag = TagT->getDecl()) |
John McCall | 83972f1 | 2013-03-09 00:54:27 +0000 | [diff] [blame] | 1479 | if (!Tag->hasNameForLinkage()) { |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1480 | switch (Tag->getTagKind()) { |
| 1481 | case TTK_Struct: return "struct <anonymous>"; |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1482 | case TTK_Interface: return "__interface <anonymous>"; |
| 1483 | case TTK_Class: return "class <anonymous>"; |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1484 | case TTK_Union: return "union <anonymous>"; |
| 1485 | case TTK_Enum: return "enum <anonymous>"; |
| 1486 | } |
| 1487 | } |
| 1488 | } |
| 1489 | |
| 1490 | // Slow path: format the type as a string. |
| 1491 | std::string Result; |
| 1492 | T.getAsStringInternal(Result, Policy); |
| 1493 | return Allocator.CopyString(Result); |
| 1494 | } |
| 1495 | |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1496 | /// \brief Add a completion for "this", if we're in a member function. |
| 1497 | static void addThisCompletion(Sema &S, ResultBuilder &Results) { |
| 1498 | QualType ThisTy = S.getCurrentThisType(); |
| 1499 | if (ThisTy.isNull()) |
| 1500 | return; |
| 1501 | |
| 1502 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1503 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1504 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
| 1505 | Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy, |
| 1506 | S.Context, |
| 1507 | Policy, |
| 1508 | Allocator)); |
| 1509 | Builder.AddTypedTextChunk("this"); |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1510 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1513 | /// \brief Add language constructs that show up for "ordinary" names. |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1514 | static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1515 | Scope *S, |
| 1516 | Sema &SemaRef, |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1517 | ResultBuilder &Results) { |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1518 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1519 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1520 | PrintingPolicy Policy = getCompletionPrintingPolicy(SemaRef); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1521 | |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1522 | typedef CodeCompletionResult Result; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1523 | switch (CCC) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1524 | case Sema::PCC_Namespace: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1525 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1526 | if (Results.includeCodePatterns()) { |
| 1527 | // namespace <identifier> { declarations } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1528 | Builder.AddTypedTextChunk("namespace"); |
| 1529 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1530 | Builder.AddPlaceholderChunk("identifier"); |
| 1531 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1532 | Builder.AddPlaceholderChunk("declarations"); |
| 1533 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1534 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1535 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1538 | // namespace identifier = identifier ; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1539 | Builder.AddTypedTextChunk("namespace"); |
| 1540 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1541 | Builder.AddPlaceholderChunk("name"); |
| 1542 | Builder.AddChunk(CodeCompletionString::CK_Equal); |
| 1543 | Builder.AddPlaceholderChunk("namespace"); |
| 1544 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1545 | |
| 1546 | // Using directives |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1547 | Builder.AddTypedTextChunk("using"); |
| 1548 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1549 | Builder.AddTextChunk("namespace"); |
| 1550 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1551 | Builder.AddPlaceholderChunk("identifier"); |
| 1552 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1553 | |
| 1554 | // asm(string-literal) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1555 | Builder.AddTypedTextChunk("asm"); |
| 1556 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1557 | Builder.AddPlaceholderChunk("string-literal"); |
| 1558 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1559 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1560 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1561 | if (Results.includeCodePatterns()) { |
| 1562 | // Explicit template instantiation |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1563 | Builder.AddTypedTextChunk("template"); |
| 1564 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1565 | Builder.AddPlaceholderChunk("declaration"); |
| 1566 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1567 | } |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1568 | } |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1569 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1570 | if (SemaRef.getLangOpts().ObjC1) |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1571 | AddObjCTopLevelResults(Results, true); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1572 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1573 | AddTypedefResult(Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1574 | // Fall through |
| 1575 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1576 | case Sema::PCC_Class: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1577 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1578 | // Using declaration |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1579 | Builder.AddTypedTextChunk("using"); |
| 1580 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1581 | Builder.AddPlaceholderChunk("qualifier"); |
| 1582 | Builder.AddTextChunk("::"); |
| 1583 | Builder.AddPlaceholderChunk("name"); |
| 1584 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1585 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1586 | // using typename qualifier::name (only in a dependent context) |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1587 | if (SemaRef.CurContext->isDependentContext()) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1588 | Builder.AddTypedTextChunk("using"); |
| 1589 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1590 | Builder.AddTextChunk("typename"); |
| 1591 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1592 | Builder.AddPlaceholderChunk("qualifier"); |
| 1593 | Builder.AddTextChunk("::"); |
| 1594 | Builder.AddPlaceholderChunk("name"); |
| 1595 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1596 | } |
| 1597 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1598 | if (CCC == Sema::PCC_Class) { |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1599 | AddTypedefResult(Results); |
| 1600 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1601 | // public: |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1602 | Builder.AddTypedTextChunk("public"); |
Douglas Gregor | 10ccf12 | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 1603 | if (Results.includeCodePatterns()) |
| 1604 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1605 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1606 | |
| 1607 | // protected: |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1608 | Builder.AddTypedTextChunk("protected"); |
Douglas Gregor | 10ccf12 | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 1609 | if (Results.includeCodePatterns()) |
| 1610 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1611 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1612 | |
| 1613 | // private: |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1614 | Builder.AddTypedTextChunk("private"); |
Douglas Gregor | 10ccf12 | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 1615 | if (Results.includeCodePatterns()) |
| 1616 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1617 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1618 | } |
| 1619 | } |
| 1620 | // Fall through |
| 1621 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1622 | case Sema::PCC_Template: |
| 1623 | case Sema::PCC_MemberTemplate: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1624 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) { |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1625 | // template < parameters > |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1626 | Builder.AddTypedTextChunk("template"); |
| 1627 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 1628 | Builder.AddPlaceholderChunk("parameters"); |
| 1629 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 1630 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1631 | } |
| 1632 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1633 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 1634 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1635 | break; |
| 1636 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1637 | case Sema::PCC_ObjCInterface: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1638 | AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true); |
| 1639 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 1640 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1641 | break; |
| 1642 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1643 | case Sema::PCC_ObjCImplementation: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1644 | AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true); |
| 1645 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 1646 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1647 | break; |
| 1648 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1649 | case Sema::PCC_ObjCInstanceVariableList: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1650 | AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 1651 | break; |
| 1652 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1653 | case Sema::PCC_RecoveryInFunction: |
| 1654 | case Sema::PCC_Statement: { |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1655 | AddTypedefResult(Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1656 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1657 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() && |
| 1658 | SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1659 | Builder.AddTypedTextChunk("try"); |
| 1660 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1661 | Builder.AddPlaceholderChunk("statements"); |
| 1662 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1663 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1664 | Builder.AddTextChunk("catch"); |
| 1665 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1666 | Builder.AddPlaceholderChunk("declaration"); |
| 1667 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1668 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1669 | Builder.AddPlaceholderChunk("statements"); |
| 1670 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1671 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1672 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1673 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1674 | if (SemaRef.getLangOpts().ObjC1) |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1675 | AddObjCStatementResults(Results, true); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1676 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1677 | if (Results.includeCodePatterns()) { |
| 1678 | // if (condition) { statements } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1679 | Builder.AddTypedTextChunk("if"); |
| 1680 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1681 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1682 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1683 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1684 | Builder.AddPlaceholderChunk("expression"); |
| 1685 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1686 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1687 | Builder.AddPlaceholderChunk("statements"); |
| 1688 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1689 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1690 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1691 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1692 | // switch (condition) { } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1693 | Builder.AddTypedTextChunk("switch"); |
| 1694 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1695 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1696 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1697 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1698 | Builder.AddPlaceholderChunk("expression"); |
| 1699 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1700 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1701 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1702 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1703 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1706 | // Switch-specific statements. |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 1707 | if (!SemaRef.getCurFunction()->SwitchStack.empty()) { |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1708 | // case expression: |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1709 | Builder.AddTypedTextChunk("case"); |
| 1710 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1711 | Builder.AddPlaceholderChunk("expression"); |
| 1712 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 1713 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1714 | |
| 1715 | // default: |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1716 | Builder.AddTypedTextChunk("default"); |
| 1717 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 1718 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1719 | } |
| 1720 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1721 | if (Results.includeCodePatterns()) { |
| 1722 | /// while (condition) { statements } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1723 | Builder.AddTypedTextChunk("while"); |
| 1724 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1725 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1726 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1727 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1728 | Builder.AddPlaceholderChunk("expression"); |
| 1729 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1730 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1731 | Builder.AddPlaceholderChunk("statements"); |
| 1732 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1733 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1734 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1735 | |
| 1736 | // do { statements } while ( expression ); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1737 | Builder.AddTypedTextChunk("do"); |
| 1738 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1739 | Builder.AddPlaceholderChunk("statements"); |
| 1740 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1741 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1742 | Builder.AddTextChunk("while"); |
| 1743 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1744 | Builder.AddPlaceholderChunk("expression"); |
| 1745 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1746 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1747 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1748 | // for ( for-init-statement ; condition ; expression ) { statements } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1749 | Builder.AddTypedTextChunk("for"); |
| 1750 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1751 | if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1752 | Builder.AddPlaceholderChunk("init-statement"); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1753 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1754 | Builder.AddPlaceholderChunk("init-expression"); |
| 1755 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 1756 | Builder.AddPlaceholderChunk("condition"); |
| 1757 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 1758 | Builder.AddPlaceholderChunk("inc-expression"); |
| 1759 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1760 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 1761 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1762 | Builder.AddPlaceholderChunk("statements"); |
| 1763 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1764 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1765 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 1766 | } |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1767 | |
| 1768 | if (S->getContinueParent()) { |
| 1769 | // continue ; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1770 | Builder.AddTypedTextChunk("continue"); |
| 1771 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
| 1774 | if (S->getBreakParent()) { |
| 1775 | // break ; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1776 | Builder.AddTypedTextChunk("break"); |
| 1777 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1778 | } |
| 1779 | |
| 1780 | // "return expression ;" or "return ;", depending on whether we |
| 1781 | // know the function is void or not. |
| 1782 | bool isVoid = false; |
| 1783 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext)) |
| 1784 | isVoid = Function->getResultType()->isVoidType(); |
| 1785 | else if (ObjCMethodDecl *Method |
| 1786 | = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext)) |
| 1787 | isVoid = Method->getResultType()->isVoidType(); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 1788 | else if (SemaRef.getCurBlock() && |
| 1789 | !SemaRef.getCurBlock()->ReturnType.isNull()) |
| 1790 | isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType(); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1791 | Builder.AddTypedTextChunk("return"); |
Douglas Gregor | 9329800 | 2010-02-18 04:06:48 +0000 | [diff] [blame] | 1792 | if (!isVoid) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1793 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1794 | Builder.AddPlaceholderChunk("expression"); |
Douglas Gregor | 9329800 | 2010-02-18 04:06:48 +0000 | [diff] [blame] | 1795 | } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1796 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1797 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1798 | // goto identifier ; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1799 | Builder.AddTypedTextChunk("goto"); |
| 1800 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1801 | Builder.AddPlaceholderChunk("label"); |
| 1802 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1803 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1804 | // Using directives |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1805 | Builder.AddTypedTextChunk("using"); |
| 1806 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1807 | Builder.AddTextChunk("namespace"); |
| 1808 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1809 | Builder.AddPlaceholderChunk("identifier"); |
| 1810 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | // Fall through (for statement expressions). |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1814 | case Sema::PCC_ForInit: |
| 1815 | case Sema::PCC_Condition: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1816 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1817 | // Fall through: conditions and statements can have expressions. |
| 1818 | |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1819 | case Sema::PCC_ParenthesizedExpression: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1820 | if (SemaRef.getLangOpts().ObjCAutoRefCount && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1821 | CCC == Sema::PCC_ParenthesizedExpression) { |
| 1822 | // (__bridge <type>)<expression> |
| 1823 | Builder.AddTypedTextChunk("__bridge"); |
| 1824 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1825 | Builder.AddPlaceholderChunk("type"); |
| 1826 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1827 | Builder.AddPlaceholderChunk("expression"); |
| 1828 | Results.AddResult(Result(Builder.TakeString())); |
| 1829 | |
| 1830 | // (__bridge_transfer <Objective-C type>)<expression> |
| 1831 | Builder.AddTypedTextChunk("__bridge_transfer"); |
| 1832 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1833 | Builder.AddPlaceholderChunk("Objective-C type"); |
| 1834 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1835 | Builder.AddPlaceholderChunk("expression"); |
| 1836 | Results.AddResult(Result(Builder.TakeString())); |
| 1837 | |
| 1838 | // (__bridge_retained <CF type>)<expression> |
| 1839 | Builder.AddTypedTextChunk("__bridge_retained"); |
| 1840 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1841 | Builder.AddPlaceholderChunk("CF type"); |
| 1842 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1843 | Builder.AddPlaceholderChunk("expression"); |
| 1844 | Results.AddResult(Result(Builder.TakeString())); |
| 1845 | } |
| 1846 | // Fall through |
| 1847 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1848 | case Sema::PCC_Expression: { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1849 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1850 | // 'this', if we're in a non-static member function. |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1851 | addThisCompletion(SemaRef, Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1852 | |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1853 | // true |
| 1854 | Builder.AddResultTypeChunk("bool"); |
| 1855 | Builder.AddTypedTextChunk("true"); |
| 1856 | Results.AddResult(Result(Builder.TakeString())); |
| 1857 | |
| 1858 | // false |
| 1859 | Builder.AddResultTypeChunk("bool"); |
| 1860 | Builder.AddTypedTextChunk("false"); |
| 1861 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1862 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1863 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | ec3310a | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 1864 | // dynamic_cast < type-id > ( expression ) |
| 1865 | Builder.AddTypedTextChunk("dynamic_cast"); |
| 1866 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 1867 | Builder.AddPlaceholderChunk("type"); |
| 1868 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 1869 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1870 | Builder.AddPlaceholderChunk("expression"); |
| 1871 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1872 | Results.AddResult(Result(Builder.TakeString())); |
| 1873 | } |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1874 | |
| 1875 | // static_cast < type-id > ( expression ) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1876 | Builder.AddTypedTextChunk("static_cast"); |
| 1877 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 1878 | Builder.AddPlaceholderChunk("type"); |
| 1879 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 1880 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1881 | Builder.AddPlaceholderChunk("expression"); |
| 1882 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1883 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1884 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1885 | // reinterpret_cast < type-id > ( expression ) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1886 | Builder.AddTypedTextChunk("reinterpret_cast"); |
| 1887 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 1888 | Builder.AddPlaceholderChunk("type"); |
| 1889 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 1890 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1891 | Builder.AddPlaceholderChunk("expression"); |
| 1892 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1893 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1894 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1895 | // const_cast < type-id > ( expression ) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1896 | Builder.AddTypedTextChunk("const_cast"); |
| 1897 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 1898 | Builder.AddPlaceholderChunk("type"); |
| 1899 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 1900 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1901 | Builder.AddPlaceholderChunk("expression"); |
| 1902 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1903 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1904 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1905 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | ec3310a | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 1906 | // typeid ( expression-or-type ) |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1907 | Builder.AddResultTypeChunk("std::type_info"); |
Douglas Gregor | ec3310a | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 1908 | Builder.AddTypedTextChunk("typeid"); |
| 1909 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1910 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 1911 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1912 | Results.AddResult(Result(Builder.TakeString())); |
| 1913 | } |
| 1914 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1915 | // new T ( ... ) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1916 | Builder.AddTypedTextChunk("new"); |
| 1917 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1918 | Builder.AddPlaceholderChunk("type"); |
| 1919 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1920 | Builder.AddPlaceholderChunk("expressions"); |
| 1921 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1922 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1923 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1924 | // new T [ ] ( ... ) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1925 | Builder.AddTypedTextChunk("new"); |
| 1926 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1927 | Builder.AddPlaceholderChunk("type"); |
| 1928 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 1929 | Builder.AddPlaceholderChunk("size"); |
| 1930 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 1931 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1932 | Builder.AddPlaceholderChunk("expressions"); |
| 1933 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1934 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1935 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1936 | // delete expression |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1937 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1938 | Builder.AddTypedTextChunk("delete"); |
| 1939 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1940 | Builder.AddPlaceholderChunk("expression"); |
| 1941 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1942 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1943 | // delete [] expression |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1944 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1945 | Builder.AddTypedTextChunk("delete"); |
| 1946 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1947 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 1948 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 1949 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1950 | Builder.AddPlaceholderChunk("expression"); |
| 1951 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1952 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1953 | if (SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | ec3310a | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 1954 | // throw expression |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1955 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | ec3310a | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 1956 | Builder.AddTypedTextChunk("throw"); |
| 1957 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1958 | Builder.AddPlaceholderChunk("expression"); |
| 1959 | Results.AddResult(Result(Builder.TakeString())); |
| 1960 | } |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1961 | |
Douglas Gregor | 12e1313 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1962 | // FIXME: Rethrow? |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1963 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1964 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1965 | // nullptr |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1966 | Builder.AddResultTypeChunk("std::nullptr_t"); |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1967 | Builder.AddTypedTextChunk("nullptr"); |
| 1968 | Results.AddResult(Result(Builder.TakeString())); |
| 1969 | |
| 1970 | // alignof |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1971 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1972 | Builder.AddTypedTextChunk("alignof"); |
| 1973 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1974 | Builder.AddPlaceholderChunk("type"); |
| 1975 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1976 | Results.AddResult(Result(Builder.TakeString())); |
| 1977 | |
| 1978 | // noexcept |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1979 | Builder.AddResultTypeChunk("bool"); |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1980 | Builder.AddTypedTextChunk("noexcept"); |
| 1981 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1982 | Builder.AddPlaceholderChunk("expression"); |
| 1983 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1984 | Results.AddResult(Result(Builder.TakeString())); |
| 1985 | |
| 1986 | // sizeof... expression |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1987 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | a50216c | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 1988 | Builder.AddTypedTextChunk("sizeof..."); |
| 1989 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1990 | Builder.AddPlaceholderChunk("parameter-pack"); |
| 1991 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1992 | Results.AddResult(Result(Builder.TakeString())); |
| 1993 | } |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1994 | } |
| 1995 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1996 | if (SemaRef.getLangOpts().ObjC1) { |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1997 | // Add "super", if we're in an Objective-C class with a superclass. |
Ted Kremenek | 681e256 | 2010-05-31 21:43:10 +0000 | [diff] [blame] | 1998 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { |
| 1999 | // The interface can be NULL. |
| 2000 | if (ObjCInterfaceDecl *ID = Method->getClassInterface()) |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2001 | if (ID->getSuperClass()) { |
| 2002 | std::string SuperType; |
| 2003 | SuperType = ID->getSuperClass()->getNameAsString(); |
| 2004 | if (Method->isInstanceMethod()) |
| 2005 | SuperType += " *"; |
| 2006 | |
| 2007 | Builder.AddResultTypeChunk(Allocator.CopyString(SuperType)); |
| 2008 | Builder.AddTypedTextChunk("super"); |
| 2009 | Results.AddResult(Result(Builder.TakeString())); |
| 2010 | } |
Ted Kremenek | 681e256 | 2010-05-31 21:43:10 +0000 | [diff] [blame] | 2011 | } |
| 2012 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2013 | AddObjCExpressionResults(Results, true); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2014 | } |
| 2015 | |
Jordan Rose | f70a886 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 2016 | if (SemaRef.getLangOpts().C11) { |
| 2017 | // _Alignof |
| 2018 | Builder.AddResultTypeChunk("size_t"); |
| 2019 | if (SemaRef.getASTContext().Idents.get("alignof").hasMacroDefinition()) |
| 2020 | Builder.AddTypedTextChunk("alignof"); |
| 2021 | else |
| 2022 | Builder.AddTypedTextChunk("_Alignof"); |
| 2023 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2024 | Builder.AddPlaceholderChunk("type"); |
| 2025 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2026 | Results.AddResult(Result(Builder.TakeString())); |
| 2027 | } |
| 2028 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2029 | // sizeof expression |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2030 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2031 | Builder.AddTypedTextChunk("sizeof"); |
| 2032 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2033 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 2034 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2035 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2036 | break; |
| 2037 | } |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 2038 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2039 | case Sema::PCC_Type: |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 2040 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 2041 | break; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2042 | } |
| 2043 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2044 | if (WantTypesInContext(CCC, SemaRef.getLangOpts())) |
| 2045 | AddTypeSpecifierResults(SemaRef.getLangOpts(), Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2046 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2047 | if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type) |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 2048 | Results.AddResult(Result("operator")); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2051 | /// \brief If the given declaration has an associated type, add it as a result |
| 2052 | /// type chunk. |
| 2053 | static void AddResultTypeChunk(ASTContext &Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2054 | const PrintingPolicy &Policy, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2055 | const NamedDecl *ND, |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2056 | CodeCompletionBuilder &Result) { |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2057 | if (!ND) |
| 2058 | return; |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2059 | |
| 2060 | // Skip constructors and conversion functions, which have their return types |
| 2061 | // built into their names. |
| 2062 | if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND)) |
| 2063 | return; |
| 2064 | |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2065 | // Determine the type of the declaration (if it has a type). |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2066 | QualType T; |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2067 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2068 | T = Function->getResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2069 | else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2070 | T = Method->getResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2071 | else if (const FunctionTemplateDecl *FunTmpl = |
| 2072 | dyn_cast<FunctionTemplateDecl>(ND)) |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2073 | T = FunTmpl->getTemplatedDecl()->getResultType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2074 | else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND)) |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2075 | T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext())); |
| 2076 | else if (isa<UnresolvedUsingValueDecl>(ND)) { |
| 2077 | /* Do nothing: ignore unresolved using declarations*/ |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2078 | } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) { |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2079 | T = Value->getType(); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2080 | } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2081 | T = Property->getType(); |
| 2082 | |
| 2083 | if (T.isNull() || Context.hasSameType(T, Context.DependentTy)) |
| 2084 | return; |
| 2085 | |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2086 | Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy, |
Douglas Gregor | a63f6de | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 2087 | Result.getAllocator())); |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2090 | static void MaybeAddSentinel(ASTContext &Context, |
| 2091 | const NamedDecl *FunctionOrMethod, |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2092 | CodeCompletionBuilder &Result) { |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2093 | if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>()) |
| 2094 | if (Sentinel->getSentinel() == 0) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2095 | if (Context.getLangOpts().ObjC1 && |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2096 | Context.Idents.get("nil").hasMacroDefinition()) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2097 | Result.AddTextChunk(", nil"); |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2098 | else if (Context.Idents.get("NULL").hasMacroDefinition()) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2099 | Result.AddTextChunk(", NULL"); |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2100 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2101 | Result.AddTextChunk(", (void*)0"); |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2102 | } |
| 2103 | } |
| 2104 | |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2105 | static std::string formatObjCParamQualifiers(unsigned ObjCQuals) { |
| 2106 | std::string Result; |
| 2107 | if (ObjCQuals & Decl::OBJC_TQ_In) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2108 | Result += "in "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2109 | else if (ObjCQuals & Decl::OBJC_TQ_Inout) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2110 | Result += "inout "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2111 | else if (ObjCQuals & Decl::OBJC_TQ_Out) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2112 | Result += "out "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2113 | if (ObjCQuals & Decl::OBJC_TQ_Bycopy) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2114 | Result += "bycopy "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2115 | else if (ObjCQuals & Decl::OBJC_TQ_Byref) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2116 | Result += "byref "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2117 | if (ObjCQuals & Decl::OBJC_TQ_Oneway) |
Douglas Gregor | 6ef9209 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2118 | Result += "oneway "; |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2119 | return Result; |
| 2120 | } |
| 2121 | |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2122 | static std::string FormatFunctionParameter(ASTContext &Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2123 | const PrintingPolicy &Policy, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2124 | const ParmVarDecl *Param, |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2125 | bool SuppressName = false, |
| 2126 | bool SuppressBlock = false) { |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2127 | bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext()); |
| 2128 | if (Param->getType()->isDependentType() || |
| 2129 | !Param->getType()->isBlockPointerType()) { |
| 2130 | // The argument for a dependent or non-block parameter is a placeholder |
| 2131 | // containing that parameter's type. |
| 2132 | std::string Result; |
| 2133 | |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2134 | if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName) |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2135 | Result = Param->getIdentifier()->getName(); |
| 2136 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2137 | Param->getType().getAsStringInternal(Result, Policy); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2138 | |
| 2139 | if (ObjCMethodParam) { |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2140 | Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier()) |
| 2141 | + Result + ")"; |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2142 | if (Param->getIdentifier() && !SuppressName) |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2143 | Result += Param->getIdentifier()->getName(); |
| 2144 | } |
| 2145 | return Result; |
| 2146 | } |
| 2147 | |
| 2148 | // The argument for a block pointer parameter is a block literal with |
| 2149 | // the appropriate type. |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2150 | FunctionTypeLoc Block; |
| 2151 | FunctionProtoTypeLoc BlockProto; |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2152 | TypeLoc TL; |
| 2153 | if (TypeSourceInfo *TSInfo = Param->getTypeSourceInfo()) { |
| 2154 | TL = TSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2155 | while (true) { |
| 2156 | // Look through typedefs. |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2157 | if (!SuppressBlock) { |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2158 | if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) { |
| 2159 | if (TypeSourceInfo *InnerTSInfo = |
| 2160 | TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) { |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2161 | TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2162 | continue; |
| 2163 | } |
| 2164 | } |
| 2165 | |
| 2166 | // Look through qualified types |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2167 | if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) { |
| 2168 | TL = QualifiedTL.getUnqualifiedLoc(); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2169 | continue; |
| 2170 | } |
| 2171 | } |
| 2172 | |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2173 | // Try to get the function prototype behind the block pointer type, |
| 2174 | // then we're done. |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2175 | if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) { |
| 2176 | TL = BlockPtr.getPointeeLoc().IgnoreParens(); |
| 2177 | Block = TL.getAs<FunctionTypeLoc>(); |
| 2178 | BlockProto = TL.getAs<FunctionProtoTypeLoc>(); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2179 | } |
| 2180 | break; |
| 2181 | } |
| 2182 | } |
| 2183 | |
| 2184 | if (!Block) { |
| 2185 | // We were unable to find a FunctionProtoTypeLoc with parameter names |
| 2186 | // for the block; just use the parameter type as a placeholder. |
| 2187 | std::string Result; |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2188 | if (!ObjCMethodParam && Param->getIdentifier()) |
| 2189 | Result = Param->getIdentifier()->getName(); |
| 2190 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2191 | Param->getType().getUnqualifiedType().getAsStringInternal(Result, Policy); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2192 | |
| 2193 | if (ObjCMethodParam) { |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2194 | Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier()) |
| 2195 | + Result + ")"; |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2196 | if (Param->getIdentifier()) |
| 2197 | Result += Param->getIdentifier()->getName(); |
| 2198 | } |
| 2199 | |
| 2200 | return Result; |
| 2201 | } |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2202 | |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2203 | // We have the function prototype behind the block pointer type, as it was |
| 2204 | // written in the source. |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2205 | std::string Result; |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2206 | QualType ResultType = Block.getTypePtr()->getResultType(); |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2207 | if (!ResultType->isVoidType() || SuppressBlock) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2208 | ResultType.getAsStringInternal(Result, Policy); |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2209 | |
| 2210 | // Format the parameter list. |
| 2211 | std::string Params; |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2212 | if (!BlockProto || Block.getNumArgs() == 0) { |
| 2213 | if (BlockProto && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2214 | Params = "(...)"; |
Douglas Gregor | c2760bc | 2010-10-02 23:49:58 +0000 | [diff] [blame] | 2215 | else |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2216 | Params = "(void)"; |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2217 | } else { |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2218 | Params += "("; |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2219 | for (unsigned I = 0, N = Block.getNumArgs(); I != N; ++I) { |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2220 | if (I) |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2221 | Params += ", "; |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2222 | Params += FormatFunctionParameter(Context, Policy, Block.getArg(I), |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2223 | /*SuppressName=*/false, |
| 2224 | /*SuppressBlock=*/true); |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2225 | |
David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2226 | if (I == N - 1 && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2227 | Params += ", ..."; |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2228 | } |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2229 | Params += ")"; |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2230 | } |
Douglas Gregor | 3827625 | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2231 | |
Douglas Gregor | ee1c68a | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2232 | if (SuppressBlock) { |
| 2233 | // Format as a parameter. |
| 2234 | Result = Result + " (^"; |
| 2235 | if (Param->getIdentifier()) |
| 2236 | Result += Param->getIdentifier()->getName(); |
| 2237 | Result += ")"; |
| 2238 | Result += Params; |
| 2239 | } else { |
| 2240 | // Format as a block literal argument. |
| 2241 | Result = '^' + Result; |
| 2242 | Result += Params; |
| 2243 | |
| 2244 | if (Param->getIdentifier()) |
| 2245 | Result += Param->getIdentifier()->getName(); |
| 2246 | } |
| 2247 | |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2248 | return Result; |
| 2249 | } |
| 2250 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2251 | /// \brief Add function parameter chunks to the given code completion string. |
| 2252 | static void AddFunctionParameterChunks(ASTContext &Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2253 | const PrintingPolicy &Policy, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2254 | const FunctionDecl *Function, |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2255 | CodeCompletionBuilder &Result, |
| 2256 | unsigned Start = 0, |
| 2257 | bool InOptional = false) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2258 | bool FirstParameter = true; |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2259 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2260 | for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2261 | const ParmVarDecl *Param = Function->getParamDecl(P); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2262 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2263 | if (Param->hasDefaultArg() && !InOptional) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2264 | // When we see an optional default argument, put that argument and |
| 2265 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2266 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 2267 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2268 | if (!FirstParameter) |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2269 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2270 | AddFunctionParameterChunks(Context, Policy, Function, Opt, P, true); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2271 | Result.AddOptionalChunk(Opt.TakeString()); |
| 2272 | break; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2273 | } |
| 2274 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2275 | if (FirstParameter) |
| 2276 | FirstParameter = false; |
| 2277 | else |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2278 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2279 | |
| 2280 | InOptional = false; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2281 | |
| 2282 | // Format the placeholder string. |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2283 | std::string PlaceholderStr = FormatFunctionParameter(Context, Policy, |
| 2284 | Param); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2285 | |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2286 | if (Function->isVariadic() && P == N - 1) |
| 2287 | PlaceholderStr += ", ..."; |
| 2288 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2289 | // Add the placeholder string. |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2290 | Result.AddPlaceholderChunk( |
| 2291 | Result.getAllocator().CopyString(PlaceholderStr)); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2292 | } |
Douglas Gregor | b3d4525 | 2009-09-22 21:42:17 +0000 | [diff] [blame] | 2293 | |
| 2294 | if (const FunctionProtoType *Proto |
| 2295 | = Function->getType()->getAs<FunctionProtoType>()) |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2296 | if (Proto->isVariadic()) { |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2297 | if (Proto->getNumArgs() == 0) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2298 | Result.AddPlaceholderChunk("..."); |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2299 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2300 | MaybeAddSentinel(Context, Function, Result); |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2301 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2302 | } |
| 2303 | |
| 2304 | /// \brief Add template parameter chunks to the given code completion string. |
| 2305 | static void AddTemplateParameterChunks(ASTContext &Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2306 | const PrintingPolicy &Policy, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2307 | const TemplateDecl *Template, |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2308 | CodeCompletionBuilder &Result, |
| 2309 | unsigned MaxParameters = 0, |
| 2310 | unsigned Start = 0, |
| 2311 | bool InDefaultArg = false) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2312 | bool FirstParameter = true; |
| 2313 | |
| 2314 | TemplateParameterList *Params = Template->getTemplateParameters(); |
| 2315 | TemplateParameterList::iterator PEnd = Params->end(); |
| 2316 | if (MaxParameters) |
| 2317 | PEnd = Params->begin() + MaxParameters; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2318 | for (TemplateParameterList::iterator P = Params->begin() + Start; |
| 2319 | P != PEnd; ++P) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2320 | bool HasDefaultArg = false; |
| 2321 | std::string PlaceholderStr; |
| 2322 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { |
| 2323 | if (TTP->wasDeclaredWithTypename()) |
| 2324 | PlaceholderStr = "typename"; |
| 2325 | else |
| 2326 | PlaceholderStr = "class"; |
| 2327 | |
| 2328 | if (TTP->getIdentifier()) { |
| 2329 | PlaceholderStr += ' '; |
| 2330 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 2331 | } |
| 2332 | |
| 2333 | HasDefaultArg = TTP->hasDefaultArgument(); |
| 2334 | } else if (NonTypeTemplateParmDecl *NTTP |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2335 | = dyn_cast<NonTypeTemplateParmDecl>(*P)) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2336 | if (NTTP->getIdentifier()) |
| 2337 | PlaceholderStr = NTTP->getIdentifier()->getName(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2338 | NTTP->getType().getAsStringInternal(PlaceholderStr, Policy); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2339 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 2340 | } else { |
| 2341 | assert(isa<TemplateTemplateParmDecl>(*P)); |
| 2342 | TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P); |
| 2343 | |
| 2344 | // Since putting the template argument list into the placeholder would |
| 2345 | // be very, very long, we just use an abbreviation. |
| 2346 | PlaceholderStr = "template<...> class"; |
| 2347 | if (TTP->getIdentifier()) { |
| 2348 | PlaceholderStr += ' '; |
| 2349 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 2350 | } |
| 2351 | |
| 2352 | HasDefaultArg = TTP->hasDefaultArgument(); |
| 2353 | } |
| 2354 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2355 | if (HasDefaultArg && !InDefaultArg) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2356 | // When we see an optional default argument, put that argument and |
| 2357 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2358 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 2359 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2360 | if (!FirstParameter) |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2361 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2362 | AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters, |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2363 | P - Params->begin(), true); |
| 2364 | Result.AddOptionalChunk(Opt.TakeString()); |
| 2365 | break; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2366 | } |
| 2367 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2368 | InDefaultArg = false; |
| 2369 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2370 | if (FirstParameter) |
| 2371 | FirstParameter = false; |
| 2372 | else |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2373 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2374 | |
| 2375 | // Add the placeholder string. |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2376 | Result.AddPlaceholderChunk( |
| 2377 | Result.getAllocator().CopyString(PlaceholderStr)); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2378 | } |
| 2379 | } |
| 2380 | |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 2381 | /// \brief Add a qualifier to the given code-completion string, if the |
| 2382 | /// provided nested-name-specifier is non-NULL. |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2383 | static void |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2384 | AddQualifierToCompletionString(CodeCompletionBuilder &Result, |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2385 | NestedNameSpecifier *Qualifier, |
| 2386 | bool QualifierIsInformative, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2387 | ASTContext &Context, |
| 2388 | const PrintingPolicy &Policy) { |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 2389 | if (!Qualifier) |
| 2390 | return; |
| 2391 | |
| 2392 | std::string PrintedNNS; |
| 2393 | { |
| 2394 | llvm::raw_string_ostream OS(PrintedNNS); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2395 | Qualifier->print(OS, Policy); |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 2396 | } |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2397 | if (QualifierIsInformative) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2398 | Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2399 | else |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2400 | Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 2401 | } |
| 2402 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2403 | static void |
| 2404 | AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2405 | const FunctionDecl *Function) { |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2406 | const FunctionProtoType *Proto |
| 2407 | = Function->getType()->getAs<FunctionProtoType>(); |
| 2408 | if (!Proto || !Proto->getTypeQuals()) |
| 2409 | return; |
| 2410 | |
Douglas Gregor | a63f6de | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 2411 | // FIXME: Add ref-qualifier! |
| 2412 | |
| 2413 | // Handle single qualifiers without copying |
| 2414 | if (Proto->getTypeQuals() == Qualifiers::Const) { |
| 2415 | Result.AddInformativeChunk(" const"); |
| 2416 | return; |
| 2417 | } |
| 2418 | |
| 2419 | if (Proto->getTypeQuals() == Qualifiers::Volatile) { |
| 2420 | Result.AddInformativeChunk(" volatile"); |
| 2421 | return; |
| 2422 | } |
| 2423 | |
| 2424 | if (Proto->getTypeQuals() == Qualifiers::Restrict) { |
| 2425 | Result.AddInformativeChunk(" restrict"); |
| 2426 | return; |
| 2427 | } |
| 2428 | |
| 2429 | // Handle multiple qualifiers. |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2430 | std::string QualsStr; |
David Blaikie | 4ef832f | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 2431 | if (Proto->isConst()) |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2432 | QualsStr += " const"; |
David Blaikie | 4ef832f | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 2433 | if (Proto->isVolatile()) |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2434 | QualsStr += " volatile"; |
David Blaikie | 4ef832f | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 2435 | if (Proto->isRestrict()) |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2436 | QualsStr += " restrict"; |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2437 | Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr)); |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2438 | } |
| 2439 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2440 | /// \brief Add the name of the given declaration |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2441 | static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy, |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2442 | const NamedDecl *ND, |
| 2443 | CodeCompletionBuilder &Result) { |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2444 | DeclarationName Name = ND->getDeclName(); |
| 2445 | if (!Name) |
| 2446 | return; |
| 2447 | |
| 2448 | switch (Name.getNameKind()) { |
Douglas Gregor | a63f6de | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 2449 | case DeclarationName::CXXOperatorName: { |
| 2450 | const char *OperatorName = 0; |
| 2451 | switch (Name.getCXXOverloadedOperator()) { |
| 2452 | case OO_None: |
| 2453 | case OO_Conditional: |
| 2454 | case NUM_OVERLOADED_OPERATORS: |
| 2455 | OperatorName = "operator"; |
| 2456 | break; |
| 2457 | |
| 2458 | #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ |
| 2459 | case OO_##Name: OperatorName = "operator" Spelling; break; |
| 2460 | #define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) |
| 2461 | #include "clang/Basic/OperatorKinds.def" |
| 2462 | |
| 2463 | case OO_New: OperatorName = "operator new"; break; |
| 2464 | case OO_Delete: OperatorName = "operator delete"; break; |
| 2465 | case OO_Array_New: OperatorName = "operator new[]"; break; |
| 2466 | case OO_Array_Delete: OperatorName = "operator delete[]"; break; |
| 2467 | case OO_Call: OperatorName = "operator()"; break; |
| 2468 | case OO_Subscript: OperatorName = "operator[]"; break; |
| 2469 | } |
| 2470 | Result.AddTypedTextChunk(OperatorName); |
| 2471 | break; |
| 2472 | } |
| 2473 | |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2474 | case DeclarationName::Identifier: |
| 2475 | case DeclarationName::CXXConversionFunctionName: |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2476 | case DeclarationName::CXXDestructorName: |
| 2477 | case DeclarationName::CXXLiteralOperatorName: |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2478 | Result.AddTypedTextChunk( |
| 2479 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2480 | break; |
| 2481 | |
| 2482 | case DeclarationName::CXXUsingDirective: |
| 2483 | case DeclarationName::ObjCZeroArgSelector: |
| 2484 | case DeclarationName::ObjCOneArgSelector: |
| 2485 | case DeclarationName::ObjCMultiArgSelector: |
| 2486 | break; |
| 2487 | |
| 2488 | case DeclarationName::CXXConstructorName: { |
| 2489 | CXXRecordDecl *Record = 0; |
| 2490 | QualType Ty = Name.getCXXNameType(); |
| 2491 | if (const RecordType *RecordTy = Ty->getAs<RecordType>()) |
| 2492 | Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 2493 | else if (const InjectedClassNameType *InjectedTy |
| 2494 | = Ty->getAs<InjectedClassNameType>()) |
| 2495 | Record = InjectedTy->getDecl(); |
| 2496 | else { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2497 | Result.AddTypedTextChunk( |
| 2498 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2499 | break; |
| 2500 | } |
| 2501 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2502 | Result.AddTypedTextChunk( |
| 2503 | Result.getAllocator().CopyString(Record->getNameAsString())); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2504 | if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) { |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2505 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2506 | AddTemplateParameterChunks(Context, Policy, Template, Result); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2507 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2508 | } |
| 2509 | break; |
| 2510 | } |
| 2511 | } |
| 2512 | } |
| 2513 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2514 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S, |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2515 | CodeCompletionAllocator &Allocator, |
Dmitri Gribenko | d99ef53 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 2516 | CodeCompletionTUInfo &CCTUInfo, |
| 2517 | bool IncludeBriefComments) { |
| 2518 | return CreateCodeCompletionString(S.Context, S.PP, Allocator, CCTUInfo, |
| 2519 | IncludeBriefComments); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2520 | } |
| 2521 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2522 | /// \brief If possible, create a new code completion string for the given |
| 2523 | /// result. |
| 2524 | /// |
| 2525 | /// \returns Either a new, heap-allocated code completion string describing |
| 2526 | /// how to use this result, or NULL to indicate that the string or name of the |
| 2527 | /// result is all that is needed. |
| 2528 | CodeCompletionString * |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2529 | CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx, |
| 2530 | Preprocessor &PP, |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2531 | CodeCompletionAllocator &Allocator, |
Dmitri Gribenko | d99ef53 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 2532 | CodeCompletionTUInfo &CCTUInfo, |
| 2533 | bool IncludeBriefComments) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2534 | CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2535 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2536 | PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2537 | if (Kind == RK_Pattern) { |
| 2538 | Pattern->Priority = Priority; |
| 2539 | Pattern->Availability = Availability; |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 2540 | |
| 2541 | if (Declaration) { |
| 2542 | Result.addParentContext(Declaration->getDeclContext()); |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 2543 | Pattern->ParentName = Result.getParentName(); |
Fariborz Jahanian | c02ddb2 | 2013-03-22 17:55:27 +0000 | [diff] [blame^] | 2544 | // Provide code completion comment for self.GetterName where |
| 2545 | // GetterName is the getter method for a property with name |
| 2546 | // different from the property name (declared via a property |
| 2547 | // getter attribute. |
| 2548 | const NamedDecl *ND = Declaration; |
| 2549 | if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND)) |
| 2550 | if (M->isPropertyAccessor()) |
| 2551 | if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl()) |
| 2552 | if (PDecl->getGetterName() == M->getSelector() && |
| 2553 | PDecl->getIdentifier() != M->getIdentifier()) |
| 2554 | if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl)) { |
| 2555 | Result.addBriefComment(RC->getBriefText(Ctx)); |
| 2556 | Pattern->BriefComment = Result.getBriefComment(); |
| 2557 | } |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 2558 | } |
| 2559 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2560 | return Pattern; |
| 2561 | } |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2562 | |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2563 | if (Kind == RK_Keyword) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2564 | Result.AddTypedTextChunk(Keyword); |
| 2565 | return Result.TakeString(); |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2566 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2567 | |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2568 | if (Kind == RK_Macro) { |
Argyrios Kyrtzidis | 9818a1d | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 2569 | const MacroDirective *MD = PP.getMacroDirectiveHistory(Macro); |
| 2570 | assert(MD && "Not a macro?"); |
| 2571 | const MacroInfo *MI = MD->getInfo(); |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2572 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2573 | Result.AddTypedTextChunk( |
| 2574 | Result.getAllocator().CopyString(Macro->getName())); |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2575 | |
| 2576 | if (!MI->isFunctionLike()) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2577 | return Result.TakeString(); |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2578 | |
| 2579 | // Format a function-like macro with placeholders for the arguments. |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2580 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | e424470 | 2011-07-30 08:17:44 +0000 | [diff] [blame] | 2581 | MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end(); |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2582 | |
| 2583 | // C99 variadic macros add __VA_ARGS__ at the end. Skip it. |
| 2584 | if (MI->isC99Varargs()) { |
| 2585 | --AEnd; |
| 2586 | |
| 2587 | if (A == AEnd) { |
| 2588 | Result.AddPlaceholderChunk("..."); |
| 2589 | } |
Douglas Gregor | e424470 | 2011-07-30 08:17:44 +0000 | [diff] [blame] | 2590 | } |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2591 | |
Douglas Gregor | e424470 | 2011-07-30 08:17:44 +0000 | [diff] [blame] | 2592 | for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) { |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2593 | if (A != MI->arg_begin()) |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2594 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2595 | |
| 2596 | if (MI->isVariadic() && (A+1) == AEnd) { |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2597 | SmallString<32> Arg = (*A)->getName(); |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2598 | if (MI->isC99Varargs()) |
| 2599 | Arg += ", ..."; |
| 2600 | else |
| 2601 | Arg += "..."; |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2602 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2603 | break; |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2604 | } |
Douglas Gregor | c8dc135 | 2012-01-21 00:43:38 +0000 | [diff] [blame] | 2605 | |
| 2606 | // Non-variadic macros are simple. |
| 2607 | Result.AddPlaceholderChunk( |
| 2608 | Result.getAllocator().CopyString((*A)->getName())); |
Douglas Gregor | e424470 | 2011-07-30 08:17:44 +0000 | [diff] [blame] | 2609 | } |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2610 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2611 | return Result.TakeString(); |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2612 | } |
| 2613 | |
Douglas Gregor | d8e8a58 | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2614 | assert(Kind == RK_Declaration && "Missed a result kind?"); |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2615 | const NamedDecl *ND = Declaration; |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 2616 | Result.addParentContext(ND->getDeclContext()); |
Dmitri Gribenko | d99ef53 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 2617 | |
| 2618 | if (IncludeBriefComments) { |
| 2619 | // Add documentation comment, if it exists. |
Dmitri Gribenko | f50555e | 2012-08-11 00:51:43 +0000 | [diff] [blame] | 2620 | if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) { |
Dmitri Gribenko | d99ef53 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 2621 | Result.addBriefComment(RC->getBriefText(Ctx)); |
Fariborz Jahanian | b98f7af | 2013-02-28 17:47:14 +0000 | [diff] [blame] | 2622 | } |
| 2623 | else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND)) |
| 2624 | if (OMD->isPropertyAccessor()) |
| 2625 | if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl()) |
| 2626 | if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl)) |
| 2627 | Result.addBriefComment(RC->getBriefText(Ctx)); |
Dmitri Gribenko | d99ef53 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 2628 | } |
| 2629 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2630 | if (StartsNestedNameSpecifier) { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2631 | Result.AddTypedTextChunk( |
| 2632 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2633 | Result.AddTextChunk("::"); |
| 2634 | return Result.TakeString(); |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2635 | } |
Erik Verbruggen | 6164ea1 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 2636 | |
| 2637 | for (Decl::attr_iterator i = ND->attr_begin(); i != ND->attr_end(); ++i) { |
| 2638 | if (AnnotateAttr *Attr = dyn_cast_or_null<AnnotateAttr>(*i)) { |
| 2639 | Result.AddAnnotation(Result.getAllocator().CopyString(Attr->getAnnotation())); |
| 2640 | } |
| 2641 | } |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2642 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2643 | AddResultTypeChunk(Ctx, Policy, ND, Result); |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2644 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2645 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) { |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2646 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2647 | Ctx, Policy); |
| 2648 | AddTypedNameChunk(Ctx, Policy, ND, Result); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2649 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2650 | AddFunctionParameterChunks(Ctx, Policy, Function, Result); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2651 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2652 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2653 | return Result.TakeString(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2654 | } |
| 2655 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2656 | if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) { |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2657 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2658 | Ctx, Policy); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2659 | FunctionDecl *Function = FunTmpl->getTemplatedDecl(); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2660 | AddTypedNameChunk(Ctx, Policy, Function, Result); |
Douglas Gregor | 6f942b2 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2661 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2662 | // Figure out which template parameters are deduced (or have default |
| 2663 | // arguments). |
Benjamin Kramer | 013b366 | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 2664 | llvm::SmallBitVector Deduced; |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2665 | Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2666 | unsigned LastDeducibleArgument; |
| 2667 | for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0; |
| 2668 | --LastDeducibleArgument) { |
| 2669 | if (!Deduced[LastDeducibleArgument - 1]) { |
| 2670 | // C++0x: Figure out if the template argument has a default. If so, |
| 2671 | // the user doesn't need to type this argument. |
| 2672 | // FIXME: We need to abstract template parameters better! |
| 2673 | bool HasDefaultArg = false; |
| 2674 | NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2675 | LastDeducibleArgument - 1); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2676 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) |
| 2677 | HasDefaultArg = TTP->hasDefaultArgument(); |
| 2678 | else if (NonTypeTemplateParmDecl *NTTP |
| 2679 | = dyn_cast<NonTypeTemplateParmDecl>(Param)) |
| 2680 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 2681 | else { |
| 2682 | assert(isa<TemplateTemplateParmDecl>(Param)); |
| 2683 | HasDefaultArg |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2684 | = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2685 | } |
| 2686 | |
| 2687 | if (!HasDefaultArg) |
| 2688 | break; |
| 2689 | } |
| 2690 | } |
| 2691 | |
| 2692 | if (LastDeducibleArgument) { |
| 2693 | // Some of the function template arguments cannot be deduced from a |
| 2694 | // function call, so we introduce an explicit template argument list |
| 2695 | // containing all of the arguments up to the first deducible argument. |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2696 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2697 | AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result, |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2698 | LastDeducibleArgument); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2699 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2700 | } |
| 2701 | |
| 2702 | // Add the function parameters |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2703 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2704 | AddFunctionParameterChunks(Ctx, Policy, Function, Result); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2705 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | a61a879 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 2706 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2707 | return Result.TakeString(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2708 | } |
| 2709 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2710 | if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) { |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2711 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2712 | Ctx, Policy); |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2713 | Result.AddTypedTextChunk( |
| 2714 | Result.getAllocator().CopyString(Template->getNameAsString())); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2715 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2716 | AddTemplateParameterChunks(Ctx, Policy, Template, Result); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2717 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2718 | return Result.TakeString(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2719 | } |
| 2720 | |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2721 | if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) { |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2722 | Selector Sel = Method->getSelector(); |
| 2723 | if (Sel.isUnarySelector()) { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2724 | Result.AddTypedTextChunk(Result.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 2725 | Sel.getNameForSlot(0))); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2726 | return Result.TakeString(); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2727 | } |
| 2728 | |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 2729 | std::string SelName = Sel.getNameForSlot(0).str(); |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2730 | SelName += ':'; |
| 2731 | if (StartParameter == 0) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2732 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName)); |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2733 | else { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2734 | Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName)); |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2735 | |
| 2736 | // If there is only one parameter, and we're past it, add an empty |
| 2737 | // typed-text chunk since there is nothing to type. |
| 2738 | if (Method->param_size() == 1) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2739 | Result.AddTypedTextChunk(""); |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2740 | } |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2741 | unsigned Idx = 0; |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2742 | for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(), |
| 2743 | PEnd = Method->param_end(); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2744 | P != PEnd; (void)++P, ++Idx) { |
| 2745 | if (Idx > 0) { |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2746 | std::string Keyword; |
| 2747 | if (Idx > StartParameter) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2748 | Result.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2749 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx)) |
Benjamin Kramer | a0651c5 | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 2750 | Keyword += II->getName(); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2751 | Keyword += ":"; |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 2752 | if (Idx < StartParameter || AllParametersAreInformative) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2753 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword)); |
Douglas Gregor | c7b7b7a | 2010-10-18 21:05:04 +0000 | [diff] [blame] | 2754 | else |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2755 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword)); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2756 | } |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 2757 | |
| 2758 | // If we're before the starting parameter, skip the placeholder. |
| 2759 | if (Idx < StartParameter) |
| 2760 | continue; |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2761 | |
| 2762 | std::string Arg; |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2763 | |
| 2764 | if ((*P)->getType()->isBlockPointerType() && !DeclaringEntity) |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2765 | Arg = FormatFunctionParameter(Ctx, Policy, *P, true); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2766 | else { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2767 | (*P)->getType().getAsStringInternal(Arg, Policy); |
Douglas Gregor | 6fa14dd | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2768 | Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier()) |
| 2769 | + Arg + ")"; |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2770 | if (IdentifierInfo *II = (*P)->getIdentifier()) |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2771 | if (DeclaringEntity || AllParametersAreInformative) |
Benjamin Kramer | a0651c5 | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 2772 | Arg += II->getName(); |
Douglas Gregor | 83482d1 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2773 | } |
| 2774 | |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2775 | if (Method->isVariadic() && (P + 1) == PEnd) |
| 2776 | Arg += ", ..."; |
| 2777 | |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 2778 | if (DeclaringEntity) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2779 | Result.AddTextChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 2780 | else if (AllParametersAreInformative) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2781 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 2782 | else |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2783 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2784 | } |
| 2785 | |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 2786 | if (Method->isVariadic()) { |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2787 | if (Method->param_size() == 0) { |
| 2788 | if (DeclaringEntity) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2789 | Result.AddTextChunk(", ..."); |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2790 | else if (AllParametersAreInformative) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2791 | Result.AddInformativeChunk(", ..."); |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2792 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2793 | Result.AddPlaceholderChunk(", ..."); |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2794 | } |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2795 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2796 | MaybeAddSentinel(Ctx, Method, Result); |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 2797 | } |
| 2798 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2799 | return Result.TakeString(); |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 2800 | } |
| 2801 | |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2802 | if (Qualifier) |
Douglas Gregor | 0563c26 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 2803 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 2804 | Ctx, Policy); |
Douglas Gregor | 2b4074f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 2805 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2806 | Result.AddTypedTextChunk( |
| 2807 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2808 | return Result.TakeString(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2809 | } |
| 2810 | |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2811 | CodeCompletionString * |
| 2812 | CodeCompleteConsumer::OverloadCandidate::CreateSignatureString( |
| 2813 | unsigned CurrentArg, |
Douglas Gregor | 32be4a5 | 2010-10-11 21:37:58 +0000 | [diff] [blame] | 2814 | Sema &S, |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2815 | CodeCompletionAllocator &Allocator, |
| 2816 | CodeCompletionTUInfo &CCTUInfo) const { |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2817 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2818 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2819 | // FIXME: Set priority, availability appropriately. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2820 | CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2821 | FunctionDecl *FDecl = getFunction(); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2822 | AddResultTypeChunk(S.Context, Policy, FDecl, Result); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2823 | const FunctionProtoType *Proto |
| 2824 | = dyn_cast<FunctionProtoType>(getFunctionType()); |
| 2825 | if (!FDecl && !Proto) { |
| 2826 | // Function without a prototype. Just give the return type and a |
| 2827 | // highlighted ellipsis. |
| 2828 | const FunctionType *FT = getFunctionType(); |
Douglas Gregor | a63f6de | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 2829 | Result.AddTextChunk(GetCompletionTypeString(FT->getResultType(), |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2830 | S.Context, Policy, |
Douglas Gregor | a63f6de | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 2831 | Result.getAllocator())); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2832 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2833 | Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "..."); |
| 2834 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2835 | return Result.TakeString(); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2836 | } |
| 2837 | |
| 2838 | if (FDecl) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2839 | Result.AddTextChunk( |
| 2840 | Result.getAllocator().CopyString(FDecl->getNameAsString())); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2841 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2842 | Result.AddTextChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2843 | Result.getAllocator().CopyString( |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2844 | Proto->getResultType().getAsString(Policy))); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2845 | |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2846 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2847 | unsigned NumParams = FDecl? FDecl->getNumParams() : Proto->getNumArgs(); |
| 2848 | for (unsigned I = 0; I != NumParams; ++I) { |
| 2849 | if (I) |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2850 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2851 | |
| 2852 | std::string ArgString; |
| 2853 | QualType ArgType; |
| 2854 | |
| 2855 | if (FDecl) { |
| 2856 | ArgString = FDecl->getParamDecl(I)->getNameAsString(); |
| 2857 | ArgType = FDecl->getParamDecl(I)->getOriginalType(); |
| 2858 | } else { |
| 2859 | ArgType = Proto->getArgType(I); |
| 2860 | } |
| 2861 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2862 | ArgType.getAsStringInternal(ArgString, Policy); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2863 | |
| 2864 | if (I == CurrentArg) |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2865 | Result.AddChunk(CodeCompletionString::CK_CurrentParameter, |
| 2866 | Result.getAllocator().CopyString(ArgString)); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2867 | else |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2868 | Result.AddTextChunk(Result.getAllocator().CopyString(ArgString)); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2869 | } |
| 2870 | |
| 2871 | if (Proto && Proto->isVariadic()) { |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2872 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2873 | if (CurrentArg < NumParams) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2874 | Result.AddTextChunk("..."); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2875 | else |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2876 | Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "..."); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2877 | } |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2878 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2879 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2880 | return Result.TakeString(); |
Douglas Gregor | 86d802e | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 2881 | } |
| 2882 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2883 | unsigned clang::getMacroUsagePriority(StringRef MacroName, |
Douglas Gregor | b05496d | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 2884 | const LangOptions &LangOpts, |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 2885 | bool PreferredTypeIsPointer) { |
| 2886 | unsigned Priority = CCP_Macro; |
| 2887 | |
Douglas Gregor | b05496d | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 2888 | // Treat the "nil", "Nil" and "NULL" macros as null pointer constants. |
| 2889 | if (MacroName.equals("nil") || MacroName.equals("NULL") || |
| 2890 | MacroName.equals("Nil")) { |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 2891 | Priority = CCP_Constant; |
| 2892 | if (PreferredTypeIsPointer) |
| 2893 | Priority = Priority / CCF_SimilarTypeMatch; |
Douglas Gregor | b05496d | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 2894 | } |
| 2895 | // Treat "YES", "NO", "true", and "false" as constants. |
| 2896 | else if (MacroName.equals("YES") || MacroName.equals("NO") || |
| 2897 | MacroName.equals("true") || MacroName.equals("false")) |
| 2898 | Priority = CCP_Constant; |
| 2899 | // Treat "bool" as a type. |
| 2900 | else if (MacroName.equals("bool")) |
| 2901 | Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0); |
| 2902 | |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 2903 | |
| 2904 | return Priority; |
| 2905 | } |
| 2906 | |
Dmitri Gribenko | 06d8c60 | 2013-01-11 20:32:41 +0000 | [diff] [blame] | 2907 | CXCursorKind clang::getCursorKindForDecl(const Decl *D) { |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2908 | if (!D) |
| 2909 | return CXCursor_UnexposedDecl; |
| 2910 | |
| 2911 | switch (D->getKind()) { |
| 2912 | case Decl::Enum: return CXCursor_EnumDecl; |
| 2913 | case Decl::EnumConstant: return CXCursor_EnumConstantDecl; |
| 2914 | case Decl::Field: return CXCursor_FieldDecl; |
| 2915 | case Decl::Function: |
| 2916 | return CXCursor_FunctionDecl; |
| 2917 | case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl; |
| 2918 | case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2919 | case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl; |
Douglas Gregor | 375bb14 | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 2920 | |
Argyrios Kyrtzidis | c15707d | 2012-01-24 21:39:26 +0000 | [diff] [blame] | 2921 | case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2922 | case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl; |
| 2923 | case Decl::ObjCMethod: |
| 2924 | return cast<ObjCMethodDecl>(D)->isInstanceMethod() |
| 2925 | ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl; |
| 2926 | case Decl::CXXMethod: return CXCursor_CXXMethod; |
| 2927 | case Decl::CXXConstructor: return CXCursor_Constructor; |
| 2928 | case Decl::CXXDestructor: return CXCursor_Destructor; |
| 2929 | case Decl::CXXConversion: return CXCursor_ConversionFunction; |
| 2930 | case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl; |
Argyrios Kyrtzidis | c15707d | 2012-01-24 21:39:26 +0000 | [diff] [blame] | 2931 | case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2932 | case Decl::ParmVar: return CXCursor_ParmDecl; |
| 2933 | case Decl::Typedef: return CXCursor_TypedefDecl; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2934 | case Decl::TypeAlias: return CXCursor_TypeAliasDecl; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2935 | case Decl::Var: return CXCursor_VarDecl; |
| 2936 | case Decl::Namespace: return CXCursor_Namespace; |
| 2937 | case Decl::NamespaceAlias: return CXCursor_NamespaceAlias; |
| 2938 | case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter; |
| 2939 | case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter; |
| 2940 | case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter; |
| 2941 | case Decl::FunctionTemplate: return CXCursor_FunctionTemplate; |
| 2942 | case Decl::ClassTemplate: return CXCursor_ClassTemplate; |
Argyrios Kyrtzidis | 2dfdb94 | 2011-09-30 17:58:23 +0000 | [diff] [blame] | 2943 | case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2944 | case Decl::ClassTemplatePartialSpecialization: |
| 2945 | return CXCursor_ClassTemplatePartialSpecialization; |
| 2946 | case Decl::UsingDirective: return CXCursor_UsingDirective; |
Douglas Gregor | 8e5900c | 2012-04-30 23:41:16 +0000 | [diff] [blame] | 2947 | case Decl::TranslationUnit: return CXCursor_TranslationUnit; |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2948 | |
| 2949 | case Decl::Using: |
| 2950 | case Decl::UnresolvedUsingValue: |
| 2951 | case Decl::UnresolvedUsingTypename: |
| 2952 | return CXCursor_UsingDeclaration; |
| 2953 | |
Douglas Gregor | 352697a | 2011-06-03 23:08:58 +0000 | [diff] [blame] | 2954 | case Decl::ObjCPropertyImpl: |
| 2955 | switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) { |
| 2956 | case ObjCPropertyImplDecl::Dynamic: |
| 2957 | return CXCursor_ObjCDynamicDecl; |
| 2958 | |
| 2959 | case ObjCPropertyImplDecl::Synthesize: |
| 2960 | return CXCursor_ObjCSynthesizeDecl; |
| 2961 | } |
Argyrios Kyrtzidis | 6a01012 | 2012-10-05 00:22:24 +0000 | [diff] [blame] | 2962 | |
| 2963 | case Decl::Import: |
| 2964 | return CXCursor_ModuleImportDecl; |
Douglas Gregor | 352697a | 2011-06-03 23:08:58 +0000 | [diff] [blame] | 2965 | |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2966 | default: |
Dmitri Gribenko | 06d8c60 | 2013-01-11 20:32:41 +0000 | [diff] [blame] | 2967 | if (const TagDecl *TD = dyn_cast<TagDecl>(D)) { |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2968 | switch (TD->getTagKind()) { |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 2969 | case TTK_Interface: // fall through |
Douglas Gregor | e8d7beb | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 2970 | case TTK_Struct: return CXCursor_StructDecl; |
| 2971 | case TTK_Class: return CXCursor_ClassDecl; |
| 2972 | case TTK_Union: return CXCursor_UnionDecl; |
| 2973 | case TTK_Enum: return CXCursor_EnumDecl; |
| 2974 | } |
| 2975 | } |
| 2976 | } |
| 2977 | |
| 2978 | return CXCursor_UnexposedDecl; |
| 2979 | } |
| 2980 | |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 2981 | static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results, |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 2982 | bool IncludeUndefined, |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 2983 | bool TargetTypeIsPointer = false) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 2984 | typedef CodeCompletionResult Result; |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 2985 | |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2986 | Results.EnterNewScope(); |
Douglas Gregor | c7b7b7a | 2010-10-18 21:05:04 +0000 | [diff] [blame] | 2987 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 2988 | for (Preprocessor::macro_iterator M = PP.macro_begin(), |
| 2989 | MEnd = PP.macro_end(); |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 2990 | M != MEnd; ++M) { |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 2991 | if (IncludeUndefined || M->first->hasMacroDefinition()) |
| 2992 | Results.AddResult(Result(M->first, |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 2993 | getMacroUsagePriority(M->first->getName(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2994 | PP.getLangOpts(), |
Douglas Gregor | 1827e10 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 2995 | TargetTypeIsPointer))); |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 2996 | } |
Douglas Gregor | c7b7b7a | 2010-10-18 21:05:04 +0000 | [diff] [blame] | 2997 | |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 2998 | Results.ExitScope(); |
Douglas Gregor | c7b7b7a | 2010-10-18 21:05:04 +0000 | [diff] [blame] | 2999 | |
Douglas Gregor | 3f7c7f4 | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 3000 | } |
| 3001 | |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3002 | static void AddPrettyFunctionResults(const LangOptions &LangOpts, |
| 3003 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3004 | typedef CodeCompletionResult Result; |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3005 | |
| 3006 | Results.EnterNewScope(); |
Douglas Gregor | c7b7b7a | 2010-10-18 21:05:04 +0000 | [diff] [blame] | 3007 | |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3008 | Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant)); |
| 3009 | Results.AddResult(Result("__FUNCTION__", CCP_Constant)); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3010 | if (LangOpts.C99 || LangOpts.CPlusPlus11) |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3011 | Results.AddResult(Result("__func__", CCP_Constant)); |
| 3012 | Results.ExitScope(); |
| 3013 | } |
| 3014 | |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3015 | static void HandleCodeCompleteResults(Sema *S, |
| 3016 | CodeCompleteConsumer *CodeCompleter, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3017 | CodeCompletionContext Context, |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3018 | CodeCompletionResult *Results, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3019 | unsigned NumResults) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3020 | if (CodeCompleter) |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3021 | CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3022 | } |
| 3023 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3024 | static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S, |
| 3025 | Sema::ParserCompletionContext PCC) { |
| 3026 | switch (PCC) { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3027 | case Sema::PCC_Namespace: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3028 | return CodeCompletionContext::CCC_TopLevel; |
| 3029 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3030 | case Sema::PCC_Class: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3031 | return CodeCompletionContext::CCC_ClassStructUnion; |
| 3032 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3033 | case Sema::PCC_ObjCInterface: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3034 | return CodeCompletionContext::CCC_ObjCInterface; |
| 3035 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3036 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3037 | return CodeCompletionContext::CCC_ObjCImplementation; |
| 3038 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3039 | case Sema::PCC_ObjCInstanceVariableList: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3040 | return CodeCompletionContext::CCC_ObjCIvarList; |
| 3041 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3042 | case Sema::PCC_Template: |
| 3043 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3044 | if (S.CurContext->isFileContext()) |
| 3045 | return CodeCompletionContext::CCC_TopLevel; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3046 | if (S.CurContext->isRecord()) |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3047 | return CodeCompletionContext::CCC_ClassStructUnion; |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3048 | return CodeCompletionContext::CCC_Other; |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3049 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3050 | case Sema::PCC_RecoveryInFunction: |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3051 | return CodeCompletionContext::CCC_Recovery; |
Douglas Gregor | a5450a0 | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3052 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3053 | case Sema::PCC_ForInit: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3054 | if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 || |
| 3055 | S.getLangOpts().ObjC1) |
Douglas Gregor | a5450a0 | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3056 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
| 3057 | else |
| 3058 | return CodeCompletionContext::CCC_Expression; |
| 3059 | |
| 3060 | case Sema::PCC_Expression: |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3061 | case Sema::PCC_Condition: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3062 | return CodeCompletionContext::CCC_Expression; |
| 3063 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3064 | case Sema::PCC_Statement: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3065 | return CodeCompletionContext::CCC_Statement; |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3066 | |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3067 | case Sema::PCC_Type: |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3068 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 3069 | |
| 3070 | case Sema::PCC_ParenthesizedExpression: |
| 3071 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 3072 | |
| 3073 | case Sema::PCC_LocalDeclarationSpecifiers: |
| 3074 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3075 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3076 | |
| 3077 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3078 | } |
| 3079 | |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3080 | /// \brief If we're in a C++ virtual member function, add completion results |
| 3081 | /// that invoke the functions we override, since it's common to invoke the |
| 3082 | /// overridden function as well as adding new functionality. |
| 3083 | /// |
| 3084 | /// \param S The semantic analysis object for which we are generating results. |
| 3085 | /// |
| 3086 | /// \param InContext This context in which the nested-name-specifier preceding |
| 3087 | /// the code-completion point |
| 3088 | static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext, |
| 3089 | ResultBuilder &Results) { |
| 3090 | // Look through blocks. |
| 3091 | DeclContext *CurContext = S.CurContext; |
| 3092 | while (isa<BlockDecl>(CurContext)) |
| 3093 | CurContext = CurContext->getParent(); |
| 3094 | |
| 3095 | |
| 3096 | CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext); |
| 3097 | if (!Method || !Method->isVirtual()) |
| 3098 | return; |
| 3099 | |
| 3100 | // We need to have names for all of the parameters, if we're going to |
| 3101 | // generate a forwarding call. |
| 3102 | for (CXXMethodDecl::param_iterator P = Method->param_begin(), |
| 3103 | PEnd = Method->param_end(); |
| 3104 | P != PEnd; |
| 3105 | ++P) { |
| 3106 | if (!(*P)->getDeclName()) |
| 3107 | return; |
| 3108 | } |
| 3109 | |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3110 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3111 | for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(), |
| 3112 | MEnd = Method->end_overridden_methods(); |
| 3113 | M != MEnd; ++M) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3114 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 3115 | Results.getCodeCompletionTUInfo()); |
Dmitri Gribenko | 68a932d | 2013-02-14 13:53:30 +0000 | [diff] [blame] | 3116 | const CXXMethodDecl *Overridden = *M; |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3117 | if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl()) |
| 3118 | continue; |
| 3119 | |
| 3120 | // If we need a nested-name-specifier, add one now. |
| 3121 | if (!InContext) { |
| 3122 | NestedNameSpecifier *NNS |
| 3123 | = getRequiredQualification(S.Context, CurContext, |
| 3124 | Overridden->getDeclContext()); |
| 3125 | if (NNS) { |
| 3126 | std::string Str; |
| 3127 | llvm::raw_string_ostream OS(Str); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3128 | NNS->print(OS, Policy); |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3129 | Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str())); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3130 | } |
| 3131 | } else if (!InContext->Equals(Overridden->getDeclContext())) |
| 3132 | continue; |
| 3133 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3134 | Builder.AddTypedTextChunk(Results.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3135 | Overridden->getNameAsString())); |
| 3136 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3137 | bool FirstParam = true; |
| 3138 | for (CXXMethodDecl::param_iterator P = Method->param_begin(), |
| 3139 | PEnd = Method->param_end(); |
| 3140 | P != PEnd; ++P) { |
| 3141 | if (FirstParam) |
| 3142 | FirstParam = false; |
| 3143 | else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3144 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3145 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3146 | Builder.AddPlaceholderChunk(Results.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3147 | (*P)->getIdentifier()->getName())); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3148 | } |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3149 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 3150 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3151 | CCP_SuperCompletion, |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3152 | CXCursor_CXXMethod, |
| 3153 | CXAvailability_Available, |
| 3154 | Overridden)); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3155 | Results.Ignore(Overridden); |
| 3156 | } |
| 3157 | } |
| 3158 | |
Douglas Gregor | c5b2e58 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 3159 | void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc, |
| 3160 | ModuleIdPath Path) { |
| 3161 | typedef CodeCompletionResult Result; |
| 3162 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3163 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | c5b2e58 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 3164 | CodeCompletionContext::CCC_Other); |
| 3165 | Results.EnterNewScope(); |
| 3166 | |
| 3167 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3168 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | c5b2e58 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 3169 | typedef CodeCompletionResult Result; |
| 3170 | if (Path.empty()) { |
| 3171 | // Enumerate all top-level modules. |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 3172 | SmallVector<Module *, 8> Modules; |
Douglas Gregor | c5b2e58 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 3173 | PP.getHeaderSearchInfo().collectAllModules(Modules); |
| 3174 | for (unsigned I = 0, N = Modules.size(); I != N; ++I) { |
| 3175 | Builder.AddTypedTextChunk( |
| 3176 | Builder.getAllocator().CopyString(Modules[I]->Name)); |
| 3177 | Results.AddResult(Result(Builder.TakeString(), |
| 3178 | CCP_Declaration, |
| 3179 | CXCursor_NotImplemented, |
| 3180 | Modules[I]->isAvailable() |
| 3181 | ? CXAvailability_Available |
| 3182 | : CXAvailability_NotAvailable)); |
| 3183 | } |
| 3184 | } else { |
| 3185 | // Load the named module. |
| 3186 | Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path, |
| 3187 | Module::AllVisible, |
| 3188 | /*IsInclusionDirective=*/false); |
| 3189 | // Enumerate submodules. |
| 3190 | if (Mod) { |
| 3191 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
| 3192 | SubEnd = Mod->submodule_end(); |
| 3193 | Sub != SubEnd; ++Sub) { |
| 3194 | |
| 3195 | Builder.AddTypedTextChunk( |
| 3196 | Builder.getAllocator().CopyString((*Sub)->Name)); |
| 3197 | Results.AddResult(Result(Builder.TakeString(), |
| 3198 | CCP_Declaration, |
| 3199 | CXCursor_NotImplemented, |
| 3200 | (*Sub)->isAvailable() |
| 3201 | ? CXAvailability_Available |
| 3202 | : CXAvailability_NotAvailable)); |
| 3203 | } |
| 3204 | } |
| 3205 | } |
| 3206 | Results.ExitScope(); |
| 3207 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 3208 | Results.data(),Results.size()); |
| 3209 | } |
| 3210 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 3211 | void Sema::CodeCompleteOrdinaryName(Scope *S, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3212 | ParserCompletionContext CompletionContext) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3213 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3214 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3215 | mapCodeCompletionContext(*this, CompletionContext)); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3216 | Results.EnterNewScope(); |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 3217 | |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 3218 | // Determine how to filter results, e.g., so that the names of |
| 3219 | // values (functions, enumerators, function templates, etc.) are |
| 3220 | // only allowed where we can have an expression. |
| 3221 | switch (CompletionContext) { |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3222 | case PCC_Namespace: |
| 3223 | case PCC_Class: |
| 3224 | case PCC_ObjCInterface: |
| 3225 | case PCC_ObjCImplementation: |
| 3226 | case PCC_ObjCInstanceVariableList: |
| 3227 | case PCC_Template: |
| 3228 | case PCC_MemberTemplate: |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3229 | case PCC_Type: |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 3230 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 3231 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 3232 | break; |
| 3233 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3234 | case PCC_Statement: |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 3235 | case PCC_ParenthesizedExpression: |
Douglas Gregor | eb0d014 | 2010-08-24 23:58:17 +0000 | [diff] [blame] | 3236 | case PCC_Expression: |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3237 | case PCC_ForInit: |
| 3238 | case PCC_Condition: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3239 | if (WantTypesInContext(CompletionContext, getLangOpts())) |
Douglas Gregor | 4710e5b | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 3240 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 3241 | else |
| 3242 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3243 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3244 | if (getLangOpts().CPlusPlus) |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3245 | MaybeAddOverrideCalls(*this, /*InContext=*/0, Results); |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 3246 | break; |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 3247 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3248 | case PCC_RecoveryInFunction: |
Douglas Gregor | dc84534 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 3249 | // Unfiltered |
| 3250 | break; |
Douglas Gregor | 01dfea0 | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 3251 | } |
| 3252 | |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 3253 | // If we are in a C++ non-static member function, check the qualifiers on |
| 3254 | // the member function to filter/prioritize the results list. |
| 3255 | if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext)) |
| 3256 | if (CurMethod->isInstance()) |
| 3257 | Results.setObjectTypeQualifiers( |
| 3258 | Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers())); |
| 3259 | |
Douglas Gregor | 1ca6ae8 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 3260 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3261 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 3262 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 3263 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 3264 | AddOrdinaryNameResults(CompletionContext, S, *this, Results); |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 3265 | Results.ExitScope(); |
| 3266 | |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3267 | switch (CompletionContext) { |
Douglas Gregor | 0268810 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 3268 | case PCC_ParenthesizedExpression: |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3269 | case PCC_Expression: |
| 3270 | case PCC_Statement: |
| 3271 | case PCC_RecoveryInFunction: |
| 3272 | if (S->getFnParent()) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3273 | AddPrettyFunctionResults(PP.getLangOpts(), Results); |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3274 | break; |
| 3275 | |
| 3276 | case PCC_Namespace: |
| 3277 | case PCC_Class: |
| 3278 | case PCC_ObjCInterface: |
| 3279 | case PCC_ObjCImplementation: |
| 3280 | case PCC_ObjCInstanceVariableList: |
| 3281 | case PCC_Template: |
| 3282 | case PCC_MemberTemplate: |
| 3283 | case PCC_ForInit: |
| 3284 | case PCC_Condition: |
| 3285 | case PCC_Type: |
Douglas Gregor | 68e3c2e | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 3286 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 72db108 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3287 | break; |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3288 | } |
| 3289 | |
Douglas Gregor | 0c8296d | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 3290 | if (CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 3291 | AddMacroResults(PP, Results, false); |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3292 | |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 3293 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3294 | Results.data(),Results.size()); |
Douglas Gregor | 791215b | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 3295 | } |
| 3296 | |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 3297 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
| 3298 | ParsedType Receiver, |
| 3299 | IdentifierInfo **SelIdents, |
| 3300 | unsigned NumSelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3301 | bool AtArgumentExpression, |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 3302 | bool IsSuper, |
| 3303 | ResultBuilder &Results); |
| 3304 | |
| 3305 | void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS, |
| 3306 | bool AllowNonIdentifiers, |
| 3307 | bool AllowNestedNameSpecifiers) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3308 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3309 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3310 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3311 | AllowNestedNameSpecifiers |
| 3312 | ? CodeCompletionContext::CCC_PotentiallyQualifiedName |
| 3313 | : CodeCompletionContext::CCC_Name); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3314 | Results.EnterNewScope(); |
| 3315 | |
| 3316 | // Type qualifiers can come after names. |
| 3317 | Results.AddResult(Result("const")); |
| 3318 | Results.AddResult(Result("volatile")); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3319 | if (getLangOpts().C99) |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3320 | Results.AddResult(Result("restrict")); |
| 3321 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3322 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3323 | if (AllowNonIdentifiers) { |
| 3324 | Results.AddResult(Result("operator")); |
| 3325 | } |
| 3326 | |
| 3327 | // Add nested-name-specifiers. |
| 3328 | if (AllowNestedNameSpecifiers) { |
| 3329 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3330 | Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3331 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 3332 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer, |
| 3333 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3334 | Results.setFilter(0); |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3335 | } |
| 3336 | } |
| 3337 | Results.ExitScope(); |
| 3338 | |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 3339 | // If we're in a context where we might have an expression (rather than a |
| 3340 | // declaration), and what we've seen so far is an Objective-C type that could |
| 3341 | // be a receiver of a class message, this may be a class message send with |
| 3342 | // the initial opening bracket '[' missing. Add appropriate completions. |
| 3343 | if (AllowNonIdentifiers && !AllowNestedNameSpecifiers && |
| 3344 | DS.getTypeSpecType() == DeclSpec::TST_typename && |
| 3345 | DS.getStorageClassSpecAsWritten() == DeclSpec::SCS_unspecified && |
| 3346 | !DS.isThreadSpecified() && !DS.isExternInLinkageSpec() && |
| 3347 | DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified && |
| 3348 | DS.getTypeSpecSign() == DeclSpec::TSS_unspecified && |
| 3349 | DS.getTypeQualifiers() == 0 && |
| 3350 | S && |
| 3351 | (S->getFlags() & Scope::DeclScope) != 0 && |
| 3352 | (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope | |
| 3353 | Scope::FunctionPrototypeScope | |
| 3354 | Scope::AtCatchScope)) == 0) { |
| 3355 | ParsedType T = DS.getRepAsType(); |
| 3356 | if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType()) |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 3357 | AddClassMessageCompletions(*this, S, T, 0, 0, false, false, Results); |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 3358 | } |
| 3359 | |
Douglas Gregor | 4497dd4 | 2010-08-24 04:59:56 +0000 | [diff] [blame] | 3360 | // Note that we intentionally suppress macro results here, since we do not |
| 3361 | // encourage using macros to produce the names of entities. |
| 3362 | |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3363 | HandleCodeCompleteResults(this, CodeCompleter, |
| 3364 | Results.getCompletionContext(), |
Douglas Gregor | 2ccccb3 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 3365 | Results.data(), Results.size()); |
| 3366 | } |
| 3367 | |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3368 | struct Sema::CodeCompleteExpressionData { |
| 3369 | CodeCompleteExpressionData(QualType PreferredType = QualType()) |
| 3370 | : PreferredType(PreferredType), IntegralConstantExpression(false), |
| 3371 | ObjCCollection(false) { } |
| 3372 | |
| 3373 | QualType PreferredType; |
| 3374 | bool IntegralConstantExpression; |
| 3375 | bool ObjCCollection; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3376 | SmallVector<Decl *, 4> IgnoreDecls; |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3377 | }; |
| 3378 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3379 | /// \brief Perform code-completion in an expression context when we know what |
| 3380 | /// type we're looking for. |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3381 | void Sema::CodeCompleteExpression(Scope *S, |
| 3382 | const CodeCompleteExpressionData &Data) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3383 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3384 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3385 | CodeCompletionContext::CCC_Expression); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3386 | if (Data.ObjCCollection) |
| 3387 | Results.setFilter(&ResultBuilder::IsObjCCollection); |
| 3388 | else if (Data.IntegralConstantExpression) |
Douglas Gregor | f957843 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 3389 | Results.setFilter(&ResultBuilder::IsIntegralConstantValue); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3390 | else if (WantTypesInContext(PCC_Expression, getLangOpts())) |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3391 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 3392 | else |
| 3393 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3394 | |
| 3395 | if (!Data.PreferredType.isNull()) |
| 3396 | Results.setPreferredType(Data.PreferredType.getNonReferenceType()); |
| 3397 | |
| 3398 | // Ignore any declarations that we were told that we don't care about. |
| 3399 | for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I) |
| 3400 | Results.Ignore(Data.IgnoreDecls[I]); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3401 | |
| 3402 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3403 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 3404 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3405 | |
| 3406 | Results.EnterNewScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3407 | AddOrdinaryNameResults(PCC_Expression, S, *this, Results); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3408 | Results.ExitScope(); |
| 3409 | |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3410 | bool PreferredTypeIsPointer = false; |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3411 | if (!Data.PreferredType.isNull()) |
| 3412 | PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType() |
| 3413 | || Data.PreferredType->isMemberPointerType() |
| 3414 | || Data.PreferredType->isBlockPointerType(); |
Douglas Gregor | 590c7d5 | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3415 | |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3416 | if (S->getFnParent() && |
| 3417 | !Data.ObjCCollection && |
| 3418 | !Data.IntegralConstantExpression) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3419 | AddPrettyFunctionResults(PP.getLangOpts(), Results); |
Douglas Gregor | aa5f77b | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3420 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3421 | if (CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 3422 | AddMacroResults(PP, Results, false, PreferredTypeIsPointer); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3423 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3424 | CodeCompletionContext(CodeCompletionContext::CCC_Expression, |
| 3425 | Data.PreferredType), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3426 | Results.data(),Results.size()); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3427 | } |
| 3428 | |
Douglas Gregor | ac5fd84 | 2010-09-18 01:28:11 +0000 | [diff] [blame] | 3429 | void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) { |
| 3430 | if (E.isInvalid()) |
| 3431 | CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3432 | else if (getLangOpts().ObjC1) |
Douglas Gregor | ac5fd84 | 2010-09-18 01:28:11 +0000 | [diff] [blame] | 3433 | CodeCompleteObjCInstanceMessage(S, E.take(), 0, 0, false); |
Douglas Gregor | 78edf51 | 2010-09-15 16:23:04 +0000 | [diff] [blame] | 3434 | } |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3435 | |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3436 | /// \brief The set of properties that have already been added, referenced by |
| 3437 | /// property name. |
| 3438 | typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet; |
| 3439 | |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 3440 | /// \brief Retrieve the container definition, if any? |
| 3441 | static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) { |
| 3442 | if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) { |
| 3443 | if (Interface->hasDefinition()) |
| 3444 | return Interface->getDefinition(); |
| 3445 | |
| 3446 | return Interface; |
| 3447 | } |
| 3448 | |
| 3449 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
| 3450 | if (Protocol->hasDefinition()) |
| 3451 | return Protocol->getDefinition(); |
| 3452 | |
| 3453 | return Protocol; |
| 3454 | } |
| 3455 | return Container; |
| 3456 | } |
| 3457 | |
| 3458 | static void AddObjCProperties(ObjCContainerDecl *Container, |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 3459 | bool AllowCategories, |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3460 | bool AllowNullaryMethods, |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3461 | DeclContext *CurContext, |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3462 | AddedPropertiesSet &AddedProperties, |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3463 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3464 | typedef CodeCompletionResult Result; |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3465 | |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 3466 | // Retrieve the definition. |
| 3467 | Container = getContainerDef(Container); |
| 3468 | |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3469 | // Add properties in this container. |
| 3470 | for (ObjCContainerDecl::prop_iterator P = Container->prop_begin(), |
| 3471 | PEnd = Container->prop_end(); |
| 3472 | P != PEnd; |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3473 | ++P) { |
| 3474 | if (AddedProperties.insert(P->getIdentifier())) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 3475 | Results.MaybeAddResult(Result(*P, Results.getBasePriority(*P), 0), |
| 3476 | CurContext); |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3477 | } |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3478 | |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3479 | // Add nullary methods |
| 3480 | if (AllowNullaryMethods) { |
| 3481 | ASTContext &Context = Container->getASTContext(); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3482 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3483 | for (ObjCContainerDecl::method_iterator M = Container->meth_begin(), |
| 3484 | MEnd = Container->meth_end(); |
| 3485 | M != MEnd; ++M) { |
| 3486 | if (M->getSelector().isUnarySelector()) |
| 3487 | if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0)) |
| 3488 | if (AddedProperties.insert(Name)) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3489 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 3490 | Results.getCodeCompletionTUInfo()); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 3491 | AddResultTypeChunk(Context, Policy, *M, Builder); |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3492 | Builder.AddTypedTextChunk( |
| 3493 | Results.getAllocator().CopyString(Name->getName())); |
| 3494 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 3495 | Results.MaybeAddResult(Result(Builder.TakeString(), *M, |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3496 | CCP_MemberDeclaration + CCD_MethodAsProperty), |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3497 | CurContext); |
| 3498 | } |
| 3499 | } |
| 3500 | } |
| 3501 | |
| 3502 | |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3503 | // Add properties in referenced protocols. |
| 3504 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
| 3505 | for (ObjCProtocolDecl::protocol_iterator P = Protocol->protocol_begin(), |
| 3506 | PEnd = Protocol->protocol_end(); |
| 3507 | P != PEnd; ++P) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3508 | AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext, |
| 3509 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3510 | } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){ |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 3511 | if (AllowCategories) { |
| 3512 | // Look through categories. |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 3513 | for (ObjCInterfaceDecl::known_categories_iterator |
| 3514 | Cat = IFace->known_categories_begin(), |
| 3515 | CatEnd = IFace->known_categories_end(); |
| 3516 | Cat != CatEnd; ++Cat) |
| 3517 | AddObjCProperties(*Cat, AllowCategories, AllowNullaryMethods, |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3518 | CurContext, AddedProperties, Results); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 3519 | } |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3520 | |
| 3521 | // Look through protocols. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 3522 | for (ObjCInterfaceDecl::all_protocol_iterator |
| 3523 | I = IFace->all_referenced_protocol_begin(), |
| 3524 | E = IFace->all_referenced_protocol_end(); I != E; ++I) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3525 | AddObjCProperties(*I, AllowCategories, AllowNullaryMethods, CurContext, |
| 3526 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3527 | |
| 3528 | // Look in the superclass. |
| 3529 | if (IFace->getSuperClass()) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3530 | AddObjCProperties(IFace->getSuperClass(), AllowCategories, |
| 3531 | AllowNullaryMethods, CurContext, |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3532 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3533 | } else if (const ObjCCategoryDecl *Category |
| 3534 | = dyn_cast<ObjCCategoryDecl>(Container)) { |
| 3535 | // Look through protocols. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 3536 | for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(), |
| 3537 | PEnd = Category->protocol_end(); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3538 | P != PEnd; ++P) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3539 | AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext, |
| 3540 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3541 | } |
| 3542 | } |
| 3543 | |
Douglas Gregor | f5cd27d | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 3544 | void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base, |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3545 | SourceLocation OpLoc, |
| 3546 | bool IsArrow) { |
Douglas Gregor | f5cd27d | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 3547 | if (!Base || !CodeCompleter) |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3548 | return; |
| 3549 | |
Douglas Gregor | f5cd27d | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 3550 | ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow); |
| 3551 | if (ConvertedBase.isInvalid()) |
| 3552 | return; |
| 3553 | Base = ConvertedBase.get(); |
| 3554 | |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3555 | typedef CodeCompletionResult Result; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3556 | |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3557 | QualType BaseType = Base->getType(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3558 | |
| 3559 | if (IsArrow) { |
| 3560 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) |
| 3561 | BaseType = Ptr->getPointeeType(); |
| 3562 | else if (BaseType->isObjCObjectPointerType()) |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 3563 | /*Do nothing*/ ; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3564 | else |
| 3565 | return; |
| 3566 | } |
| 3567 | |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 3568 | enum CodeCompletionContext::Kind contextKind; |
| 3569 | |
| 3570 | if (IsArrow) { |
| 3571 | contextKind = CodeCompletionContext::CCC_ArrowMemberAccess; |
| 3572 | } |
| 3573 | else { |
| 3574 | if (BaseType->isObjCObjectPointerType() || |
| 3575 | BaseType->isObjCObjectOrInterfaceType()) { |
| 3576 | contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess; |
| 3577 | } |
| 3578 | else { |
| 3579 | contextKind = CodeCompletionContext::CCC_DotMemberAccess; |
| 3580 | } |
| 3581 | } |
| 3582 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3583 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3584 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 3585 | CodeCompletionContext(contextKind, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3586 | BaseType), |
| 3587 | &ResultBuilder::IsMember); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3588 | Results.EnterNewScope(); |
| 3589 | if (const RecordType *Record = BaseType->getAs<RecordType>()) { |
Douglas Gregor | 3cdee12 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 3590 | // Indicate that we are performing a member access, and the cv-qualifiers |
| 3591 | // for the base object type. |
| 3592 | Results.setObjectTypeQualifiers(BaseType.getQualifiers()); |
| 3593 | |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3594 | // Access to a C/C++ class, struct, or union. |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 3595 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | 0cc8404 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3596 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3597 | LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer, |
| 3598 | CodeCompleter->includeGlobals()); |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3599 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3600 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3601 | if (!Results.empty()) { |
| 3602 | // The "template" keyword can follow "->" or "." in the grammar. |
| 3603 | // However, we only want to suggest the template keyword if something |
| 3604 | // is dependent. |
| 3605 | bool IsDependent = BaseType->isDependentType(); |
| 3606 | if (!IsDependent) { |
| 3607 | for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent()) |
| 3608 | if (DeclContext *Ctx = (DeclContext *)DepScope->getEntity()) { |
| 3609 | IsDependent = Ctx->isDependentContext(); |
| 3610 | break; |
| 3611 | } |
| 3612 | } |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3613 | |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3614 | if (IsDependent) |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 3615 | Results.AddResult(Result("template")); |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3616 | } |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3617 | } |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3618 | } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) { |
| 3619 | // Objective-C property reference. |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3620 | AddedPropertiesSet AddedProperties; |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3621 | |
| 3622 | // Add property results based on our interface. |
| 3623 | const ObjCObjectPointerType *ObjCPtr |
| 3624 | = BaseType->getAsObjCInterfacePointerType(); |
| 3625 | assert(ObjCPtr && "Non-NULL pointer guaranteed above!"); |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3626 | AddObjCProperties(ObjCPtr->getInterfaceDecl(), true, |
| 3627 | /*AllowNullaryMethods=*/true, CurContext, |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 3628 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3629 | |
| 3630 | // Add properties from the protocols in a qualified interface. |
| 3631 | for (ObjCObjectPointerType::qual_iterator I = ObjCPtr->qual_begin(), |
| 3632 | E = ObjCPtr->qual_end(); |
| 3633 | I != E; ++I) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 3634 | AddObjCProperties(*I, true, /*AllowNullaryMethods=*/true, CurContext, |
| 3635 | AddedProperties, Results); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3636 | } else if ((IsArrow && BaseType->isObjCObjectPointerType()) || |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 3637 | (!IsArrow && BaseType->isObjCObjectType())) { |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3638 | // Objective-C instance variable access. |
| 3639 | ObjCInterfaceDecl *Class = 0; |
| 3640 | if (const ObjCObjectPointerType *ObjCPtr |
| 3641 | = BaseType->getAs<ObjCObjectPointerType>()) |
| 3642 | Class = ObjCPtr->getInterfaceDecl(); |
| 3643 | else |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 3644 | Class = BaseType->getAs<ObjCObjectType>()->getInterface(); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3645 | |
| 3646 | // Add all ivars from this class and its superclasses. |
Douglas Gregor | 80f4f4c | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 3647 | if (Class) { |
| 3648 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 3649 | Results.setFilter(&ResultBuilder::IsObjCIvar); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3650 | LookupVisibleDecls(Class, LookupMemberName, Consumer, |
| 3651 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3652 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3653 | } |
Douglas Gregor | 95ac655 | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 3654 | |
| 3655 | // FIXME: How do we cope with isa? |
| 3656 | |
| 3657 | Results.ExitScope(); |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3658 | |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3659 | // Hand off the results found for code completion. |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3660 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3661 | Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3662 | Results.data(),Results.size()); |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 3663 | } |
| 3664 | |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3665 | void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) { |
| 3666 | if (!CodeCompleter) |
| 3667 | return; |
| 3668 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3669 | ResultBuilder::LookupFilter Filter = 0; |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3670 | enum CodeCompletionContext::Kind ContextKind |
| 3671 | = CodeCompletionContext::CCC_Other; |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3672 | switch ((DeclSpec::TST)TagSpec) { |
| 3673 | case DeclSpec::TST_enum: |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3674 | Filter = &ResultBuilder::IsEnum; |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3675 | ContextKind = CodeCompletionContext::CCC_EnumTag; |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3676 | break; |
| 3677 | |
| 3678 | case DeclSpec::TST_union: |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3679 | Filter = &ResultBuilder::IsUnion; |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3680 | ContextKind = CodeCompletionContext::CCC_UnionTag; |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3681 | break; |
| 3682 | |
| 3683 | case DeclSpec::TST_struct: |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3684 | case DeclSpec::TST_class: |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 3685 | case DeclSpec::TST_interface: |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3686 | Filter = &ResultBuilder::IsClassOrStruct; |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3687 | ContextKind = CodeCompletionContext::CCC_ClassOrStructTag; |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3688 | break; |
| 3689 | |
| 3690 | default: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3691 | llvm_unreachable("Unknown type specifier kind in CodeCompleteTag"); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3692 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3693 | |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3694 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 3695 | CodeCompleter->getCodeCompletionTUInfo(), ContextKind); |
Douglas Gregor | 5d2fc40 | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 3696 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 3697 | |
| 3698 | // First pass: look for tags. |
| 3699 | Results.setFilter(Filter); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3700 | LookupVisibleDecls(S, LookupTagName, Consumer, |
| 3701 | CodeCompleter->includeGlobals()); |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 3702 | |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3703 | if (CodeCompleter->includeGlobals()) { |
| 3704 | // Second pass: look for nested name specifiers. |
| 3705 | Results.setFilter(&ResultBuilder::IsNestedNameSpecifier); |
| 3706 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer); |
| 3707 | } |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3708 | |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3709 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3710 | Results.data(),Results.size()); |
Douglas Gregor | 374929f | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 3711 | } |
| 3712 | |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3713 | void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3714 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3715 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3716 | CodeCompletionContext::CCC_TypeQualifiers); |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3717 | Results.EnterNewScope(); |
| 3718 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const)) |
| 3719 | Results.AddResult("const"); |
| 3720 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile)) |
| 3721 | Results.AddResult("volatile"); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3722 | if (getLangOpts().C99 && |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3723 | !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict)) |
| 3724 | Results.AddResult("restrict"); |
| 3725 | Results.ExitScope(); |
| 3726 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3727 | Results.getCompletionContext(), |
Douglas Gregor | 1a480c4 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 3728 | Results.data(), Results.size()); |
| 3729 | } |
| 3730 | |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3731 | void Sema::CodeCompleteCase(Scope *S) { |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 3732 | if (getCurFunction()->SwitchStack.empty() || !CodeCompleter) |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3733 | return; |
John McCall | a8e0cd8 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 3734 | |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 3735 | SwitchStmt *Switch = getCurFunction()->SwitchStack.back(); |
John McCall | a8e0cd8 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 3736 | QualType type = Switch->getCond()->IgnoreImplicit()->getType(); |
| 3737 | if (!type->isEnumeralType()) { |
| 3738 | CodeCompleteExpressionData Data(type); |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 3739 | Data.IntegralConstantExpression = true; |
| 3740 | CodeCompleteExpression(S, Data); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3741 | return; |
Douglas Gregor | f957843 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 3742 | } |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3743 | |
| 3744 | // Code-complete the cases of a switch statement over an enumeration type |
| 3745 | // by providing the list of |
John McCall | a8e0cd8 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 3746 | EnumDecl *Enum = type->castAs<EnumType>()->getDecl(); |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 3747 | if (EnumDecl *Def = Enum->getDefinition()) |
| 3748 | Enum = Def; |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3749 | |
| 3750 | // Determine which enumerators we have already seen in the switch statement. |
| 3751 | // FIXME: Ideally, we would also be able to look *past* the code-completion |
| 3752 | // token, in case we are code-completing in the middle of the switch and not |
| 3753 | // at the end. However, we aren't able to do so at the moment. |
| 3754 | llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen; |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3755 | NestedNameSpecifier *Qualifier = 0; |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3756 | for (SwitchCase *SC = Switch->getSwitchCaseList(); SC; |
| 3757 | SC = SC->getNextSwitchCase()) { |
| 3758 | CaseStmt *Case = dyn_cast<CaseStmt>(SC); |
| 3759 | if (!Case) |
| 3760 | continue; |
| 3761 | |
| 3762 | Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); |
| 3763 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal)) |
| 3764 | if (EnumConstantDecl *Enumerator |
| 3765 | = dyn_cast<EnumConstantDecl>(DRE->getDecl())) { |
| 3766 | // We look into the AST of the case statement to determine which |
| 3767 | // enumerator was named. Alternatively, we could compute the value of |
| 3768 | // the integral constant expression, then compare it against the |
| 3769 | // values of each enumerator. However, value-based approach would not |
| 3770 | // work as well with C++ templates where enumerators declared within a |
| 3771 | // template are type- and value-dependent. |
| 3772 | EnumeratorsSeen.insert(Enumerator); |
| 3773 | |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3774 | // If this is a qualified-id, keep track of the nested-name-specifier |
| 3775 | // so that we can reproduce it as part of code completion, e.g., |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3776 | // |
| 3777 | // switch (TagD.getKind()) { |
| 3778 | // case TagDecl::TK_enum: |
| 3779 | // break; |
| 3780 | // case XXX |
| 3781 | // |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3782 | // At the XXX, our completions are TagDecl::TK_union, |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3783 | // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union, |
| 3784 | // TK_struct, and TK_class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 3785 | Qualifier = DRE->getQualifier(); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3786 | } |
| 3787 | } |
| 3788 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3789 | if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) { |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3790 | // If there are no prior enumerators in C++, check whether we have to |
| 3791 | // qualify the names of the enumerators that we suggest, because they |
| 3792 | // may not be visible in this scope. |
Douglas Gregor | b223d8c | 2012-02-01 05:02:47 +0000 | [diff] [blame] | 3793 | Qualifier = getRequiredQualification(Context, CurContext, Enum); |
Douglas Gregor | b9d0ef7 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3794 | } |
| 3795 | |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3796 | // Add any enumerators that have not yet been mentioned. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3797 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3798 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3799 | CodeCompletionContext::CCC_Expression); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3800 | Results.EnterNewScope(); |
| 3801 | for (EnumDecl::enumerator_iterator E = Enum->enumerator_begin(), |
| 3802 | EEnd = Enum->enumerator_end(); |
| 3803 | E != EEnd; ++E) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 3804 | if (EnumeratorsSeen.count(*E)) |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3805 | continue; |
| 3806 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 3807 | CodeCompletionResult R(*E, CCP_EnumInCase, Qualifier); |
Douglas Gregor | 5c722c70 | 2011-02-18 23:30:37 +0000 | [diff] [blame] | 3808 | Results.AddResult(R, CurContext, 0, false); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3809 | } |
| 3810 | Results.ExitScope(); |
Douglas Gregor | 2f880e4 | 2010-04-06 20:02:15 +0000 | [diff] [blame] | 3811 | |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 3812 | //We need to make sure we're setting the right context, |
| 3813 | //so only say we include macros if the code completer says we do |
| 3814 | enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other; |
| 3815 | if (CodeCompleter->includeMacros()) { |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 3816 | AddMacroResults(PP, Results, false); |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 3817 | kind = CodeCompletionContext::CCC_OtherWithMacros; |
| 3818 | } |
| 3819 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3820 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 3821 | kind, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3822 | Results.data(),Results.size()); |
Douglas Gregor | 3e1005f | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 3823 | } |
| 3824 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3825 | namespace { |
| 3826 | struct IsBetterOverloadCandidate { |
| 3827 | Sema &S; |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 3828 | SourceLocation Loc; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3829 | |
| 3830 | public: |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 3831 | explicit IsBetterOverloadCandidate(Sema &S, SourceLocation Loc) |
| 3832 | : S(S), Loc(Loc) { } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3833 | |
| 3834 | bool |
| 3835 | operator()(const OverloadCandidate &X, const OverloadCandidate &Y) const { |
John McCall | 120d63c | 2010-08-24 20:38:10 +0000 | [diff] [blame] | 3836 | return isBetterOverloadCandidate(S, X, Y, Loc); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3837 | } |
| 3838 | }; |
| 3839 | } |
| 3840 | |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3841 | static bool anyNullArguments(llvm::ArrayRef<Expr*> Args) { |
| 3842 | if (Args.size() && !Args.data()) |
Douglas Gregor | d28dcd7 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 3843 | return true; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3844 | |
| 3845 | for (unsigned I = 0; I != Args.size(); ++I) |
Douglas Gregor | d28dcd7 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 3846 | if (!Args[I]) |
| 3847 | return true; |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3848 | |
Douglas Gregor | d28dcd7 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 3849 | return false; |
| 3850 | } |
| 3851 | |
Richard Trieu | f81e5a9 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 3852 | void Sema::CodeCompleteCall(Scope *S, Expr *FnIn, |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3853 | llvm::ArrayRef<Expr *> Args) { |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3854 | if (!CodeCompleter) |
| 3855 | return; |
Douglas Gregor | ef96eac | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 3856 | |
| 3857 | // When we're code-completing for a call, we fall back to ordinary |
| 3858 | // name code-completion whenever we can't produce specific |
| 3859 | // results. We may want to revisit this strategy in the future, |
| 3860 | // e.g., by merging the two kinds of results. |
| 3861 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3862 | Expr *Fn = (Expr *)FnIn; |
Douglas Gregor | ef96eac | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 3863 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3864 | // Ignore type-dependent call expressions entirely. |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3865 | if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) || |
| 3866 | Expr::hasAnyTypeDependentArguments(Args)) { |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3867 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3868 | return; |
Douglas Gregor | ef96eac | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 3869 | } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3870 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3871 | // Build an overload candidate set based on the functions we find. |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 3872 | SourceLocation Loc = Fn->getExprLoc(); |
| 3873 | OverloadCandidateSet CandidateSet(Loc); |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3874 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3875 | // FIXME: What if we're calling something that isn't a function declaration? |
| 3876 | // FIXME: What if we're calling a pseudo-destructor? |
| 3877 | // FIXME: What if we're calling a member function? |
| 3878 | |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3879 | typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3880 | SmallVector<ResultCandidate, 8> Results; |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3881 | |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3882 | Expr *NakedFn = Fn->IgnoreParenCasts(); |
| 3883 | if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3884 | AddOverloadedCallCandidates(ULE, Args, CandidateSet, |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3885 | /*PartialOverloading=*/ true); |
| 3886 | else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(NakedFn)) { |
| 3887 | FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl()); |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3888 | if (FDecl) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3889 | if (!getLangOpts().CPlusPlus || |
Douglas Gregor | d28dcd7 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 3890 | !FDecl->getType()->getAs<FunctionProtoType>()) |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3891 | Results.push_back(ResultCandidate(FDecl)); |
| 3892 | else |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 3893 | // FIXME: access? |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3894 | AddOverloadCandidate(FDecl, DeclAccessPair::make(FDecl, AS_none), Args, |
| 3895 | CandidateSet, false, /*PartialOverloading*/true); |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3896 | } |
John McCall | 3b4294e | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 3897 | } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3898 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3899 | QualType ParamType; |
| 3900 | |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3901 | if (!CandidateSet.empty()) { |
| 3902 | // Sort the overload candidate set by placing the best overloads first. |
| 3903 | std::stable_sort(CandidateSet.begin(), CandidateSet.end(), |
John McCall | 5769d61 | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 3904 | IsBetterOverloadCandidate(*this, Loc)); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3905 | |
Douglas Gregor | c026540 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 3906 | // Add the remaining viable overload candidates as code-completion reslults. |
| 3907 | for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(), |
| 3908 | CandEnd = CandidateSet.end(); |
| 3909 | Cand != CandEnd; ++Cand) { |
| 3910 | if (Cand->Viable) |
| 3911 | Results.push_back(ResultCandidate(Cand->Function)); |
| 3912 | } |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3913 | |
| 3914 | // From the viable candidates, try to determine the type of this parameter. |
| 3915 | for (unsigned I = 0, N = Results.size(); I != N; ++I) { |
| 3916 | if (const FunctionType *FType = Results[I].getFunctionType()) |
| 3917 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FType)) |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3918 | if (Args.size() < Proto->getNumArgs()) { |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3919 | if (ParamType.isNull()) |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3920 | ParamType = Proto->getArgType(Args.size()); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3921 | else if (!Context.hasSameUnqualifiedType( |
| 3922 | ParamType.getNonReferenceType(), |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3923 | Proto->getArgType(Args.size()).getNonReferenceType())) { |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3924 | ParamType = QualType(); |
| 3925 | break; |
| 3926 | } |
| 3927 | } |
| 3928 | } |
| 3929 | } else { |
| 3930 | // Try to determine the parameter type from the type of the expression |
| 3931 | // being called. |
| 3932 | QualType FunctionType = Fn->getType(); |
| 3933 | if (const PointerType *Ptr = FunctionType->getAs<PointerType>()) |
| 3934 | FunctionType = Ptr->getPointeeType(); |
| 3935 | else if (const BlockPointerType *BlockPtr |
| 3936 | = FunctionType->getAs<BlockPointerType>()) |
| 3937 | FunctionType = BlockPtr->getPointeeType(); |
| 3938 | else if (const MemberPointerType *MemPtr |
| 3939 | = FunctionType->getAs<MemberPointerType>()) |
| 3940 | FunctionType = MemPtr->getPointeeType(); |
| 3941 | |
| 3942 | if (const FunctionProtoType *Proto |
| 3943 | = FunctionType->getAs<FunctionProtoType>()) { |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3944 | if (Args.size() < Proto->getNumArgs()) |
| 3945 | ParamType = Proto->getArgType(Args.size()); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3946 | } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3947 | } |
Douglas Gregor | ef96eac | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 3948 | |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3949 | if (ParamType.isNull()) |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3950 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3951 | else |
| 3952 | CodeCompleteExpression(S, ParamType); |
| 3953 | |
Douglas Gregor | 2e4c7a5 | 2010-04-06 20:19:47 +0000 | [diff] [blame] | 3954 | if (!Results.empty()) |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 3955 | CodeCompleter->ProcessOverloadCandidates(*this, Args.size(), Results.data(), |
Douglas Gregor | ef96eac | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 3956 | Results.size()); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 3957 | } |
| 3958 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 3959 | void Sema::CodeCompleteInitializer(Scope *S, Decl *D) { |
| 3960 | ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3961 | if (!VD) { |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3962 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3963 | return; |
| 3964 | } |
| 3965 | |
| 3966 | CodeCompleteExpression(S, VD->getType()); |
| 3967 | } |
| 3968 | |
| 3969 | void Sema::CodeCompleteReturn(Scope *S) { |
| 3970 | QualType ResultType; |
| 3971 | if (isa<BlockDecl>(CurContext)) { |
| 3972 | if (BlockScopeInfo *BSI = getCurBlock()) |
| 3973 | ResultType = BSI->ReturnType; |
| 3974 | } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext)) |
| 3975 | ResultType = Function->getResultType(); |
| 3976 | else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext)) |
| 3977 | ResultType = Method->getResultType(); |
| 3978 | |
| 3979 | if (ResultType.isNull()) |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3980 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 3981 | else |
| 3982 | CodeCompleteExpression(S, ResultType); |
| 3983 | } |
| 3984 | |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 3985 | void Sema::CodeCompleteAfterIf(Scope *S) { |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 3986 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3987 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 3988 | mapCodeCompletionContext(*this, PCC_Statement)); |
| 3989 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 3990 | Results.EnterNewScope(); |
| 3991 | |
| 3992 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 3993 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 3994 | CodeCompleter->includeGlobals()); |
| 3995 | |
| 3996 | AddOrdinaryNameResults(PCC_Statement, S, *this, Results); |
| 3997 | |
| 3998 | // "else" block |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3999 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4000 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4001 | Builder.AddTypedTextChunk("else"); |
Douglas Gregor | f11641a | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 4002 | if (Results.includeCodePatterns()) { |
| 4003 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4004 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4005 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 4006 | Builder.AddPlaceholderChunk("statements"); |
| 4007 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 4008 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4009 | } |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4010 | Results.AddResult(Builder.TakeString()); |
| 4011 | |
| 4012 | // "else if" block |
| 4013 | Builder.AddTypedTextChunk("else"); |
| 4014 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4015 | Builder.AddTextChunk("if"); |
| 4016 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4017 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4018 | if (getLangOpts().CPlusPlus) |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4019 | Builder.AddPlaceholderChunk("condition"); |
| 4020 | else |
| 4021 | Builder.AddPlaceholderChunk("expression"); |
| 4022 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | f11641a | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 4023 | if (Results.includeCodePatterns()) { |
| 4024 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4025 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4026 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 4027 | Builder.AddPlaceholderChunk("statements"); |
| 4028 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 4029 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4030 | } |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4031 | Results.AddResult(Builder.TakeString()); |
| 4032 | |
| 4033 | Results.ExitScope(); |
| 4034 | |
| 4035 | if (S->getFnParent()) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4036 | AddPrettyFunctionResults(PP.getLangOpts(), Results); |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4037 | |
| 4038 | if (CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 4039 | AddMacroResults(PP, Results, false); |
Douglas Gregor | d2d8be6 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 4040 | |
| 4041 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4042 | Results.data(),Results.size()); |
| 4043 | } |
| 4044 | |
Richard Trieu | f81e5a9 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 4045 | void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) { |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4046 | if (LHS) |
| 4047 | CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType()); |
| 4048 | else |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4049 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 5ac3bdb | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4050 | } |
| 4051 | |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 4052 | void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS, |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4053 | bool EnteringContext) { |
| 4054 | if (!SS.getScopeRep() || !CodeCompleter) |
| 4055 | return; |
| 4056 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4057 | DeclContext *Ctx = computeDeclContext(SS, EnteringContext); |
| 4058 | if (!Ctx) |
| 4059 | return; |
Douglas Gregor | d1cd31a | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 4060 | |
| 4061 | // Try to instantiate any non-dependent declaration contexts before |
| 4062 | // we look in them. |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 4063 | if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx)) |
Douglas Gregor | d1cd31a | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 4064 | return; |
| 4065 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4066 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4067 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4068 | CodeCompletionContext::CCC_Name); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4069 | Results.EnterNewScope(); |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4070 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4071 | // The "template" keyword can follow "::" in the grammar, but only |
| 4072 | // put it into the grammar if the nested-name-specifier is dependent. |
| 4073 | NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); |
| 4074 | if (!Results.empty() && NNS->isDependent()) |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 4075 | Results.AddResult("template"); |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4076 | |
| 4077 | // Add calls to overridden virtual functions, if there are any. |
| 4078 | // |
| 4079 | // FIXME: This isn't wonderful, because we don't know whether we're actually |
| 4080 | // in a context that permits expressions. This is a general issue with |
| 4081 | // qualified-id completions. |
| 4082 | if (!EnteringContext) |
| 4083 | MaybeAddOverrideCalls(*this, Ctx, Results); |
| 4084 | Results.ExitScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4085 | |
Douglas Gregor | f696152 | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4086 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 4087 | LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer); |
| 4088 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4089 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 430d7a1 | 2011-07-25 17:48:11 +0000 | [diff] [blame] | 4090 | Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4091 | Results.data(),Results.size()); |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4092 | } |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4093 | |
| 4094 | void Sema::CodeCompleteUsing(Scope *S) { |
| 4095 | if (!CodeCompleter) |
| 4096 | return; |
| 4097 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4098 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4099 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4100 | CodeCompletionContext::CCC_PotentiallyQualifiedName, |
| 4101 | &ResultBuilder::IsNestedNameSpecifier); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4102 | Results.EnterNewScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4103 | |
| 4104 | // If we aren't in class scope, we could see the "namespace" keyword. |
| 4105 | if (!S->isClassScope()) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4106 | Results.AddResult(CodeCompletionResult("namespace")); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4107 | |
| 4108 | // After "using", we can see anything that would start a |
| 4109 | // nested-name-specifier. |
Douglas Gregor | 5d2fc40 | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4110 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4111 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 4112 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4113 | Results.ExitScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4114 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4115 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4116 | CodeCompletionContext::CCC_PotentiallyQualifiedName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4117 | Results.data(),Results.size()); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4118 | } |
| 4119 | |
| 4120 | void Sema::CodeCompleteUsingDirective(Scope *S) { |
| 4121 | if (!CodeCompleter) |
| 4122 | return; |
| 4123 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4124 | // After "using namespace", we expect to see a namespace name or namespace |
| 4125 | // alias. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4126 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4127 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4128 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4129 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4130 | Results.EnterNewScope(); |
Douglas Gregor | 5d2fc40 | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4131 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4132 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 4133 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4134 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4135 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4136 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4137 | Results.data(),Results.size()); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4138 | } |
| 4139 | |
| 4140 | void Sema::CodeCompleteNamespaceDecl(Scope *S) { |
| 4141 | if (!CodeCompleter) |
| 4142 | return; |
| 4143 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4144 | DeclContext *Ctx = (DeclContext *)S->getEntity(); |
| 4145 | if (!S->getParent()) |
| 4146 | Ctx = Context.getTranslationUnitDecl(); |
| 4147 | |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4148 | bool SuppressedGlobalResults |
| 4149 | = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx); |
| 4150 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4151 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4152 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4153 | SuppressedGlobalResults |
| 4154 | ? CodeCompletionContext::CCC_Namespace |
| 4155 | : CodeCompletionContext::CCC_Other, |
| 4156 | &ResultBuilder::IsNamespace); |
| 4157 | |
| 4158 | if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) { |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4159 | // We only want to see those namespaces that have already been defined |
| 4160 | // within this scope, because its likely that the user is creating an |
| 4161 | // extended namespace declaration. Keep track of the most recent |
| 4162 | // definition of each namespace. |
| 4163 | std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest; |
| 4164 | for (DeclContext::specific_decl_iterator<NamespaceDecl> |
| 4165 | NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end()); |
| 4166 | NS != NSEnd; ++NS) |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 4167 | OrigToLatest[NS->getOriginalNamespace()] = *NS; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4168 | |
| 4169 | // Add the most recent definition (or extended definition) of each |
| 4170 | // namespace to the list of results. |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4171 | Results.EnterNewScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4172 | for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 4173 | NS = OrigToLatest.begin(), |
| 4174 | NSEnd = OrigToLatest.end(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4175 | NS != NSEnd; ++NS) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 4176 | Results.AddResult(CodeCompletionResult( |
| 4177 | NS->second, Results.getBasePriority(NS->second), 0), |
Douglas Gregor | 608300b | 2010-01-14 16:14:35 +0000 | [diff] [blame] | 4178 | CurContext, 0, false); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4179 | Results.ExitScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4180 | } |
| 4181 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4182 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4183 | Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4184 | Results.data(),Results.size()); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4185 | } |
| 4186 | |
| 4187 | void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) { |
| 4188 | if (!CodeCompleter) |
| 4189 | return; |
| 4190 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4191 | // After "namespace", we expect to see a namespace or alias. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4192 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4193 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4194 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4195 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | 5d2fc40 | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4196 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4197 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 4198 | CodeCompleter->includeGlobals()); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4199 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4200 | Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4201 | Results.data(),Results.size()); |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4202 | } |
| 4203 | |
Douglas Gregor | ed8d322 | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 4204 | void Sema::CodeCompleteOperatorName(Scope *S) { |
| 4205 | if (!CodeCompleter) |
| 4206 | return; |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4207 | |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4208 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4209 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4210 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4211 | CodeCompletionContext::CCC_Type, |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4212 | &ResultBuilder::IsType); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4213 | Results.EnterNewScope(); |
Douglas Gregor | ed8d322 | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 4214 | |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4215 | // Add the names of overloadable operators. |
| 4216 | #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ |
| 4217 | if (std::strcmp(Spelling, "?")) \ |
Douglas Gregor | a447781 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 4218 | Results.AddResult(Result(Spelling)); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4219 | #include "clang/Basic/OperatorKinds.def" |
| 4220 | |
| 4221 | // Add any type names visible from the current scope |
Douglas Gregor | 45bcd43 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 4222 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | 5d2fc40 | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4223 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4224 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 4225 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4226 | |
| 4227 | // Add any type specifiers |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4228 | AddTypeSpecifierResults(getLangOpts(), Results); |
Douglas Gregor | 8e0a0e4 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 4229 | Results.ExitScope(); |
Douglas Gregor | 86d9a52 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4230 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4231 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4232 | CodeCompletionContext::CCC_Type, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4233 | Results.data(),Results.size()); |
Douglas Gregor | ed8d322 | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 4234 | } |
Douglas Gregor | 49f40bd | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 4235 | |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4236 | void Sema::CodeCompleteConstructorInitializer(Decl *ConstructorD, |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 4237 | CXXCtorInitializer** Initializers, |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4238 | unsigned NumInitializers) { |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 4239 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4240 | CXXConstructorDecl *Constructor |
| 4241 | = static_cast<CXXConstructorDecl *>(ConstructorD); |
| 4242 | if (!Constructor) |
| 4243 | return; |
| 4244 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4245 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4246 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4247 | CodeCompletionContext::CCC_PotentiallyQualifiedName); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4248 | Results.EnterNewScope(); |
| 4249 | |
| 4250 | // Fill in any already-initialized fields or base classes. |
| 4251 | llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields; |
| 4252 | llvm::SmallPtrSet<CanQualType, 4> InitializedBases; |
| 4253 | for (unsigned I = 0; I != NumInitializers; ++I) { |
| 4254 | if (Initializers[I]->isBaseInitializer()) |
| 4255 | InitializedBases.insert( |
| 4256 | Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0))); |
| 4257 | else |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 4258 | InitializedFields.insert(cast<FieldDecl>( |
| 4259 | Initializers[I]->getAnyMember())); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4260 | } |
| 4261 | |
| 4262 | // Add completions for base classes. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4263 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4264 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4265 | bool SawLastInitializer = (NumInitializers == 0); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4266 | CXXRecordDecl *ClassDecl = Constructor->getParent(); |
| 4267 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(), |
| 4268 | BaseEnd = ClassDecl->bases_end(); |
| 4269 | Base != BaseEnd; ++Base) { |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4270 | if (!InitializedBases.insert(Context.getCanonicalType(Base->getType()))) { |
| 4271 | SawLastInitializer |
| 4272 | = NumInitializers > 0 && |
| 4273 | Initializers[NumInitializers - 1]->isBaseInitializer() && |
| 4274 | Context.hasSameUnqualifiedType(Base->getType(), |
| 4275 | QualType(Initializers[NumInitializers - 1]->getBaseClass(), 0)); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4276 | continue; |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4277 | } |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4278 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4279 | Builder.AddTypedTextChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 4280 | Results.getAllocator().CopyString( |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4281 | Base->getType().getAsString(Policy))); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4282 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4283 | Builder.AddPlaceholderChunk("args"); |
| 4284 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4285 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4286 | SawLastInitializer? CCP_NextInitializer |
| 4287 | : CCP_MemberDeclaration)); |
| 4288 | SawLastInitializer = false; |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4289 | } |
| 4290 | |
| 4291 | // Add completions for virtual base classes. |
| 4292 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(), |
| 4293 | BaseEnd = ClassDecl->vbases_end(); |
| 4294 | Base != BaseEnd; ++Base) { |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4295 | if (!InitializedBases.insert(Context.getCanonicalType(Base->getType()))) { |
| 4296 | SawLastInitializer |
| 4297 | = NumInitializers > 0 && |
| 4298 | Initializers[NumInitializers - 1]->isBaseInitializer() && |
| 4299 | Context.hasSameUnqualifiedType(Base->getType(), |
| 4300 | QualType(Initializers[NumInitializers - 1]->getBaseClass(), 0)); |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4301 | continue; |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4302 | } |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4303 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4304 | Builder.AddTypedTextChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 4305 | Builder.getAllocator().CopyString( |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4306 | Base->getType().getAsString(Policy))); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4307 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4308 | Builder.AddPlaceholderChunk("args"); |
| 4309 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4310 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4311 | SawLastInitializer? CCP_NextInitializer |
| 4312 | : CCP_MemberDeclaration)); |
| 4313 | SawLastInitializer = false; |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4314 | } |
| 4315 | |
| 4316 | // Add completions for members. |
| 4317 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 4318 | FieldEnd = ClassDecl->field_end(); |
| 4319 | Field != FieldEnd; ++Field) { |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4320 | if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))) { |
| 4321 | SawLastInitializer |
| 4322 | = NumInitializers > 0 && |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 4323 | Initializers[NumInitializers - 1]->isAnyMemberInitializer() && |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 4324 | Initializers[NumInitializers - 1]->getAnyMember() == *Field; |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4325 | continue; |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4326 | } |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4327 | |
| 4328 | if (!Field->getDeclName()) |
| 4329 | continue; |
| 4330 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 4331 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4332 | Field->getIdentifier()->getName())); |
| 4333 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4334 | Builder.AddPlaceholderChunk("args"); |
| 4335 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4336 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4337 | SawLastInitializer? CCP_NextInitializer |
Douglas Gregor | a67e03f | 2010-09-09 21:42:20 +0000 | [diff] [blame] | 4338 | : CCP_MemberDeclaration, |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 4339 | CXCursor_MemberRef, |
| 4340 | CXAvailability_Available, |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 4341 | *Field)); |
Douglas Gregor | 0c431c8 | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 4342 | SawLastInitializer = false; |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4343 | } |
| 4344 | Results.ExitScope(); |
| 4345 | |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4346 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 0133f52 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 4347 | Results.data(), Results.size()); |
| 4348 | } |
| 4349 | |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 4350 | /// \brief Determine whether this scope denotes a namespace. |
| 4351 | static bool isNamespaceScope(Scope *S) { |
| 4352 | DeclContext *DC = static_cast<DeclContext *>(S->getEntity()); |
| 4353 | if (!DC) |
| 4354 | return false; |
| 4355 | |
| 4356 | return DC->isFileContext(); |
| 4357 | } |
| 4358 | |
| 4359 | void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, |
| 4360 | bool AfterAmpersand) { |
| 4361 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4362 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 4363 | CodeCompletionContext::CCC_Other); |
| 4364 | Results.EnterNewScope(); |
| 4365 | |
| 4366 | // Note what has already been captured. |
| 4367 | llvm::SmallPtrSet<IdentifierInfo *, 4> Known; |
| 4368 | bool IncludedThis = false; |
| 4369 | for (SmallVectorImpl<LambdaCapture>::iterator C = Intro.Captures.begin(), |
| 4370 | CEnd = Intro.Captures.end(); |
| 4371 | C != CEnd; ++C) { |
| 4372 | if (C->Kind == LCK_This) { |
| 4373 | IncludedThis = true; |
| 4374 | continue; |
| 4375 | } |
| 4376 | |
| 4377 | Known.insert(C->Id); |
| 4378 | } |
| 4379 | |
| 4380 | // Look for other capturable variables. |
| 4381 | for (; S && !isNamespaceScope(S); S = S->getParent()) { |
| 4382 | for (Scope::decl_iterator D = S->decl_begin(), DEnd = S->decl_end(); |
| 4383 | D != DEnd; ++D) { |
| 4384 | VarDecl *Var = dyn_cast<VarDecl>(*D); |
| 4385 | if (!Var || |
| 4386 | !Var->hasLocalStorage() || |
| 4387 | Var->hasAttr<BlocksAttr>()) |
| 4388 | continue; |
| 4389 | |
| 4390 | if (Known.insert(Var->getIdentifier())) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 4391 | Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration), |
| 4392 | CurContext, 0, false); |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 4393 | } |
| 4394 | } |
| 4395 | |
| 4396 | // Add 'this', if it would be valid. |
| 4397 | if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy) |
| 4398 | addThisCompletion(*this, Results); |
| 4399 | |
| 4400 | Results.ExitScope(); |
| 4401 | |
| 4402 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4403 | Results.data(), Results.size()); |
| 4404 | } |
| 4405 | |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4406 | /// Macro that optionally prepends an "@" to the string literal passed in via |
| 4407 | /// Keyword, depending on whether NeedAt is true or false. |
| 4408 | #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword) |
| 4409 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4410 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4411 | ResultBuilder &Results, |
| 4412 | bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4413 | typedef CodeCompletionResult Result; |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4414 | // Since we have an implementation, we can end it. |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4415 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end"))); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4416 | |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4417 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4418 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4419 | if (LangOpts.ObjC2) { |
| 4420 | // @dynamic |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4421 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4422 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4423 | Builder.AddPlaceholderChunk("property"); |
| 4424 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4425 | |
| 4426 | // @synthesize |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4427 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4428 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4429 | Builder.AddPlaceholderChunk("property"); |
| 4430 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4431 | } |
| 4432 | } |
| 4433 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4434 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4435 | ResultBuilder &Results, |
| 4436 | bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4437 | typedef CodeCompletionResult Result; |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4438 | |
| 4439 | // Since we have an interface or protocol, we can end it. |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4440 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end"))); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4441 | |
| 4442 | if (LangOpts.ObjC2) { |
| 4443 | // @property |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4444 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property"))); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4445 | |
| 4446 | // @required |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4447 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required"))); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4448 | |
| 4449 | // @optional |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4450 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional"))); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4451 | } |
| 4452 | } |
| 4453 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4454 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4455 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4456 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4457 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4458 | |
| 4459 | // @class name ; |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4460 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4461 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4462 | Builder.AddPlaceholderChunk("name"); |
| 4463 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4464 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4465 | if (Results.includeCodePatterns()) { |
| 4466 | // @interface name |
| 4467 | // FIXME: Could introduce the whole pattern, including superclasses and |
| 4468 | // such. |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4469 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4470 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4471 | Builder.AddPlaceholderChunk("class"); |
| 4472 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4473 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4474 | // @protocol name |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4475 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4476 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4477 | Builder.AddPlaceholderChunk("protocol"); |
| 4478 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4479 | |
| 4480 | // @implementation name |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4481 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4482 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4483 | Builder.AddPlaceholderChunk("class"); |
| 4484 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4485 | } |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4486 | |
| 4487 | // @compatibility_alias name |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4488 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4489 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4490 | Builder.AddPlaceholderChunk("alias"); |
| 4491 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4492 | Builder.AddPlaceholderChunk("class"); |
| 4493 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 0689863 | 2013-03-07 23:26:24 +0000 | [diff] [blame] | 4494 | |
| 4495 | if (Results.getSema().getLangOpts().Modules) { |
| 4496 | // @import name |
| 4497 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import")); |
| 4498 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4499 | Builder.AddPlaceholderChunk("module"); |
| 4500 | Results.AddResult(Result(Builder.TakeString())); |
| 4501 | } |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4502 | } |
| 4503 | |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4504 | void Sema::CodeCompleteObjCAtDirective(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4505 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4506 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4507 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c464ae8 | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 4508 | Results.EnterNewScope(); |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4509 | if (isa<ObjCImplDecl>(CurContext)) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4510 | AddObjCImplementationResults(getLangOpts(), Results, false); |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4511 | else if (CurContext->isObjCContainer()) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4512 | AddObjCInterfaceResults(getLangOpts(), Results, false); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4513 | else |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4514 | AddObjCTopLevelResults(Results, false); |
Douglas Gregor | c464ae8 | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 4515 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4516 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4517 | CodeCompletionContext::CCC_Other, |
| 4518 | Results.data(),Results.size()); |
Douglas Gregor | c464ae8 | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 4519 | } |
| 4520 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4521 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4522 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4523 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4524 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4525 | |
| 4526 | // @encode ( type-name ) |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 4527 | const char *EncodeType = "char[]"; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4528 | if (Results.getSema().getLangOpts().CPlusPlus || |
| 4529 | Results.getSema().getLangOpts().ConstStrings) |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4530 | EncodeType = "const char[]"; |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 4531 | Builder.AddResultTypeChunk(EncodeType); |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4532 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4533 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4534 | Builder.AddPlaceholderChunk("type-name"); |
| 4535 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4536 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4537 | |
| 4538 | // @protocol ( protocol-name ) |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 4539 | Builder.AddResultTypeChunk("Protocol *"); |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4540 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4541 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4542 | Builder.AddPlaceholderChunk("protocol-name"); |
| 4543 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4544 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4545 | |
| 4546 | // @selector ( selector ) |
Douglas Gregor | 8ca7208 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 4547 | Builder.AddResultTypeChunk("SEL"); |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4548 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4549 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4550 | Builder.AddPlaceholderChunk("selector"); |
| 4551 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4552 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4553 | |
| 4554 | // @"string" |
| 4555 | Builder.AddResultTypeChunk("NSString *"); |
| 4556 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\"")); |
| 4557 | Builder.AddPlaceholderChunk("string"); |
| 4558 | Builder.AddTextChunk("\""); |
| 4559 | Results.AddResult(Result(Builder.TakeString())); |
| 4560 | |
Douglas Gregor | 7961589 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 4561 | // @[objects, ...] |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4562 | Builder.AddResultTypeChunk("NSArray *"); |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4563 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"[")); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4564 | Builder.AddPlaceholderChunk("objects, ..."); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4565 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 4566 | Results.AddResult(Result(Builder.TakeString())); |
| 4567 | |
Douglas Gregor | 7961589 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 4568 | // @{key : object, ...} |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4569 | Builder.AddResultTypeChunk("NSDictionary *"); |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4570 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{")); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4571 | Builder.AddPlaceholderChunk("key"); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4572 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 4573 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4574 | Builder.AddPlaceholderChunk("object, ..."); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4575 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4576 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4577 | |
Douglas Gregor | 7961589 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 4578 | // @(expression) |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4579 | Builder.AddResultTypeChunk("id"); |
| 4580 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "(")); |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4581 | Builder.AddPlaceholderChunk("expression"); |
Jordan Rose | 1f6e22d | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 4582 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4583 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4584 | } |
| 4585 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4586 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4587 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4588 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4589 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4590 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4591 | if (Results.includeCodePatterns()) { |
| 4592 | // @try { statements } @catch ( declaration ) { statements } @finally |
| 4593 | // { statements } |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4594 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4595 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4596 | Builder.AddPlaceholderChunk("statements"); |
| 4597 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4598 | Builder.AddTextChunk("@catch"); |
| 4599 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4600 | Builder.AddPlaceholderChunk("parameter"); |
| 4601 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4602 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4603 | Builder.AddPlaceholderChunk("statements"); |
| 4604 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4605 | Builder.AddTextChunk("@finally"); |
| 4606 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4607 | Builder.AddPlaceholderChunk("statements"); |
| 4608 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4609 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4610 | } |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4611 | |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4612 | // @throw |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4613 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4614 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4615 | Builder.AddPlaceholderChunk("expression"); |
| 4616 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4617 | |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4618 | if (Results.includeCodePatterns()) { |
| 4619 | // @synchronized ( expression ) { statements } |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4620 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized")); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4621 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4622 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4623 | Builder.AddPlaceholderChunk("expression"); |
| 4624 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4625 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 4626 | Builder.AddPlaceholderChunk("statements"); |
| 4627 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4628 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c8bddde | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 4629 | } |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4630 | } |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4631 | |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4632 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4633 | ResultBuilder &Results, |
| 4634 | bool NeedAt) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4635 | typedef CodeCompletionResult Result; |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4636 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private"))); |
| 4637 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected"))); |
| 4638 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public"))); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4639 | if (LangOpts.ObjC2) |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4640 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package"))); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4641 | } |
| 4642 | |
| 4643 | void Sema::CodeCompleteObjCAtVisibility(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4644 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4645 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4646 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4647 | Results.EnterNewScope(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4648 | AddObjCVisibilityResults(getLangOpts(), Results, false); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4649 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4650 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4651 | CodeCompletionContext::CCC_Other, |
| 4652 | Results.data(),Results.size()); |
Douglas Gregor | c38c3e1 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 4653 | } |
| 4654 | |
| 4655 | void Sema::CodeCompleteObjCAtStatement(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4656 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4657 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4658 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | b6ac245 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 4659 | Results.EnterNewScope(); |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4660 | AddObjCStatementResults(Results, false); |
| 4661 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4662 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4663 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4664 | CodeCompletionContext::CCC_Other, |
| 4665 | Results.data(),Results.size()); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4666 | } |
| 4667 | |
| 4668 | void Sema::CodeCompleteObjCAtExpression(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4669 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4670 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4671 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4672 | Results.EnterNewScope(); |
Douglas Gregor | bca403c | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4673 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4674 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4675 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4676 | CodeCompletionContext::CCC_Other, |
| 4677 | Results.data(),Results.size()); |
Douglas Gregor | 9a0c85e | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 4678 | } |
| 4679 | |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4680 | /// \brief Determine whether the addition of the given flag to an Objective-C |
| 4681 | /// property's attributes will cause a conflict. |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4682 | static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4683 | // Check if we've already added this flag. |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4684 | if (Attributes & NewFlag) |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4685 | return true; |
| 4686 | |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4687 | Attributes |= NewFlag; |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4688 | |
| 4689 | // Check for collisions with "readonly". |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4690 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 4691 | (Attributes & ObjCDeclSpec::DQ_PR_readwrite)) |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4692 | return true; |
| 4693 | |
Jordan Rose | d7403a7 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 4694 | // Check for more than one of { assign, copy, retain, strong, weak }. |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4695 | unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4696 | ObjCDeclSpec::DQ_PR_unsafe_unretained | |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4697 | ObjCDeclSpec::DQ_PR_copy | |
Jordan Rose | d7403a7 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 4698 | ObjCDeclSpec::DQ_PR_retain | |
| 4699 | ObjCDeclSpec::DQ_PR_strong | |
| 4700 | ObjCDeclSpec::DQ_PR_weak); |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4701 | if (AssignCopyRetMask && |
| 4702 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4703 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained && |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4704 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4705 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain && |
Jordan Rose | d7403a7 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 4706 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong && |
| 4707 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak) |
Douglas Gregor | 988358f | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 4708 | return true; |
| 4709 | |
| 4710 | return false; |
| 4711 | } |
| 4712 | |
Douglas Gregor | a93b108 | 2009-11-18 23:08:07 +0000 | [diff] [blame] | 4713 | void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) { |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 4714 | if (!CodeCompleter) |
| 4715 | return; |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4716 | |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4717 | unsigned Attributes = ODS.getPropertyAttributes(); |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 4718 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4719 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4720 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4721 | CodeCompletionContext::CCC_Other); |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 4722 | Results.EnterNewScope(); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4723 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4724 | Results.AddResult(CodeCompletionResult("readonly")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4725 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4726 | Results.AddResult(CodeCompletionResult("assign")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4727 | if (!ObjCPropertyFlagConflicts(Attributes, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4728 | ObjCDeclSpec::DQ_PR_unsafe_unretained)) |
| 4729 | Results.AddResult(CodeCompletionResult("unsafe_unretained")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4730 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4731 | Results.AddResult(CodeCompletionResult("readwrite")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4732 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4733 | Results.AddResult(CodeCompletionResult("retain")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4734 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong)) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4735 | Results.AddResult(CodeCompletionResult("strong")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4736 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4737 | Results.AddResult(CodeCompletionResult("copy")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4738 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic)) |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4739 | Results.AddResult(CodeCompletionResult("nonatomic")); |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4740 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic)) |
Fariborz Jahanian | 27f4523 | 2011-06-11 17:14:27 +0000 | [diff] [blame] | 4741 | Results.AddResult(CodeCompletionResult("atomic")); |
Jordan Rose | d7403a7 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 4742 | |
| 4743 | // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC. |
John McCall | 0a7dd78 | 2012-08-21 02:47:43 +0000 | [diff] [blame] | 4744 | if (getLangOpts().ObjCARCWeak || getLangOpts().getGC() != LangOptions::NonGC) |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4745 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak)) |
Jordan Rose | d7403a7 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 4746 | Results.AddResult(CodeCompletionResult("weak")); |
| 4747 | |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4748 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4749 | CodeCompletionBuilder Setter(Results.getAllocator(), |
| 4750 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4751 | Setter.AddTypedTextChunk("setter"); |
| 4752 | Setter.AddTextChunk(" = "); |
| 4753 | Setter.AddPlaceholderChunk("method"); |
| 4754 | Results.AddResult(CodeCompletionResult(Setter.TakeString())); |
Douglas Gregor | 54f0161 | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 4755 | } |
Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 4756 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4757 | CodeCompletionBuilder Getter(Results.getAllocator(), |
| 4758 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4759 | Getter.AddTypedTextChunk("getter"); |
| 4760 | Getter.AddTextChunk(" = "); |
| 4761 | Getter.AddPlaceholderChunk("method"); |
| 4762 | Results.AddResult(CodeCompletionResult(Getter.TakeString())); |
Douglas Gregor | 54f0161 | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 4763 | } |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 4764 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4765 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4766 | CodeCompletionContext::CCC_Other, |
| 4767 | Results.data(),Results.size()); |
Steve Naroff | ece8e71 | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 4768 | } |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 4769 | |
James Dennett | de23c7e | 2012-06-17 05:33:25 +0000 | [diff] [blame] | 4770 | /// \brief Describes the kind of Objective-C method that we want to find |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4771 | /// via code completion. |
| 4772 | enum ObjCMethodKind { |
Dmitri Gribenko | 49fdccb | 2012-06-08 23:13:42 +0000 | [diff] [blame] | 4773 | MK_Any, ///< Any kind of method, provided it means other specified criteria. |
| 4774 | MK_ZeroArgSelector, ///< Zero-argument (unary) selector. |
| 4775 | MK_OneArgSelector ///< One-argument selector. |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4776 | }; |
| 4777 | |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 4778 | static bool isAcceptableObjCSelector(Selector Sel, |
| 4779 | ObjCMethodKind WantKind, |
| 4780 | IdentifierInfo **SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4781 | unsigned NumSelIdents, |
| 4782 | bool AllowSameLength = true) { |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 4783 | if (NumSelIdents > Sel.getNumArgs()) |
| 4784 | return false; |
| 4785 | |
| 4786 | switch (WantKind) { |
| 4787 | case MK_Any: break; |
| 4788 | case MK_ZeroArgSelector: return Sel.isUnarySelector(); |
| 4789 | case MK_OneArgSelector: return Sel.getNumArgs() == 1; |
| 4790 | } |
| 4791 | |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4792 | if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs()) |
| 4793 | return false; |
| 4794 | |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 4795 | for (unsigned I = 0; I != NumSelIdents; ++I) |
| 4796 | if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I)) |
| 4797 | return false; |
| 4798 | |
| 4799 | return true; |
| 4800 | } |
| 4801 | |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4802 | static bool isAcceptableObjCMethod(ObjCMethodDecl *Method, |
| 4803 | ObjCMethodKind WantKind, |
| 4804 | IdentifierInfo **SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4805 | unsigned NumSelIdents, |
| 4806 | bool AllowSameLength = true) { |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 4807 | return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4808 | NumSelIdents, AllowSameLength); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4809 | } |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 4810 | |
| 4811 | namespace { |
| 4812 | /// \brief A set of selectors, which is used to avoid introducing multiple |
| 4813 | /// completions with the same selector into the result set. |
| 4814 | typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet; |
| 4815 | } |
| 4816 | |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4817 | /// \brief Add all of the Objective-C methods in the given Objective-C |
| 4818 | /// container to the set of results. |
| 4819 | /// |
| 4820 | /// The container will be a class, protocol, category, or implementation of |
| 4821 | /// any of the above. This mether will recurse to include methods from |
| 4822 | /// the superclasses of classes along with their categories, protocols, and |
| 4823 | /// implementations. |
| 4824 | /// |
| 4825 | /// \param Container the container in which we'll look to find methods. |
| 4826 | /// |
James Dennett | a40f792 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 4827 | /// \param WantInstanceMethods Whether to add instance methods (only); if |
| 4828 | /// false, this routine will add factory methods (only). |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4829 | /// |
| 4830 | /// \param CurContext the context in which we're performing the lookup that |
| 4831 | /// finds methods. |
| 4832 | /// |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4833 | /// \param AllowSameLength Whether we allow a method to be added to the list |
| 4834 | /// when it has the same number of parameters as we have selector identifiers. |
| 4835 | /// |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4836 | /// \param Results the structure into which we'll add results. |
| 4837 | static void AddObjCMethods(ObjCContainerDecl *Container, |
| 4838 | bool WantInstanceMethods, |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4839 | ObjCMethodKind WantKind, |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4840 | IdentifierInfo **SelIdents, |
| 4841 | unsigned NumSelIdents, |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4842 | DeclContext *CurContext, |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 4843 | VisitedSelectorSet &Selectors, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4844 | bool AllowSameLength, |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 4845 | ResultBuilder &Results, |
| 4846 | bool InOriginalClass = true) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4847 | typedef CodeCompletionResult Result; |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4848 | Container = getContainerDef(Container); |
Douglas Gregor | 5824b80 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 4849 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container); |
| 4850 | bool isRootClass = IFace && !IFace->getSuperClass(); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4851 | for (ObjCContainerDecl::method_iterator M = Container->meth_begin(), |
| 4852 | MEnd = Container->meth_end(); |
| 4853 | M != MEnd; ++M) { |
Douglas Gregor | 5824b80 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 4854 | // The instance methods on the root class can be messaged via the |
| 4855 | // metaclass. |
| 4856 | if (M->isInstanceMethod() == WantInstanceMethods || |
| 4857 | (isRootClass && !WantInstanceMethods)) { |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4858 | // Check whether the selector identifiers we've been given are a |
| 4859 | // subset of the identifiers for this particular method. |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 4860 | if (!isAcceptableObjCMethod(*M, WantKind, SelIdents, NumSelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4861 | AllowSameLength)) |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4862 | continue; |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4863 | |
David Blaikie | 262bc18 | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 4864 | if (!Selectors.insert(M->getSelector())) |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 4865 | continue; |
| 4866 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 4867 | Result R = Result(*M, Results.getBasePriority(*M), 0); |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4868 | R.StartParameter = NumSelIdents; |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4869 | R.AllParametersAreInformative = (WantKind != MK_Any); |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 4870 | if (!InOriginalClass) |
| 4871 | R.Priority += CCD_InBaseClass; |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 4872 | Results.MaybeAddResult(R, CurContext); |
| 4873 | } |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4874 | } |
| 4875 | |
Douglas Gregor | e396c7b | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 4876 | // Visit the protocols of protocols. |
| 4877 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | 5e2a1ff | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 4878 | if (Protocol->hasDefinition()) { |
| 4879 | const ObjCList<ObjCProtocolDecl> &Protocols |
| 4880 | = Protocol->getReferencedProtocols(); |
| 4881 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 4882 | E = Protocols.end(); |
| 4883 | I != E; ++I) |
| 4884 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, |
| 4885 | NumSelIdents, CurContext, Selectors, AllowSameLength, |
| 4886 | Results, false); |
| 4887 | } |
Douglas Gregor | e396c7b | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 4888 | } |
| 4889 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 4890 | if (!IFace || !IFace->hasDefinition()) |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4891 | return; |
| 4892 | |
| 4893 | // Add methods in protocols. |
Argyrios Kyrtzidis | a5f4441 | 2012-03-13 01:09:41 +0000 | [diff] [blame] | 4894 | for (ObjCInterfaceDecl::protocol_iterator I = IFace->protocol_begin(), |
| 4895 | E = IFace->protocol_end(); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4896 | I != E; ++I) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4897 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, NumSelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4898 | CurContext, Selectors, AllowSameLength, Results, false); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4899 | |
| 4900 | // Add methods in categories. |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 4901 | for (ObjCInterfaceDecl::known_categories_iterator |
| 4902 | Cat = IFace->known_categories_begin(), |
| 4903 | CatEnd = IFace->known_categories_end(); |
| 4904 | Cat != CatEnd; ++Cat) { |
| 4905 | ObjCCategoryDecl *CatDecl = *Cat; |
| 4906 | |
| 4907 | AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4908 | NumSelIdents, CurContext, Selectors, AllowSameLength, |
| 4909 | Results, InOriginalClass); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4910 | |
| 4911 | // Add a categories protocol methods. |
| 4912 | const ObjCList<ObjCProtocolDecl> &Protocols |
| 4913 | = CatDecl->getReferencedProtocols(); |
| 4914 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 4915 | E = Protocols.end(); |
| 4916 | I != E; ++I) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4917 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4918 | NumSelIdents, CurContext, Selectors, AllowSameLength, |
| 4919 | Results, false); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4920 | |
| 4921 | // Add methods in category implementations. |
| 4922 | if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4923 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4924 | NumSelIdents, CurContext, Selectors, AllowSameLength, |
| 4925 | Results, InOriginalClass); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4926 | } |
| 4927 | |
| 4928 | // Add methods in superclass. |
| 4929 | if (IFace->getSuperClass()) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4930 | AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4931 | SelIdents, NumSelIdents, CurContext, Selectors, |
| 4932 | AllowSameLength, Results, false); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4933 | |
| 4934 | // Add methods in our implementation, if any. |
| 4935 | if (ObjCImplementationDecl *Impl = IFace->getImplementation()) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4936 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4937 | NumSelIdents, CurContext, Selectors, AllowSameLength, |
| 4938 | Results, InOriginalClass); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4939 | } |
| 4940 | |
| 4941 | |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4942 | void Sema::CodeCompleteObjCPropertyGetter(Scope *S) { |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4943 | // Try to find the interface where getters might live. |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4944 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4945 | if (!Class) { |
| 4946 | if (ObjCCategoryDecl *Category |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4947 | = dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4948 | Class = Category->getClassInterface(); |
| 4949 | |
| 4950 | if (!Class) |
| 4951 | return; |
| 4952 | } |
| 4953 | |
| 4954 | // Find all of the potential getters. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4955 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4956 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4957 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4958 | Results.EnterNewScope(); |
| 4959 | |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 4960 | VisitedSelectorSet Selectors; |
| 4961 | AddObjCMethods(Class, true, MK_ZeroArgSelector, 0, 0, CurContext, Selectors, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4962 | /*AllowSameLength=*/true, Results); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4963 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4964 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4965 | CodeCompletionContext::CCC_Other, |
| 4966 | Results.data(),Results.size()); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4967 | } |
| 4968 | |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4969 | void Sema::CodeCompleteObjCPropertySetter(Scope *S) { |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4970 | // Try to find the interface where setters might live. |
| 4971 | ObjCInterfaceDecl *Class |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4972 | = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4973 | if (!Class) { |
| 4974 | if (ObjCCategoryDecl *Category |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 4975 | = dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4976 | Class = Category->getClassInterface(); |
| 4977 | |
| 4978 | if (!Class) |
| 4979 | return; |
| 4980 | } |
| 4981 | |
| 4982 | // Find all of the potential getters. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4983 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4984 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4985 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4986 | Results.EnterNewScope(); |
| 4987 | |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 4988 | VisitedSelectorSet Selectors; |
| 4989 | AddObjCMethods(Class, true, MK_OneArgSelector, 0, 0, CurContext, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 4990 | Selectors, /*AllowSameLength=*/true, Results); |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 4991 | |
| 4992 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4993 | HandleCodeCompleteResults(this, CodeCompleter, |
| 4994 | CodeCompletionContext::CCC_Other, |
| 4995 | Results.data(),Results.size()); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 4996 | } |
| 4997 | |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 4998 | void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS, |
| 4999 | bool IsParameter) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5000 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5001 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5002 | CodeCompletionContext::CCC_Type); |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 5003 | Results.EnterNewScope(); |
| 5004 | |
| 5005 | // Add context-sensitive, Objective-C parameter-passing keywords. |
| 5006 | bool AddedInOut = false; |
| 5007 | if ((DS.getObjCDeclQualifier() & |
| 5008 | (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 5009 | Results.AddResult("in"); |
| 5010 | Results.AddResult("inout"); |
| 5011 | AddedInOut = true; |
| 5012 | } |
| 5013 | if ((DS.getObjCDeclQualifier() & |
| 5014 | (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 5015 | Results.AddResult("out"); |
| 5016 | if (!AddedInOut) |
| 5017 | Results.AddResult("inout"); |
| 5018 | } |
| 5019 | if ((DS.getObjCDeclQualifier() & |
| 5020 | (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref | |
| 5021 | ObjCDeclSpec::DQ_Oneway)) == 0) { |
| 5022 | Results.AddResult("bycopy"); |
| 5023 | Results.AddResult("byref"); |
| 5024 | Results.AddResult("oneway"); |
| 5025 | } |
| 5026 | |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5027 | // If we're completing the return type of an Objective-C method and the |
| 5028 | // identifier IBAction refers to a macro, provide a completion item for |
| 5029 | // an action, e.g., |
| 5030 | // IBAction)<#selector#>:(id)sender |
| 5031 | if (DS.getObjCDeclQualifier() == 0 && !IsParameter && |
| 5032 | Context.Idents.get("IBAction").hasMacroDefinition()) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5033 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5034 | Results.getCodeCompletionTUInfo(), |
| 5035 | CCP_CodePattern, CXAvailability_Available); |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5036 | Builder.AddTypedTextChunk("IBAction"); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 5037 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5038 | Builder.AddPlaceholderChunk("selector"); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 5039 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 5040 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5041 | Builder.AddTextChunk("id"); |
Benjamin Kramer | 1eb18af | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 5042 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5043 | Builder.AddTextChunk("sender"); |
| 5044 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 5045 | } |
Douglas Gregor | 31aa577 | 2013-01-30 07:11:43 +0000 | [diff] [blame] | 5046 | |
| 5047 | // If we're completing the return type, provide 'instancetype'. |
| 5048 | if (!IsParameter) { |
| 5049 | Results.AddResult(CodeCompletionResult("instancetype")); |
| 5050 | } |
Douglas Gregor | afc4578 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 5051 | |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 5052 | // Add various builtin type names and specifiers. |
| 5053 | AddOrdinaryNameResults(PCC_Type, S, *this, Results); |
| 5054 | Results.ExitScope(); |
| 5055 | |
| 5056 | // Add the various type names |
| 5057 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 5058 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 5059 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 5060 | CodeCompleter->includeGlobals()); |
| 5061 | |
| 5062 | if (CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 5063 | AddMacroResults(PP, Results, false); |
Douglas Gregor | d32b022 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 5064 | |
| 5065 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5066 | CodeCompletionContext::CCC_Type, |
| 5067 | Results.data(), Results.size()); |
| 5068 | } |
| 5069 | |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 5070 | /// \brief When we have an expression with type "id", we may assume |
| 5071 | /// that it has some more-specific class type based on knowledge of |
| 5072 | /// common uses of Objective-C. This routine returns that class type, |
| 5073 | /// or NULL if no better result could be determined. |
| 5074 | static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) { |
Douglas Gregor | 78edf51 | 2010-09-15 16:23:04 +0000 | [diff] [blame] | 5075 | ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E); |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 5076 | if (!Msg) |
| 5077 | return 0; |
| 5078 | |
| 5079 | Selector Sel = Msg->getSelector(); |
| 5080 | if (Sel.isNull()) |
| 5081 | return 0; |
| 5082 | |
| 5083 | IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0); |
| 5084 | if (!Id) |
| 5085 | return 0; |
| 5086 | |
| 5087 | ObjCMethodDecl *Method = Msg->getMethodDecl(); |
| 5088 | if (!Method) |
| 5089 | return 0; |
| 5090 | |
| 5091 | // Determine the class that we're sending the message to. |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 5092 | ObjCInterfaceDecl *IFace = 0; |
| 5093 | switch (Msg->getReceiverKind()) { |
| 5094 | case ObjCMessageExpr::Class: |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 5095 | if (const ObjCObjectType *ObjType |
| 5096 | = Msg->getClassReceiver()->getAs<ObjCObjectType>()) |
| 5097 | IFace = ObjType->getInterface(); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 5098 | break; |
| 5099 | |
| 5100 | case ObjCMessageExpr::Instance: { |
| 5101 | QualType T = Msg->getInstanceReceiver()->getType(); |
| 5102 | if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>()) |
| 5103 | IFace = Ptr->getInterfaceDecl(); |
| 5104 | break; |
| 5105 | } |
| 5106 | |
| 5107 | case ObjCMessageExpr::SuperInstance: |
| 5108 | case ObjCMessageExpr::SuperClass: |
| 5109 | break; |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 5110 | } |
| 5111 | |
| 5112 | if (!IFace) |
| 5113 | return 0; |
| 5114 | |
| 5115 | ObjCInterfaceDecl *Super = IFace->getSuperClass(); |
| 5116 | if (Method->isInstanceMethod()) |
| 5117 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
| 5118 | .Case("retain", IFace) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5119 | .Case("strong", IFace) |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 5120 | .Case("autorelease", IFace) |
| 5121 | .Case("copy", IFace) |
| 5122 | .Case("copyWithZone", IFace) |
| 5123 | .Case("mutableCopy", IFace) |
| 5124 | .Case("mutableCopyWithZone", IFace) |
| 5125 | .Case("awakeFromCoder", IFace) |
| 5126 | .Case("replacementObjectFromCoder", IFace) |
| 5127 | .Case("class", IFace) |
| 5128 | .Case("classForCoder", IFace) |
| 5129 | .Case("superclass", Super) |
| 5130 | .Default(0); |
| 5131 | |
| 5132 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
| 5133 | .Case("new", IFace) |
| 5134 | .Case("alloc", IFace) |
| 5135 | .Case("allocWithZone", IFace) |
| 5136 | .Case("class", IFace) |
| 5137 | .Case("superclass", Super) |
| 5138 | .Default(0); |
| 5139 | } |
| 5140 | |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5141 | // Add a special completion for a message send to "super", which fills in the |
| 5142 | // most likely case of forwarding all of our arguments to the superclass |
| 5143 | // function. |
| 5144 | /// |
| 5145 | /// \param S The semantic analysis object. |
| 5146 | /// |
Dmitri Gribenko | 70517ca | 2012-08-23 17:58:28 +0000 | [diff] [blame] | 5147 | /// \param NeedSuperKeyword Whether we need to prefix this completion with |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5148 | /// the "super" keyword. Otherwise, we just need to provide the arguments. |
| 5149 | /// |
| 5150 | /// \param SelIdents The identifiers in the selector that have already been |
| 5151 | /// provided as arguments for a send to "super". |
| 5152 | /// |
| 5153 | /// \param NumSelIdents The number of identifiers in \p SelIdents. |
| 5154 | /// |
| 5155 | /// \param Results The set of results to augment. |
| 5156 | /// |
| 5157 | /// \returns the Objective-C method declaration that would be invoked by |
| 5158 | /// this "super" completion. If NULL, no completion was added. |
| 5159 | static ObjCMethodDecl *AddSuperSendCompletion(Sema &S, bool NeedSuperKeyword, |
| 5160 | IdentifierInfo **SelIdents, |
| 5161 | unsigned NumSelIdents, |
| 5162 | ResultBuilder &Results) { |
| 5163 | ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); |
| 5164 | if (!CurMethod) |
| 5165 | return 0; |
| 5166 | |
| 5167 | ObjCInterfaceDecl *Class = CurMethod->getClassInterface(); |
| 5168 | if (!Class) |
| 5169 | return 0; |
| 5170 | |
| 5171 | // Try to find a superclass method with the same selector. |
| 5172 | ObjCMethodDecl *SuperMethod = 0; |
Douglas Gregor | 78bcd91 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 5173 | while ((Class = Class->getSuperClass()) && !SuperMethod) { |
| 5174 | // Check in the class |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5175 | SuperMethod = Class->getMethod(CurMethod->getSelector(), |
| 5176 | CurMethod->isInstanceMethod()); |
| 5177 | |
Douglas Gregor | 78bcd91 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 5178 | // Check in categories or class extensions. |
| 5179 | if (!SuperMethod) { |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 5180 | for (ObjCInterfaceDecl::known_categories_iterator |
| 5181 | Cat = Class->known_categories_begin(), |
| 5182 | CatEnd = Class->known_categories_end(); |
| 5183 | Cat != CatEnd; ++Cat) { |
| 5184 | if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), |
Douglas Gregor | 78bcd91 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 5185 | CurMethod->isInstanceMethod()))) |
| 5186 | break; |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 5187 | } |
Douglas Gregor | 78bcd91 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 5188 | } |
| 5189 | } |
| 5190 | |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5191 | if (!SuperMethod) |
| 5192 | return 0; |
| 5193 | |
| 5194 | // Check whether the superclass method has the same signature. |
| 5195 | if (CurMethod->param_size() != SuperMethod->param_size() || |
| 5196 | CurMethod->isVariadic() != SuperMethod->isVariadic()) |
| 5197 | return 0; |
| 5198 | |
| 5199 | for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(), |
| 5200 | CurPEnd = CurMethod->param_end(), |
| 5201 | SuperP = SuperMethod->param_begin(); |
| 5202 | CurP != CurPEnd; ++CurP, ++SuperP) { |
| 5203 | // Make sure the parameter types are compatible. |
| 5204 | if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(), |
| 5205 | (*SuperP)->getType())) |
| 5206 | return 0; |
| 5207 | |
| 5208 | // Make sure we have a parameter name to forward! |
| 5209 | if (!(*CurP)->getIdentifier()) |
| 5210 | return 0; |
| 5211 | } |
| 5212 | |
| 5213 | // We have a superclass method. Now, form the send-to-super completion. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5214 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5215 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5216 | |
| 5217 | // Give this completion a return type. |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 5218 | AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, |
| 5219 | Builder); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5220 | |
| 5221 | // If we need the "super" keyword, add it (plus some spacing). |
| 5222 | if (NeedSuperKeyword) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5223 | Builder.AddTypedTextChunk("super"); |
| 5224 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5225 | } |
| 5226 | |
| 5227 | Selector Sel = CurMethod->getSelector(); |
| 5228 | if (Sel.isUnarySelector()) { |
| 5229 | if (NeedSuperKeyword) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5230 | Builder.AddTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5231 | Sel.getNameForSlot(0))); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5232 | else |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5233 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5234 | Sel.getNameForSlot(0))); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5235 | } else { |
| 5236 | ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(); |
| 5237 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) { |
| 5238 | if (I > NumSelIdents) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5239 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5240 | |
| 5241 | if (I < NumSelIdents) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5242 | Builder.AddInformativeChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5243 | Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5244 | Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5245 | else if (NeedSuperKeyword || I > NumSelIdents) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5246 | Builder.AddTextChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5247 | Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5248 | Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5249 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5250 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5251 | } else { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5252 | Builder.AddTypedTextChunk( |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5253 | Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5254 | Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5255 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5256 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5257 | } |
| 5258 | } |
| 5259 | } |
| 5260 | |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 5261 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, |
| 5262 | CCP_SuperCompletion)); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5263 | return SuperMethod; |
| 5264 | } |
| 5265 | |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5266 | void Sema::CodeCompleteObjCMessageReceiver(Scope *S) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5267 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5268 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5269 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5270 | CodeCompletionContext::CCC_ObjCMessageReceiver, |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5271 | getLangOpts().CPlusPlus11 |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5272 | ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture |
| 5273 | : &ResultBuilder::IsObjCMessageReceiver); |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5274 | |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5275 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 5276 | Results.EnterNewScope(); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5277 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 5278 | CodeCompleter->includeGlobals()); |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5279 | |
| 5280 | // If we are in an Objective-C method inside a class that has a superclass, |
| 5281 | // add "super" as an option. |
| 5282 | if (ObjCMethodDecl *Method = getCurMethodDecl()) |
| 5283 | if (ObjCInterfaceDecl *Iface = Method->getClassInterface()) |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5284 | if (Iface->getSuperClass()) { |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5285 | Results.AddResult(Result("super")); |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5286 | |
| 5287 | AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, 0, 0, Results); |
| 5288 | } |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5289 | |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 5290 | if (getLangOpts().CPlusPlus11) |
Douglas Gregor | 81f3bff | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5291 | addThisCompletion(*this, Results); |
| 5292 | |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5293 | Results.ExitScope(); |
| 5294 | |
| 5295 | if (CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 5296 | AddMacroResults(PP, Results, false); |
Douglas Gregor | cee9ff1 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 5297 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5298 | Results.data(), Results.size()); |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 5299 | |
| 5300 | } |
| 5301 | |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5302 | void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc, |
| 5303 | IdentifierInfo **SelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5304 | unsigned NumSelIdents, |
| 5305 | bool AtArgumentExpression) { |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5306 | ObjCInterfaceDecl *CDecl = 0; |
| 5307 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 5308 | // Figure out which interface we're in. |
| 5309 | CDecl = CurMethod->getClassInterface(); |
| 5310 | if (!CDecl) |
| 5311 | return; |
| 5312 | |
| 5313 | // Find the superclass of this class. |
| 5314 | CDecl = CDecl->getSuperClass(); |
| 5315 | if (!CDecl) |
| 5316 | return; |
| 5317 | |
| 5318 | if (CurMethod->isInstanceMethod()) { |
| 5319 | // We are inside an instance method, which means that the message |
| 5320 | // send [super ...] is actually calling an instance method on the |
Douglas Gregor | 6b0656a | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 5321 | // current object. |
| 5322 | return CodeCompleteObjCInstanceMessage(S, 0, |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5323 | SelIdents, NumSelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5324 | AtArgumentExpression, |
Douglas Gregor | 6b0656a | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 5325 | CDecl); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5326 | } |
| 5327 | |
| 5328 | // Fall through to send to the superclass in CDecl. |
| 5329 | } else { |
| 5330 | // "super" may be the name of a type or variable. Figure out which |
| 5331 | // it is. |
Argyrios Kyrtzidis | 57f8da5 | 2013-03-14 22:56:43 +0000 | [diff] [blame] | 5332 | IdentifierInfo *Super = getSuperIdentifier(); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5333 | NamedDecl *ND = LookupSingleName(S, Super, SuperLoc, |
| 5334 | LookupOrdinaryName); |
| 5335 | if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) { |
| 5336 | // "super" names an interface. Use it. |
| 5337 | } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) { |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 5338 | if (const ObjCObjectType *Iface |
| 5339 | = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>()) |
| 5340 | CDecl = Iface->getInterface(); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5341 | } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { |
| 5342 | // "super" names an unresolved type; we can't be more specific. |
| 5343 | } else { |
| 5344 | // Assume that "super" names some kind of value and parse that way. |
| 5345 | CXXScopeSpec SS; |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 5346 | SourceLocation TemplateKWLoc; |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5347 | UnqualifiedId id; |
| 5348 | id.setIdentifier(Super, SuperLoc); |
Abramo Bagnara | e4b9276 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 5349 | ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id, |
| 5350 | false, false); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5351 | return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(), |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5352 | SelIdents, NumSelIdents, |
| 5353 | AtArgumentExpression); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5354 | } |
| 5355 | |
| 5356 | // Fall through |
| 5357 | } |
| 5358 | |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5359 | ParsedType Receiver; |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5360 | if (CDecl) |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 5361 | Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl)); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5362 | return CodeCompleteObjCClassMessage(S, Receiver, SelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5363 | NumSelIdents, AtArgumentExpression, |
| 5364 | /*IsSuper=*/true); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5365 | } |
| 5366 | |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 5367 | /// \brief Given a set of code-completion results for the argument of a message |
| 5368 | /// send, determine the preferred type (if any) for that argument expression. |
| 5369 | static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results, |
| 5370 | unsigned NumSelIdents) { |
| 5371 | typedef CodeCompletionResult Result; |
| 5372 | ASTContext &Context = Results.getSema().Context; |
| 5373 | |
| 5374 | QualType PreferredType; |
| 5375 | unsigned BestPriority = CCP_Unlikely * 2; |
| 5376 | Result *ResultsData = Results.data(); |
| 5377 | for (unsigned I = 0, N = Results.size(); I != N; ++I) { |
| 5378 | Result &R = ResultsData[I]; |
| 5379 | if (R.Kind == Result::RK_Declaration && |
| 5380 | isa<ObjCMethodDecl>(R.Declaration)) { |
| 5381 | if (R.Priority <= BestPriority) { |
Dmitri Gribenko | 89cf425 | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 5382 | const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration); |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 5383 | if (NumSelIdents <= Method->param_size()) { |
| 5384 | QualType MyPreferredType = Method->param_begin()[NumSelIdents - 1] |
| 5385 | ->getType(); |
| 5386 | if (R.Priority < BestPriority || PreferredType.isNull()) { |
| 5387 | BestPriority = R.Priority; |
| 5388 | PreferredType = MyPreferredType; |
| 5389 | } else if (!Context.hasSameUnqualifiedType(PreferredType, |
| 5390 | MyPreferredType)) { |
| 5391 | PreferredType = QualType(); |
| 5392 | } |
| 5393 | } |
| 5394 | } |
| 5395 | } |
| 5396 | } |
| 5397 | |
| 5398 | return PreferredType; |
| 5399 | } |
| 5400 | |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5401 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
| 5402 | ParsedType Receiver, |
| 5403 | IdentifierInfo **SelIdents, |
| 5404 | unsigned NumSelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5405 | bool AtArgumentExpression, |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5406 | bool IsSuper, |
| 5407 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5408 | typedef CodeCompletionResult Result; |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 5409 | ObjCInterfaceDecl *CDecl = 0; |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5410 | |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 5411 | // If the given name refers to an interface type, retrieve the |
| 5412 | // corresponding declaration. |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5413 | if (Receiver) { |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5414 | QualType T = SemaRef.GetTypeFromParser(Receiver, 0); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5415 | if (!T.isNull()) |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 5416 | if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>()) |
| 5417 | CDecl = Interface->getInterface(); |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 5418 | } |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5419 | |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 5420 | // Add all of the factory methods in this Objective-C class, its protocols, |
| 5421 | // superclasses, categories, implementation, etc. |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5422 | Results.EnterNewScope(); |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5423 | |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5424 | // If this is a send-to-super, try to add the special "super" send |
| 5425 | // completion. |
| 5426 | if (IsSuper) { |
| 5427 | if (ObjCMethodDecl *SuperMethod |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5428 | = AddSuperSendCompletion(SemaRef, false, SelIdents, NumSelIdents, |
| 5429 | Results)) |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5430 | Results.Ignore(SuperMethod); |
| 5431 | } |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5432 | |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 5433 | // If we're inside an Objective-C method definition, prefer its selector to |
| 5434 | // others. |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5435 | if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl()) |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 5436 | Results.setPreferredSelector(CurMethod->getSelector()); |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5437 | |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 5438 | VisitedSelectorSet Selectors; |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5439 | if (CDecl) |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5440 | AddObjCMethods(CDecl, false, MK_Any, SelIdents, NumSelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 5441 | SemaRef.CurContext, Selectors, AtArgumentExpression, |
| 5442 | Results); |
Douglas Gregor | 2725ca8 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 5443 | else { |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5444 | // We're messaging "id" as a type; provide all class/factory methods. |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5445 | |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5446 | // If we have an external source, load the entire class method |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 5447 | // pool from the AST file. |
Axel Naumann | 0ec56b7 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 5448 | if (SemaRef.getExternalSource()) { |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5449 | for (uint32_t I = 0, |
Axel Naumann | 0ec56b7 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 5450 | N = SemaRef.getExternalSource()->GetNumExternalSelectors(); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 5451 | I != N; ++I) { |
Axel Naumann | 0ec56b7 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 5452 | Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I); |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5453 | if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5454 | continue; |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5455 | |
| 5456 | SemaRef.ReadMethodPool(Sel); |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5457 | } |
| 5458 | } |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5459 | |
| 5460 | for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), |
| 5461 | MEnd = SemaRef.MethodPool.end(); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 5462 | M != MEnd; ++M) { |
| 5463 | for (ObjCMethodList *MethList = &M->second.second; |
| 5464 | MethList && MethList->Method; |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5465 | MethList = MethList->Next) { |
| 5466 | if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents, |
| 5467 | NumSelIdents)) |
| 5468 | continue; |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5469 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5470 | Result R(MethList->Method, Results.getBasePriority(MethList->Method),0); |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5471 | R.StartParameter = NumSelIdents; |
| 5472 | R.AllParametersAreInformative = false; |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5473 | Results.MaybeAddResult(R, SemaRef.CurContext); |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5474 | } |
| 5475 | } |
| 5476 | } |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5477 | |
| 5478 | Results.ExitScope(); |
| 5479 | } |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5480 | |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5481 | void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver, |
| 5482 | IdentifierInfo **SelIdents, |
| 5483 | unsigned NumSelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5484 | bool AtArgumentExpression, |
Douglas Gregor | c7b6d88 | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 5485 | bool IsSuper) { |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5486 | |
| 5487 | QualType T = this->GetTypeFromParser(Receiver); |
| 5488 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5489 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5490 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5491 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage, |
Douglas Gregor | 0a47d69 | 2011-07-26 15:24:30 +0000 | [diff] [blame] | 5492 | T, SelIdents, NumSelIdents)); |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5493 | |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5494 | AddClassMessageCompletions(*this, S, Receiver, SelIdents, NumSelIdents, |
| 5495 | AtArgumentExpression, IsSuper, Results); |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 5496 | |
| 5497 | // If we're actually at the argument expression (rather than prior to the |
| 5498 | // selector), we're actually performing code completion for an expression. |
| 5499 | // Determine whether we have a single, best method. If so, we can |
| 5500 | // code-complete the expression using the corresponding parameter type as |
| 5501 | // our preferred type, improving completion results. |
| 5502 | if (AtArgumentExpression) { |
| 5503 | QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results, |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5504 | NumSelIdents); |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 5505 | if (PreferredType.isNull()) |
| 5506 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 5507 | else |
| 5508 | CodeCompleteExpression(S, PreferredType); |
| 5509 | return; |
| 5510 | } |
| 5511 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5512 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5513 | Results.getCompletionContext(), |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5514 | Results.data(), Results.size()); |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5515 | } |
| 5516 | |
Richard Trieu | f81e5a9 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 5517 | void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver, |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 5518 | IdentifierInfo **SelIdents, |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5519 | unsigned NumSelIdents, |
Douglas Gregor | 70c5ac7 | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 5520 | bool AtArgumentExpression, |
Douglas Gregor | 6b0656a | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 5521 | ObjCInterfaceDecl *Super) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5522 | typedef CodeCompletionResult Result; |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5523 | |
| 5524 | Expr *RecExpr = static_cast<Expr *>(Receiver); |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5525 | |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 5526 | // If necessary, apply function/array conversion to the receiver. |
| 5527 | // C99 6.7.5.3p[7,8]. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 5528 | if (RecExpr) { |
| 5529 | ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr); |
| 5530 | if (Conv.isInvalid()) // conversion failed. bail. |
| 5531 | return; |
| 5532 | RecExpr = Conv.take(); |
| 5533 | } |
Douglas Gregor | 6b0656a | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 5534 | QualType ReceiverType = RecExpr? RecExpr->getType() |
| 5535 | : Super? Context.getObjCObjectPointerType( |
| 5536 | Context.getObjCInterfaceType(Super)) |
| 5537 | : Context.getObjCIdType(); |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5538 | |
Douglas Gregor | da89264 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 5539 | // If we're messaging an expression with type "id" or "Class", check |
| 5540 | // whether we know something special about the receiver that allows |
| 5541 | // us to assume a more-specific receiver type. |
| 5542 | if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) |
| 5543 | if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) { |
| 5544 | if (ReceiverType->isObjCClassType()) |
| 5545 | return CodeCompleteObjCClassMessage(S, |
| 5546 | ParsedType::make(Context.getObjCInterfaceType(IFace)), |
| 5547 | SelIdents, NumSelIdents, |
| 5548 | AtArgumentExpression, Super); |
| 5549 | |
| 5550 | ReceiverType = Context.getObjCObjectPointerType( |
| 5551 | Context.getObjCInterfaceType(IFace)); |
| 5552 | } |
| 5553 | |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 5554 | // Build the set of methods we can see. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5555 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5556 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5557 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage, |
Douglas Gregor | 0a47d69 | 2011-07-26 15:24:30 +0000 | [diff] [blame] | 5558 | ReceiverType, SelIdents, NumSelIdents)); |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5559 | |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 5560 | Results.EnterNewScope(); |
Douglas Gregor | 22f5699 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 5561 | |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5562 | // If this is a send-to-super, try to add the special "super" send |
| 5563 | // completion. |
Douglas Gregor | 6b0656a | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 5564 | if (Super) { |
Douglas Gregor | 03d8aec | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 5565 | if (ObjCMethodDecl *SuperMethod |
| 5566 | = AddSuperSendCompletion(*this, false, SelIdents, NumSelIdents, |
| 5567 | Results)) |
| 5568 | Results.Ignore(SuperMethod); |
| 5569 | } |
| 5570 | |
Douglas Gregor | 265f749 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 5571 | // If we're inside an Objective-C method definition, prefer its selector to |
| 5572 | // others. |
| 5573 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) |
| 5574 | Results.setPreferredSelector(CurMethod->getSelector()); |
Douglas Gregor | 36ecb04 | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 5575 | |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 5576 | // Keep track of the selectors we've already added. |
| 5577 | VisitedSelectorSet Selectors; |
| 5578 | |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 5579 | // Handle messages to Class. This really isn't a message to an instance |
| 5580 | // method, so we treat it the same way we would treat a message send to a |
| 5581 | // class method. |
| 5582 | if (ReceiverType->isObjCClassType() || |
| 5583 | ReceiverType->isObjCQualifiedClassType()) { |
| 5584 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 5585 | if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface()) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 5586 | AddObjCMethods(ClassDecl, false, MK_Any, SelIdents, NumSelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 5587 | CurContext, Selectors, AtArgumentExpression, Results); |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 5588 | } |
| 5589 | } |
| 5590 | // Handle messages to a qualified ID ("id<foo>"). |
| 5591 | else if (const ObjCObjectPointerType *QualID |
| 5592 | = ReceiverType->getAsObjCQualifiedIdType()) { |
| 5593 | // Search protocols for instance methods. |
| 5594 | for (ObjCObjectPointerType::qual_iterator I = QualID->qual_begin(), |
| 5595 | E = QualID->qual_end(); |
| 5596 | I != E; ++I) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 5597 | AddObjCMethods(*I, true, MK_Any, SelIdents, NumSelIdents, CurContext, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 5598 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 5599 | } |
| 5600 | // Handle messages to a pointer to interface type. |
| 5601 | else if (const ObjCObjectPointerType *IFacePtr |
| 5602 | = ReceiverType->getAsObjCInterfacePointerType()) { |
| 5603 | // Search the class, its superclasses, etc., for instance methods. |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 5604 | AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 5605 | NumSelIdents, CurContext, Selectors, AtArgumentExpression, |
| 5606 | Results); |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 5607 | |
| 5608 | // Search protocols for instance methods. |
| 5609 | for (ObjCObjectPointerType::qual_iterator I = IFacePtr->qual_begin(), |
| 5610 | E = IFacePtr->qual_end(); |
| 5611 | I != E; ++I) |
Douglas Gregor | 4ad9685 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 5612 | AddObjCMethods(*I, true, MK_Any, SelIdents, NumSelIdents, CurContext, |
Douglas Gregor | cf54426 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 5613 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 5614 | } |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5615 | // Handle messages to "id". |
| 5616 | else if (ReceiverType->isObjCIdType()) { |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5617 | // We're messaging "id", so provide all instance methods we know |
| 5618 | // about as code-completion results. |
| 5619 | |
| 5620 | // If we have an external source, load the entire class method |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 5621 | // pool from the AST file. |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5622 | if (ExternalSource) { |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 5623 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); |
| 5624 | I != N; ++I) { |
| 5625 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 5626 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5627 | continue; |
| 5628 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 5629 | ReadMethodPool(Sel); |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 5630 | } |
| 5631 | } |
| 5632 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 5633 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 5634 | MEnd = MethodPool.end(); |
| 5635 | M != MEnd; ++M) { |
| 5636 | for (ObjCMethodList *MethList = &M->second.first; |
| 5637 | MethList && MethList->Method; |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5638 | MethList = MethList->Next) { |
| 5639 | if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents, |
| 5640 | NumSelIdents)) |
| 5641 | continue; |
Douglas Gregor | d36adf5 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 5642 | |
| 5643 | if (!Selectors.insert(MethList->Method->getSelector())) |
| 5644 | continue; |
| 5645 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5646 | Result R(MethList->Method, Results.getBasePriority(MethList->Method),0); |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 5647 | R.StartParameter = NumSelIdents; |
| 5648 | R.AllParametersAreInformative = false; |
| 5649 | Results.MaybeAddResult(R, CurContext); |
| 5650 | } |
| 5651 | } |
| 5652 | } |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5653 | Results.ExitScope(); |
Douglas Gregor | b9d7757 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 5654 | |
| 5655 | |
| 5656 | // If we're actually at the argument expression (rather than prior to the |
| 5657 | // selector), we're actually performing code completion for an expression. |
| 5658 | // Determine whether we have a single, best method. If so, we can |
| 5659 | // code-complete the expression using the corresponding parameter type as |
| 5660 | // our preferred type, improving completion results. |
| 5661 | if (AtArgumentExpression) { |
| 5662 | QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results, |
| 5663 | NumSelIdents); |
| 5664 | if (PreferredType.isNull()) |
| 5665 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 5666 | else |
| 5667 | CodeCompleteExpression(S, PreferredType); |
| 5668 | return; |
| 5669 | } |
| 5670 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5671 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | e081a61 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 5672 | Results.getCompletionContext(), |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5673 | Results.data(),Results.size()); |
Steve Naroff | c4df6d2 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 5674 | } |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5675 | |
Douglas Gregor | fb62941 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 5676 | void Sema::CodeCompleteObjCForCollection(Scope *S, |
| 5677 | DeclGroupPtrTy IterationVar) { |
| 5678 | CodeCompleteExpressionData Data; |
| 5679 | Data.ObjCCollection = true; |
| 5680 | |
| 5681 | if (IterationVar.getAsOpaquePtr()) { |
| 5682 | DeclGroupRef DG = IterationVar.getAsVal<DeclGroupRef>(); |
| 5683 | for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) { |
| 5684 | if (*I) |
| 5685 | Data.IgnoreDecls.push_back(*I); |
| 5686 | } |
| 5687 | } |
| 5688 | |
| 5689 | CodeCompleteExpression(S, Data); |
| 5690 | } |
| 5691 | |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5692 | void Sema::CodeCompleteObjCSelector(Scope *S, IdentifierInfo **SelIdents, |
| 5693 | unsigned NumSelIdents) { |
| 5694 | // If we have an external source, load the entire class method |
| 5695 | // pool from the AST file. |
| 5696 | if (ExternalSource) { |
| 5697 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); |
| 5698 | I != N; ++I) { |
| 5699 | Selector Sel = ExternalSource->GetExternalSelector(I); |
| 5700 | if (Sel.isNull() || MethodPool.count(Sel)) |
| 5701 | continue; |
| 5702 | |
| 5703 | ReadMethodPool(Sel); |
| 5704 | } |
| 5705 | } |
| 5706 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5707 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5708 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5709 | CodeCompletionContext::CCC_SelectorName); |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5710 | Results.EnterNewScope(); |
| 5711 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 5712 | MEnd = MethodPool.end(); |
| 5713 | M != MEnd; ++M) { |
| 5714 | |
| 5715 | Selector Sel = M->first; |
| 5716 | if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents, NumSelIdents)) |
| 5717 | continue; |
| 5718 | |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5719 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5720 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5721 | if (Sel.isUnarySelector()) { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5722 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 5723 | Sel.getNameForSlot(0))); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5724 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5725 | continue; |
| 5726 | } |
| 5727 | |
Douglas Gregor | 2d9e21f | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 5728 | std::string Accumulator; |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5729 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) { |
Douglas Gregor | 2d9e21f | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 5730 | if (I == NumSelIdents) { |
| 5731 | if (!Accumulator.empty()) { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5732 | Builder.AddInformativeChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5733 | Accumulator)); |
Douglas Gregor | 2d9e21f | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 5734 | Accumulator.clear(); |
| 5735 | } |
| 5736 | } |
| 5737 | |
Benjamin Kramer | a0651c5 | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 5738 | Accumulator += Sel.getNameForSlot(I); |
Douglas Gregor | 2d9e21f | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 5739 | Accumulator += ':'; |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5740 | } |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 5741 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator)); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5742 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 458433d | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 5743 | } |
| 5744 | Results.ExitScope(); |
| 5745 | |
| 5746 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5747 | CodeCompletionContext::CCC_SelectorName, |
| 5748 | Results.data(), Results.size()); |
| 5749 | } |
| 5750 | |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5751 | /// \brief Add all of the protocol declarations that we find in the given |
| 5752 | /// (translation unit) context. |
| 5753 | static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext, |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 5754 | bool OnlyForwardDeclarations, |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5755 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5756 | typedef CodeCompletionResult Result; |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5757 | |
| 5758 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 5759 | DEnd = Ctx->decls_end(); |
| 5760 | D != DEnd; ++D) { |
| 5761 | // Record any protocols we find. |
| 5762 | if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(*D)) |
Douglas Gregor | 5e2a1ff | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 5763 | if (!OnlyForwardDeclarations || !Proto->hasDefinition()) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5764 | Results.AddResult(Result(Proto, Results.getBasePriority(Proto), 0), |
| 5765 | CurContext, 0, false); |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5766 | } |
| 5767 | } |
| 5768 | |
| 5769 | void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, |
| 5770 | unsigned NumProtocols) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5771 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5772 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5773 | CodeCompletionContext::CCC_ObjCProtocolName); |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5774 | |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 5775 | if (CodeCompleter && CodeCompleter->includeGlobals()) { |
| 5776 | Results.EnterNewScope(); |
| 5777 | |
| 5778 | // Tell the result set to ignore all of the protocols we have |
| 5779 | // already seen. |
| 5780 | // FIXME: This doesn't work when caching code-completion results. |
| 5781 | for (unsigned I = 0; I != NumProtocols; ++I) |
| 5782 | if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first, |
| 5783 | Protocols[I].second)) |
| 5784 | Results.Ignore(Protocol); |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5785 | |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 5786 | // Add all protocols. |
| 5787 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 5788 | Results); |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 5789 | |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 5790 | Results.ExitScope(); |
| 5791 | } |
| 5792 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5793 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5794 | CodeCompletionContext::CCC_ObjCProtocolName, |
| 5795 | Results.data(),Results.size()); |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 5796 | } |
| 5797 | |
| 5798 | void Sema::CodeCompleteObjCProtocolDecl(Scope *) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5799 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5800 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5801 | CodeCompletionContext::CCC_ObjCProtocolName); |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 5802 | |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 5803 | if (CodeCompleter && CodeCompleter->includeGlobals()) { |
| 5804 | Results.EnterNewScope(); |
| 5805 | |
| 5806 | // Add all protocols. |
| 5807 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true, |
| 5808 | Results); |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5809 | |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 5810 | Results.ExitScope(); |
| 5811 | } |
| 5812 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5813 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5814 | CodeCompletionContext::CCC_ObjCProtocolName, |
| 5815 | Results.data(),Results.size()); |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 5816 | } |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5817 | |
| 5818 | /// \brief Add all of the Objective-C interface declarations that we find in |
| 5819 | /// the given (translation unit) context. |
| 5820 | static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext, |
| 5821 | bool OnlyForwardDeclarations, |
| 5822 | bool OnlyUnimplemented, |
| 5823 | ResultBuilder &Results) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5824 | typedef CodeCompletionResult Result; |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5825 | |
| 5826 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 5827 | DEnd = Ctx->decls_end(); |
| 5828 | D != DEnd; ++D) { |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 5829 | // Record any interfaces we find. |
| 5830 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(*D)) |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 5831 | if ((!OnlyForwardDeclarations || !Class->hasDefinition()) && |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 5832 | (!OnlyUnimplemented || !Class->getImplementation())) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5833 | Results.AddResult(Result(Class, Results.getBasePriority(Class), 0), |
| 5834 | CurContext, 0, false); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5835 | } |
| 5836 | } |
| 5837 | |
| 5838 | void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5839 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5840 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5841 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5842 | Results.EnterNewScope(); |
| 5843 | |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5844 | if (CodeCompleter->includeGlobals()) { |
| 5845 | // Add all classes. |
| 5846 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 5847 | false, Results); |
| 5848 | } |
| 5849 | |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5850 | Results.ExitScope(); |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5851 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5852 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5853 | CodeCompletionContext::CCC_ObjCInterfaceName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5854 | Results.data(),Results.size()); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5855 | } |
| 5856 | |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5857 | void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName, |
| 5858 | SourceLocation ClassNameLoc) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5859 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5860 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5861 | CodeCompletionContext::CCC_ObjCInterfaceName); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5862 | Results.EnterNewScope(); |
| 5863 | |
| 5864 | // Make sure that we ignore the class we're currently defining. |
| 5865 | NamedDecl *CurClass |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5866 | = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5867 | if (CurClass && isa<ObjCInterfaceDecl>(CurClass)) |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5868 | Results.Ignore(CurClass); |
| 5869 | |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5870 | if (CodeCompleter->includeGlobals()) { |
| 5871 | // Add all classes. |
| 5872 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 5873 | false, Results); |
| 5874 | } |
| 5875 | |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5876 | Results.ExitScope(); |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5877 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5878 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5879 | CodeCompletionContext::CCC_ObjCInterfaceName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5880 | Results.data(),Results.size()); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5881 | } |
| 5882 | |
| 5883 | void Sema::CodeCompleteObjCImplementationDecl(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5884 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5885 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5886 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5887 | Results.EnterNewScope(); |
| 5888 | |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5889 | if (CodeCompleter->includeGlobals()) { |
| 5890 | // Add all unimplemented classes. |
| 5891 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 5892 | true, Results); |
| 5893 | } |
| 5894 | |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5895 | Results.ExitScope(); |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5896 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5897 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 0f91c8c | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 5898 | CodeCompletionContext::CCC_ObjCInterfaceName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5899 | Results.data(),Results.size()); |
Douglas Gregor | 3b49aca | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 5900 | } |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5901 | |
| 5902 | void Sema::CodeCompleteObjCInterfaceCategory(Scope *S, |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5903 | IdentifierInfo *ClassName, |
| 5904 | SourceLocation ClassNameLoc) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5905 | typedef CodeCompletionResult Result; |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5906 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5907 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5908 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5909 | CodeCompletionContext::CCC_ObjCCategoryName); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5910 | |
| 5911 | // Ignore any categories we find that have already been implemented by this |
| 5912 | // interface. |
| 5913 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
| 5914 | NamedDecl *CurClass |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5915 | = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 5916 | if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){ |
| 5917 | for (ObjCInterfaceDecl::visible_categories_iterator |
| 5918 | Cat = Class->visible_categories_begin(), |
| 5919 | CatEnd = Class->visible_categories_end(); |
| 5920 | Cat != CatEnd; ++Cat) { |
| 5921 | CategoryNames.insert(Cat->getIdentifier()); |
| 5922 | } |
| 5923 | } |
| 5924 | |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5925 | // Add all of the categories we know about. |
| 5926 | Results.EnterNewScope(); |
| 5927 | TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); |
| 5928 | for (DeclContext::decl_iterator D = TU->decls_begin(), |
| 5929 | DEnd = TU->decls_end(); |
| 5930 | D != DEnd; ++D) |
| 5931 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(*D)) |
| 5932 | if (CategoryNames.insert(Category->getIdentifier())) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5933 | Results.AddResult(Result(Category, Results.getBasePriority(Category),0), |
| 5934 | CurContext, 0, false); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5935 | Results.ExitScope(); |
| 5936 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5937 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5938 | CodeCompletionContext::CCC_ObjCCategoryName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5939 | Results.data(),Results.size()); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5940 | } |
| 5941 | |
| 5942 | void Sema::CodeCompleteObjCImplementationCategory(Scope *S, |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5943 | IdentifierInfo *ClassName, |
| 5944 | SourceLocation ClassNameLoc) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5945 | typedef CodeCompletionResult Result; |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5946 | |
| 5947 | // Find the corresponding interface. If we couldn't find the interface, the |
| 5948 | // program itself is ill-formed. However, we'll try to be helpful still by |
| 5949 | // providing the list of all of the categories we know about. |
| 5950 | NamedDecl *CurClass |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5951 | = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5952 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass); |
| 5953 | if (!Class) |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 5954 | return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5955 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5956 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5957 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5958 | CodeCompletionContext::CCC_ObjCCategoryName); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5959 | |
| 5960 | // Add all of the categories that have have corresponding interface |
| 5961 | // declarations in this class and any of its superclasses, except for |
| 5962 | // already-implemented categories in the class itself. |
| 5963 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
| 5964 | Results.EnterNewScope(); |
| 5965 | bool IgnoreImplemented = true; |
| 5966 | while (Class) { |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 5967 | for (ObjCInterfaceDecl::visible_categories_iterator |
| 5968 | Cat = Class->visible_categories_begin(), |
| 5969 | CatEnd = Class->visible_categories_end(); |
| 5970 | Cat != CatEnd; ++Cat) { |
| 5971 | if ((!IgnoreImplemented || !Cat->getImplementation()) && |
| 5972 | CategoryNames.insert(Cat->getIdentifier())) |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5973 | Results.AddResult(Result(*Cat, Results.getBasePriority(*Cat), 0), |
| 5974 | CurContext, 0, false); |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 5975 | } |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5976 | |
| 5977 | Class = Class->getSuperClass(); |
| 5978 | IgnoreImplemented = false; |
| 5979 | } |
| 5980 | Results.ExitScope(); |
| 5981 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5982 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 3da626b | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5983 | CodeCompletionContext::CCC_ObjCCategoryName, |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5984 | Results.data(),Results.size()); |
Douglas Gregor | 33ced0b | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 5985 | } |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 5986 | |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5987 | void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5988 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5989 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5990 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 5991 | |
| 5992 | // Figure out where this @synthesize lives. |
| 5993 | ObjCContainerDecl *Container |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5994 | = dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 5995 | if (!Container || |
| 5996 | (!isa<ObjCImplementationDecl>(Container) && |
| 5997 | !isa<ObjCCategoryImplDecl>(Container))) |
| 5998 | return; |
| 5999 | |
| 6000 | // Ignore any properties that have already been implemented. |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6001 | Container = getContainerDef(Container); |
| 6002 | for (DeclContext::decl_iterator D = Container->decls_begin(), |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6003 | DEnd = Container->decls_end(); |
| 6004 | D != DEnd; ++D) |
| 6005 | if (ObjCPropertyImplDecl *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(*D)) |
| 6006 | Results.Ignore(PropertyImpl->getPropertyDecl()); |
| 6007 | |
| 6008 | // Add any properties that we find. |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 6009 | AddedPropertiesSet AddedProperties; |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6010 | Results.EnterNewScope(); |
| 6011 | if (ObjCImplementationDecl *ClassImpl |
| 6012 | = dyn_cast<ObjCImplementationDecl>(Container)) |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 6013 | AddObjCProperties(ClassImpl->getClassInterface(), false, |
| 6014 | /*AllowNullaryMethods=*/false, CurContext, |
Douglas Gregor | 7344921 | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 6015 | AddedProperties, Results); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6016 | else |
| 6017 | AddObjCProperties(cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(), |
Douglas Gregor | 4b81cde | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 6018 | false, /*AllowNullaryMethods=*/false, CurContext, |
| 6019 | AddedProperties, Results); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6020 | Results.ExitScope(); |
| 6021 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 6022 | HandleCodeCompleteResults(this, CodeCompleter, |
| 6023 | CodeCompletionContext::CCC_Other, |
| 6024 | Results.data(),Results.size()); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6025 | } |
| 6026 | |
| 6027 | void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S, |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6028 | IdentifierInfo *PropertyName) { |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6029 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6030 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6031 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6032 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6033 | |
| 6034 | // Figure out where this @synthesize lives. |
| 6035 | ObjCContainerDecl *Container |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6036 | = dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6037 | if (!Container || |
| 6038 | (!isa<ObjCImplementationDecl>(Container) && |
| 6039 | !isa<ObjCCategoryImplDecl>(Container))) |
| 6040 | return; |
| 6041 | |
| 6042 | // Figure out which interface we're looking into. |
| 6043 | ObjCInterfaceDecl *Class = 0; |
| 6044 | if (ObjCImplementationDecl *ClassImpl |
| 6045 | = dyn_cast<ObjCImplementationDecl>(Container)) |
| 6046 | Class = ClassImpl->getClassInterface(); |
| 6047 | else |
| 6048 | Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl() |
| 6049 | ->getClassInterface(); |
| 6050 | |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6051 | // Determine the type of the property we're synthesizing. |
| 6052 | QualType PropertyType = Context.getObjCIdType(); |
| 6053 | if (Class) { |
| 6054 | if (ObjCPropertyDecl *Property |
| 6055 | = Class->FindPropertyDeclaration(PropertyName)) { |
| 6056 | PropertyType |
| 6057 | = Property->getType().getNonReferenceType().getUnqualifiedType(); |
| 6058 | |
| 6059 | // Give preference to ivars |
| 6060 | Results.setPreferredType(PropertyType); |
| 6061 | } |
| 6062 | } |
| 6063 | |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6064 | // Add all of the instance variables in this class and its superclasses. |
| 6065 | Results.EnterNewScope(); |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6066 | bool SawSimilarlyNamedIvar = false; |
| 6067 | std::string NameWithPrefix; |
| 6068 | NameWithPrefix += '_'; |
Benjamin Kramer | a0651c5 | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 6069 | NameWithPrefix += PropertyName->getName(); |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6070 | std::string NameWithSuffix = PropertyName->getName().str(); |
| 6071 | NameWithSuffix += '_'; |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6072 | for(; Class; Class = Class->getSuperClass()) { |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6073 | for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; |
| 6074 | Ivar = Ivar->getNextIvar()) { |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 6075 | Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), 0), |
| 6076 | CurContext, 0, false); |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6077 | |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6078 | // Determine whether we've seen an ivar with a name similar to the |
| 6079 | // property. |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6080 | if ((PropertyName == Ivar->getIdentifier() || |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6081 | NameWithPrefix == Ivar->getName() || |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6082 | NameWithSuffix == Ivar->getName())) { |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6083 | SawSimilarlyNamedIvar = true; |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6084 | |
| 6085 | // Reduce the priority of this result by one, to give it a slight |
| 6086 | // advantage over other results whose names don't match so closely. |
| 6087 | if (Results.size() && |
| 6088 | Results.data()[Results.size() - 1].Kind |
| 6089 | == CodeCompletionResult::RK_Declaration && |
| 6090 | Results.data()[Results.size() - 1].Declaration == Ivar) |
| 6091 | Results.data()[Results.size() - 1].Priority--; |
| 6092 | } |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6093 | } |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6094 | } |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6095 | |
| 6096 | if (!SawSimilarlyNamedIvar) { |
| 6097 | // Create ivar result _propName, that the user can use to synthesize |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6098 | // an ivar of the appropriate type. |
| 6099 | unsigned Priority = CCP_MemberDeclaration + 1; |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6100 | typedef CodeCompletionResult Result; |
| 6101 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6102 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(), |
| 6103 | Priority,CXAvailability_Available); |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6104 | |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6105 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Douglas Gregor | e842605 | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 6106 | Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6107 | Policy, Allocator)); |
Douglas Gregor | aa490cb | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 6108 | Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix)); |
| 6109 | Results.AddResult(Result(Builder.TakeString(), Priority, |
| 6110 | CXCursor_ObjCIvarDecl)); |
| 6111 | } |
| 6112 | |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6113 | Results.ExitScope(); |
| 6114 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 6115 | HandleCodeCompleteResults(this, CodeCompleter, |
| 6116 | CodeCompletionContext::CCC_Other, |
| 6117 | Results.data(),Results.size()); |
Douglas Gregor | 322328b | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 6118 | } |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6119 | |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6120 | // Mapping from selectors to the methods that implement that selector, along |
| 6121 | // with the "in original class" flag. |
| 6122 | typedef llvm::DenseMap<Selector, std::pair<ObjCMethodDecl *, bool> > |
| 6123 | KnownMethodsMap; |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6124 | |
| 6125 | /// \brief Find all of the methods that reside in the given container |
| 6126 | /// (and its superclasses, protocols, etc.) that meet the given |
| 6127 | /// criteria. Insert those methods into the map of known methods, |
| 6128 | /// indexed by selector so they can be easily found. |
| 6129 | static void FindImplementableMethods(ASTContext &Context, |
| 6130 | ObjCContainerDecl *Container, |
| 6131 | bool WantInstanceMethods, |
| 6132 | QualType ReturnType, |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6133 | KnownMethodsMap &KnownMethods, |
| 6134 | bool InOriginalClass = true) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6135 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) { |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6136 | // Make sure we have a definition; that's what we'll walk. |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 6137 | if (!IFace->hasDefinition()) |
| 6138 | return; |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6139 | |
| 6140 | IFace = IFace->getDefinition(); |
| 6141 | Container = IFace; |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 6142 | |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6143 | const ObjCList<ObjCProtocolDecl> &Protocols |
| 6144 | = IFace->getReferencedProtocols(); |
| 6145 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6146 | E = Protocols.end(); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6147 | I != E; ++I) |
| 6148 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6149 | KnownMethods, InOriginalClass); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6150 | |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6151 | // Add methods from any class extensions and categories. |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6152 | for (ObjCInterfaceDecl::visible_categories_iterator |
| 6153 | Cat = IFace->visible_categories_begin(), |
| 6154 | CatEnd = IFace->visible_categories_end(); |
| 6155 | Cat != CatEnd; ++Cat) { |
| 6156 | FindImplementableMethods(Context, *Cat, WantInstanceMethods, ReturnType, |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6157 | KnownMethods, false); |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6158 | } |
| 6159 | |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6160 | // Visit the superclass. |
| 6161 | if (IFace->getSuperClass()) |
| 6162 | FindImplementableMethods(Context, IFace->getSuperClass(), |
| 6163 | WantInstanceMethods, ReturnType, |
| 6164 | KnownMethods, false); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6165 | } |
| 6166 | |
| 6167 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) { |
| 6168 | // Recurse into protocols. |
| 6169 | const ObjCList<ObjCProtocolDecl> &Protocols |
| 6170 | = Category->getReferencedProtocols(); |
| 6171 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6172 | E = Protocols.end(); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6173 | I != E; ++I) |
| 6174 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6175 | KnownMethods, InOriginalClass); |
| 6176 | |
| 6177 | // If this category is the original class, jump to the interface. |
| 6178 | if (InOriginalClass && Category->getClassInterface()) |
| 6179 | FindImplementableMethods(Context, Category->getClassInterface(), |
| 6180 | WantInstanceMethods, ReturnType, KnownMethods, |
| 6181 | false); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6182 | } |
| 6183 | |
| 6184 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | b92a408 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6185 | // Make sure we have a definition; that's what we'll walk. |
| 6186 | if (!Protocol->hasDefinition()) |
| 6187 | return; |
| 6188 | Protocol = Protocol->getDefinition(); |
| 6189 | Container = Protocol; |
| 6190 | |
| 6191 | // Recurse into protocols. |
| 6192 | const ObjCList<ObjCProtocolDecl> &Protocols |
| 6193 | = Protocol->getReferencedProtocols(); |
| 6194 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 6195 | E = Protocols.end(); |
| 6196 | I != E; ++I) |
| 6197 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
| 6198 | KnownMethods, false); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6199 | } |
| 6200 | |
| 6201 | // Add methods in this container. This operation occurs last because |
| 6202 | // we want the methods from this container to override any methods |
| 6203 | // we've previously seen with the same selector. |
| 6204 | for (ObjCContainerDecl::method_iterator M = Container->meth_begin(), |
| 6205 | MEnd = Container->meth_end(); |
| 6206 | M != MEnd; ++M) { |
David Blaikie | 262bc18 | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 6207 | if (M->isInstanceMethod() == WantInstanceMethods) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6208 | if (!ReturnType.isNull() && |
David Blaikie | 262bc18 | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 6209 | !Context.hasSameUnqualifiedType(ReturnType, M->getResultType())) |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6210 | continue; |
| 6211 | |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 6212 | KnownMethods[M->getSelector()] = std::make_pair(*M, InOriginalClass); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6213 | } |
| 6214 | } |
| 6215 | } |
| 6216 | |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6217 | /// \brief Add the parenthesized return or parameter type chunk to a code |
| 6218 | /// completion string. |
| 6219 | static void AddObjCPassingTypeChunk(QualType Type, |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6220 | unsigned ObjCDeclQuals, |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6221 | ASTContext &Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6222 | const PrintingPolicy &Policy, |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6223 | CodeCompletionBuilder &Builder) { |
| 6224 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6225 | std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals); |
| 6226 | if (!Quals.empty()) |
| 6227 | Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals)); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6228 | Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy, |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6229 | Builder.getAllocator())); |
| 6230 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6231 | } |
| 6232 | |
| 6233 | /// \brief Determine whether the given class is or inherits from a class by |
| 6234 | /// the given name. |
| 6235 | static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6236 | StringRef Name) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6237 | if (!Class) |
| 6238 | return false; |
| 6239 | |
| 6240 | if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name) |
| 6241 | return true; |
| 6242 | |
| 6243 | return InheritsFromClassNamed(Class->getSuperClass(), Name); |
| 6244 | } |
| 6245 | |
| 6246 | /// \brief Add code completions for Objective-C Key-Value Coding (KVC) and |
| 6247 | /// Key-Value Observing (KVO). |
| 6248 | static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, |
| 6249 | bool IsInstanceMethod, |
| 6250 | QualType ReturnType, |
| 6251 | ASTContext &Context, |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6252 | VisitedSelectorSet &KnownSelectors, |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6253 | ResultBuilder &Results) { |
| 6254 | IdentifierInfo *PropName = Property->getIdentifier(); |
| 6255 | if (!PropName || PropName->getLength() == 0) |
| 6256 | return; |
| 6257 | |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6258 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
| 6259 | |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6260 | // Builder that will create each code completion. |
| 6261 | typedef CodeCompletionResult Result; |
| 6262 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6263 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6264 | |
| 6265 | // The selector table. |
| 6266 | SelectorTable &Selectors = Context.Selectors; |
| 6267 | |
| 6268 | // The property name, copied into the code completion allocation region |
| 6269 | // on demand. |
| 6270 | struct KeyHolder { |
| 6271 | CodeCompletionAllocator &Allocator; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6272 | StringRef Key; |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6273 | const char *CopiedKey; |
| 6274 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6275 | KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key) |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6276 | : Allocator(Allocator), Key(Key), CopiedKey(0) { } |
| 6277 | |
| 6278 | operator const char *() { |
| 6279 | if (CopiedKey) |
| 6280 | return CopiedKey; |
| 6281 | |
| 6282 | return CopiedKey = Allocator.CopyString(Key); |
| 6283 | } |
| 6284 | } Key(Allocator, PropName->getName()); |
| 6285 | |
| 6286 | // The uppercased name of the property name. |
| 6287 | std::string UpperKey = PropName->getName(); |
| 6288 | if (!UpperKey.empty()) |
Jordan Rose | 223f0ff | 2013-02-09 10:09:43 +0000 | [diff] [blame] | 6289 | UpperKey[0] = toUppercase(UpperKey[0]); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6290 | |
| 6291 | bool ReturnTypeMatchesProperty = ReturnType.isNull() || |
| 6292 | Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(), |
| 6293 | Property->getType()); |
| 6294 | bool ReturnTypeMatchesVoid |
| 6295 | = ReturnType.isNull() || ReturnType->isVoidType(); |
| 6296 | |
| 6297 | // Add the normal accessor -(type)key. |
| 6298 | if (IsInstanceMethod && |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6299 | KnownSelectors.insert(Selectors.getNullarySelector(PropName)) && |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6300 | ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) { |
| 6301 | if (ReturnType.isNull()) |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6302 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, |
| 6303 | Context, Policy, Builder); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6304 | |
| 6305 | Builder.AddTypedTextChunk(Key); |
| 6306 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
| 6307 | CXCursor_ObjCInstanceMethodDecl)); |
| 6308 | } |
| 6309 | |
| 6310 | // If we have an integral or boolean property (or the user has provided |
| 6311 | // an integral or boolean return type), add the accessor -(type)isKey. |
| 6312 | if (IsInstanceMethod && |
| 6313 | ((!ReturnType.isNull() && |
| 6314 | (ReturnType->isIntegerType() || ReturnType->isBooleanType())) || |
| 6315 | (ReturnType.isNull() && |
| 6316 | (Property->getType()->isIntegerType() || |
| 6317 | Property->getType()->isBooleanType())))) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6318 | std::string SelectorName = (Twine("is") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6319 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6320 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6321 | if (ReturnType.isNull()) { |
| 6322 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6323 | Builder.AddTextChunk("BOOL"); |
| 6324 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6325 | } |
| 6326 | |
| 6327 | Builder.AddTypedTextChunk( |
| 6328 | Allocator.CopyString(SelectorId->getName())); |
| 6329 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
| 6330 | CXCursor_ObjCInstanceMethodDecl)); |
| 6331 | } |
| 6332 | } |
| 6333 | |
| 6334 | // Add the normal mutator. |
| 6335 | if (IsInstanceMethod && ReturnTypeMatchesVoid && |
| 6336 | !Property->getSetterMethodDecl()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6337 | std::string SelectorName = (Twine("set") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6338 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6339 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6340 | if (ReturnType.isNull()) { |
| 6341 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6342 | Builder.AddTextChunk("void"); |
| 6343 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6344 | } |
| 6345 | |
| 6346 | Builder.AddTypedTextChunk( |
| 6347 | Allocator.CopyString(SelectorId->getName())); |
| 6348 | Builder.AddTypedTextChunk(":"); |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6349 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, |
| 6350 | Context, Policy, Builder); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6351 | Builder.AddTextChunk(Key); |
| 6352 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
| 6353 | CXCursor_ObjCInstanceMethodDecl)); |
| 6354 | } |
| 6355 | } |
| 6356 | |
| 6357 | // Indexed and unordered accessors |
| 6358 | unsigned IndexedGetterPriority = CCP_CodePattern; |
| 6359 | unsigned IndexedSetterPriority = CCP_CodePattern; |
| 6360 | unsigned UnorderedGetterPriority = CCP_CodePattern; |
| 6361 | unsigned UnorderedSetterPriority = CCP_CodePattern; |
| 6362 | if (const ObjCObjectPointerType *ObjCPointer |
| 6363 | = Property->getType()->getAs<ObjCObjectPointerType>()) { |
| 6364 | if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) { |
| 6365 | // If this interface type is not provably derived from a known |
| 6366 | // collection, penalize the corresponding completions. |
| 6367 | if (!InheritsFromClassNamed(IFace, "NSMutableArray")) { |
| 6368 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 6369 | if (!InheritsFromClassNamed(IFace, "NSArray")) |
| 6370 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 6371 | } |
| 6372 | |
| 6373 | if (!InheritsFromClassNamed(IFace, "NSMutableSet")) { |
| 6374 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 6375 | if (!InheritsFromClassNamed(IFace, "NSSet")) |
| 6376 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 6377 | } |
| 6378 | } |
| 6379 | } else { |
| 6380 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 6381 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 6382 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 6383 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 6384 | } |
| 6385 | |
| 6386 | // Add -(NSUInteger)countOf<key> |
| 6387 | if (IsInstanceMethod && |
| 6388 | (ReturnType.isNull() || ReturnType->isIntegerType())) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6389 | std::string SelectorName = (Twine("countOf") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6390 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6391 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6392 | if (ReturnType.isNull()) { |
| 6393 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6394 | Builder.AddTextChunk("NSUInteger"); |
| 6395 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6396 | } |
| 6397 | |
| 6398 | Builder.AddTypedTextChunk( |
| 6399 | Allocator.CopyString(SelectorId->getName())); |
| 6400 | Results.AddResult(Result(Builder.TakeString(), |
| 6401 | std::min(IndexedGetterPriority, |
| 6402 | UnorderedGetterPriority), |
| 6403 | CXCursor_ObjCInstanceMethodDecl)); |
| 6404 | } |
| 6405 | } |
| 6406 | |
| 6407 | // Indexed getters |
| 6408 | // Add -(id)objectInKeyAtIndex:(NSUInteger)index |
| 6409 | if (IsInstanceMethod && |
| 6410 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6411 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6412 | = (Twine("objectIn") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6413 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6414 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6415 | if (ReturnType.isNull()) { |
| 6416 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6417 | Builder.AddTextChunk("id"); |
| 6418 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6419 | } |
| 6420 | |
| 6421 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6422 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6423 | Builder.AddTextChunk("NSUInteger"); |
| 6424 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6425 | Builder.AddTextChunk("index"); |
| 6426 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
| 6427 | CXCursor_ObjCInstanceMethodDecl)); |
| 6428 | } |
| 6429 | } |
| 6430 | |
| 6431 | // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes |
| 6432 | if (IsInstanceMethod && |
| 6433 | (ReturnType.isNull() || |
| 6434 | (ReturnType->isObjCObjectPointerType() && |
| 6435 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
| 6436 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() |
| 6437 | ->getName() == "NSArray"))) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6438 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6439 | = (Twine(Property->getName()) + "AtIndexes").str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6440 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6441 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6442 | if (ReturnType.isNull()) { |
| 6443 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6444 | Builder.AddTextChunk("NSArray *"); |
| 6445 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6446 | } |
| 6447 | |
| 6448 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6449 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6450 | Builder.AddTextChunk("NSIndexSet *"); |
| 6451 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6452 | Builder.AddTextChunk("indexes"); |
| 6453 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
| 6454 | CXCursor_ObjCInstanceMethodDecl)); |
| 6455 | } |
| 6456 | } |
| 6457 | |
| 6458 | // Add -(void)getKey:(type **)buffer range:(NSRange)inRange |
| 6459 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6460 | std::string SelectorName = (Twine("get") + UpperKey).str(); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6461 | IdentifierInfo *SelectorIds[2] = { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6462 | &Context.Idents.get(SelectorName), |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6463 | &Context.Idents.get("range") |
| 6464 | }; |
| 6465 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6466 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6467 | if (ReturnType.isNull()) { |
| 6468 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6469 | Builder.AddTextChunk("void"); |
| 6470 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6471 | } |
| 6472 | |
| 6473 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6474 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6475 | Builder.AddPlaceholderChunk("object-type"); |
| 6476 | Builder.AddTextChunk(" **"); |
| 6477 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6478 | Builder.AddTextChunk("buffer"); |
| 6479 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6480 | Builder.AddTypedTextChunk("range:"); |
| 6481 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6482 | Builder.AddTextChunk("NSRange"); |
| 6483 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6484 | Builder.AddTextChunk("inRange"); |
| 6485 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
| 6486 | CXCursor_ObjCInstanceMethodDecl)); |
| 6487 | } |
| 6488 | } |
| 6489 | |
| 6490 | // Mutable indexed accessors |
| 6491 | |
| 6492 | // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index |
| 6493 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6494 | std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6495 | IdentifierInfo *SelectorIds[2] = { |
| 6496 | &Context.Idents.get("insertObject"), |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6497 | &Context.Idents.get(SelectorName) |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6498 | }; |
| 6499 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6500 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6501 | if (ReturnType.isNull()) { |
| 6502 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6503 | Builder.AddTextChunk("void"); |
| 6504 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6505 | } |
| 6506 | |
| 6507 | Builder.AddTypedTextChunk("insertObject:"); |
| 6508 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6509 | Builder.AddPlaceholderChunk("object-type"); |
| 6510 | Builder.AddTextChunk(" *"); |
| 6511 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6512 | Builder.AddTextChunk("object"); |
| 6513 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6514 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6515 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6516 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 6517 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6518 | Builder.AddTextChunk("index"); |
| 6519 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6520 | CXCursor_ObjCInstanceMethodDecl)); |
| 6521 | } |
| 6522 | } |
| 6523 | |
| 6524 | // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes |
| 6525 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6526 | std::string SelectorName = (Twine("insert") + UpperKey).str(); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6527 | IdentifierInfo *SelectorIds[2] = { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6528 | &Context.Idents.get(SelectorName), |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6529 | &Context.Idents.get("atIndexes") |
| 6530 | }; |
| 6531 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6532 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6533 | if (ReturnType.isNull()) { |
| 6534 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6535 | Builder.AddTextChunk("void"); |
| 6536 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6537 | } |
| 6538 | |
| 6539 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6540 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6541 | Builder.AddTextChunk("NSArray *"); |
| 6542 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6543 | Builder.AddTextChunk("array"); |
| 6544 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6545 | Builder.AddTypedTextChunk("atIndexes:"); |
| 6546 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6547 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 6548 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6549 | Builder.AddTextChunk("indexes"); |
| 6550 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6551 | CXCursor_ObjCInstanceMethodDecl)); |
| 6552 | } |
| 6553 | } |
| 6554 | |
| 6555 | // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index |
| 6556 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6557 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6558 | = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6559 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6560 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6561 | if (ReturnType.isNull()) { |
| 6562 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6563 | Builder.AddTextChunk("void"); |
| 6564 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6565 | } |
| 6566 | |
| 6567 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6568 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6569 | Builder.AddTextChunk("NSUInteger"); |
| 6570 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6571 | Builder.AddTextChunk("index"); |
| 6572 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6573 | CXCursor_ObjCInstanceMethodDecl)); |
| 6574 | } |
| 6575 | } |
| 6576 | |
| 6577 | // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes |
| 6578 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6579 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6580 | = (Twine("remove") + UpperKey + "AtIndexes").str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6581 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6582 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6583 | if (ReturnType.isNull()) { |
| 6584 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6585 | Builder.AddTextChunk("void"); |
| 6586 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6587 | } |
| 6588 | |
| 6589 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6590 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6591 | Builder.AddTextChunk("NSIndexSet *"); |
| 6592 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6593 | Builder.AddTextChunk("indexes"); |
| 6594 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6595 | CXCursor_ObjCInstanceMethodDecl)); |
| 6596 | } |
| 6597 | } |
| 6598 | |
| 6599 | // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object |
| 6600 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6601 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6602 | = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6603 | IdentifierInfo *SelectorIds[2] = { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6604 | &Context.Idents.get(SelectorName), |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6605 | &Context.Idents.get("withObject") |
| 6606 | }; |
| 6607 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6608 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6609 | if (ReturnType.isNull()) { |
| 6610 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6611 | Builder.AddTextChunk("void"); |
| 6612 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6613 | } |
| 6614 | |
| 6615 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6616 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6617 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 6618 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6619 | Builder.AddTextChunk("index"); |
| 6620 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6621 | Builder.AddTypedTextChunk("withObject:"); |
| 6622 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6623 | Builder.AddTextChunk("id"); |
| 6624 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6625 | Builder.AddTextChunk("object"); |
| 6626 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6627 | CXCursor_ObjCInstanceMethodDecl)); |
| 6628 | } |
| 6629 | } |
| 6630 | |
| 6631 | // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array |
| 6632 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6633 | std::string SelectorName1 |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6634 | = (Twine("replace") + UpperKey + "AtIndexes").str(); |
| 6635 | std::string SelectorName2 = (Twine("with") + UpperKey).str(); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6636 | IdentifierInfo *SelectorIds[2] = { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6637 | &Context.Idents.get(SelectorName1), |
| 6638 | &Context.Idents.get(SelectorName2) |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6639 | }; |
| 6640 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6641 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6642 | if (ReturnType.isNull()) { |
| 6643 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6644 | Builder.AddTextChunk("void"); |
| 6645 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6646 | } |
| 6647 | |
| 6648 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":")); |
| 6649 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6650 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 6651 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6652 | Builder.AddTextChunk("indexes"); |
| 6653 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6654 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":")); |
| 6655 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6656 | Builder.AddTextChunk("NSArray *"); |
| 6657 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6658 | Builder.AddTextChunk("array"); |
| 6659 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
| 6660 | CXCursor_ObjCInstanceMethodDecl)); |
| 6661 | } |
| 6662 | } |
| 6663 | |
| 6664 | // Unordered getters |
| 6665 | // - (NSEnumerator *)enumeratorOfKey |
| 6666 | if (IsInstanceMethod && |
| 6667 | (ReturnType.isNull() || |
| 6668 | (ReturnType->isObjCObjectPointerType() && |
| 6669 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
| 6670 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() |
| 6671 | ->getName() == "NSEnumerator"))) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6672 | std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6673 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6674 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6675 | if (ReturnType.isNull()) { |
| 6676 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6677 | Builder.AddTextChunk("NSEnumerator *"); |
| 6678 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6679 | } |
| 6680 | |
| 6681 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
| 6682 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
| 6683 | CXCursor_ObjCInstanceMethodDecl)); |
| 6684 | } |
| 6685 | } |
| 6686 | |
| 6687 | // - (type *)memberOfKey:(type *)object |
| 6688 | if (IsInstanceMethod && |
| 6689 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6690 | std::string SelectorName = (Twine("memberOf") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6691 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6692 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6693 | if (ReturnType.isNull()) { |
| 6694 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6695 | Builder.AddPlaceholderChunk("object-type"); |
| 6696 | Builder.AddTextChunk(" *"); |
| 6697 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6698 | } |
| 6699 | |
| 6700 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6701 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6702 | if (ReturnType.isNull()) { |
| 6703 | Builder.AddPlaceholderChunk("object-type"); |
| 6704 | Builder.AddTextChunk(" *"); |
| 6705 | } else { |
| 6706 | Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6707 | Policy, |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6708 | Builder.getAllocator())); |
| 6709 | } |
| 6710 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6711 | Builder.AddTextChunk("object"); |
| 6712 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
| 6713 | CXCursor_ObjCInstanceMethodDecl)); |
| 6714 | } |
| 6715 | } |
| 6716 | |
| 6717 | // Mutable unordered accessors |
| 6718 | // - (void)addKeyObject:(type *)object |
| 6719 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6720 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6721 | = (Twine("add") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6722 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6723 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6724 | if (ReturnType.isNull()) { |
| 6725 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6726 | Builder.AddTextChunk("void"); |
| 6727 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6728 | } |
| 6729 | |
| 6730 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6731 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6732 | Builder.AddPlaceholderChunk("object-type"); |
| 6733 | Builder.AddTextChunk(" *"); |
| 6734 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6735 | Builder.AddTextChunk("object"); |
| 6736 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
| 6737 | CXCursor_ObjCInstanceMethodDecl)); |
| 6738 | } |
| 6739 | } |
| 6740 | |
| 6741 | // - (void)addKey:(NSSet *)objects |
| 6742 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6743 | std::string SelectorName = (Twine("add") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6744 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6745 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6746 | if (ReturnType.isNull()) { |
| 6747 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6748 | Builder.AddTextChunk("void"); |
| 6749 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6750 | } |
| 6751 | |
| 6752 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6753 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6754 | Builder.AddTextChunk("NSSet *"); |
| 6755 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6756 | Builder.AddTextChunk("objects"); |
| 6757 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
| 6758 | CXCursor_ObjCInstanceMethodDecl)); |
| 6759 | } |
| 6760 | } |
| 6761 | |
| 6762 | // - (void)removeKeyObject:(type *)object |
| 6763 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6764 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6765 | = (Twine("remove") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6766 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6767 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6768 | if (ReturnType.isNull()) { |
| 6769 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6770 | Builder.AddTextChunk("void"); |
| 6771 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6772 | } |
| 6773 | |
| 6774 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6775 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6776 | Builder.AddPlaceholderChunk("object-type"); |
| 6777 | Builder.AddTextChunk(" *"); |
| 6778 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6779 | Builder.AddTextChunk("object"); |
| 6780 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
| 6781 | CXCursor_ObjCInstanceMethodDecl)); |
| 6782 | } |
| 6783 | } |
| 6784 | |
| 6785 | // - (void)removeKey:(NSSet *)objects |
| 6786 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6787 | std::string SelectorName = (Twine("remove") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6788 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6789 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6790 | if (ReturnType.isNull()) { |
| 6791 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6792 | Builder.AddTextChunk("void"); |
| 6793 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6794 | } |
| 6795 | |
| 6796 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6797 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6798 | Builder.AddTextChunk("NSSet *"); |
| 6799 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6800 | Builder.AddTextChunk("objects"); |
| 6801 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
| 6802 | CXCursor_ObjCInstanceMethodDecl)); |
| 6803 | } |
| 6804 | } |
| 6805 | |
| 6806 | // - (void)intersectKey:(NSSet *)objects |
| 6807 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6808 | std::string SelectorName = (Twine("intersect") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6809 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6810 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6811 | if (ReturnType.isNull()) { |
| 6812 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6813 | Builder.AddTextChunk("void"); |
| 6814 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6815 | } |
| 6816 | |
| 6817 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 6818 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6819 | Builder.AddTextChunk("NSSet *"); |
| 6820 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6821 | Builder.AddTextChunk("objects"); |
| 6822 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
| 6823 | CXCursor_ObjCInstanceMethodDecl)); |
| 6824 | } |
| 6825 | } |
| 6826 | |
| 6827 | // Key-Value Observing |
| 6828 | // + (NSSet *)keyPathsForValuesAffectingKey |
| 6829 | if (!IsInstanceMethod && |
| 6830 | (ReturnType.isNull() || |
| 6831 | (ReturnType->isObjCObjectPointerType() && |
| 6832 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
| 6833 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() |
| 6834 | ->getName() == "NSSet"))) { |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6835 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6836 | = (Twine("keyPathsForValuesAffecting") + UpperKey).str(); |
Douglas Gregor | 6204159 | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 6837 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 6838 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) { |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6839 | if (ReturnType.isNull()) { |
| 6840 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6841 | Builder.AddTextChunk("NSSet *"); |
| 6842 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6843 | } |
| 6844 | |
| 6845 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
| 6846 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 3f828d1 | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 6847 | CXCursor_ObjCClassMethodDecl)); |
| 6848 | } |
| 6849 | } |
| 6850 | |
| 6851 | // + (BOOL)automaticallyNotifiesObserversForKey |
| 6852 | if (!IsInstanceMethod && |
| 6853 | (ReturnType.isNull() || |
| 6854 | ReturnType->isIntegerType() || |
| 6855 | ReturnType->isBooleanType())) { |
| 6856 | std::string SelectorName |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 6857 | = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str(); |
Douglas Gregor | 3f828d1 | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 6858 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
| 6859 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) { |
| 6860 | if (ReturnType.isNull()) { |
| 6861 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 6862 | Builder.AddTextChunk("BOOL"); |
| 6863 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6864 | } |
| 6865 | |
| 6866 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
| 6867 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
| 6868 | CXCursor_ObjCClassMethodDecl)); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6869 | } |
| 6870 | } |
| 6871 | } |
| 6872 | |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6873 | void Sema::CodeCompleteObjCMethodDecl(Scope *S, |
| 6874 | bool IsInstanceMethod, |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6875 | ParsedType ReturnTy) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6876 | // Determine the return type of the method we're declaring, if |
| 6877 | // provided. |
| 6878 | QualType ReturnType = GetTypeFromParser(ReturnTy); |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6879 | Decl *IDecl = 0; |
| 6880 | if (CurContext->isObjCContainer()) { |
| 6881 | ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); |
| 6882 | IDecl = cast<Decl>(OCD); |
| 6883 | } |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6884 | // Determine where we should start searching for methods. |
| 6885 | ObjCContainerDecl *SearchDecl = 0; |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6886 | bool IsInImplementation = false; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 6887 | if (Decl *D = IDecl) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6888 | if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) { |
| 6889 | SearchDecl = Impl->getClassInterface(); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6890 | IsInImplementation = true; |
| 6891 | } else if (ObjCCategoryImplDecl *CatImpl |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6892 | = dyn_cast<ObjCCategoryImplDecl>(D)) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6893 | SearchDecl = CatImpl->getCategoryDecl(); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6894 | IsInImplementation = true; |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6895 | } else |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6896 | SearchDecl = dyn_cast<ObjCContainerDecl>(D); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6897 | } |
| 6898 | |
| 6899 | if (!SearchDecl && S) { |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6900 | if (DeclContext *DC = static_cast<DeclContext *>(S->getEntity())) |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6901 | SearchDecl = dyn_cast<ObjCContainerDecl>(DC); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6902 | } |
| 6903 | |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6904 | if (!SearchDecl) { |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 6905 | HandleCodeCompleteResults(this, CodeCompleter, |
| 6906 | CodeCompletionContext::CCC_Other, |
| 6907 | 0, 0); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6908 | return; |
| 6909 | } |
| 6910 | |
| 6911 | // Find all of the methods that we could declare/implement here. |
| 6912 | KnownMethodsMap KnownMethods; |
| 6913 | FindImplementableMethods(Context, SearchDecl, IsInstanceMethod, |
Douglas Gregor | ea76618 | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 6914 | ReturnType, KnownMethods); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6915 | |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6916 | // Add declarations or definitions for each of the known methods. |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6917 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6918 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6919 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6920 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6921 | Results.EnterNewScope(); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6922 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6923 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
| 6924 | MEnd = KnownMethods.end(); |
| 6925 | M != MEnd; ++M) { |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6926 | ObjCMethodDecl *Method = M->second.first; |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6927 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 6928 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6929 | |
| 6930 | // If the result type was not already provided, add it to the |
| 6931 | // pattern as (type). |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 6932 | if (ReturnType.isNull()) |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6933 | AddObjCPassingTypeChunk(Method->getResultType(), |
| 6934 | Method->getObjCDeclQualifier(), |
| 6935 | Context, Policy, |
| 6936 | Builder); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6937 | |
| 6938 | Selector Sel = Method->getSelector(); |
| 6939 | |
| 6940 | // Add the first part of the selector to the pattern. |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6941 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 6942 | Sel.getNameForSlot(0))); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6943 | |
| 6944 | // Add parameters to the pattern. |
| 6945 | unsigned I = 0; |
| 6946 | for (ObjCMethodDecl::param_iterator P = Method->param_begin(), |
| 6947 | PEnd = Method->param_end(); |
| 6948 | P != PEnd; (void)++P, ++I) { |
| 6949 | // Add the part of the selector name. |
| 6950 | if (I == 0) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6951 | Builder.AddTypedTextChunk(":"); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6952 | else if (I < Sel.getNumArgs()) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6953 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6954 | Builder.AddTypedTextChunk( |
Douglas Gregor | 813d834 | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 6955 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6956 | } else |
| 6957 | break; |
| 6958 | |
| 6959 | // Add the parameter type. |
Douglas Gregor | 90f5f47 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 6960 | AddObjCPassingTypeChunk((*P)->getOriginalType(), |
| 6961 | (*P)->getObjCDeclQualifier(), |
| 6962 | Context, Policy, |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 6963 | Builder); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6964 | |
| 6965 | if (IdentifierInfo *Id = (*P)->getIdentifier()) |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6966 | Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName())); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6967 | } |
| 6968 | |
| 6969 | if (Method->isVariadic()) { |
| 6970 | if (Method->param_size() > 0) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6971 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 6972 | Builder.AddTextChunk("..."); |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 6973 | } |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6974 | |
Douglas Gregor | 447107d | 2010-05-28 00:57:46 +0000 | [diff] [blame] | 6975 | if (IsInImplementation && Results.includeCodePatterns()) { |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6976 | // We will be defining the method here, so add a compound statement. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6977 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6978 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 6979 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6980 | if (!Method->getResultType()->isVoidType()) { |
| 6981 | // If the result type is not void, add a return clause. |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6982 | Builder.AddTextChunk("return"); |
| 6983 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 6984 | Builder.AddPlaceholderChunk("expression"); |
| 6985 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6986 | } else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6987 | Builder.AddPlaceholderChunk("statements"); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6988 | |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6989 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 6990 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6991 | } |
| 6992 | |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6993 | unsigned Priority = CCP_CodePattern; |
| 6994 | if (!M->second.second) |
| 6995 | Priority += CCD_InBaseClass; |
| 6996 | |
Douglas Gregor | ba10306 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 6997 | Results.AddResult(Result(Builder.TakeString(), Method, Priority)); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 6998 | } |
| 6999 | |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7000 | // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of |
| 7001 | // the properties in this class and its categories. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7002 | if (Context.getLangOpts().ObjC2) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7003 | SmallVector<ObjCContainerDecl *, 4> Containers; |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7004 | Containers.push_back(SearchDecl); |
| 7005 | |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 7006 | VisitedSelectorSet KnownSelectors; |
| 7007 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
| 7008 | MEnd = KnownMethods.end(); |
| 7009 | M != MEnd; ++M) |
| 7010 | KnownSelectors.insert(M->first); |
| 7011 | |
| 7012 | |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7013 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl); |
| 7014 | if (!IFace) |
| 7015 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl)) |
| 7016 | IFace = Category->getClassInterface(); |
| 7017 | |
| 7018 | if (IFace) { |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7019 | for (ObjCInterfaceDecl::visible_categories_iterator |
| 7020 | Cat = IFace->visible_categories_begin(), |
| 7021 | CatEnd = IFace->visible_categories_end(); |
| 7022 | Cat != CatEnd; ++Cat) { |
| 7023 | Containers.push_back(*Cat); |
| 7024 | } |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7025 | } |
| 7026 | |
| 7027 | for (unsigned I = 0, N = Containers.size(); I != N; ++I) { |
| 7028 | for (ObjCContainerDecl::prop_iterator P = Containers[I]->prop_begin(), |
| 7029 | PEnd = Containers[I]->prop_end(); |
| 7030 | P != PEnd; ++P) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 7031 | AddObjCKeyValueCompletions(*P, IsInstanceMethod, ReturnType, Context, |
Douglas Gregor | e74c25c | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 7032 | KnownSelectors, Results); |
Douglas Gregor | 577cdfd | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7033 | } |
| 7034 | } |
| 7035 | } |
| 7036 | |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7037 | Results.ExitScope(); |
| 7038 | |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 7039 | HandleCodeCompleteResults(this, CodeCompleter, |
| 7040 | CodeCompletionContext::CCC_Other, |
| 7041 | Results.data(),Results.size()); |
Douglas Gregor | e8f5a17 | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7042 | } |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7043 | |
| 7044 | void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S, |
| 7045 | bool IsInstanceMethod, |
Douglas Gregor | 40ed9a1 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 7046 | bool AtParameterName, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 7047 | ParsedType ReturnTy, |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7048 | IdentifierInfo **SelIdents, |
| 7049 | unsigned NumSelIdents) { |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7050 | // If we have an external source, load the entire class method |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 7051 | // pool from the AST file. |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7052 | if (ExternalSource) { |
| 7053 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); |
| 7054 | I != N; ++I) { |
| 7055 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 7056 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7057 | continue; |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 7058 | |
| 7059 | ReadMethodPool(Sel); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7060 | } |
| 7061 | } |
| 7062 | |
| 7063 | // Build the set of methods we can see. |
John McCall | 0a2c5e2 | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7064 | typedef CodeCompletionResult Result; |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7065 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7066 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7067 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7068 | |
| 7069 | if (ReturnTy) |
| 7070 | Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType()); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 7071 | |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7072 | Results.EnterNewScope(); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 7073 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 7074 | MEnd = MethodPool.end(); |
| 7075 | M != MEnd; ++M) { |
| 7076 | for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first : |
| 7077 | &M->second.second; |
| 7078 | MethList && MethList->Method; |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7079 | MethList = MethList->Next) { |
| 7080 | if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents, |
| 7081 | NumSelIdents)) |
| 7082 | continue; |
| 7083 | |
Douglas Gregor | 40ed9a1 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 7084 | if (AtParameterName) { |
| 7085 | // Suggest parameter names we've seen before. |
| 7086 | if (NumSelIdents && NumSelIdents <= MethList->Method->param_size()) { |
| 7087 | ParmVarDecl *Param = MethList->Method->param_begin()[NumSelIdents-1]; |
| 7088 | if (Param->getIdentifier()) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7089 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7090 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 7091 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7092 | Param->getIdentifier()->getName())); |
| 7093 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 40ed9a1 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 7094 | } |
| 7095 | } |
| 7096 | |
| 7097 | continue; |
| 7098 | } |
| 7099 | |
Douglas Gregor | d1f09b4 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 7100 | Result R(MethList->Method, Results.getBasePriority(MethList->Method), 0); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7101 | R.StartParameter = NumSelIdents; |
| 7102 | R.AllParametersAreInformative = false; |
| 7103 | R.DeclaringEntity = true; |
| 7104 | Results.MaybeAddResult(R, CurContext); |
| 7105 | } |
| 7106 | } |
| 7107 | |
| 7108 | Results.ExitScope(); |
Douglas Gregor | e6b1bb6 | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 7109 | HandleCodeCompleteResults(this, CodeCompleter, |
| 7110 | CodeCompletionContext::CCC_Other, |
| 7111 | Results.data(),Results.size()); |
Douglas Gregor | 1f5537a | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 7112 | } |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 7113 | |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7114 | void Sema::CodeCompletePreprocessorDirective(bool InConditional) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7115 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7116 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 7117 | CodeCompletionContext::CCC_PreprocessorDirective); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7118 | Results.EnterNewScope(); |
| 7119 | |
| 7120 | // #if <condition> |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7121 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7122 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7123 | Builder.AddTypedTextChunk("if"); |
| 7124 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7125 | Builder.AddPlaceholderChunk("condition"); |
| 7126 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7127 | |
| 7128 | // #ifdef <macro> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7129 | Builder.AddTypedTextChunk("ifdef"); |
| 7130 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7131 | Builder.AddPlaceholderChunk("macro"); |
| 7132 | Results.AddResult(Builder.TakeString()); |
| 7133 | |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7134 | // #ifndef <macro> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7135 | Builder.AddTypedTextChunk("ifndef"); |
| 7136 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7137 | Builder.AddPlaceholderChunk("macro"); |
| 7138 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7139 | |
| 7140 | if (InConditional) { |
| 7141 | // #elif <condition> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7142 | Builder.AddTypedTextChunk("elif"); |
| 7143 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7144 | Builder.AddPlaceholderChunk("condition"); |
| 7145 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7146 | |
| 7147 | // #else |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7148 | Builder.AddTypedTextChunk("else"); |
| 7149 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7150 | |
| 7151 | // #endif |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7152 | Builder.AddTypedTextChunk("endif"); |
| 7153 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7154 | } |
| 7155 | |
| 7156 | // #include "header" |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7157 | Builder.AddTypedTextChunk("include"); |
| 7158 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7159 | Builder.AddTextChunk("\""); |
| 7160 | Builder.AddPlaceholderChunk("header"); |
| 7161 | Builder.AddTextChunk("\""); |
| 7162 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7163 | |
| 7164 | // #include <header> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7165 | Builder.AddTypedTextChunk("include"); |
| 7166 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7167 | Builder.AddTextChunk("<"); |
| 7168 | Builder.AddPlaceholderChunk("header"); |
| 7169 | Builder.AddTextChunk(">"); |
| 7170 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7171 | |
| 7172 | // #define <macro> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7173 | Builder.AddTypedTextChunk("define"); |
| 7174 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7175 | Builder.AddPlaceholderChunk("macro"); |
| 7176 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7177 | |
| 7178 | // #define <macro>(<args>) |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7179 | Builder.AddTypedTextChunk("define"); |
| 7180 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7181 | Builder.AddPlaceholderChunk("macro"); |
| 7182 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7183 | Builder.AddPlaceholderChunk("args"); |
| 7184 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7185 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7186 | |
| 7187 | // #undef <macro> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7188 | Builder.AddTypedTextChunk("undef"); |
| 7189 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7190 | Builder.AddPlaceholderChunk("macro"); |
| 7191 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7192 | |
| 7193 | // #line <number> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7194 | Builder.AddTypedTextChunk("line"); |
| 7195 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7196 | Builder.AddPlaceholderChunk("number"); |
| 7197 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7198 | |
| 7199 | // #line <number> "filename" |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7200 | Builder.AddTypedTextChunk("line"); |
| 7201 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7202 | Builder.AddPlaceholderChunk("number"); |
| 7203 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7204 | Builder.AddTextChunk("\""); |
| 7205 | Builder.AddPlaceholderChunk("filename"); |
| 7206 | Builder.AddTextChunk("\""); |
| 7207 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7208 | |
| 7209 | // #error <message> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7210 | Builder.AddTypedTextChunk("error"); |
| 7211 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7212 | Builder.AddPlaceholderChunk("message"); |
| 7213 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7214 | |
| 7215 | // #pragma <arguments> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7216 | Builder.AddTypedTextChunk("pragma"); |
| 7217 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7218 | Builder.AddPlaceholderChunk("arguments"); |
| 7219 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7220 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7221 | if (getLangOpts().ObjC1) { |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7222 | // #import "header" |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7223 | Builder.AddTypedTextChunk("import"); |
| 7224 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7225 | Builder.AddTextChunk("\""); |
| 7226 | Builder.AddPlaceholderChunk("header"); |
| 7227 | Builder.AddTextChunk("\""); |
| 7228 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7229 | |
| 7230 | // #import <header> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7231 | Builder.AddTypedTextChunk("import"); |
| 7232 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7233 | Builder.AddTextChunk("<"); |
| 7234 | Builder.AddPlaceholderChunk("header"); |
| 7235 | Builder.AddTextChunk(">"); |
| 7236 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7237 | } |
| 7238 | |
| 7239 | // #include_next "header" |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7240 | Builder.AddTypedTextChunk("include_next"); |
| 7241 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7242 | Builder.AddTextChunk("\""); |
| 7243 | Builder.AddPlaceholderChunk("header"); |
| 7244 | Builder.AddTextChunk("\""); |
| 7245 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7246 | |
| 7247 | // #include_next <header> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7248 | Builder.AddTypedTextChunk("include_next"); |
| 7249 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7250 | Builder.AddTextChunk("<"); |
| 7251 | Builder.AddPlaceholderChunk("header"); |
| 7252 | Builder.AddTextChunk(">"); |
| 7253 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7254 | |
| 7255 | // #warning <message> |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7256 | Builder.AddTypedTextChunk("warning"); |
| 7257 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7258 | Builder.AddPlaceholderChunk("message"); |
| 7259 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7260 | |
| 7261 | // Note: #ident and #sccs are such crazy anachronisms that we don't provide |
| 7262 | // completions for them. And __include_macros is a Clang-internal extension |
| 7263 | // that we don't want to encourage anyone to use. |
| 7264 | |
| 7265 | // FIXME: we don't support #assert or #unassert, so don't suggest them. |
| 7266 | Results.ExitScope(); |
| 7267 | |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7268 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | 721f359 | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 7269 | CodeCompletionContext::CCC_PreprocessorDirective, |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7270 | Results.data(), Results.size()); |
| 7271 | } |
| 7272 | |
| 7273 | void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) { |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7274 | CodeCompleteOrdinaryName(S, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 7275 | S->getFnParent()? Sema::PCC_RecoveryInFunction |
| 7276 | : Sema::PCC_Namespace); |
Douglas Gregor | f44e854 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 7277 | } |
| 7278 | |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7279 | void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7280 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7281 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 7282 | IsDefinition? CodeCompletionContext::CCC_MacroName |
| 7283 | : CodeCompletionContext::CCC_MacroNameUse); |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 7284 | if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { |
| 7285 | // Add just the names of macros, not their arguments. |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7286 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7287 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 7288 | Results.EnterNewScope(); |
| 7289 | for (Preprocessor::macro_iterator M = PP.macro_begin(), |
| 7290 | MEnd = PP.macro_end(); |
| 7291 | M != MEnd; ++M) { |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 7292 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7293 | M->first->getName())); |
Argyrios Kyrtzidis | c04bb92 | 2012-09-27 00:24:09 +0000 | [diff] [blame] | 7294 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), |
| 7295 | CCP_CodePattern, |
| 7296 | CXCursor_MacroDefinition)); |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 7297 | } |
| 7298 | Results.ExitScope(); |
| 7299 | } else if (IsDefinition) { |
| 7300 | // FIXME: Can we detect when the user just wrote an include guard above? |
| 7301 | } |
| 7302 | |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 7303 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 1fbb447 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 7304 | Results.data(), Results.size()); |
| 7305 | } |
| 7306 | |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7307 | void Sema::CodeCompletePreprocessorExpression() { |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7308 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7309 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 52779fb | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 7310 | CodeCompletionContext::CCC_PreprocessorExpression); |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7311 | |
| 7312 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 7313 | AddMacroResults(PP, Results, true); |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7314 | |
| 7315 | // defined (<macro>) |
| 7316 | Results.EnterNewScope(); |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7317 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7318 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 218937c | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7319 | Builder.AddTypedTextChunk("defined"); |
| 7320 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7321 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7322 | Builder.AddPlaceholderChunk("macro"); |
| 7323 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7324 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7325 | Results.ExitScope(); |
| 7326 | |
| 7327 | HandleCodeCompleteResults(this, CodeCompleter, |
| 7328 | CodeCompletionContext::CCC_PreprocessorExpression, |
| 7329 | Results.data(), Results.size()); |
| 7330 | } |
| 7331 | |
| 7332 | void Sema::CodeCompletePreprocessorMacroArgument(Scope *S, |
| 7333 | IdentifierInfo *Macro, |
| 7334 | MacroInfo *MacroInfo, |
| 7335 | unsigned Argument) { |
| 7336 | // FIXME: In the future, we could provide "overload" results, much like we |
| 7337 | // do for function calls. |
| 7338 | |
Argyrios Kyrtzidis | 5c5f03e | 2011-08-18 19:41:28 +0000 | [diff] [blame] | 7339 | // Now just ignore this. There will be another code-completion callback |
| 7340 | // for the expanded tokens. |
Douglas Gregor | f29c523 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 7341 | } |
| 7342 | |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 7343 | void Sema::CodeCompleteNaturalLanguage() { |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 7344 | HandleCodeCompleteResults(this, CodeCompleter, |
Douglas Gregor | af1c6b5 | 2010-08-25 17:10:00 +0000 | [diff] [blame] | 7345 | CodeCompletionContext::CCC_NaturalLanguage, |
Douglas Gregor | 55817af | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 7346 | 0, 0); |
| 7347 | } |
| 7348 | |
Douglas Gregor | dae6875 | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 7349 | void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator, |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7350 | CodeCompletionTUInfo &CCTUInfo, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7351 | SmallVectorImpl<CodeCompletionResult> &Results) { |
Argyrios Kyrtzidis | 28a83f5 | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7352 | ResultBuilder Builder(*this, Allocator, CCTUInfo, |
| 7353 | CodeCompletionContext::CCC_Recovery); |
Douglas Gregor | 8071e42 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 7354 | if (!CodeCompleter || CodeCompleter->includeGlobals()) { |
| 7355 | CodeCompletionDeclConsumer Consumer(Builder, |
| 7356 | Context.getTranslationUnitDecl()); |
| 7357 | LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName, |
| 7358 | Consumer); |
| 7359 | } |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 7360 | |
| 7361 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Douglas Gregor | 3644d97 | 2012-10-09 16:01:50 +0000 | [diff] [blame] | 7362 | AddMacroResults(PP, Builder, true); |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 7363 | |
| 7364 | Results.clear(); |
| 7365 | Results.insert(Results.end(), |
| 7366 | Builder.data(), Builder.data() + Builder.size()); |
| 7367 | } |