Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 1 | //===---------------- SemaCodeComplete.cpp - Code Completion ----*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file defines the code-completion semantic actions. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
Eric Liu | b91e081 | 2018-10-02 10:29:00 +0000 | [diff] [blame] | 12 | #include "clang/AST/Decl.h" |
Ilya Biryukov | 9839755 | 2018-12-05 17:38:39 +0000 | [diff] [blame] | 13 | #include "clang/AST/DeclBase.h" |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 14 | #include "clang/AST/DeclCXX.h" |
John McCall | de6836a | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 15 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 16 | #include "clang/AST/ExprCXX.h" |
Douglas Gregor | 8ce3321 | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprObjC.h" |
Ilya Biryukov | b5da91c | 2017-11-08 10:39:09 +0000 | [diff] [blame] | 18 | #include "clang/AST/QualTypeNames.h" |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 19 | #include "clang/AST/Type.h" |
Jordan Rose | 4938f27 | 2013-02-09 10:09:43 +0000 | [diff] [blame] | 20 | #include "clang/Basic/CharInfo.h" |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 21 | #include "clang/Basic/Specifiers.h" |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 22 | #include "clang/Lex/HeaderSearch.h" |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 23 | #include "clang/Lex/MacroInfo.h" |
| 24 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 25 | #include "clang/Sema/CodeCompleteConsumer.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 26 | #include "clang/Sema/Lookup.h" |
| 27 | #include "clang/Sema/Overload.h" |
| 28 | #include "clang/Sema/Scope.h" |
| 29 | #include "clang/Sema/ScopeInfo.h" |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 30 | #include "clang/Sema/SemaInternal.h" |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/DenseSet.h" |
Benjamin Kramer | e0513cb | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallBitVector.h" |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallPtrSet.h" |
Benjamin Kramer | 4903802 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/SmallString.h" |
Douglas Gregor | e6688e6 | 2009-09-28 03:51:44 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/StringSwitch.h" |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/Twine.h" |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/iterator_range.h" |
| 39 | #include "llvm/Support/Path.h" |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 40 | #include <list> |
| 41 | #include <map> |
Ilya Biryukov | cabab29 | 2019-05-24 10:18:39 +0000 | [diff] [blame] | 42 | #include <string> |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 43 | #include <vector> |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 44 | |
| 45 | using namespace clang; |
John McCall | aab3e41 | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 46 | using namespace sema; |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 47 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 48 | namespace { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 49 | /// A container of code-completion results. |
| 50 | class ResultBuilder { |
| 51 | public: |
| 52 | /// The type of a name-lookup filter, which can be provided to the |
| 53 | /// name-lookup routines to specify which declarations should be included in |
| 54 | /// the result set (when it returns true) and which declarations should be |
| 55 | /// filtered out (returns false). |
| 56 | typedef bool (ResultBuilder::*LookupFilter)(const NamedDecl *) const; |
Ivan Donchevskii | 13d9054 | 2017-10-27 11:05:40 +0000 | [diff] [blame] | 57 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 58 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 59 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 60 | private: |
| 61 | /// The actual results we have found. |
| 62 | std::vector<Result> Results; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 63 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 64 | /// A record of all of the declarations we have found and placed |
| 65 | /// into the result set, used to ensure that no declaration ever gets into |
| 66 | /// the result set twice. |
| 67 | llvm::SmallPtrSet<const Decl *, 16> AllDeclsFound; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 68 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 69 | typedef std::pair<const NamedDecl *, unsigned> DeclIndexPair; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 70 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 71 | /// An entry in the shadow map, which is optimized to store |
| 72 | /// a single (declaration, index) mapping (the common case) but |
| 73 | /// can also store a list of (declaration, index) mappings. |
| 74 | class ShadowMapEntry { |
| 75 | typedef SmallVector<DeclIndexPair, 4> DeclIndexPairVector; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 76 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 77 | /// Contains either the solitary NamedDecl * or a vector |
| 78 | /// of (declaration, index) pairs. |
| 79 | llvm::PointerUnion<const NamedDecl *, DeclIndexPairVector *> DeclOrVector; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 80 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 81 | /// When the entry contains a single declaration, this is |
| 82 | /// the index associated with that entry. |
| 83 | unsigned SingleDeclIndex; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 84 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 85 | public: |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 86 | ShadowMapEntry() : DeclOrVector(), SingleDeclIndex(0) {} |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 87 | ShadowMapEntry(const ShadowMapEntry &) = delete; |
| 88 | ShadowMapEntry(ShadowMapEntry &&Move) { *this = std::move(Move); } |
| 89 | ShadowMapEntry &operator=(const ShadowMapEntry &) = delete; |
| 90 | ShadowMapEntry &operator=(ShadowMapEntry &&Move) { |
| 91 | SingleDeclIndex = Move.SingleDeclIndex; |
| 92 | DeclOrVector = Move.DeclOrVector; |
| 93 | Move.DeclOrVector = nullptr; |
| 94 | return *this; |
| 95 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 96 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 97 | void Add(const NamedDecl *ND, unsigned Index) { |
| 98 | if (DeclOrVector.isNull()) { |
| 99 | // 0 - > 1 elements: just set the single element information. |
| 100 | DeclOrVector = ND; |
| 101 | SingleDeclIndex = Index; |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | if (const NamedDecl *PrevND = |
| 106 | DeclOrVector.dyn_cast<const NamedDecl *>()) { |
| 107 | // 1 -> 2 elements: create the vector of results and push in the |
| 108 | // existing declaration. |
| 109 | DeclIndexPairVector *Vec = new DeclIndexPairVector; |
| 110 | Vec->push_back(DeclIndexPair(PrevND, SingleDeclIndex)); |
| 111 | DeclOrVector = Vec; |
| 112 | } |
| 113 | |
| 114 | // Add the new element to the end of the vector. |
| 115 | DeclOrVector.get<DeclIndexPairVector *>()->push_back( |
| 116 | DeclIndexPair(ND, Index)); |
| 117 | } |
| 118 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 119 | ~ShadowMapEntry() { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 120 | if (DeclIndexPairVector *Vec = |
| 121 | DeclOrVector.dyn_cast<DeclIndexPairVector *>()) { |
| 122 | delete Vec; |
| 123 | DeclOrVector = ((NamedDecl *)nullptr); |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 124 | } |
| 125 | } |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 126 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 127 | // Iteration. |
| 128 | class iterator; |
| 129 | iterator begin() const; |
| 130 | iterator end() const; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 131 | }; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 132 | |
| 133 | /// A mapping from declaration names to the declarations that have |
| 134 | /// this name within a particular scope and their index within the list of |
| 135 | /// results. |
| 136 | typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap; |
| 137 | |
| 138 | /// The semantic analysis object for which results are being |
| 139 | /// produced. |
| 140 | Sema &SemaRef; |
| 141 | |
| 142 | /// The allocator used to allocate new code-completion strings. |
| 143 | CodeCompletionAllocator &Allocator; |
| 144 | |
| 145 | CodeCompletionTUInfo &CCTUInfo; |
| 146 | |
| 147 | /// If non-NULL, a filter function used to remove any code-completion |
| 148 | /// results that are not desirable. |
| 149 | LookupFilter Filter; |
| 150 | |
| 151 | /// Whether we should allow declarations as |
| 152 | /// nested-name-specifiers that would otherwise be filtered out. |
| 153 | bool AllowNestedNameSpecifiers; |
| 154 | |
| 155 | /// If set, the type that we would prefer our resulting value |
| 156 | /// declarations to have. |
| 157 | /// |
| 158 | /// Closely matching the preferred type gives a boost to a result's |
| 159 | /// priority. |
| 160 | CanQualType PreferredType; |
| 161 | |
| 162 | /// A list of shadow maps, which is used to model name hiding at |
| 163 | /// different levels of, e.g., the inheritance hierarchy. |
| 164 | std::list<ShadowMap> ShadowMaps; |
| 165 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 166 | /// Overloaded C++ member functions found by SemaLookup. |
| 167 | /// Used to determine when one overload is dominated by another. |
| 168 | llvm::DenseMap<std::pair<DeclContext *, /*Name*/uintptr_t>, ShadowMapEntry> |
| 169 | OverloadMap; |
| 170 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 171 | /// If we're potentially referring to a C++ member function, the set |
| 172 | /// of qualifiers applied to the object type. |
| 173 | Qualifiers ObjectTypeQualifiers; |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 174 | /// The kind of the object expression, for rvalue/lvalue overloads. |
| 175 | ExprValueKind ObjectKind; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 176 | |
| 177 | /// Whether the \p ObjectTypeQualifiers field is active. |
| 178 | bool HasObjectTypeQualifiers; |
| 179 | |
| 180 | /// The selector that we prefer. |
| 181 | Selector PreferredSelector; |
| 182 | |
| 183 | /// The completion context in which we are gathering results. |
| 184 | CodeCompletionContext CompletionContext; |
| 185 | |
| 186 | /// If we are in an instance method definition, the \@implementation |
| 187 | /// object. |
| 188 | ObjCImplementationDecl *ObjCImplementation; |
| 189 | |
| 190 | void AdjustResultPriorityForDecl(Result &R); |
| 191 | |
| 192 | void MaybeAddConstructorResults(Result R); |
| 193 | |
| 194 | public: |
| 195 | explicit ResultBuilder(Sema &SemaRef, CodeCompletionAllocator &Allocator, |
| 196 | CodeCompletionTUInfo &CCTUInfo, |
| 197 | const CodeCompletionContext &CompletionContext, |
| 198 | LookupFilter Filter = nullptr) |
| 199 | : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo), |
| 200 | Filter(Filter), AllowNestedNameSpecifiers(false), |
| 201 | HasObjectTypeQualifiers(false), CompletionContext(CompletionContext), |
| 202 | ObjCImplementation(nullptr) { |
| 203 | // If this is an Objective-C instance method definition, dig out the |
| 204 | // corresponding implementation. |
| 205 | switch (CompletionContext.getKind()) { |
| 206 | case CodeCompletionContext::CCC_Expression: |
| 207 | case CodeCompletionContext::CCC_ObjCMessageReceiver: |
| 208 | case CodeCompletionContext::CCC_ParenthesizedExpression: |
| 209 | case CodeCompletionContext::CCC_Statement: |
| 210 | case CodeCompletionContext::CCC_Recovery: |
| 211 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) |
| 212 | if (Method->isInstanceMethod()) |
| 213 | if (ObjCInterfaceDecl *Interface = Method->getClassInterface()) |
| 214 | ObjCImplementation = Interface->getImplementation(); |
| 215 | break; |
| 216 | |
| 217 | default: |
| 218 | break; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | /// Determine the priority for a reference to the given declaration. |
| 223 | unsigned getBasePriority(const NamedDecl *D); |
| 224 | |
| 225 | /// Whether we should include code patterns in the completion |
| 226 | /// results. |
| 227 | bool includeCodePatterns() const { |
| 228 | return SemaRef.CodeCompleter && |
| 229 | SemaRef.CodeCompleter->includeCodePatterns(); |
| 230 | } |
| 231 | |
| 232 | /// Set the filter used for code-completion results. |
| 233 | void setFilter(LookupFilter Filter) { this->Filter = Filter; } |
| 234 | |
| 235 | Result *data() { return Results.empty() ? nullptr : &Results.front(); } |
| 236 | unsigned size() const { return Results.size(); } |
| 237 | bool empty() const { return Results.empty(); } |
| 238 | |
| 239 | /// Specify the preferred type. |
| 240 | void setPreferredType(QualType T) { |
| 241 | PreferredType = SemaRef.Context.getCanonicalType(T); |
| 242 | } |
| 243 | |
| 244 | /// Set the cv-qualifiers on the object type, for us in filtering |
| 245 | /// calls to member functions. |
| 246 | /// |
| 247 | /// When there are qualifiers in this set, they will be used to filter |
| 248 | /// out member functions that aren't available (because there will be a |
| 249 | /// cv-qualifier mismatch) or prefer functions with an exact qualifier |
| 250 | /// match. |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 251 | void setObjectTypeQualifiers(Qualifiers Quals, ExprValueKind Kind) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 252 | ObjectTypeQualifiers = Quals; |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 253 | ObjectKind = Kind; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 254 | HasObjectTypeQualifiers = true; |
| 255 | } |
| 256 | |
| 257 | /// Set the preferred selector. |
| 258 | /// |
| 259 | /// When an Objective-C method declaration result is added, and that |
| 260 | /// method's selector matches this preferred selector, we give that method |
| 261 | /// a slight priority boost. |
| 262 | void setPreferredSelector(Selector Sel) { PreferredSelector = Sel; } |
| 263 | |
| 264 | /// Retrieve the code-completion context for which results are |
| 265 | /// being collected. |
| 266 | const CodeCompletionContext &getCompletionContext() const { |
| 267 | return CompletionContext; |
| 268 | } |
| 269 | |
| 270 | /// Specify whether nested-name-specifiers are allowed. |
| 271 | void allowNestedNameSpecifiers(bool Allow = true) { |
| 272 | AllowNestedNameSpecifiers = Allow; |
| 273 | } |
| 274 | |
| 275 | /// Return the semantic analysis object for which we are collecting |
| 276 | /// code completion results. |
| 277 | Sema &getSema() const { return SemaRef; } |
| 278 | |
| 279 | /// Retrieve the allocator used to allocate code completion strings. |
| 280 | CodeCompletionAllocator &getAllocator() const { return Allocator; } |
| 281 | |
| 282 | CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; } |
| 283 | |
| 284 | /// Determine whether the given declaration is at all interesting |
| 285 | /// as a code-completion result. |
| 286 | /// |
| 287 | /// \param ND the declaration that we are inspecting. |
| 288 | /// |
| 289 | /// \param AsNestedNameSpecifier will be set true if this declaration is |
| 290 | /// only interesting when it is a nested-name-specifier. |
| 291 | bool isInterestingDecl(const NamedDecl *ND, |
| 292 | bool &AsNestedNameSpecifier) const; |
| 293 | |
| 294 | /// Check whether the result is hidden by the Hiding declaration. |
| 295 | /// |
| 296 | /// \returns true if the result is hidden and cannot be found, false if |
| 297 | /// the hidden result could still be found. When false, \p R may be |
| 298 | /// modified to describe how the result can be found (e.g., via extra |
| 299 | /// qualification). |
| 300 | bool CheckHiddenResult(Result &R, DeclContext *CurContext, |
| 301 | const NamedDecl *Hiding); |
| 302 | |
| 303 | /// Add a new result to this result set (if it isn't already in one |
| 304 | /// of the shadow maps), or replace an existing result (for, e.g., a |
| 305 | /// redeclaration). |
| 306 | /// |
| 307 | /// \param R the result to add (if it is unique). |
| 308 | /// |
| 309 | /// \param CurContext the context in which this result will be named. |
| 310 | void MaybeAddResult(Result R, DeclContext *CurContext = nullptr); |
| 311 | |
| 312 | /// Add a new result to this result set, where we already know |
| 313 | /// the hiding declaration (if any). |
| 314 | /// |
| 315 | /// \param R the result to add (if it is unique). |
| 316 | /// |
| 317 | /// \param CurContext the context in which this result will be named. |
| 318 | /// |
| 319 | /// \param Hiding the declaration that hides the result. |
| 320 | /// |
| 321 | /// \param InBaseClass whether the result was found in a base |
| 322 | /// class of the searched context. |
| 323 | void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding, |
| 324 | bool InBaseClass); |
| 325 | |
| 326 | /// Add a new non-declaration result to this result set. |
| 327 | void AddResult(Result R); |
| 328 | |
| 329 | /// Enter into a new scope. |
| 330 | void EnterNewScope(); |
| 331 | |
| 332 | /// Exit from the current scope. |
| 333 | void ExitScope(); |
| 334 | |
| 335 | /// Ignore this declaration, if it is seen again. |
| 336 | void Ignore(const Decl *D) { AllDeclsFound.insert(D->getCanonicalDecl()); } |
| 337 | |
| 338 | /// Add a visited context. |
| 339 | void addVisitedContext(DeclContext *Ctx) { |
| 340 | CompletionContext.addVisitedContext(Ctx); |
| 341 | } |
| 342 | |
| 343 | /// \name Name lookup predicates |
| 344 | /// |
| 345 | /// These predicates can be passed to the name lookup functions to filter the |
| 346 | /// results of name lookup. All of the predicates have the same type, so that |
| 347 | /// |
| 348 | //@{ |
| 349 | bool IsOrdinaryName(const NamedDecl *ND) const; |
| 350 | bool IsOrdinaryNonTypeName(const NamedDecl *ND) const; |
| 351 | bool IsIntegralConstantValue(const NamedDecl *ND) const; |
| 352 | bool IsOrdinaryNonValueName(const NamedDecl *ND) const; |
| 353 | bool IsNestedNameSpecifier(const NamedDecl *ND) const; |
| 354 | bool IsEnum(const NamedDecl *ND) const; |
| 355 | bool IsClassOrStruct(const NamedDecl *ND) const; |
| 356 | bool IsUnion(const NamedDecl *ND) const; |
| 357 | bool IsNamespace(const NamedDecl *ND) const; |
| 358 | bool IsNamespaceOrAlias(const NamedDecl *ND) const; |
| 359 | bool IsType(const NamedDecl *ND) const; |
| 360 | bool IsMember(const NamedDecl *ND) const; |
| 361 | bool IsObjCIvar(const NamedDecl *ND) const; |
| 362 | bool IsObjCMessageReceiver(const NamedDecl *ND) const; |
| 363 | bool IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const; |
| 364 | bool IsObjCCollection(const NamedDecl *ND) const; |
| 365 | bool IsImpossibleToSatisfy(const NamedDecl *ND) const; |
| 366 | //@} |
| 367 | }; |
| 368 | } // namespace |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 369 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 370 | void PreferredTypeBuilder::enterReturn(Sema &S, SourceLocation Tok) { |
| 371 | if (isa<BlockDecl>(S.CurContext)) { |
| 372 | if (sema::BlockScopeInfo *BSI = S.getCurBlock()) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 373 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 374 | Type = BSI->ReturnType; |
| 375 | ExpectedLoc = Tok; |
| 376 | } |
| 377 | } else if (const auto *Function = dyn_cast<FunctionDecl>(S.CurContext)) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 378 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 379 | Type = Function->getReturnType(); |
| 380 | ExpectedLoc = Tok; |
| 381 | } else if (const auto *Method = dyn_cast<ObjCMethodDecl>(S.CurContext)) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 382 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 383 | Type = Method->getReturnType(); |
| 384 | ExpectedLoc = Tok; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | void PreferredTypeBuilder::enterVariableInit(SourceLocation Tok, Decl *D) { |
| 389 | auto *VD = llvm::dyn_cast_or_null<ValueDecl>(D); |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 390 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 391 | Type = VD ? VD->getType() : QualType(); |
| 392 | ExpectedLoc = Tok; |
| 393 | } |
| 394 | |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 395 | void PreferredTypeBuilder::enterFunctionArgument( |
| 396 | SourceLocation Tok, llvm::function_ref<QualType()> ComputeType) { |
| 397 | this->ComputeType = ComputeType; |
| 398 | Type = QualType(); |
| 399 | ExpectedLoc = Tok; |
| 400 | } |
| 401 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 402 | void PreferredTypeBuilder::enterParenExpr(SourceLocation Tok, |
| 403 | SourceLocation LParLoc) { |
| 404 | // expected type for parenthesized expression does not change. |
| 405 | if (ExpectedLoc == LParLoc) |
| 406 | ExpectedLoc = Tok; |
| 407 | } |
| 408 | |
| 409 | static QualType getPreferredTypeOfBinaryRHS(Sema &S, Expr *LHS, |
| 410 | tok::TokenKind Op) { |
| 411 | if (!LHS) |
| 412 | return QualType(); |
| 413 | |
| 414 | QualType LHSType = LHS->getType(); |
| 415 | if (LHSType->isPointerType()) { |
| 416 | if (Op == tok::plus || Op == tok::plusequal || Op == tok::minusequal) |
| 417 | return S.getASTContext().getPointerDiffType(); |
| 418 | // Pointer difference is more common than subtracting an int from a pointer. |
| 419 | if (Op == tok::minus) |
| 420 | return LHSType; |
| 421 | } |
| 422 | |
| 423 | switch (Op) { |
| 424 | // No way to infer the type of RHS from LHS. |
| 425 | case tok::comma: |
| 426 | return QualType(); |
| 427 | // Prefer the type of the left operand for all of these. |
| 428 | // Arithmetic operations. |
| 429 | case tok::plus: |
| 430 | case tok::plusequal: |
| 431 | case tok::minus: |
| 432 | case tok::minusequal: |
| 433 | case tok::percent: |
| 434 | case tok::percentequal: |
| 435 | case tok::slash: |
| 436 | case tok::slashequal: |
| 437 | case tok::star: |
| 438 | case tok::starequal: |
| 439 | // Assignment. |
| 440 | case tok::equal: |
| 441 | // Comparison operators. |
| 442 | case tok::equalequal: |
| 443 | case tok::exclaimequal: |
| 444 | case tok::less: |
| 445 | case tok::lessequal: |
| 446 | case tok::greater: |
| 447 | case tok::greaterequal: |
| 448 | case tok::spaceship: |
| 449 | return LHS->getType(); |
| 450 | // Binary shifts are often overloaded, so don't try to guess those. |
| 451 | case tok::greatergreater: |
| 452 | case tok::greatergreaterequal: |
| 453 | case tok::lessless: |
| 454 | case tok::lesslessequal: |
| 455 | if (LHSType->isIntegralOrEnumerationType()) |
| 456 | return S.getASTContext().IntTy; |
| 457 | return QualType(); |
| 458 | // Logical operators, assume we want bool. |
| 459 | case tok::ampamp: |
| 460 | case tok::pipepipe: |
| 461 | case tok::caretcaret: |
| 462 | return S.getASTContext().BoolTy; |
| 463 | // Operators often used for bit manipulation are typically used with the type |
| 464 | // of the left argument. |
| 465 | case tok::pipe: |
| 466 | case tok::pipeequal: |
| 467 | case tok::caret: |
| 468 | case tok::caretequal: |
| 469 | case tok::amp: |
| 470 | case tok::ampequal: |
| 471 | if (LHSType->isIntegralOrEnumerationType()) |
| 472 | return LHSType; |
| 473 | return QualType(); |
| 474 | // RHS should be a pointer to a member of the 'LHS' type, but we can't give |
| 475 | // any particular type here. |
| 476 | case tok::periodstar: |
| 477 | case tok::arrowstar: |
| 478 | return QualType(); |
| 479 | default: |
| 480 | // FIXME(ibiryukov): handle the missing op, re-add the assertion. |
| 481 | // assert(false && "unhandled binary op"); |
| 482 | return QualType(); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | /// Get preferred type for an argument of an unary expression. \p ContextType is |
| 487 | /// preferred type of the whole unary expression. |
| 488 | static QualType getPreferredTypeOfUnaryArg(Sema &S, QualType ContextType, |
| 489 | tok::TokenKind Op) { |
| 490 | switch (Op) { |
| 491 | case tok::exclaim: |
| 492 | return S.getASTContext().BoolTy; |
| 493 | case tok::amp: |
| 494 | if (!ContextType.isNull() && ContextType->isPointerType()) |
| 495 | return ContextType->getPointeeType(); |
| 496 | return QualType(); |
| 497 | case tok::star: |
| 498 | if (ContextType.isNull()) |
| 499 | return QualType(); |
| 500 | return S.getASTContext().getPointerType(ContextType.getNonReferenceType()); |
| 501 | case tok::plus: |
| 502 | case tok::minus: |
| 503 | case tok::tilde: |
| 504 | case tok::minusminus: |
| 505 | case tok::plusplus: |
| 506 | if (ContextType.isNull()) |
| 507 | return S.getASTContext().IntTy; |
| 508 | // leave as is, these operators typically return the same type. |
| 509 | return ContextType; |
| 510 | case tok::kw___real: |
| 511 | case tok::kw___imag: |
| 512 | return QualType(); |
| 513 | default: |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 514 | assert(false && "unhandled unary op"); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 515 | return QualType(); |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | void PreferredTypeBuilder::enterBinary(Sema &S, SourceLocation Tok, Expr *LHS, |
| 520 | tok::TokenKind Op) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 521 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 522 | Type = getPreferredTypeOfBinaryRHS(S, LHS, Op); |
| 523 | ExpectedLoc = Tok; |
| 524 | } |
| 525 | |
| 526 | void PreferredTypeBuilder::enterMemAccess(Sema &S, SourceLocation Tok, |
| 527 | Expr *Base) { |
| 528 | if (!Base) |
| 529 | return; |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 530 | // Do we have expected type for Base? |
| 531 | if (ExpectedLoc != Base->getBeginLoc()) |
| 532 | return; |
| 533 | // Keep the expected type, only update the location. |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 534 | ExpectedLoc = Tok; |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 535 | return; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | void PreferredTypeBuilder::enterUnary(Sema &S, SourceLocation Tok, |
| 539 | tok::TokenKind OpKind, |
| 540 | SourceLocation OpLoc) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 541 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 542 | Type = getPreferredTypeOfUnaryArg(S, this->get(OpLoc), OpKind); |
| 543 | ExpectedLoc = Tok; |
| 544 | } |
| 545 | |
| 546 | void PreferredTypeBuilder::enterSubscript(Sema &S, SourceLocation Tok, |
| 547 | Expr *LHS) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 548 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 549 | Type = S.getASTContext().IntTy; |
| 550 | ExpectedLoc = Tok; |
| 551 | } |
| 552 | |
| 553 | void PreferredTypeBuilder::enterTypeCast(SourceLocation Tok, |
| 554 | QualType CastType) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 555 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 556 | Type = !CastType.isNull() ? CastType.getCanonicalType() : QualType(); |
| 557 | ExpectedLoc = Tok; |
| 558 | } |
| 559 | |
| 560 | void PreferredTypeBuilder::enterCondition(Sema &S, SourceLocation Tok) { |
Ilya Biryukov | ff2a997 | 2019-02-26 11:01:50 +0000 | [diff] [blame] | 561 | ComputeType = nullptr; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 562 | Type = S.getASTContext().BoolTy; |
| 563 | ExpectedLoc = Tok; |
| 564 | } |
| 565 | |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 566 | class ResultBuilder::ShadowMapEntry::iterator { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 567 | llvm::PointerUnion<const NamedDecl *, const DeclIndexPair *> DeclOrIterator; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 568 | unsigned SingleDeclIndex; |
| 569 | |
| 570 | public: |
| 571 | typedef DeclIndexPair value_type; |
| 572 | typedef value_type reference; |
| 573 | typedef std::ptrdiff_t difference_type; |
| 574 | typedef std::input_iterator_tag iterator_category; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 575 | |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 576 | class pointer { |
| 577 | DeclIndexPair Value; |
| 578 | |
| 579 | public: |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 580 | pointer(const DeclIndexPair &Value) : Value(Value) {} |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 581 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 582 | const DeclIndexPair *operator->() const { return &Value; } |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 583 | }; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 584 | |
| 585 | iterator() : DeclOrIterator((NamedDecl *)nullptr), SingleDeclIndex(0) {} |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 586 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 587 | iterator(const NamedDecl *SingleDecl, unsigned Index) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 588 | : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) {} |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 589 | |
| 590 | iterator(const DeclIndexPair *Iterator) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 591 | : DeclOrIterator(Iterator), SingleDeclIndex(0) {} |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 592 | |
| 593 | iterator &operator++() { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 594 | if (DeclOrIterator.is<const NamedDecl *>()) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 595 | DeclOrIterator = (NamedDecl *)nullptr; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 596 | SingleDeclIndex = 0; |
| 597 | return *this; |
| 598 | } |
| 599 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 600 | const DeclIndexPair *I = DeclOrIterator.get<const DeclIndexPair *>(); |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 601 | ++I; |
| 602 | DeclOrIterator = I; |
| 603 | return *this; |
| 604 | } |
| 605 | |
Chris Lattner | 9795b39 | 2010-09-04 18:12:20 +0000 | [diff] [blame] | 606 | /*iterator operator++(int) { |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 607 | iterator tmp(*this); |
| 608 | ++(*this); |
| 609 | return tmp; |
Chris Lattner | 9795b39 | 2010-09-04 18:12:20 +0000 | [diff] [blame] | 610 | }*/ |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 611 | |
| 612 | reference operator*() const { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 613 | if (const NamedDecl *ND = DeclOrIterator.dyn_cast<const NamedDecl *>()) |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 614 | return reference(ND, SingleDeclIndex); |
| 615 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 616 | return *DeclOrIterator.get<const DeclIndexPair *>(); |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 617 | } |
| 618 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 619 | pointer operator->() const { return pointer(**this); } |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 620 | |
| 621 | friend bool operator==(const iterator &X, const iterator &Y) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 622 | return X.DeclOrIterator.getOpaqueValue() == |
| 623 | Y.DeclOrIterator.getOpaqueValue() && |
| 624 | X.SingleDeclIndex == Y.SingleDeclIndex; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | friend bool operator!=(const iterator &X, const iterator &Y) { |
Douglas Gregor | 94bb5e8 | 2009-12-06 21:27:58 +0000 | [diff] [blame] | 628 | return !(X == Y); |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 629 | } |
| 630 | }; |
| 631 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 632 | ResultBuilder::ShadowMapEntry::iterator |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 633 | ResultBuilder::ShadowMapEntry::begin() const { |
| 634 | if (DeclOrVector.isNull()) |
| 635 | return iterator(); |
| 636 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 637 | if (const NamedDecl *ND = DeclOrVector.dyn_cast<const NamedDecl *>()) |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 638 | return iterator(ND, SingleDeclIndex); |
| 639 | |
| 640 | return iterator(DeclOrVector.get<DeclIndexPairVector *>()->begin()); |
| 641 | } |
| 642 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 643 | ResultBuilder::ShadowMapEntry::iterator |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 644 | ResultBuilder::ShadowMapEntry::end() const { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 645 | if (DeclOrVector.is<const NamedDecl *>() || DeclOrVector.isNull()) |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 646 | return iterator(); |
| 647 | |
| 648 | return iterator(DeclOrVector.get<DeclIndexPairVector *>()->end()); |
| 649 | } |
| 650 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 651 | /// Compute the qualification required to get from the current context |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 652 | /// (\p CurContext) to the target context (\p TargetContext). |
| 653 | /// |
| 654 | /// \param Context the AST context in which the qualification will be used. |
| 655 | /// |
| 656 | /// \param CurContext the context where an entity is being named, which is |
| 657 | /// typically based on the current scope. |
| 658 | /// |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 659 | /// \param TargetContext the context in which the named entity actually |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 660 | /// resides. |
| 661 | /// |
| 662 | /// \returns a nested name specifier that refers into the target context, or |
| 663 | /// NULL if no qualification is needed. |
| 664 | static NestedNameSpecifier * |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 665 | getRequiredQualification(ASTContext &Context, const DeclContext *CurContext, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 666 | const DeclContext *TargetContext) { |
| 667 | SmallVector<const DeclContext *, 4> TargetParents; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 668 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 669 | for (const DeclContext *CommonAncestor = TargetContext; |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 670 | CommonAncestor && !CommonAncestor->Encloses(CurContext); |
| 671 | CommonAncestor = CommonAncestor->getLookupParent()) { |
| 672 | if (CommonAncestor->isTransparentContext() || |
| 673 | CommonAncestor->isFunctionOrMethod()) |
| 674 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 675 | |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 676 | TargetParents.push_back(CommonAncestor); |
| 677 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 678 | |
| 679 | NestedNameSpecifier *Result = nullptr; |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 680 | while (!TargetParents.empty()) { |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 681 | const DeclContext *Parent = TargetParents.pop_back_val(); |
| 682 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 683 | if (const auto *Namespace = dyn_cast<NamespaceDecl>(Parent)) { |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 684 | if (!Namespace->getIdentifier()) |
| 685 | continue; |
| 686 | |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 687 | Result = NestedNameSpecifier::Create(Context, Result, Namespace); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 688 | } else if (const auto *TD = dyn_cast<TagDecl>(Parent)) |
| 689 | Result = NestedNameSpecifier::Create( |
| 690 | Context, Result, false, Context.getTypeDeclType(TD).getTypePtr()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 691 | } |
Douglas Gregor | 2af2f67 | 2009-09-21 20:12:40 +0000 | [diff] [blame] | 692 | return Result; |
| 693 | } |
| 694 | |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 695 | // Some declarations have reserved names that we don't want to ever show. |
| 696 | // Filter out names reserved for the implementation if they come from a |
| 697 | // system header. |
| 698 | static bool shouldIgnoreDueToReservedName(const NamedDecl *ND, Sema &SemaRef) { |
| 699 | const IdentifierInfo *Id = ND->getIdentifier(); |
| 700 | if (!Id) |
| 701 | return false; |
| 702 | |
| 703 | // Ignore reserved names for compiler provided decls. |
Vedant Kumar | 568db78 | 2019-11-13 18:19:32 -0800 | [diff] [blame] | 704 | if (Id->isReservedName() && ND->getLocation().isInvalid()) |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 705 | return true; |
| 706 | |
| 707 | // For system headers ignore only double-underscore names. |
| 708 | // This allows for system headers providing private symbols with a single |
| 709 | // underscore. |
Vedant Kumar | 568db78 | 2019-11-13 18:19:32 -0800 | [diff] [blame] | 710 | if (Id->isReservedName(/*doubleUnderscoreOnly=*/true) && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 711 | SemaRef.SourceMgr.isInSystemHeader( |
| 712 | SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))) |
| 713 | return true; |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 714 | |
| 715 | return false; |
Alp Toker | 034bbd5 | 2014-06-30 01:33:53 +0000 | [diff] [blame] | 716 | } |
| 717 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 718 | bool ResultBuilder::isInterestingDecl(const NamedDecl *ND, |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 719 | bool &AsNestedNameSpecifier) const { |
| 720 | AsNestedNameSpecifier = false; |
| 721 | |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 722 | auto *Named = ND; |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 723 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 58acf32 | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 724 | |
| 725 | // Skip unnamed entities. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 726 | if (!ND->getDeclName()) |
| 727 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 728 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 729 | // Friend declarations and declarations introduced due to friends are never |
| 730 | // added as results. |
Richard Smith | 6eece29 | 2015-01-15 02:27:20 +0000 | [diff] [blame] | 731 | if (ND->getFriendObjectKind() == Decl::FOK_Undeclared) |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 732 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 733 | |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 734 | // Class template (partial) specializations are never added as results. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 735 | if (isa<ClassTemplateSpecializationDecl>(ND) || |
| 736 | isa<ClassTemplatePartialSpecializationDecl>(ND)) |
| 737 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 738 | |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 739 | // Using declarations themselves are never added as results. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 740 | if (isa<UsingDecl>(ND)) |
| 741 | return false; |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 742 | |
| 743 | if (shouldIgnoreDueToReservedName(ND, SemaRef)) |
| 744 | return false; |
Douglas Gregor | 2927c0c | 2010-11-09 03:59:40 +0000 | [diff] [blame] | 745 | |
Douglas Gregor | 59cab55 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 746 | if (Filter == &ResultBuilder::IsNestedNameSpecifier || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 747 | (isa<NamespaceDecl>(ND) && Filter != &ResultBuilder::IsNamespace && |
| 748 | Filter != &ResultBuilder::IsNamespaceOrAlias && Filter != nullptr)) |
Douglas Gregor | 59cab55 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 749 | AsNestedNameSpecifier = true; |
| 750 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 751 | // Filter out any unwanted results. |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 752 | if (Filter && !(this->*Filter)(Named)) { |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 753 | // Check whether it is interesting as a nested-name-specifier. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 754 | if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus && |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 755 | IsNestedNameSpecifier(ND) && |
| 756 | (Filter != &ResultBuilder::IsMember || |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 757 | (isa<CXXRecordDecl>(ND) && |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 758 | cast<CXXRecordDecl>(ND)->isInjectedClassName()))) { |
| 759 | AsNestedNameSpecifier = true; |
| 760 | return true; |
| 761 | } |
| 762 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 763 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 764 | } |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 765 | // ... then it must be interesting! |
| 766 | return true; |
| 767 | } |
| 768 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 769 | bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 770 | const NamedDecl *Hiding) { |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 771 | // In C, there is no way to refer to a hidden name. |
| 772 | // FIXME: This isn't true; we can find a tag name hidden by an ordinary |
| 773 | // name if we introduce the tag type. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 774 | if (!SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 775 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 776 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 777 | const DeclContext *HiddenCtx = |
| 778 | R.Declaration->getDeclContext()->getRedeclContext(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 779 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 780 | // There is no way to qualify a name declared in a function or method. |
| 781 | if (HiddenCtx->isFunctionOrMethod()) |
| 782 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 783 | |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 784 | if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext()) |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 785 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 786 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 787 | // We can refer to the result with the appropriate qualification. Do it. |
| 788 | R.Hidden = true; |
| 789 | R.QualifierIsInformative = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 790 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 791 | if (!R.Qualifier) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 792 | R.Qualifier = getRequiredQualification(SemaRef.Context, CurContext, |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 793 | R.Declaration->getDeclContext()); |
| 794 | return false; |
| 795 | } |
| 796 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 797 | /// A simplified classification of types used to determine whether two |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 798 | /// types are "similar enough" when adjusting priorities. |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 799 | SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 800 | switch (T->getTypeClass()) { |
| 801 | case Type::Builtin: |
| 802 | switch (cast<BuiltinType>(T)->getKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 803 | case BuiltinType::Void: |
| 804 | return STC_Void; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 805 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 806 | case BuiltinType::NullPtr: |
| 807 | return STC_Pointer; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 808 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 809 | case BuiltinType::Overload: |
| 810 | case BuiltinType::Dependent: |
| 811 | return STC_Other; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 812 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 813 | case BuiltinType::ObjCId: |
| 814 | case BuiltinType::ObjCClass: |
| 815 | case BuiltinType::ObjCSel: |
| 816 | return STC_ObjectiveC; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 817 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 818 | default: |
| 819 | return STC_Arithmetic; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 820 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 821 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 822 | case Type::Complex: |
| 823 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 824 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 825 | case Type::Pointer: |
| 826 | return STC_Pointer; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 827 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 828 | case Type::BlockPointer: |
| 829 | return STC_Block; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 830 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 831 | case Type::LValueReference: |
| 832 | case Type::RValueReference: |
| 833 | return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 834 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 835 | case Type::ConstantArray: |
| 836 | case Type::IncompleteArray: |
| 837 | case Type::VariableArray: |
| 838 | case Type::DependentSizedArray: |
| 839 | return STC_Array; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 840 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 841 | case Type::DependentSizedExtVector: |
| 842 | case Type::Vector: |
| 843 | case Type::ExtVector: |
| 844 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 845 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 846 | case Type::FunctionProto: |
| 847 | case Type::FunctionNoProto: |
| 848 | return STC_Function; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 849 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 850 | case Type::Record: |
| 851 | return STC_Record; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 852 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 853 | case Type::Enum: |
| 854 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 855 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 856 | case Type::ObjCObject: |
| 857 | case Type::ObjCInterface: |
| 858 | case Type::ObjCObjectPointer: |
| 859 | return STC_ObjectiveC; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 860 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 861 | default: |
| 862 | return STC_Other; |
| 863 | } |
| 864 | } |
| 865 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 866 | /// Get the type that a given expression will have if this declaration |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 867 | /// is used as an expression in its "typical" code-completion form. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 868 | QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 869 | ND = ND->getUnderlyingDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 870 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 871 | if (const auto *Type = dyn_cast<TypeDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 872 | return C.getTypeDeclType(Type); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 873 | if (const auto *Iface = dyn_cast<ObjCInterfaceDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 874 | return C.getObjCInterfaceType(Iface); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 875 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 876 | QualType T; |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 877 | if (const FunctionDecl *Function = ND->getAsFunction()) |
Douglas Gregor | 603d81b | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 878 | T = Function->getCallResultType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 879 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) |
Douglas Gregor | 603d81b | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 880 | T = Method->getSendResultType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 881 | else if (const auto *Enumerator = dyn_cast<EnumConstantDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 882 | T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext())); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 883 | else if (const auto *Property = dyn_cast<ObjCPropertyDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 884 | T = Property->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 885 | else if (const auto *Value = dyn_cast<ValueDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 886 | T = Value->getType(); |
Ilya Biryukov | c514ade | 2019-01-24 10:41:43 +0000 | [diff] [blame] | 887 | |
| 888 | if (T.isNull()) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 889 | return QualType(); |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 890 | |
| 891 | // Dig through references, function pointers, and block pointers to |
| 892 | // get down to the likely type of an expression when the entity is |
| 893 | // used. |
| 894 | do { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 895 | if (const auto *Ref = T->getAs<ReferenceType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 896 | T = Ref->getPointeeType(); |
| 897 | continue; |
| 898 | } |
| 899 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 900 | if (const auto *Pointer = T->getAs<PointerType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 901 | if (Pointer->getPointeeType()->isFunctionType()) { |
| 902 | T = Pointer->getPointeeType(); |
| 903 | continue; |
| 904 | } |
| 905 | |
| 906 | break; |
| 907 | } |
| 908 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 909 | if (const auto *Block = T->getAs<BlockPointerType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 910 | T = Block->getPointeeType(); |
| 911 | continue; |
| 912 | } |
| 913 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 914 | if (const auto *Function = T->getAs<FunctionType>()) { |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 915 | T = Function->getReturnType(); |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 916 | continue; |
| 917 | } |
| 918 | |
| 919 | break; |
| 920 | } while (true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 921 | |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 922 | return T; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 923 | } |
| 924 | |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 925 | unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) { |
| 926 | if (!ND) |
| 927 | return CCP_Unlikely; |
| 928 | |
| 929 | // Context-based decisions. |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 930 | const DeclContext *LexicalDC = ND->getLexicalDeclContext(); |
| 931 | if (LexicalDC->isFunctionOrMethod()) { |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 932 | // _cmd is relatively rare |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 933 | if (const auto *ImplicitParam = dyn_cast<ImplicitParamDecl>(ND)) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 934 | if (ImplicitParam->getIdentifier() && |
| 935 | ImplicitParam->getIdentifier()->isStr("_cmd")) |
| 936 | return CCP_ObjC_cmd; |
| 937 | |
| 938 | return CCP_LocalDeclaration; |
| 939 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 940 | |
| 941 | const DeclContext *DC = ND->getDeclContext()->getRedeclContext(); |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 942 | if (DC->isRecord() || isa<ObjCContainerDecl>(DC)) { |
| 943 | // Explicit destructor calls are very rare. |
| 944 | if (isa<CXXDestructorDecl>(ND)) |
| 945 | return CCP_Unlikely; |
| 946 | // Explicit operator and conversion function calls are also very rare. |
| 947 | auto DeclNameKind = ND->getDeclName().getNameKind(); |
| 948 | if (DeclNameKind == DeclarationName::CXXOperatorName || |
| 949 | DeclNameKind == DeclarationName::CXXLiteralOperatorName || |
| 950 | DeclNameKind == DeclarationName::CXXConversionFunctionName) |
| 951 | return CCP_Unlikely; |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 952 | return CCP_MemberDeclaration; |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 953 | } |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 954 | |
| 955 | // Content-based decisions. |
| 956 | if (isa<EnumConstantDecl>(ND)) |
| 957 | return CCP_Constant; |
| 958 | |
Douglas Gregor | 52e0de4 | 2013-01-31 05:03:46 +0000 | [diff] [blame] | 959 | // Use CCP_Type for type declarations unless we're in a statement, Objective-C |
| 960 | // message receiver, or parenthesized expression context. There, it's as |
| 961 | // likely that the user will want to write a type as other declarations. |
| 962 | if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) && |
| 963 | !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 964 | CompletionContext.getKind() == |
| 965 | CodeCompletionContext::CCC_ObjCMessageReceiver || |
| 966 | CompletionContext.getKind() == |
| 967 | CodeCompletionContext::CCC_ParenthesizedExpression)) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 968 | return CCP_Type; |
| 969 | |
| 970 | return CCP_Declaration; |
| 971 | } |
| 972 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 973 | void ResultBuilder::AdjustResultPriorityForDecl(Result &R) { |
| 974 | // If this is an Objective-C method declaration whose selector matches our |
| 975 | // preferred selector, give it a priority boost. |
| 976 | if (!PreferredSelector.isNull()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 977 | if (const auto *Method = dyn_cast<ObjCMethodDecl>(R.Declaration)) |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 978 | if (PreferredSelector == Method->getSelector()) |
| 979 | R.Priority += CCD_SelectorMatch; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 980 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 981 | // If we have a preferred type, adjust the priority for results with exactly- |
| 982 | // matching or nearly-matching types. |
| 983 | if (!PreferredType.isNull()) { |
| 984 | QualType T = getDeclUsageType(SemaRef.Context, R.Declaration); |
| 985 | if (!T.isNull()) { |
| 986 | CanQualType TC = SemaRef.Context.getCanonicalType(T); |
| 987 | // Check for exactly-matching types (modulo qualifiers). |
| 988 | if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC)) |
| 989 | R.Priority /= CCF_ExactTypeMatch; |
| 990 | // Check for nearly-matching types, based on classification of each. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 991 | else if ((getSimplifiedTypeClass(PreferredType) == |
| 992 | getSimplifiedTypeClass(TC)) && |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 993 | !(PreferredType->isEnumeralType() && TC->isEnumeralType())) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 994 | R.Priority /= CCF_SimilarTypeMatch; |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 995 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 996 | } |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 997 | } |
| 998 | |
Benjamin Kramer | 756ecb8 | 2019-02-11 14:52:15 +0000 | [diff] [blame] | 999 | static DeclContext::lookup_result getConstructors(ASTContext &Context, |
| 1000 | const CXXRecordDecl *Record) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 1001 | QualType RecordTy = Context.getTypeDeclType(Record); |
| 1002 | DeclarationName ConstructorName = |
| 1003 | Context.DeclarationNames.getCXXConstructorName( |
| 1004 | Context.getCanonicalType(RecordTy)); |
| 1005 | return Record->lookup(ConstructorName); |
| 1006 | } |
| 1007 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1008 | void ResultBuilder::MaybeAddConstructorResults(Result R) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1009 | if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration || |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1010 | !CompletionContext.wantConstructorResults()) |
| 1011 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1012 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1013 | const NamedDecl *D = R.Declaration; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1014 | const CXXRecordDecl *Record = nullptr; |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1015 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1016 | Record = ClassTemplate->getTemplatedDecl(); |
| 1017 | else if ((Record = dyn_cast<CXXRecordDecl>(D))) { |
| 1018 | // Skip specializations and partial specializations. |
| 1019 | if (isa<ClassTemplateSpecializationDecl>(Record)) |
| 1020 | return; |
| 1021 | } else { |
| 1022 | // There are no constructors here. |
| 1023 | return; |
| 1024 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1025 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1026 | Record = Record->getDefinition(); |
| 1027 | if (!Record) |
| 1028 | return; |
| 1029 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1030 | for (NamedDecl *Ctor : getConstructors(SemaRef.Context, Record)) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 1031 | R.Declaration = Ctor; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1032 | R.CursorKind = getCursorKindForDecl(R.Declaration); |
| 1033 | Results.push_back(R); |
| 1034 | } |
| 1035 | } |
| 1036 | |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1037 | static bool isConstructor(const Decl *ND) { |
| 1038 | if (const auto *Tmpl = dyn_cast<FunctionTemplateDecl>(ND)) |
| 1039 | ND = Tmpl->getTemplatedDecl(); |
| 1040 | return isa<CXXConstructorDecl>(ND); |
| 1041 | } |
| 1042 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1043 | void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) { |
| 1044 | assert(!ShadowMaps.empty() && "Must enter into a results scope"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1045 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1046 | if (R.Kind != Result::RK_Declaration) { |
| 1047 | // For non-declaration results, just add the result. |
| 1048 | Results.push_back(R); |
| 1049 | return; |
| 1050 | } |
| 1051 | |
| 1052 | // Look through using declarations. |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1053 | if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) { |
| 1054 | CodeCompletionResult Result(Using->getTargetDecl(), |
| 1055 | getBasePriority(Using->getTargetDecl()), |
| 1056 | R.Qualifier); |
| 1057 | Result.ShadowDecl = Using; |
| 1058 | MaybeAddResult(Result, CurContext); |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1059 | return; |
| 1060 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1061 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1062 | const Decl *CanonDecl = R.Declaration->getCanonicalDecl(); |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1063 | unsigned IDNS = CanonDecl->getIdentifierNamespace(); |
| 1064 | |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 1065 | bool AsNestedNameSpecifier = false; |
| 1066 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1067 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1068 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1069 | // C++ constructors are never found by name lookup. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1070 | if (isConstructor(R.Declaration)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1071 | return; |
| 1072 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1073 | ShadowMap &SMap = ShadowMaps.back(); |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1074 | ShadowMapEntry::iterator I, IEnd; |
| 1075 | ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName()); |
| 1076 | if (NamePos != SMap.end()) { |
| 1077 | I = NamePos->second.begin(); |
| 1078 | IEnd = NamePos->second.end(); |
| 1079 | } |
| 1080 | |
| 1081 | for (; I != IEnd; ++I) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1082 | const NamedDecl *ND = I->first; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1083 | unsigned Index = I->second; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1084 | if (ND->getCanonicalDecl() == CanonDecl) { |
| 1085 | // This is a redeclaration. Always pick the newer declaration. |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1086 | Results[Index].Declaration = R.Declaration; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1087 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1088 | // We're done. |
| 1089 | return; |
| 1090 | } |
| 1091 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1092 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1093 | // This is a new declaration in this scope. However, check whether this |
| 1094 | // declaration name is hidden by a similarly-named declaration in an outer |
| 1095 | // scope. |
| 1096 | std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end(); |
| 1097 | --SMEnd; |
| 1098 | for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) { |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1099 | ShadowMapEntry::iterator I, IEnd; |
| 1100 | ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName()); |
| 1101 | if (NamePos != SM->end()) { |
| 1102 | I = NamePos->second.begin(); |
| 1103 | IEnd = NamePos->second.end(); |
| 1104 | } |
| 1105 | for (; I != IEnd; ++I) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1106 | // A tag declaration does not hide a non-tag declaration. |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 1107 | if (I->first->hasTagIdentifierNamespace() && |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1108 | (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | |
| 1109 | Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol))) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1110 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1111 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1112 | // Protocols are in distinct namespaces from everything else. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1113 | if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) || |
| 1114 | (IDNS & Decl::IDNS_ObjCProtocol)) && |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1115 | I->first->getIdentifierNamespace() != IDNS) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1116 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1117 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1118 | // The newly-added result is hidden by an entry in the shadow map. |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 1119 | if (CheckHiddenResult(R, CurContext, I->first)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1120 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1121 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1122 | break; |
| 1123 | } |
| 1124 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1125 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1126 | // Make sure that any given declaration only shows up in the result set once. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1127 | if (!AllDeclsFound.insert(CanonDecl).second) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1128 | return; |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 1129 | |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1130 | // If the filter is for nested-name-specifiers, then this result starts a |
| 1131 | // nested-name-specifier. |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1132 | if (AsNestedNameSpecifier) { |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1133 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1134 | R.Priority = CCP_NestedNameSpecifier; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1135 | } else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1136 | AdjustResultPriorityForDecl(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1137 | |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 1138 | // If this result is supposed to have an informative qualifier, add one. |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1139 | if (R.QualifierIsInformative && !R.Qualifier && |
| 1140 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1141 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
| 1142 | if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1143 | R.Qualifier = |
| 1144 | NestedNameSpecifier::Create(SemaRef.Context, nullptr, Namespace); |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1145 | else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1146 | R.Qualifier = NestedNameSpecifier::Create( |
| 1147 | SemaRef.Context, nullptr, false, |
| 1148 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 1149 | else |
| 1150 | R.QualifierIsInformative = false; |
| 1151 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1152 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1153 | // Insert this result into the set of results and into the current shadow |
| 1154 | // map. |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1155 | SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1156 | Results.push_back(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1157 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1158 | if (!AsNestedNameSpecifier) |
| 1159 | MaybeAddConstructorResults(R); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1160 | } |
| 1161 | |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 1162 | static void setInBaseClass(ResultBuilder::Result &R) { |
| 1163 | R.Priority += CCD_InBaseClass; |
| 1164 | R.InBaseClass = true; |
| 1165 | } |
| 1166 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1167 | enum class OverloadCompare { BothViable, Dominates, Dominated }; |
| 1168 | // Will Candidate ever be called on the object, when overloaded with Incumbent? |
| 1169 | // Returns Dominates if Candidate is always called, Dominated if Incumbent is |
| 1170 | // always called, BothViable if either may be called dependending on arguments. |
| 1171 | // Precondition: must actually be overloads! |
| 1172 | static OverloadCompare compareOverloads(const CXXMethodDecl &Candidate, |
| 1173 | const CXXMethodDecl &Incumbent, |
| 1174 | const Qualifiers &ObjectQuals, |
| 1175 | ExprValueKind ObjectKind) { |
Ilya Biryukov | 8613e90 | 2019-10-04 08:10:27 +0000 | [diff] [blame] | 1176 | // Base/derived shadowing is handled elsewhere. |
| 1177 | if (Candidate.getDeclContext() != Incumbent.getDeclContext()) |
| 1178 | return OverloadCompare::BothViable; |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1179 | if (Candidate.isVariadic() != Incumbent.isVariadic() || |
| 1180 | Candidate.getNumParams() != Incumbent.getNumParams() || |
| 1181 | Candidate.getMinRequiredArguments() != |
| 1182 | Incumbent.getMinRequiredArguments()) |
| 1183 | return OverloadCompare::BothViable; |
| 1184 | for (unsigned I = 0, E = Candidate.getNumParams(); I != E; ++I) |
| 1185 | if (Candidate.parameters()[I]->getType().getCanonicalType() != |
| 1186 | Incumbent.parameters()[I]->getType().getCanonicalType()) |
| 1187 | return OverloadCompare::BothViable; |
| 1188 | if (!llvm::empty(Candidate.specific_attrs<EnableIfAttr>()) || |
| 1189 | !llvm::empty(Incumbent.specific_attrs<EnableIfAttr>())) |
| 1190 | return OverloadCompare::BothViable; |
| 1191 | // At this point, we know calls can't pick one or the other based on |
| 1192 | // arguments, so one of the two must win. (Or both fail, handled elsewhere). |
| 1193 | RefQualifierKind CandidateRef = Candidate.getRefQualifier(); |
| 1194 | RefQualifierKind IncumbentRef = Incumbent.getRefQualifier(); |
| 1195 | if (CandidateRef != IncumbentRef) { |
| 1196 | // If the object kind is LValue/RValue, there's one acceptable ref-qualifier |
| 1197 | // and it can't be mixed with ref-unqualified overloads (in valid code). |
| 1198 | |
| 1199 | // For xvalue objects, we prefer the rvalue overload even if we have to |
| 1200 | // add qualifiers (which is rare, because const&& is rare). |
| 1201 | if (ObjectKind == clang::VK_XValue) |
| 1202 | return CandidateRef == RQ_RValue ? OverloadCompare::Dominates |
| 1203 | : OverloadCompare::Dominated; |
| 1204 | } |
| 1205 | // Now the ref qualifiers are the same (or we're in some invalid state). |
| 1206 | // So make some decision based on the qualifiers. |
| 1207 | Qualifiers CandidateQual = Candidate.getMethodQualifiers(); |
| 1208 | Qualifiers IncumbentQual = Incumbent.getMethodQualifiers(); |
| 1209 | bool CandidateSuperset = CandidateQual.compatiblyIncludes(IncumbentQual); |
| 1210 | bool IncumbentSuperset = IncumbentQual.compatiblyIncludes(CandidateQual); |
| 1211 | if (CandidateSuperset == IncumbentSuperset) |
| 1212 | return OverloadCompare::BothViable; |
| 1213 | return IncumbentSuperset ? OverloadCompare::Dominates |
| 1214 | : OverloadCompare::Dominated; |
| 1215 | } |
| 1216 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1217 | void ResultBuilder::AddResult(Result R, DeclContext *CurContext, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 1218 | NamedDecl *Hiding, bool InBaseClass = false) { |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1219 | if (R.Kind != Result::RK_Declaration) { |
| 1220 | // For non-declaration results, just add the result. |
| 1221 | Results.push_back(R); |
| 1222 | return; |
| 1223 | } |
| 1224 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1225 | // Look through using declarations. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1226 | if (const auto *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) { |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1227 | CodeCompletionResult Result(Using->getTargetDecl(), |
| 1228 | getBasePriority(Using->getTargetDecl()), |
| 1229 | R.Qualifier); |
| 1230 | Result.ShadowDecl = Using; |
| 1231 | AddResult(Result, CurContext, Hiding); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1232 | return; |
| 1233 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1234 | |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 1235 | bool AsNestedNameSpecifier = false; |
| 1236 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1237 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1238 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1239 | // C++ constructors are never found by name lookup. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1240 | if (isConstructor(R.Declaration)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1241 | return; |
| 1242 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1243 | if (Hiding && CheckHiddenResult(R, CurContext, Hiding)) |
| 1244 | return; |
Nick Lewycky | c392148 | 2012-04-03 21:44:08 +0000 | [diff] [blame] | 1245 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1246 | // Make sure that any given declaration only shows up in the result set once. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1247 | if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second) |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1248 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1249 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1250 | // If the filter is for nested-name-specifiers, then this result starts a |
| 1251 | // nested-name-specifier. |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1252 | if (AsNestedNameSpecifier) { |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1253 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1254 | R.Priority = CCP_NestedNameSpecifier; |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1255 | } else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && |
| 1256 | InBaseClass && |
| 1257 | isa<CXXRecordDecl>( |
| 1258 | R.Declaration->getDeclContext()->getRedeclContext())) |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 1259 | R.QualifierIsInformative = true; |
| 1260 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1261 | // If this result is supposed to have an informative qualifier, add one. |
| 1262 | if (R.QualifierIsInformative && !R.Qualifier && |
| 1263 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1264 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1265 | if (const auto *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
| 1266 | R.Qualifier = |
| 1267 | NestedNameSpecifier::Create(SemaRef.Context, nullptr, Namespace); |
| 1268 | else if (const auto *Tag = dyn_cast<TagDecl>(Ctx)) |
| 1269 | R.Qualifier = NestedNameSpecifier::Create( |
| 1270 | SemaRef.Context, nullptr, false, |
| 1271 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1272 | else |
| 1273 | R.QualifierIsInformative = false; |
| 1274 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1275 | |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1276 | // Adjust the priority if this result comes from a base class. |
| 1277 | if (InBaseClass) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 1278 | setInBaseClass(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1279 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 1280 | AdjustResultPriorityForDecl(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1281 | |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1282 | if (HasObjectTypeQualifiers) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1283 | if (const auto *Method = dyn_cast<CXXMethodDecl>(R.Declaration)) |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1284 | if (Method->isInstance()) { |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 1285 | Qualifiers MethodQuals = Method->getMethodQualifiers(); |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1286 | if (ObjectTypeQualifiers == MethodQuals) |
| 1287 | R.Priority += CCD_ObjectQualifierMatch; |
| 1288 | else if (ObjectTypeQualifiers - MethodQuals) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1289 | // The method cannot be invoked, because doing so would drop |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1290 | // qualifiers. |
| 1291 | return; |
| 1292 | } |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1293 | // Detect cases where a ref-qualified method cannot be invoked. |
| 1294 | switch (Method->getRefQualifier()) { |
| 1295 | case RQ_LValue: |
| 1296 | if (ObjectKind != VK_LValue && !MethodQuals.hasConst()) |
| 1297 | return; |
| 1298 | break; |
| 1299 | case RQ_RValue: |
| 1300 | if (ObjectKind == VK_LValue) |
| 1301 | return; |
| 1302 | break; |
| 1303 | case RQ_None: |
| 1304 | break; |
| 1305 | } |
| 1306 | |
| 1307 | /// Check whether this dominates another overloaded method, which should |
| 1308 | /// be suppressed (or vice versa). |
| 1309 | /// Motivating case is const_iterator begin() const vs iterator begin(). |
| 1310 | auto &OverloadSet = OverloadMap[std::make_pair( |
| 1311 | CurContext, Method->getDeclName().getAsOpaqueInteger())]; |
Mark de Wever | 3ec6128 | 2019-12-17 21:54:32 +0100 | [diff] [blame] | 1312 | for (const DeclIndexPair Entry : OverloadSet) { |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1313 | Result &Incumbent = Results[Entry.second]; |
| 1314 | switch (compareOverloads(*Method, |
| 1315 | *cast<CXXMethodDecl>(Incumbent.Declaration), |
| 1316 | ObjectTypeQualifiers, ObjectKind)) { |
| 1317 | case OverloadCompare::Dominates: |
| 1318 | // Replace the dominated overload with this one. |
| 1319 | // FIXME: if the overload dominates multiple incumbents then we |
| 1320 | // should remove all. But two overloads is by far the common case. |
| 1321 | Incumbent = std::move(R); |
| 1322 | return; |
| 1323 | case OverloadCompare::Dominated: |
| 1324 | // This overload can't be called, drop it. |
| 1325 | return; |
| 1326 | case OverloadCompare::BothViable: |
| 1327 | break; |
| 1328 | } |
| 1329 | } |
| 1330 | OverloadSet.Add(Method, Results.size()); |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1331 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1332 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1333 | // Insert this result into the set of results. |
| 1334 | Results.push_back(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1335 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1336 | if (!AsNestedNameSpecifier) |
| 1337 | MaybeAddConstructorResults(R); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1340 | void ResultBuilder::AddResult(Result R) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1341 | assert(R.Kind != Result::RK_Declaration && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1342 | "Declaration results need more context"); |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1343 | Results.push_back(R); |
| 1344 | } |
| 1345 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1346 | /// Enter into a new scope. |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 1347 | void ResultBuilder::EnterNewScope() { ShadowMaps.emplace_back(); } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1348 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1349 | /// Exit from the current scope. |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1350 | void ResultBuilder::ExitScope() { |
| 1351 | ShadowMaps.pop_back(); |
| 1352 | } |
| 1353 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1354 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1355 | /// ordinary name lookup. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1356 | bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1357 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1358 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1359 | // If name lookup finds a local extern declaration, then we are in a |
| 1360 | // context where it behaves like an ordinary name. |
| 1361 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1362 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9858ed5 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1363 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1364 | else if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1365 | if (isa<ObjCIvarDecl>(ND)) |
| 1366 | return true; |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1367 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1368 | |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1369 | return ND->getIdentifierNamespace() & IDNS; |
| 1370 | } |
| 1371 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1372 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1373 | /// ordinary name lookup but is not a type name. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1374 | bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1375 | ND = ND->getUnderlyingDecl(); |
Alex Lorenz | f3df1f7 | 2017-11-14 01:46:24 +0000 | [diff] [blame] | 1376 | if (isa<TypeDecl>(ND)) |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1377 | return false; |
Alex Lorenz | f3df1f7 | 2017-11-14 01:46:24 +0000 | [diff] [blame] | 1378 | // Objective-C interfaces names are not filtered by this method because they |
| 1379 | // can be used in a class property expression. We can still filter out |
| 1380 | // @class declarations though. |
| 1381 | if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND)) { |
| 1382 | if (!ID->getDefinition()) |
| 1383 | return false; |
| 1384 | } |
| 1385 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1386 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1387 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9858ed5 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1388 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1389 | else if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1390 | if (isa<ObjCIvarDecl>(ND)) |
| 1391 | return true; |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1392 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1393 | |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1394 | return ND->getIdentifierNamespace() & IDNS; |
| 1395 | } |
| 1396 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1397 | bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const { |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1398 | if (!IsOrdinaryNonTypeName(ND)) |
| 1399 | return 0; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1400 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1401 | if (const auto *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl())) |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1402 | if (VD->getType()->isIntegralOrEnumerationType()) |
| 1403 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1404 | |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1405 | return false; |
| 1406 | } |
| 1407 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1408 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1409 | /// ordinary name lookup. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1410 | bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1411 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1412 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1413 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1414 | if (SemaRef.getLangOpts().CPlusPlus) |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 1415 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1416 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1417 | return (ND->getIdentifierNamespace() & IDNS) && !isa<ValueDecl>(ND) && |
| 1418 | !isa<FunctionTemplateDecl>(ND) && !isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1421 | /// Determines whether the given declaration is suitable as the |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1422 | /// start of a C++ nested-name-specifier, e.g., a class or namespace. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1423 | bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1424 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1425 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1426 | ND = ClassTemplate->getTemplatedDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1427 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1428 | return SemaRef.isAcceptableNestedNameSpecifier(ND); |
| 1429 | } |
| 1430 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1431 | /// Determines whether the given declaration is an enumeration. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1432 | bool ResultBuilder::IsEnum(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1433 | return isa<EnumDecl>(ND); |
| 1434 | } |
| 1435 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1436 | /// Determines whether the given declaration is a class or struct. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1437 | bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1438 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1439 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1440 | ND = ClassTemplate->getTemplatedDecl(); |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1441 | |
| 1442 | // For purposes of this check, interfaces match too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1443 | if (const auto *RD = dyn_cast<RecordDecl>(ND)) |
| 1444 | return RD->getTagKind() == TTK_Class || RD->getTagKind() == TTK_Struct || |
| 1445 | RD->getTagKind() == TTK_Interface; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1446 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1447 | return false; |
| 1448 | } |
| 1449 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1450 | /// Determines whether the given declaration is a union. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1451 | bool ResultBuilder::IsUnion(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1452 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1453 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1454 | ND = ClassTemplate->getTemplatedDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1455 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1456 | if (const auto *RD = dyn_cast<RecordDecl>(ND)) |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1457 | return RD->getTagKind() == TTK_Union; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1458 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1459 | return false; |
| 1460 | } |
| 1461 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1462 | /// Determines whether the given declaration is a namespace. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1463 | bool ResultBuilder::IsNamespace(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1464 | return isa<NamespaceDecl>(ND); |
| 1465 | } |
| 1466 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1467 | /// Determines whether the given declaration is a namespace or |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1468 | /// namespace alias. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1469 | bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1470 | return isa<NamespaceDecl>(ND->getUnderlyingDecl()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1471 | } |
| 1472 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1473 | /// Determines whether the given declaration is a type. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1474 | bool ResultBuilder::IsType(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1475 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 1476 | return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1479 | /// Determines which members of a class should be visible via |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 1480 | /// "." or "->". Only value declarations, nested name specifiers, and |
| 1481 | /// using declarations thereof should show up. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1482 | bool ResultBuilder::IsMember(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1483 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 7078839 | 2009-12-11 18:14:22 +0000 | [diff] [blame] | 1484 | return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) || |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1485 | isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1486 | } |
| 1487 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1488 | static bool isObjCReceiverType(ASTContext &C, QualType T) { |
| 1489 | T = C.getCanonicalType(T); |
| 1490 | switch (T->getTypeClass()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1491 | case Type::ObjCObject: |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1492 | case Type::ObjCInterface: |
| 1493 | case Type::ObjCObjectPointer: |
| 1494 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1495 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1496 | case Type::Builtin: |
| 1497 | switch (cast<BuiltinType>(T)->getKind()) { |
| 1498 | case BuiltinType::ObjCId: |
| 1499 | case BuiltinType::ObjCClass: |
| 1500 | case BuiltinType::ObjCSel: |
| 1501 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1502 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1503 | default: |
| 1504 | break; |
| 1505 | } |
| 1506 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1507 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1508 | default: |
| 1509 | break; |
| 1510 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1511 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1512 | if (!C.getLangOpts().CPlusPlus) |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1513 | return false; |
| 1514 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1515 | // FIXME: We could perform more analysis here to determine whether a |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1516 | // particular class type has any conversions to Objective-C types. For now, |
| 1517 | // just accept all class types. |
| 1518 | return T->isDependentType() || T->isRecordType(); |
| 1519 | } |
| 1520 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1521 | bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const { |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1522 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1523 | if (T.isNull()) |
| 1524 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1525 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1526 | T = SemaRef.Context.getBaseElementType(T); |
| 1527 | return isObjCReceiverType(SemaRef.Context, T); |
| 1528 | } |
| 1529 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1530 | bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture( |
| 1531 | const NamedDecl *ND) const { |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1532 | if (IsObjCMessageReceiver(ND)) |
| 1533 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1534 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1535 | const auto *Var = dyn_cast<VarDecl>(ND); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1536 | if (!Var) |
| 1537 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1538 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1539 | return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>(); |
| 1540 | } |
| 1541 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1542 | bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1543 | if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) || |
| 1544 | (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND))) |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1545 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1546 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1547 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1548 | if (T.isNull()) |
| 1549 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1550 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1551 | T = SemaRef.Context.getBaseElementType(T); |
| 1552 | return T->isObjCObjectType() || T->isObjCObjectPointerType() || |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1553 | T->isObjCIdType() || |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1554 | (SemaRef.getLangOpts().CPlusPlus && T->isRecordType()); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1555 | } |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1556 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1557 | bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const { |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1558 | return false; |
| 1559 | } |
| 1560 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1561 | /// Determines whether the given declaration is an Objective-C |
Douglas Gregor | 2b8162b | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1562 | /// instance variable. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1563 | bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const { |
Douglas Gregor | 2b8162b | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1564 | return isa<ObjCIvarDecl>(ND); |
| 1565 | } |
| 1566 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1567 | namespace { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1568 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1569 | /// Visible declaration consumer that adds a code-completion result |
| 1570 | /// for each visible declaration. |
| 1571 | class CodeCompletionDeclConsumer : public VisibleDeclConsumer { |
| 1572 | ResultBuilder &Results; |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1573 | DeclContext *InitialLookupCtx; |
| 1574 | // NamingClass and BaseType are used for access-checking. See |
| 1575 | // Sema::IsSimplyAccessible for details. |
| 1576 | CXXRecordDecl *NamingClass; |
| 1577 | QualType BaseType; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1578 | std::vector<FixItHint> FixIts; |
Haojian Wu | 10d95c5 | 2018-01-17 14:29:25 +0000 | [diff] [blame] | 1579 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1580 | public: |
| 1581 | CodeCompletionDeclConsumer( |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1582 | ResultBuilder &Results, DeclContext *InitialLookupCtx, |
| 1583 | QualType BaseType = QualType(), |
| 1584 | std::vector<FixItHint> FixIts = std::vector<FixItHint>()) |
| 1585 | : Results(Results), InitialLookupCtx(InitialLookupCtx), |
| 1586 | FixIts(std::move(FixIts)) { |
| 1587 | NamingClass = llvm::dyn_cast<CXXRecordDecl>(InitialLookupCtx); |
| 1588 | // If BaseType was not provided explicitly, emulate implicit 'this->'. |
| 1589 | if (BaseType.isNull()) { |
| 1590 | auto ThisType = Results.getSema().getCurrentThisType(); |
| 1591 | if (!ThisType.isNull()) { |
| 1592 | assert(ThisType->isPointerType()); |
| 1593 | BaseType = ThisType->getPointeeType(); |
| 1594 | if (!NamingClass) |
| 1595 | NamingClass = BaseType->getAsCXXRecordDecl(); |
| 1596 | } |
| 1597 | } |
| 1598 | this->BaseType = BaseType; |
| 1599 | } |
Craig Topper | e14c0f8 | 2014-03-12 04:55:44 +0000 | [diff] [blame] | 1600 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1601 | void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx, |
| 1602 | bool InBaseClass) override { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1603 | ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr, |
Ilya Biryukov | 9839755 | 2018-12-05 17:38:39 +0000 | [diff] [blame] | 1604 | false, IsAccessible(ND, Ctx), FixIts); |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1605 | Results.AddResult(Result, InitialLookupCtx, Hiding, InBaseClass); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1606 | } |
Haojian Wu | 10d95c5 | 2018-01-17 14:29:25 +0000 | [diff] [blame] | 1607 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1608 | void EnteredContext(DeclContext *Ctx) override { |
| 1609 | Results.addVisitedContext(Ctx); |
| 1610 | } |
Ilya Biryukov | 9839755 | 2018-12-05 17:38:39 +0000 | [diff] [blame] | 1611 | |
| 1612 | private: |
| 1613 | bool IsAccessible(NamedDecl *ND, DeclContext *Ctx) { |
| 1614 | // Naming class to use for access check. In most cases it was provided |
| 1615 | // explicitly (e.g. member access (lhs.foo) or qualified lookup (X::)), |
| 1616 | // for unqualified lookup we fallback to the \p Ctx in which we found the |
| 1617 | // member. |
| 1618 | auto *NamingClass = this->NamingClass; |
| 1619 | QualType BaseType = this->BaseType; |
| 1620 | if (auto *Cls = llvm::dyn_cast_or_null<CXXRecordDecl>(Ctx)) { |
| 1621 | if (!NamingClass) |
| 1622 | NamingClass = Cls; |
| 1623 | // When we emulate implicit 'this->' in an unqualified lookup, we might |
| 1624 | // end up with an invalid naming class. In that case, we avoid emulating |
| 1625 | // 'this->' qualifier to satisfy preconditions of the access checking. |
| 1626 | if (NamingClass->getCanonicalDecl() != Cls->getCanonicalDecl() && |
| 1627 | !NamingClass->isDerivedFrom(Cls)) { |
| 1628 | NamingClass = Cls; |
| 1629 | BaseType = QualType(); |
| 1630 | } |
| 1631 | } else { |
| 1632 | // The decl was found outside the C++ class, so only ObjC access checks |
| 1633 | // apply. Those do not rely on NamingClass and BaseType, so we clear them |
| 1634 | // out. |
| 1635 | NamingClass = nullptr; |
| 1636 | BaseType = QualType(); |
| 1637 | } |
| 1638 | return Results.getSema().IsSimplyAccessible(ND, NamingClass, BaseType); |
| 1639 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1640 | }; |
| 1641 | } // namespace |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1642 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1643 | /// Add type specifiers for the current language as keyword results. |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1644 | static void AddTypeSpecifierResults(const LangOptions &LangOpts, |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1645 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1646 | typedef CodeCompletionResult Result; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1647 | Results.AddResult(Result("short", CCP_Type)); |
| 1648 | Results.AddResult(Result("long", CCP_Type)); |
| 1649 | Results.AddResult(Result("signed", CCP_Type)); |
| 1650 | Results.AddResult(Result("unsigned", CCP_Type)); |
| 1651 | Results.AddResult(Result("void", CCP_Type)); |
| 1652 | Results.AddResult(Result("char", CCP_Type)); |
| 1653 | Results.AddResult(Result("int", CCP_Type)); |
| 1654 | Results.AddResult(Result("float", CCP_Type)); |
| 1655 | Results.AddResult(Result("double", CCP_Type)); |
| 1656 | Results.AddResult(Result("enum", CCP_Type)); |
| 1657 | Results.AddResult(Result("struct", CCP_Type)); |
| 1658 | Results.AddResult(Result("union", CCP_Type)); |
| 1659 | Results.AddResult(Result("const", CCP_Type)); |
| 1660 | Results.AddResult(Result("volatile", CCP_Type)); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1661 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1662 | if (LangOpts.C99) { |
| 1663 | // C99-specific |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1664 | Results.AddResult(Result("_Complex", CCP_Type)); |
| 1665 | Results.AddResult(Result("_Imaginary", CCP_Type)); |
| 1666 | Results.AddResult(Result("_Bool", CCP_Type)); |
| 1667 | Results.AddResult(Result("restrict", CCP_Type)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1668 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1669 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1670 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1671 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1672 | if (LangOpts.CPlusPlus) { |
| 1673 | // C++-specific |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1674 | Results.AddResult( |
| 1675 | Result("bool", CCP_Type + (LangOpts.ObjC ? CCD_bool_in_ObjC : 0))); |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1676 | Results.AddResult(Result("class", CCP_Type)); |
| 1677 | Results.AddResult(Result("wchar_t", CCP_Type)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1678 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1679 | // typename qualified-id |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1680 | Builder.AddTypedTextChunk("typename"); |
| 1681 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1682 | Builder.AddPlaceholderChunk("qualifier"); |
| 1683 | Builder.AddTextChunk("::"); |
| 1684 | Builder.AddPlaceholderChunk("name"); |
| 1685 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1686 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1687 | if (LangOpts.CPlusPlus11) { |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1688 | Results.AddResult(Result("auto", CCP_Type)); |
| 1689 | Results.AddResult(Result("char16_t", CCP_Type)); |
| 1690 | Results.AddResult(Result("char32_t", CCP_Type)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1691 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1692 | Builder.AddTypedTextChunk("decltype"); |
| 1693 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1694 | Builder.AddPlaceholderChunk("expression"); |
| 1695 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1696 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1697 | } |
Alex Lorenz | 46eed9d | 2017-02-13 23:35:59 +0000 | [diff] [blame] | 1698 | } else |
| 1699 | Results.AddResult(Result("__auto_type", CCP_Type)); |
| 1700 | |
Richard Smith | 7b301e2 | 2018-05-24 21:51:52 +0000 | [diff] [blame] | 1701 | // GNU keywords |
| 1702 | if (LangOpts.GNUKeywords) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1703 | // FIXME: Enable when we actually support decimal floating point. |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1704 | // Results.AddResult(Result("_Decimal32")); |
| 1705 | // Results.AddResult(Result("_Decimal64")); |
| 1706 | // Results.AddResult(Result("_Decimal128")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1707 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1708 | Builder.AddTypedTextChunk("typeof"); |
| 1709 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1710 | Builder.AddPlaceholderChunk("expression"); |
| 1711 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1712 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1713 | Builder.AddTypedTextChunk("typeof"); |
| 1714 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1715 | Builder.AddPlaceholderChunk("type"); |
| 1716 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1717 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1718 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 1719 | |
| 1720 | // Nullability |
Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 1721 | Results.AddResult(Result("_Nonnull", CCP_Type)); |
| 1722 | Results.AddResult(Result("_Null_unspecified", CCP_Type)); |
| 1723 | Results.AddResult(Result("_Nullable", CCP_Type)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1724 | } |
| 1725 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1726 | static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1727 | const LangOptions &LangOpts, |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1728 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1729 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1730 | // Note: we don't suggest either "auto" or "register", because both |
| 1731 | // are pointless as storage specifiers. Elsewhere, we suggest "auto" |
| 1732 | // in C++0x as a type specifier. |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1733 | Results.AddResult(Result("extern")); |
| 1734 | Results.AddResult(Result("static")); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1735 | |
| 1736 | if (LangOpts.CPlusPlus11) { |
| 1737 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
| 1738 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
| 1739 | |
| 1740 | // alignas |
| 1741 | Builder.AddTypedTextChunk("alignas"); |
| 1742 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1743 | Builder.AddPlaceholderChunk("expression"); |
| 1744 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1745 | Results.AddResult(Result(Builder.TakeString())); |
| 1746 | |
| 1747 | Results.AddResult(Result("constexpr")); |
| 1748 | Results.AddResult(Result("thread_local")); |
| 1749 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1752 | static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1753 | const LangOptions &LangOpts, |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1754 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1755 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1756 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1757 | case Sema::PCC_Class: |
| 1758 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1759 | if (LangOpts.CPlusPlus) { |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1760 | Results.AddResult(Result("explicit")); |
| 1761 | Results.AddResult(Result("friend")); |
| 1762 | Results.AddResult(Result("mutable")); |
| 1763 | Results.AddResult(Result("virtual")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1764 | } |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 1765 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1766 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1767 | case Sema::PCC_ObjCInterface: |
| 1768 | case Sema::PCC_ObjCImplementation: |
| 1769 | case Sema::PCC_Namespace: |
| 1770 | case Sema::PCC_Template: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1771 | if (LangOpts.CPlusPlus || LangOpts.C99) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1772 | Results.AddResult(Result("inline")); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1773 | break; |
| 1774 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1775 | case Sema::PCC_ObjCInstanceVariableList: |
| 1776 | case Sema::PCC_Expression: |
| 1777 | case Sema::PCC_Statement: |
| 1778 | case Sema::PCC_ForInit: |
| 1779 | case Sema::PCC_Condition: |
| 1780 | case Sema::PCC_RecoveryInFunction: |
| 1781 | case Sema::PCC_Type: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1782 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1783 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1784 | break; |
| 1785 | } |
| 1786 | } |
| 1787 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1788 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt); |
| 1789 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt); |
| 1790 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1791 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1792 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1793 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1794 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1795 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1796 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1797 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1798 | static void AddTypedefResult(ResultBuilder &Results) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1799 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1800 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1801 | Builder.AddTypedTextChunk("typedef"); |
| 1802 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1803 | Builder.AddPlaceholderChunk("type"); |
| 1804 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1805 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 2fa3188 | 2019-05-29 15:32:17 +0000 | [diff] [blame] | 1806 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1807 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1808 | } |
| 1809 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1810 | static bool WantTypesInContext(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1811 | const LangOptions &LangOpts) { |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1812 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1813 | case Sema::PCC_Namespace: |
| 1814 | case Sema::PCC_Class: |
| 1815 | case Sema::PCC_ObjCInstanceVariableList: |
| 1816 | case Sema::PCC_Template: |
| 1817 | case Sema::PCC_MemberTemplate: |
| 1818 | case Sema::PCC_Statement: |
| 1819 | case Sema::PCC_RecoveryInFunction: |
| 1820 | case Sema::PCC_Type: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1821 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1822 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1823 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1824 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1825 | case Sema::PCC_Expression: |
| 1826 | case Sema::PCC_Condition: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1827 | return LangOpts.CPlusPlus; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1828 | |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1829 | case Sema::PCC_ObjCInterface: |
| 1830 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1831 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1832 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1833 | case Sema::PCC_ForInit: |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1834 | return LangOpts.CPlusPlus || LangOpts.ObjC || LangOpts.C99; |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1835 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 1836 | |
| 1837 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1840 | static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context, |
| 1841 | const Preprocessor &PP) { |
| 1842 | PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP); |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1843 | Policy.AnonymousTagLocations = false; |
| 1844 | Policy.SuppressStrongLifetime = true; |
Douglas Gregor | 2e10cf9 | 2011-11-03 00:16:13 +0000 | [diff] [blame] | 1845 | Policy.SuppressUnwrittenScope = true; |
Ilya Biryukov | b5da91c | 2017-11-08 10:39:09 +0000 | [diff] [blame] | 1846 | Policy.SuppressScope = true; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1847 | return Policy; |
| 1848 | } |
| 1849 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1850 | /// Retrieve a printing policy suitable for code completion. |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1851 | static PrintingPolicy getCompletionPrintingPolicy(Sema &S) { |
| 1852 | return getCompletionPrintingPolicy(S.Context, S.PP); |
| 1853 | } |
| 1854 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1855 | /// Retrieve the string representation of the given type as a string |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1856 | /// that has the appropriate lifetime for code completion. |
| 1857 | /// |
| 1858 | /// This routine provides a fast path where we provide constant strings for |
| 1859 | /// common type names. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1860 | static const char *GetCompletionTypeString(QualType T, ASTContext &Context, |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1861 | const PrintingPolicy &Policy, |
| 1862 | CodeCompletionAllocator &Allocator) { |
| 1863 | if (!T.getLocalQualifiers()) { |
| 1864 | // Built-in type names are constant strings. |
| 1865 | if (const BuiltinType *BT = dyn_cast<BuiltinType>(T)) |
Argyrios Kyrtzidis | bbff3da | 2012-05-05 04:20:28 +0000 | [diff] [blame] | 1866 | return BT->getNameAsCString(Policy); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1867 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1868 | // Anonymous tag types are constant strings. |
| 1869 | if (const TagType *TagT = dyn_cast<TagType>(T)) |
| 1870 | if (TagDecl *Tag = TagT->getDecl()) |
John McCall | 5ea9577 | 2013-03-09 00:54:27 +0000 | [diff] [blame] | 1871 | if (!Tag->hasNameForLinkage()) { |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1872 | switch (Tag->getTagKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1873 | case TTK_Struct: |
| 1874 | return "struct <anonymous>"; |
| 1875 | case TTK_Interface: |
| 1876 | return "__interface <anonymous>"; |
| 1877 | case TTK_Class: |
| 1878 | return "class <anonymous>"; |
| 1879 | case TTK_Union: |
| 1880 | return "union <anonymous>"; |
| 1881 | case TTK_Enum: |
| 1882 | return "enum <anonymous>"; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1883 | } |
| 1884 | } |
| 1885 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1886 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1887 | // Slow path: format the type as a string. |
| 1888 | std::string Result; |
| 1889 | T.getAsStringInternal(Result, Policy); |
| 1890 | return Allocator.CopyString(Result); |
| 1891 | } |
| 1892 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1893 | /// Add a completion for "this", if we're in a member function. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1894 | static void addThisCompletion(Sema &S, ResultBuilder &Results) { |
| 1895 | QualType ThisTy = S.getCurrentThisType(); |
| 1896 | if (ThisTy.isNull()) |
| 1897 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1898 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1899 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1900 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1901 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1902 | Builder.AddResultTypeChunk( |
| 1903 | GetCompletionTypeString(ThisTy, S.Context, Policy, Allocator)); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1904 | Builder.AddTypedTextChunk("this"); |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1905 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1908 | static void AddStaticAssertResult(CodeCompletionBuilder &Builder, |
| 1909 | ResultBuilder &Results, |
| 1910 | const LangOptions &LangOpts) { |
| 1911 | if (!LangOpts.CPlusPlus11) |
| 1912 | return; |
| 1913 | |
| 1914 | Builder.AddTypedTextChunk("static_assert"); |
| 1915 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1916 | Builder.AddPlaceholderChunk("expression"); |
| 1917 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 1918 | Builder.AddPlaceholderChunk("message"); |
| 1919 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 2fa3188 | 2019-05-29 15:32:17 +0000 | [diff] [blame] | 1920 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1921 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 1922 | } |
| 1923 | |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 1924 | static void AddOverrideResults(ResultBuilder &Results, |
| 1925 | const CodeCompletionContext &CCContext, |
| 1926 | CodeCompletionBuilder &Builder) { |
| 1927 | Sema &S = Results.getSema(); |
| 1928 | const auto *CR = llvm::dyn_cast<CXXRecordDecl>(S.CurContext); |
| 1929 | // If not inside a class/struct/union return empty. |
| 1930 | if (!CR) |
| 1931 | return; |
| 1932 | // First store overrides within current class. |
| 1933 | // These are stored by name to make querying fast in the later step. |
| 1934 | llvm::StringMap<std::vector<FunctionDecl *>> Overrides; |
| 1935 | for (auto *Method : CR->methods()) { |
| 1936 | if (!Method->isVirtual() || !Method->getIdentifier()) |
| 1937 | continue; |
| 1938 | Overrides[Method->getName()].push_back(Method); |
| 1939 | } |
| 1940 | |
| 1941 | for (const auto &Base : CR->bases()) { |
| 1942 | const auto *BR = Base.getType().getTypePtr()->getAsCXXRecordDecl(); |
| 1943 | if (!BR) |
| 1944 | continue; |
| 1945 | for (auto *Method : BR->methods()) { |
| 1946 | if (!Method->isVirtual() || !Method->getIdentifier()) |
| 1947 | continue; |
| 1948 | const auto it = Overrides.find(Method->getName()); |
| 1949 | bool IsOverriden = false; |
| 1950 | if (it != Overrides.end()) { |
| 1951 | for (auto *MD : it->second) { |
| 1952 | // If the method in current body is not an overload of this virtual |
| 1953 | // function, then it overrides this one. |
| 1954 | if (!S.IsOverload(MD, Method, false)) { |
| 1955 | IsOverriden = true; |
| 1956 | break; |
| 1957 | } |
| 1958 | } |
| 1959 | } |
| 1960 | if (!IsOverriden) { |
| 1961 | // Generates a new CodeCompletionResult by taking this function and |
| 1962 | // converting it into an override declaration with only one chunk in the |
| 1963 | // final CodeCompletionString as a TypedTextChunk. |
| 1964 | std::string OverrideSignature; |
| 1965 | llvm::raw_string_ostream OS(OverrideSignature); |
| 1966 | CodeCompletionResult CCR(Method, 0); |
| 1967 | PrintingPolicy Policy = |
| 1968 | getCompletionPrintingPolicy(S.getASTContext(), S.getPreprocessor()); |
| 1969 | auto *CCS = CCR.createCodeCompletionStringForOverride( |
| 1970 | S.getPreprocessor(), S.getASTContext(), Builder, |
| 1971 | /*IncludeBriefComments=*/false, CCContext, Policy); |
| 1972 | Results.AddResult(CodeCompletionResult(CCS, Method, CCP_CodePattern)); |
| 1973 | } |
| 1974 | } |
| 1975 | } |
| 1976 | } |
| 1977 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1978 | /// Add language constructs that show up for "ordinary" names. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1979 | static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, Scope *S, |
| 1980 | Sema &SemaRef, ResultBuilder &Results) { |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1981 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1982 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1983 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1984 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1985 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1986 | case Sema::PCC_Namespace: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1987 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1988 | if (Results.includeCodePatterns()) { |
| 1989 | // namespace <identifier> { declarations } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1990 | Builder.AddTypedTextChunk("namespace"); |
| 1991 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1992 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 1993 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1994 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 1995 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1996 | Builder.AddPlaceholderChunk("declarations"); |
| 1997 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 1998 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 1999 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2000 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2001 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2002 | // namespace identifier = identifier ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2003 | Builder.AddTypedTextChunk("namespace"); |
| 2004 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2005 | Builder.AddPlaceholderChunk("name"); |
| 2006 | Builder.AddChunk(CodeCompletionString::CK_Equal); |
| 2007 | Builder.AddPlaceholderChunk("namespace"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2008 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2009 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2010 | |
| 2011 | // Using directives |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2012 | Builder.AddTypedTextChunk("using namespace"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2013 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2014 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2015 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2016 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2017 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2018 | // asm(string-literal) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2019 | Builder.AddTypedTextChunk("asm"); |
| 2020 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2021 | Builder.AddPlaceholderChunk("string-literal"); |
| 2022 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2023 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2024 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2025 | if (Results.includeCodePatterns()) { |
| 2026 | // Explicit template instantiation |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2027 | Builder.AddTypedTextChunk("template"); |
| 2028 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2029 | Builder.AddPlaceholderChunk("declaration"); |
| 2030 | Results.AddResult(Result(Builder.TakeString())); |
Eric Liu | b87c6eb | 2018-10-15 12:37:23 +0000 | [diff] [blame] | 2031 | } else { |
| 2032 | Results.AddResult(Result("template", CodeCompletionResult::RK_Keyword)); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2033 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2034 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2035 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2036 | if (SemaRef.getLangOpts().ObjC) |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2037 | AddObjCTopLevelResults(Results, true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2038 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2039 | AddTypedefResult(Results); |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 2040 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2041 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2042 | case Sema::PCC_Class: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2043 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2044 | // Using declaration |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2045 | Builder.AddTypedTextChunk("using"); |
| 2046 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2047 | Builder.AddPlaceholderChunk("qualifier"); |
| 2048 | Builder.AddTextChunk("::"); |
| 2049 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2050 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2051 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2052 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2053 | // using typename qualifier::name (only in a dependent context) |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2054 | if (SemaRef.CurContext->isDependentContext()) { |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2055 | Builder.AddTypedTextChunk("using typename"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2056 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2057 | Builder.AddPlaceholderChunk("qualifier"); |
| 2058 | Builder.AddTextChunk("::"); |
| 2059 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2060 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2061 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2062 | } |
| 2063 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 2064 | AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts()); |
| 2065 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2066 | if (CCC == Sema::PCC_Class) { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2067 | AddTypedefResult(Results); |
| 2068 | |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2069 | bool IsNotInheritanceScope = |
| 2070 | !(S->getFlags() & Scope::ClassInheritanceScope); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2071 | // public: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2072 | Builder.AddTypedTextChunk("public"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2073 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2074 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2075 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2076 | |
| 2077 | // protected: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2078 | Builder.AddTypedTextChunk("protected"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2079 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2080 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2081 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2082 | |
| 2083 | // private: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2084 | Builder.AddTypedTextChunk("private"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2085 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2086 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2087 | Results.AddResult(Result(Builder.TakeString())); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 2088 | |
| 2089 | // FIXME: This adds override results only if we are at the first word of |
| 2090 | // the declaration/definition. Also call this from other sides to have |
| 2091 | // more use-cases. |
| 2092 | AddOverrideResults(Results, CodeCompletionContext::CCC_ClassStructUnion, |
| 2093 | Builder); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2094 | } |
| 2095 | } |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 2096 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2097 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2098 | case Sema::PCC_Template: |
| 2099 | case Sema::PCC_MemberTemplate: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2100 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2101 | // template < parameters > |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2102 | Builder.AddTypedTextChunk("template"); |
| 2103 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2104 | Builder.AddPlaceholderChunk("parameters"); |
| 2105 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2106 | Results.AddResult(Result(Builder.TakeString())); |
Eric Liu | b87c6eb | 2018-10-15 12:37:23 +0000 | [diff] [blame] | 2107 | } else { |
| 2108 | Results.AddResult(Result("template", CodeCompletionResult::RK_Keyword)); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2109 | } |
| 2110 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2111 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2112 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2113 | break; |
| 2114 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2115 | case Sema::PCC_ObjCInterface: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2116 | AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true); |
| 2117 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2118 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 2119 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2120 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2121 | case Sema::PCC_ObjCImplementation: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2122 | AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true); |
| 2123 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2124 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 2125 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2126 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2127 | case Sema::PCC_ObjCInstanceVariableList: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2128 | AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 2129 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2130 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2131 | case Sema::PCC_RecoveryInFunction: |
| 2132 | case Sema::PCC_Statement: { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2133 | AddTypedefResult(Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2134 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2135 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() && |
| 2136 | SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2137 | Builder.AddTypedTextChunk("try"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2138 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2139 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2140 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2141 | Builder.AddPlaceholderChunk("statements"); |
| 2142 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2143 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2144 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2145 | Builder.AddTextChunk("catch"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2146 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2147 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2148 | Builder.AddPlaceholderChunk("declaration"); |
| 2149 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2150 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2151 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2152 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2153 | Builder.AddPlaceholderChunk("statements"); |
| 2154 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2155 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2156 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2157 | } |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2158 | if (SemaRef.getLangOpts().ObjC) |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2159 | AddObjCStatementResults(Results, true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2160 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2161 | if (Results.includeCodePatterns()) { |
| 2162 | // if (condition) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2163 | Builder.AddTypedTextChunk("if"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2164 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2165 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2166 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2167 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2168 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2169 | Builder.AddPlaceholderChunk("expression"); |
| 2170 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2171 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2172 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2173 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2174 | Builder.AddPlaceholderChunk("statements"); |
| 2175 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2176 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2177 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2178 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2179 | // switch (condition) { } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2180 | Builder.AddTypedTextChunk("switch"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2181 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2182 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2183 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2184 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2185 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2186 | Builder.AddPlaceholderChunk("expression"); |
| 2187 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2188 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2189 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 2190 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2191 | Builder.AddPlaceholderChunk("cases"); |
| 2192 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2193 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2194 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2195 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2196 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2197 | // Switch-specific statements. |
Sam McCall | aeb4b3e | 2018-10-10 10:51:48 +0000 | [diff] [blame] | 2198 | if (SemaRef.getCurFunction() && |
| 2199 | !SemaRef.getCurFunction()->SwitchStack.empty()) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2200 | // case expression: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2201 | Builder.AddTypedTextChunk("case"); |
| 2202 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2203 | Builder.AddPlaceholderChunk("expression"); |
| 2204 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 2205 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2206 | |
| 2207 | // default: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2208 | Builder.AddTypedTextChunk("default"); |
| 2209 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 2210 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2211 | } |
| 2212 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2213 | if (Results.includeCodePatterns()) { |
| 2214 | /// while (condition) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2215 | Builder.AddTypedTextChunk("while"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2216 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2217 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2218 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2219 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2220 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2221 | Builder.AddPlaceholderChunk("expression"); |
| 2222 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2223 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2224 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2225 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2226 | Builder.AddPlaceholderChunk("statements"); |
| 2227 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2228 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2229 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2230 | |
| 2231 | // do { statements } while ( expression ); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2232 | Builder.AddTypedTextChunk("do"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2233 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2234 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2235 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2236 | Builder.AddPlaceholderChunk("statements"); |
| 2237 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2238 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2239 | Builder.AddTextChunk("while"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2240 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2241 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2242 | Builder.AddPlaceholderChunk("expression"); |
| 2243 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2244 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2245 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2246 | // for ( for-init-statement ; condition ; expression ) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2247 | Builder.AddTypedTextChunk("for"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2248 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2249 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2250 | if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2251 | Builder.AddPlaceholderChunk("init-statement"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2252 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2253 | Builder.AddPlaceholderChunk("init-expression"); |
| 2254 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2255 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2256 | Builder.AddPlaceholderChunk("condition"); |
| 2257 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2258 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2259 | Builder.AddPlaceholderChunk("inc-expression"); |
| 2260 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2261 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2262 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 2263 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2264 | Builder.AddPlaceholderChunk("statements"); |
| 2265 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2266 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2267 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2268 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2269 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2270 | if (S->getContinueParent()) { |
| 2271 | // continue ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2272 | Builder.AddTypedTextChunk("continue"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2273 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2274 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2275 | } |
| 2276 | |
| 2277 | if (S->getBreakParent()) { |
| 2278 | // break ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2279 | Builder.AddTypedTextChunk("break"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2280 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2281 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2282 | } |
| 2283 | |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2284 | // "return expression ;" or "return ;", depending on the return type. |
| 2285 | QualType ReturnType; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2286 | if (const auto *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext)) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2287 | ReturnType = Function->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2288 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext)) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2289 | ReturnType = Method->getReturnType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2290 | else if (SemaRef.getCurBlock() && |
Douglas Gregor | 9a28e84 | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 2291 | !SemaRef.getCurBlock()->ReturnType.isNull()) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2292 | ReturnType = SemaRef.getCurBlock()->ReturnType;; |
| 2293 | if (ReturnType.isNull() || ReturnType->isVoidType()) { |
| 2294 | Builder.AddTypedTextChunk("return"); |
| 2295 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2296 | Results.AddResult(Result(Builder.TakeString())); |
| 2297 | } else { |
| 2298 | assert(!ReturnType.isNull()); |
| 2299 | // "return expression ;" |
| 2300 | Builder.AddTypedTextChunk("return"); |
| 2301 | Builder.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2302 | Builder.AddPlaceholderChunk("expression"); |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2303 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2304 | Results.AddResult(Result(Builder.TakeString())); |
| 2305 | // When boolean, also add 'return true;' and 'return false;'. |
| 2306 | if (ReturnType->isBooleanType()) { |
| 2307 | Builder.AddTypedTextChunk("return true"); |
| 2308 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2309 | Results.AddResult(Result(Builder.TakeString())); |
| 2310 | |
| 2311 | Builder.AddTypedTextChunk("return false"); |
| 2312 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2313 | Results.AddResult(Result(Builder.TakeString())); |
| 2314 | } |
Ilya Biryukov | 57a51b6 | 2020-01-10 11:50:27 +0100 | [diff] [blame^] | 2315 | // For pointers, suggest 'return nullptr' in C++. |
| 2316 | if (SemaRef.getLangOpts().CPlusPlus11 && |
| 2317 | (ReturnType->isPointerType() || ReturnType->isMemberPointerType())) { |
| 2318 | Builder.AddTypedTextChunk("return nullptr"); |
| 2319 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2320 | Results.AddResult(Result(Builder.TakeString())); |
| 2321 | } |
Douglas Gregor | 44272ca | 2010-02-18 04:06:48 +0000 | [diff] [blame] | 2322 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2323 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2324 | // goto identifier ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2325 | Builder.AddTypedTextChunk("goto"); |
| 2326 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2327 | Builder.AddPlaceholderChunk("label"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2328 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2329 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2330 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2331 | // Using directives |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2332 | Builder.AddTypedTextChunk("using namespace"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2333 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2334 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2335 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2336 | Results.AddResult(Result(Builder.TakeString())); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 2337 | |
| 2338 | AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts()); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2339 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2340 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2341 | |
| 2342 | // Fall through (for statement expressions). |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2343 | case Sema::PCC_ForInit: |
| 2344 | case Sema::PCC_Condition: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2345 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2346 | // Fall through: conditions and statements can have expressions. |
Galina Kistanova | 3339911 | 2017-06-03 06:35:06 +0000 | [diff] [blame] | 2347 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2348 | |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 2349 | case Sema::PCC_ParenthesizedExpression: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2350 | if (SemaRef.getLangOpts().ObjCAutoRefCount && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2351 | CCC == Sema::PCC_ParenthesizedExpression) { |
| 2352 | // (__bridge <type>)<expression> |
| 2353 | Builder.AddTypedTextChunk("__bridge"); |
| 2354 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2355 | Builder.AddPlaceholderChunk("type"); |
| 2356 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2357 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2358 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2359 | |
| 2360 | // (__bridge_transfer <Objective-C type>)<expression> |
| 2361 | Builder.AddTypedTextChunk("__bridge_transfer"); |
| 2362 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2363 | Builder.AddPlaceholderChunk("Objective-C type"); |
| 2364 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2365 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2366 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2367 | |
| 2368 | // (__bridge_retained <CF type>)<expression> |
| 2369 | Builder.AddTypedTextChunk("__bridge_retained"); |
| 2370 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2371 | Builder.AddPlaceholderChunk("CF type"); |
| 2372 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2373 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2374 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2375 | } |
| 2376 | // Fall through |
Galina Kistanova | 3339911 | 2017-06-03 06:35:06 +0000 | [diff] [blame] | 2377 | LLVM_FALLTHROUGH; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2378 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2379 | case Sema::PCC_Expression: { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2380 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2381 | // 'this', if we're in a non-static member function. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 2382 | addThisCompletion(SemaRef, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2383 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2384 | // true |
| 2385 | Builder.AddResultTypeChunk("bool"); |
| 2386 | Builder.AddTypedTextChunk("true"); |
| 2387 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2388 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2389 | // false |
| 2390 | Builder.AddResultTypeChunk("bool"); |
| 2391 | Builder.AddTypedTextChunk("false"); |
| 2392 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2393 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2394 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2395 | // dynamic_cast < type-id > ( expression ) |
| 2396 | Builder.AddTypedTextChunk("dynamic_cast"); |
| 2397 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2398 | Builder.AddPlaceholderChunk("type"); |
| 2399 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2400 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2401 | Builder.AddPlaceholderChunk("expression"); |
| 2402 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2403 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2404 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2405 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2406 | // static_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2407 | Builder.AddTypedTextChunk("static_cast"); |
| 2408 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2409 | Builder.AddPlaceholderChunk("type"); |
| 2410 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2411 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2412 | Builder.AddPlaceholderChunk("expression"); |
| 2413 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2414 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2415 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2416 | // reinterpret_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2417 | Builder.AddTypedTextChunk("reinterpret_cast"); |
| 2418 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2419 | Builder.AddPlaceholderChunk("type"); |
| 2420 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2421 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2422 | Builder.AddPlaceholderChunk("expression"); |
| 2423 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2424 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2425 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2426 | // const_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2427 | Builder.AddTypedTextChunk("const_cast"); |
| 2428 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2429 | Builder.AddPlaceholderChunk("type"); |
| 2430 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2431 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2432 | Builder.AddPlaceholderChunk("expression"); |
| 2433 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2434 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2435 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2436 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2437 | // typeid ( expression-or-type ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2438 | Builder.AddResultTypeChunk("std::type_info"); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2439 | Builder.AddTypedTextChunk("typeid"); |
| 2440 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2441 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 2442 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2443 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2444 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2445 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2446 | // new T ( ... ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2447 | Builder.AddTypedTextChunk("new"); |
| 2448 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2449 | Builder.AddPlaceholderChunk("type"); |
| 2450 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2451 | Builder.AddPlaceholderChunk("expressions"); |
| 2452 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2453 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2454 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2455 | // new T [ ] ( ... ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2456 | Builder.AddTypedTextChunk("new"); |
| 2457 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2458 | Builder.AddPlaceholderChunk("type"); |
| 2459 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 2460 | Builder.AddPlaceholderChunk("size"); |
| 2461 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 2462 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2463 | Builder.AddPlaceholderChunk("expressions"); |
| 2464 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2465 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2466 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2467 | // delete expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2468 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2469 | Builder.AddTypedTextChunk("delete"); |
| 2470 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2471 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2472 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2473 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2474 | // delete [] expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2475 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2476 | Builder.AddTypedTextChunk("delete"); |
| 2477 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2478 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 2479 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 2480 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2481 | Builder.AddPlaceholderChunk("expression"); |
| 2482 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2483 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2484 | if (SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2485 | // throw expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2486 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2487 | Builder.AddTypedTextChunk("throw"); |
| 2488 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2489 | Builder.AddPlaceholderChunk("expression"); |
| 2490 | Results.AddResult(Result(Builder.TakeString())); |
| 2491 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2492 | |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 2493 | // FIXME: Rethrow? |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2494 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2495 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2496 | // nullptr |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2497 | Builder.AddResultTypeChunk("std::nullptr_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2498 | Builder.AddTypedTextChunk("nullptr"); |
| 2499 | Results.AddResult(Result(Builder.TakeString())); |
| 2500 | |
| 2501 | // alignof |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2502 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2503 | Builder.AddTypedTextChunk("alignof"); |
| 2504 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2505 | Builder.AddPlaceholderChunk("type"); |
| 2506 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2507 | Results.AddResult(Result(Builder.TakeString())); |
| 2508 | |
| 2509 | // noexcept |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2510 | Builder.AddResultTypeChunk("bool"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2511 | Builder.AddTypedTextChunk("noexcept"); |
| 2512 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2513 | Builder.AddPlaceholderChunk("expression"); |
| 2514 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2515 | Results.AddResult(Result(Builder.TakeString())); |
| 2516 | |
| 2517 | // sizeof... expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2518 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2519 | Builder.AddTypedTextChunk("sizeof..."); |
| 2520 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2521 | Builder.AddPlaceholderChunk("parameter-pack"); |
| 2522 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2523 | Results.AddResult(Result(Builder.TakeString())); |
| 2524 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2525 | } |
| 2526 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2527 | if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2528 | // Add "super", if we're in an Objective-C class with a superclass. |
Ted Kremenek | 305a0a7 | 2010-05-31 21:43:10 +0000 | [diff] [blame] | 2529 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { |
| 2530 | // The interface can be NULL. |
| 2531 | if (ObjCInterfaceDecl *ID = Method->getClassInterface()) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2532 | if (ID->getSuperClass()) { |
| 2533 | std::string SuperType; |
| 2534 | SuperType = ID->getSuperClass()->getNameAsString(); |
| 2535 | if (Method->isInstanceMethod()) |
| 2536 | SuperType += " *"; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2537 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2538 | Builder.AddResultTypeChunk(Allocator.CopyString(SuperType)); |
| 2539 | Builder.AddTypedTextChunk("super"); |
| 2540 | Results.AddResult(Result(Builder.TakeString())); |
| 2541 | } |
Ted Kremenek | 305a0a7 | 2010-05-31 21:43:10 +0000 | [diff] [blame] | 2542 | } |
| 2543 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2544 | AddObjCExpressionResults(Results, true); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2545 | } |
| 2546 | |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 2547 | if (SemaRef.getLangOpts().C11) { |
| 2548 | // _Alignof |
| 2549 | Builder.AddResultTypeChunk("size_t"); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2550 | if (SemaRef.PP.isMacroDefined("alignof")) |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 2551 | Builder.AddTypedTextChunk("alignof"); |
| 2552 | else |
| 2553 | Builder.AddTypedTextChunk("_Alignof"); |
| 2554 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2555 | Builder.AddPlaceholderChunk("type"); |
| 2556 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2557 | Results.AddResult(Result(Builder.TakeString())); |
| 2558 | } |
| 2559 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2560 | // sizeof expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2561 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2562 | Builder.AddTypedTextChunk("sizeof"); |
| 2563 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2564 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 2565 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2566 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2567 | break; |
| 2568 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2569 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2570 | case Sema::PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 2571 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 2572 | break; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2573 | } |
| 2574 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2575 | if (WantTypesInContext(CCC, SemaRef.getLangOpts())) |
| 2576 | AddTypeSpecifierResults(SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2577 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2578 | if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 2579 | Results.AddResult(Result("operator")); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2580 | } |
| 2581 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2582 | /// If the given declaration has an associated type, add it as a result |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2583 | /// type chunk. |
| 2584 | static void AddResultTypeChunk(ASTContext &Context, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2585 | const PrintingPolicy &Policy, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2586 | const NamedDecl *ND, QualType BaseType, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2587 | CodeCompletionBuilder &Result) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2588 | if (!ND) |
| 2589 | return; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2590 | |
| 2591 | // Skip constructors and conversion functions, which have their return types |
| 2592 | // built into their names. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 2593 | if (isConstructor(ND) || isa<CXXConversionDecl>(ND)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2594 | return; |
| 2595 | |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2596 | // Determine the type of the declaration (if it has a type). |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 2597 | QualType T; |
| 2598 | if (const FunctionDecl *Function = ND->getAsFunction()) |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2599 | T = Function->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2600 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2601 | if (!BaseType.isNull()) |
| 2602 | T = Method->getSendResultType(BaseType); |
| 2603 | else |
| 2604 | T = Method->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2605 | } else if (const auto *Enumerator = dyn_cast<EnumConstantDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2606 | T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext())); |
Ilya Biryukov | b5da91c | 2017-11-08 10:39:09 +0000 | [diff] [blame] | 2607 | T = clang::TypeName::getFullyQualifiedType(T, Context); |
| 2608 | } else if (isa<UnresolvedUsingValueDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2609 | /* Do nothing: ignore unresolved using declarations*/ |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2610 | } else if (const auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2611 | if (!BaseType.isNull()) |
| 2612 | T = Ivar->getUsageType(BaseType); |
| 2613 | else |
| 2614 | T = Ivar->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2615 | } else if (const auto *Value = dyn_cast<ValueDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2616 | T = Value->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2617 | } else if (const auto *Property = dyn_cast<ObjCPropertyDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2618 | if (!BaseType.isNull()) |
| 2619 | T = Property->getUsageType(BaseType); |
| 2620 | else |
| 2621 | T = Property->getType(); |
| 2622 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2623 | |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2624 | if (T.isNull() || Context.hasSameType(T, Context.DependentTy)) |
| 2625 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2626 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2627 | Result.AddResultTypeChunk( |
| 2628 | GetCompletionTypeString(T, Context, Policy, Result.getAllocator())); |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2629 | } |
| 2630 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2631 | static void MaybeAddSentinel(Preprocessor &PP, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2632 | const NamedDecl *FunctionOrMethod, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2633 | CodeCompletionBuilder &Result) { |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2634 | if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>()) |
| 2635 | if (Sentinel->getSentinel() == 0) { |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2636 | if (PP.getLangOpts().ObjC && PP.isMacroDefined("nil")) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2637 | Result.AddTextChunk(", nil"); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2638 | else if (PP.isMacroDefined("NULL")) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2639 | Result.AddTextChunk(", NULL"); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2640 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2641 | Result.AddTextChunk(", (void*)0"); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2642 | } |
| 2643 | } |
| 2644 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2645 | static std::string formatObjCParamQualifiers(unsigned ObjCQuals, |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2646 | QualType &Type) { |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2647 | std::string Result; |
| 2648 | if (ObjCQuals & Decl::OBJC_TQ_In) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2649 | Result += "in "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2650 | else if (ObjCQuals & Decl::OBJC_TQ_Inout) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2651 | Result += "inout "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2652 | else if (ObjCQuals & Decl::OBJC_TQ_Out) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2653 | Result += "out "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2654 | if (ObjCQuals & Decl::OBJC_TQ_Bycopy) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2655 | Result += "bycopy "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2656 | else if (ObjCQuals & Decl::OBJC_TQ_Byref) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2657 | Result += "byref "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2658 | if (ObjCQuals & Decl::OBJC_TQ_Oneway) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2659 | Result += "oneway "; |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2660 | if (ObjCQuals & Decl::OBJC_TQ_CSNullability) { |
| 2661 | if (auto nullability = AttributedType::stripOuterNullability(Type)) { |
| 2662 | switch (*nullability) { |
| 2663 | case NullabilityKind::NonNull: |
| 2664 | Result += "nonnull "; |
| 2665 | break; |
| 2666 | |
| 2667 | case NullabilityKind::Nullable: |
| 2668 | Result += "nullable "; |
| 2669 | break; |
| 2670 | |
| 2671 | case NullabilityKind::Unspecified: |
| 2672 | Result += "null_unspecified "; |
| 2673 | break; |
| 2674 | } |
| 2675 | } |
| 2676 | } |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2677 | return Result; |
| 2678 | } |
| 2679 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2680 | /// Tries to find the most appropriate type location for an Objective-C |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2681 | /// block placeholder. |
| 2682 | /// |
| 2683 | /// This function ignores things like typedefs and qualifiers in order to |
| 2684 | /// present the most relevant and accurate block placeholders in code completion |
| 2685 | /// results. |
| 2686 | static void findTypeLocationForBlockDecl(const TypeSourceInfo *TSInfo, |
| 2687 | FunctionTypeLoc &Block, |
| 2688 | FunctionProtoTypeLoc &BlockProto, |
| 2689 | bool SuppressBlock = false) { |
| 2690 | if (!TSInfo) |
| 2691 | return; |
| 2692 | TypeLoc TL = TSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2693 | while (true) { |
| 2694 | // Look through typedefs. |
| 2695 | if (!SuppressBlock) { |
| 2696 | if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) { |
| 2697 | if (TypeSourceInfo *InnerTSInfo = |
| 2698 | TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) { |
| 2699 | TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2700 | continue; |
| 2701 | } |
| 2702 | } |
| 2703 | |
| 2704 | // Look through qualified types |
| 2705 | if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) { |
| 2706 | TL = QualifiedTL.getUnqualifiedLoc(); |
| 2707 | continue; |
| 2708 | } |
| 2709 | |
| 2710 | if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) { |
| 2711 | TL = AttrTL.getModifiedLoc(); |
| 2712 | continue; |
| 2713 | } |
| 2714 | } |
| 2715 | |
| 2716 | // Try to get the function prototype behind the block pointer type, |
| 2717 | // then we're done. |
| 2718 | if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) { |
| 2719 | TL = BlockPtr.getPointeeLoc().IgnoreParens(); |
| 2720 | Block = TL.getAs<FunctionTypeLoc>(); |
| 2721 | BlockProto = TL.getAs<FunctionProtoTypeLoc>(); |
| 2722 | } |
| 2723 | break; |
| 2724 | } |
| 2725 | } |
| 2726 | |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2727 | static std::string |
| 2728 | formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl, |
| 2729 | FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2730 | bool SuppressBlockName = false, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2731 | bool SuppressBlock = false, |
| 2732 | Optional<ArrayRef<QualType>> ObjCSubsts = None); |
| 2733 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2734 | static std::string |
| 2735 | FormatFunctionParameter(const PrintingPolicy &Policy, const ParmVarDecl *Param, |
| 2736 | bool SuppressName = false, bool SuppressBlock = false, |
| 2737 | Optional<ArrayRef<QualType>> ObjCSubsts = None) { |
Sam McCall | bc7ff89 | 2019-04-04 11:34:18 +0000 | [diff] [blame] | 2738 | // Params are unavailable in FunctionTypeLoc if the FunctionType is invalid. |
| 2739 | // It would be better to pass in the param Type, which is usually avaliable. |
| 2740 | // But this case is rare, so just pretend we fell back to int as elsewhere. |
| 2741 | if (!Param) |
| 2742 | return "int"; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2743 | bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext()); |
| 2744 | if (Param->getType()->isDependentType() || |
| 2745 | !Param->getType()->isBlockPointerType()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2746 | // The argument for a dependent or non-block parameter is a placeholder |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2747 | // containing that parameter's type. |
| 2748 | std::string Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2749 | |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2750 | if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName) |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2751 | Result = Param->getIdentifier()->getName(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2752 | |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2753 | QualType Type = Param->getType(); |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2754 | if (ObjCSubsts) |
| 2755 | Type = Type.substObjCTypeArgs(Param->getASTContext(), *ObjCSubsts, |
| 2756 | ObjCSubstitutionContext::Parameter); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2757 | if (ObjCMethodParam) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2758 | Result = |
| 2759 | "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(), Type); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2760 | Result += Type.getAsString(Policy) + ")"; |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2761 | if (Param->getIdentifier() && !SuppressName) |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2762 | Result += Param->getIdentifier()->getName(); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2763 | } else { |
| 2764 | Type.getAsStringInternal(Result, Policy); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2765 | } |
| 2766 | return Result; |
| 2767 | } |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2768 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2769 | // The argument for a block pointer parameter is a block literal with |
| 2770 | // the appropriate type. |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2771 | FunctionTypeLoc Block; |
| 2772 | FunctionProtoTypeLoc BlockProto; |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2773 | findTypeLocationForBlockDecl(Param->getTypeSourceInfo(), Block, BlockProto, |
| 2774 | SuppressBlock); |
Alex Lorenz | 6bf4a58 | 2017-03-13 15:43:42 +0000 | [diff] [blame] | 2775 | // Try to retrieve the block type information from the property if this is a |
| 2776 | // parameter in a setter. |
| 2777 | if (!Block && ObjCMethodParam && |
| 2778 | cast<ObjCMethodDecl>(Param->getDeclContext())->isPropertyAccessor()) { |
| 2779 | if (const auto *PD = cast<ObjCMethodDecl>(Param->getDeclContext()) |
| 2780 | ->findPropertyDecl(/*CheckOverrides=*/false)) |
| 2781 | findTypeLocationForBlockDecl(PD->getTypeSourceInfo(), Block, BlockProto, |
| 2782 | SuppressBlock); |
| 2783 | } |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2784 | |
| 2785 | if (!Block) { |
| 2786 | // We were unable to find a FunctionProtoTypeLoc with parameter names |
| 2787 | // for the block; just use the parameter type as a placeholder. |
| 2788 | std::string Result; |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2789 | if (!ObjCMethodParam && Param->getIdentifier()) |
| 2790 | Result = Param->getIdentifier()->getName(); |
| 2791 | |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2792 | QualType Type = Param->getType().getUnqualifiedType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2793 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2794 | if (ObjCMethodParam) { |
Alex Lorenz | 01bcfc1 | 2016-11-23 16:28:34 +0000 | [diff] [blame] | 2795 | Result = Type.getAsString(Policy); |
| 2796 | std::string Quals = |
| 2797 | formatObjCParamQualifiers(Param->getObjCDeclQualifier(), Type); |
| 2798 | if (!Quals.empty()) |
| 2799 | Result = "(" + Quals + " " + Result + ")"; |
| 2800 | if (Result.back() != ')') |
| 2801 | Result += " "; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2802 | if (Param->getIdentifier()) |
| 2803 | Result += Param->getIdentifier()->getName(); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2804 | } else { |
| 2805 | Type.getAsStringInternal(Result, Policy); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2806 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2807 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2808 | return Result; |
| 2809 | } |
Alex Lorenz | 01bcfc1 | 2016-11-23 16:28:34 +0000 | [diff] [blame] | 2810 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2811 | // We have the function prototype behind the block pointer type, as it was |
| 2812 | // written in the source. |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2813 | return formatBlockPlaceholder(Policy, Param, Block, BlockProto, |
| 2814 | /*SuppressBlockName=*/false, SuppressBlock, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2815 | ObjCSubsts); |
| 2816 | } |
| 2817 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2818 | /// Returns a placeholder string that corresponds to an Objective-C block |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2819 | /// declaration. |
| 2820 | /// |
| 2821 | /// \param BlockDecl A declaration with an Objective-C block type. |
| 2822 | /// |
| 2823 | /// \param Block The most relevant type location for that block type. |
| 2824 | /// |
Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 2825 | /// \param SuppressBlockName Determines whether or not the name of the block |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2826 | /// declaration is included in the resulting string. |
| 2827 | static std::string |
| 2828 | formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl, |
| 2829 | FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2830 | bool SuppressBlockName, bool SuppressBlock, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2831 | Optional<ArrayRef<QualType>> ObjCSubsts) { |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2832 | std::string Result; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2833 | QualType ResultType = Block.getTypePtr()->getReturnType(); |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2834 | if (ObjCSubsts) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2835 | ResultType = |
| 2836 | ResultType.substObjCTypeArgs(BlockDecl->getASTContext(), *ObjCSubsts, |
| 2837 | ObjCSubstitutionContext::Result); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2838 | if (!ResultType->isVoidType() || SuppressBlock) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2839 | ResultType.getAsStringInternal(Result, Policy); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2840 | |
| 2841 | // Format the parameter list. |
| 2842 | std::string Params; |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2843 | if (!BlockProto || Block.getNumParams() == 0) { |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2844 | if (BlockProto && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2845 | Params = "(...)"; |
Douglas Gregor | af25cfa | 2010-10-02 23:49:58 +0000 | [diff] [blame] | 2846 | else |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2847 | Params = "(void)"; |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2848 | } else { |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2849 | Params += "("; |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2850 | for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) { |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2851 | if (I) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2852 | Params += ", "; |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2853 | Params += FormatFunctionParameter(Policy, Block.getParam(I), |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2854 | /*SuppressName=*/false, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2855 | /*SuppressBlock=*/true, ObjCSubsts); |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2856 | |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2857 | if (I == N - 1 && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2858 | Params += ", ..."; |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2859 | } |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2860 | Params += ")"; |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2861 | } |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2862 | |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2863 | if (SuppressBlock) { |
| 2864 | // Format as a parameter. |
| 2865 | Result = Result + " (^"; |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2866 | if (!SuppressBlockName && BlockDecl->getIdentifier()) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2867 | Result += BlockDecl->getIdentifier()->getName(); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2868 | Result += ")"; |
| 2869 | Result += Params; |
| 2870 | } else { |
| 2871 | // Format as a block literal argument. |
| 2872 | Result = '^' + Result; |
| 2873 | Result += Params; |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2874 | |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2875 | if (!SuppressBlockName && BlockDecl->getIdentifier()) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2876 | Result += BlockDecl->getIdentifier()->getName(); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2877 | } |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2878 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2879 | return Result; |
| 2880 | } |
| 2881 | |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2882 | static std::string GetDefaultValueString(const ParmVarDecl *Param, |
| 2883 | const SourceManager &SM, |
| 2884 | const LangOptions &LangOpts) { |
Ilya Biryukov | b6d1ec8 | 2017-07-21 09:24:00 +0000 | [diff] [blame] | 2885 | const SourceRange SrcRange = Param->getDefaultArgRange(); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2886 | CharSourceRange CharSrcRange = CharSourceRange::getTokenRange(SrcRange); |
| 2887 | bool Invalid = CharSrcRange.isInvalid(); |
| 2888 | if (Invalid) |
| 2889 | return ""; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2890 | StringRef srcText = |
| 2891 | Lexer::getSourceText(CharSrcRange, SM, LangOpts, &Invalid); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2892 | if (Invalid) |
| 2893 | return ""; |
| 2894 | |
| 2895 | if (srcText.empty() || srcText == "=") { |
| 2896 | // Lexer can't determine the value. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2897 | // This happens if the code is incorrect (for example class is forward |
| 2898 | // declared). |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2899 | return ""; |
| 2900 | } |
Erik Verbruggen | 797980e | 2017-07-19 11:15:36 +0000 | [diff] [blame] | 2901 | std::string DefValue(srcText.str()); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2902 | // FIXME: remove this check if the Lexer::getSourceText value is fixed and |
| 2903 | // this value always has (or always does not have) '=' in front of it |
| 2904 | if (DefValue.at(0) != '=') { |
| 2905 | // If we don't have '=' in front of value. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2906 | // Lexer returns built-in types values without '=' and user-defined types |
| 2907 | // values with it. |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2908 | return " = " + DefValue; |
| 2909 | } |
| 2910 | return " " + DefValue; |
| 2911 | } |
| 2912 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2913 | /// Add function parameter chunks to the given code completion string. |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2914 | static void AddFunctionParameterChunks(Preprocessor &PP, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2915 | const PrintingPolicy &Policy, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2916 | const FunctionDecl *Function, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2917 | CodeCompletionBuilder &Result, |
| 2918 | unsigned Start = 0, |
| 2919 | bool InOptional = false) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2920 | bool FirstParameter = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2921 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2922 | for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2923 | const ParmVarDecl *Param = Function->getParamDecl(P); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2924 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2925 | if (Param->hasDefaultArg() && !InOptional) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2926 | // When we see an optional default argument, put that argument and |
| 2927 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2928 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 2929 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2930 | if (!FirstParameter) |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2931 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2932 | AddFunctionParameterChunks(PP, Policy, Function, Opt, P, true); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2933 | Result.AddOptionalChunk(Opt.TakeString()); |
| 2934 | break; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2935 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2936 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2937 | if (FirstParameter) |
| 2938 | FirstParameter = false; |
| 2939 | else |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2940 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2941 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2942 | InOptional = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2943 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2944 | // Format the placeholder string. |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2945 | std::string PlaceholderStr = FormatFunctionParameter(Policy, Param); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2946 | if (Param->hasDefaultArg()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2947 | PlaceholderStr += |
| 2948 | GetDefaultValueString(Param, PP.getSourceManager(), PP.getLangOpts()); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2949 | |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2950 | if (Function->isVariadic() && P == N - 1) |
| 2951 | PlaceholderStr += ", ..."; |
| 2952 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2953 | // Add the placeholder string. |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2954 | Result.AddPlaceholderChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2955 | Result.getAllocator().CopyString(PlaceholderStr)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2956 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2957 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2958 | if (const auto *Proto = Function->getType()->getAs<FunctionProtoType>()) |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2959 | if (Proto->isVariadic()) { |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 2960 | if (Proto->getNumParams() == 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2961 | Result.AddPlaceholderChunk("..."); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2962 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2963 | MaybeAddSentinel(PP, Function, Result); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2964 | } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2965 | } |
| 2966 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2967 | /// Add template parameter chunks to the given code completion string. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2968 | static void AddTemplateParameterChunks( |
| 2969 | ASTContext &Context, const PrintingPolicy &Policy, |
| 2970 | const TemplateDecl *Template, CodeCompletionBuilder &Result, |
| 2971 | unsigned MaxParameters = 0, unsigned Start = 0, bool InDefaultArg = false) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2972 | bool FirstParameter = true; |
Richard Smith | 6eece29 | 2015-01-15 02:27:20 +0000 | [diff] [blame] | 2973 | |
| 2974 | // Prefer to take the template parameter names from the first declaration of |
| 2975 | // the template. |
| 2976 | Template = cast<TemplateDecl>(Template->getCanonicalDecl()); |
| 2977 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2978 | TemplateParameterList *Params = Template->getTemplateParameters(); |
| 2979 | TemplateParameterList::iterator PEnd = Params->end(); |
| 2980 | if (MaxParameters) |
| 2981 | PEnd = Params->begin() + MaxParameters; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2982 | for (TemplateParameterList::iterator P = Params->begin() + Start; P != PEnd; |
| 2983 | ++P) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2984 | bool HasDefaultArg = false; |
| 2985 | std::string PlaceholderStr; |
| 2986 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { |
| 2987 | if (TTP->wasDeclaredWithTypename()) |
| 2988 | PlaceholderStr = "typename"; |
| 2989 | else |
| 2990 | PlaceholderStr = "class"; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2991 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2992 | if (TTP->getIdentifier()) { |
| 2993 | PlaceholderStr += ' '; |
| 2994 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 2995 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2996 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2997 | HasDefaultArg = TTP->hasDefaultArgument(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2998 | } else if (NonTypeTemplateParmDecl *NTTP = |
| 2999 | dyn_cast<NonTypeTemplateParmDecl>(*P)) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3000 | if (NTTP->getIdentifier()) |
| 3001 | PlaceholderStr = NTTP->getIdentifier()->getName(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3002 | NTTP->getType().getAsStringInternal(PlaceholderStr, Policy); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3003 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 3004 | } else { |
| 3005 | assert(isa<TemplateTemplateParmDecl>(*P)); |
| 3006 | TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3007 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3008 | // Since putting the template argument list into the placeholder would |
| 3009 | // be very, very long, we just use an abbreviation. |
| 3010 | PlaceholderStr = "template<...> class"; |
| 3011 | if (TTP->getIdentifier()) { |
| 3012 | PlaceholderStr += ' '; |
| 3013 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 3014 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3015 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3016 | HasDefaultArg = TTP->hasDefaultArgument(); |
| 3017 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3018 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3019 | if (HasDefaultArg && !InDefaultArg) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3020 | // When we see an optional default argument, put that argument and |
| 3021 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3022 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3023 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3024 | if (!FirstParameter) |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3025 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3026 | AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3027 | P - Params->begin(), true); |
| 3028 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3029 | break; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3030 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3031 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3032 | InDefaultArg = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3033 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3034 | if (FirstParameter) |
| 3035 | FirstParameter = false; |
| 3036 | else |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3037 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3038 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3039 | // Add the placeholder string. |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3040 | Result.AddPlaceholderChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3041 | Result.getAllocator().CopyString(PlaceholderStr)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3042 | } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3043 | } |
| 3044 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3045 | /// Add a qualifier to the given code-completion string, if the |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3046 | /// provided nested-name-specifier is non-NULL. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3047 | static void AddQualifierToCompletionString(CodeCompletionBuilder &Result, |
| 3048 | NestedNameSpecifier *Qualifier, |
| 3049 | bool QualifierIsInformative, |
| 3050 | ASTContext &Context, |
| 3051 | const PrintingPolicy &Policy) { |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3052 | if (!Qualifier) |
| 3053 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3054 | |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3055 | std::string PrintedNNS; |
| 3056 | { |
| 3057 | llvm::raw_string_ostream OS(PrintedNNS); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3058 | Qualifier->print(OS, Policy); |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3059 | } |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 3060 | if (QualifierIsInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3061 | Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 3062 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3063 | Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3064 | } |
| 3065 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3066 | static void |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3067 | AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3068 | const FunctionDecl *Function) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3069 | const auto *Proto = Function->getType()->getAs<FunctionProtoType>(); |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3070 | if (!Proto || !Proto->getMethodQuals()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3071 | return; |
| 3072 | |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3073 | // FIXME: Add ref-qualifier! |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3074 | |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3075 | // Handle single qualifiers without copying |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3076 | if (Proto->getMethodQuals().hasOnlyConst()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3077 | Result.AddInformativeChunk(" const"); |
| 3078 | return; |
| 3079 | } |
| 3080 | |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3081 | if (Proto->getMethodQuals().hasOnlyVolatile()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3082 | Result.AddInformativeChunk(" volatile"); |
| 3083 | return; |
| 3084 | } |
| 3085 | |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3086 | if (Proto->getMethodQuals().hasOnlyRestrict()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3087 | Result.AddInformativeChunk(" restrict"); |
| 3088 | return; |
| 3089 | } |
| 3090 | |
| 3091 | // Handle multiple qualifiers. |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3092 | std::string QualsStr; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3093 | if (Proto->isConst()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3094 | QualsStr += " const"; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3095 | if (Proto->isVolatile()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3096 | QualsStr += " volatile"; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3097 | if (Proto->isRestrict()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3098 | QualsStr += " restrict"; |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3099 | Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr)); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3100 | } |
| 3101 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3102 | /// Add the name of the given declaration |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3103 | static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3104 | const NamedDecl *ND, |
| 3105 | CodeCompletionBuilder &Result) { |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3106 | DeclarationName Name = ND->getDeclName(); |
| 3107 | if (!Name) |
| 3108 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3109 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3110 | switch (Name.getNameKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3111 | case DeclarationName::CXXOperatorName: { |
| 3112 | const char *OperatorName = nullptr; |
| 3113 | switch (Name.getCXXOverloadedOperator()) { |
| 3114 | case OO_None: |
| 3115 | case OO_Conditional: |
| 3116 | case NUM_OVERLOADED_OPERATORS: |
| 3117 | OperatorName = "operator"; |
| 3118 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3119 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3120 | #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ |
| 3121 | case OO_##Name: \ |
| 3122 | OperatorName = "operator" Spelling; \ |
| 3123 | break; |
| 3124 | #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemberOnly) |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3125 | #include "clang/Basic/OperatorKinds.def" |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3126 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3127 | case OO_New: |
| 3128 | OperatorName = "operator new"; |
| 3129 | break; |
| 3130 | case OO_Delete: |
| 3131 | OperatorName = "operator delete"; |
| 3132 | break; |
| 3133 | case OO_Array_New: |
| 3134 | OperatorName = "operator new[]"; |
| 3135 | break; |
| 3136 | case OO_Array_Delete: |
| 3137 | OperatorName = "operator delete[]"; |
| 3138 | break; |
| 3139 | case OO_Call: |
| 3140 | OperatorName = "operator()"; |
| 3141 | break; |
| 3142 | case OO_Subscript: |
| 3143 | OperatorName = "operator[]"; |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3144 | break; |
| 3145 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3146 | Result.AddTypedTextChunk(OperatorName); |
| 3147 | break; |
| 3148 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3149 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3150 | case DeclarationName::Identifier: |
| 3151 | case DeclarationName::CXXConversionFunctionName: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3152 | case DeclarationName::CXXDestructorName: |
| 3153 | case DeclarationName::CXXLiteralOperatorName: |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3154 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3155 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3156 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3157 | |
Richard Smith | 3584515 | 2017-02-07 01:37:30 +0000 | [diff] [blame] | 3158 | case DeclarationName::CXXDeductionGuideName: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3159 | case DeclarationName::CXXUsingDirective: |
| 3160 | case DeclarationName::ObjCZeroArgSelector: |
| 3161 | case DeclarationName::ObjCOneArgSelector: |
| 3162 | case DeclarationName::ObjCMultiArgSelector: |
| 3163 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3164 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3165 | case DeclarationName::CXXConstructorName: { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3166 | CXXRecordDecl *Record = nullptr; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3167 | QualType Ty = Name.getCXXNameType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3168 | if (const auto *RecordTy = Ty->getAs<RecordType>()) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3169 | Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3170 | else if (const auto *InjectedTy = Ty->getAs<InjectedClassNameType>()) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3171 | Record = InjectedTy->getDecl(); |
| 3172 | else { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3173 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3174 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3175 | break; |
| 3176 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3177 | |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3178 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3179 | Result.getAllocator().CopyString(Record->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3180 | if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) { |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3181 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3182 | AddTemplateParameterChunks(Context, Policy, Template, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3183 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3184 | } |
| 3185 | break; |
| 3186 | } |
| 3187 | } |
| 3188 | } |
| 3189 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3190 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString( |
| 3191 | Sema &S, const CodeCompletionContext &CCContext, |
| 3192 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 3193 | bool IncludeBriefComments) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3194 | return CreateCodeCompletionString(S.Context, S.PP, CCContext, Allocator, |
| 3195 | CCTUInfo, IncludeBriefComments); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3196 | } |
| 3197 | |
Eric Liu | 00f43c9 | 2018-07-06 09:43:57 +0000 | [diff] [blame] | 3198 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionStringForMacro( |
| 3199 | Preprocessor &PP, CodeCompletionAllocator &Allocator, |
| 3200 | CodeCompletionTUInfo &CCTUInfo) { |
| 3201 | assert(Kind == RK_Macro); |
| 3202 | CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); |
| 3203 | const MacroInfo *MI = PP.getMacroInfo(Macro); |
| 3204 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(Macro->getName())); |
| 3205 | |
| 3206 | if (!MI || !MI->isFunctionLike()) |
| 3207 | return Result.TakeString(); |
| 3208 | |
| 3209 | // Format a function-like macro with placeholders for the arguments. |
| 3210 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
| 3211 | MacroInfo::param_iterator A = MI->param_begin(), AEnd = MI->param_end(); |
| 3212 | |
| 3213 | // C99 variadic macros add __VA_ARGS__ at the end. Skip it. |
| 3214 | if (MI->isC99Varargs()) { |
| 3215 | --AEnd; |
| 3216 | |
| 3217 | if (A == AEnd) { |
| 3218 | Result.AddPlaceholderChunk("..."); |
| 3219 | } |
| 3220 | } |
| 3221 | |
| 3222 | for (MacroInfo::param_iterator A = MI->param_begin(); A != AEnd; ++A) { |
| 3223 | if (A != MI->param_begin()) |
| 3224 | Result.AddChunk(CodeCompletionString::CK_Comma); |
| 3225 | |
| 3226 | if (MI->isVariadic() && (A + 1) == AEnd) { |
| 3227 | SmallString<32> Arg = (*A)->getName(); |
| 3228 | if (MI->isC99Varargs()) |
| 3229 | Arg += ", ..."; |
| 3230 | else |
| 3231 | Arg += "..."; |
| 3232 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
| 3233 | break; |
| 3234 | } |
| 3235 | |
| 3236 | // Non-variadic macros are simple. |
| 3237 | Result.AddPlaceholderChunk( |
| 3238 | Result.getAllocator().CopyString((*A)->getName())); |
| 3239 | } |
| 3240 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
| 3241 | return Result.TakeString(); |
| 3242 | } |
| 3243 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3244 | /// If possible, create a new code completion string for the given |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3245 | /// result. |
| 3246 | /// |
| 3247 | /// \returns Either a new, heap-allocated code completion string describing |
| 3248 | /// how to use this result, or NULL to indicate that the string or name of the |
| 3249 | /// result is all that is needed. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3250 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString( |
| 3251 | ASTContext &Ctx, Preprocessor &PP, const CodeCompletionContext &CCContext, |
| 3252 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 3253 | bool IncludeBriefComments) { |
Eric Liu | 00f43c9 | 2018-07-06 09:43:57 +0000 | [diff] [blame] | 3254 | if (Kind == RK_Macro) |
| 3255 | return CreateCodeCompletionStringForMacro(PP, Allocator, CCTUInfo); |
| 3256 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3257 | CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3258 | |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3259 | PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3260 | if (Kind == RK_Pattern) { |
| 3261 | Pattern->Priority = Priority; |
| 3262 | Pattern->Availability = Availability; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3263 | |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3264 | if (Declaration) { |
| 3265 | Result.addParentContext(Declaration->getDeclContext()); |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3266 | Pattern->ParentName = Result.getParentName(); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3267 | if (const RawComment *RC = |
| 3268 | getPatternCompletionComment(Ctx, Declaration)) { |
| 3269 | Result.addBriefComment(RC->getBriefText(Ctx)); |
| 3270 | Pattern->BriefComment = Result.getBriefComment(); |
| 3271 | } |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3272 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3273 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3274 | return Pattern; |
| 3275 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3276 | |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3277 | if (Kind == RK_Keyword) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3278 | Result.AddTypedTextChunk(Keyword); |
| 3279 | return Result.TakeString(); |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3280 | } |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 3281 | assert(Kind == RK_Declaration && "Missed a result kind?"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3282 | return createCodeCompletionStringForDecl( |
| 3283 | PP, Ctx, Result, IncludeBriefComments, CCContext, Policy); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3284 | } |
| 3285 | |
Ilya Biryukov | cabab29 | 2019-05-24 10:18:39 +0000 | [diff] [blame] | 3286 | static void printOverrideString(const CodeCompletionString &CCS, |
| 3287 | std::string &BeforeName, |
| 3288 | std::string &NameAndSignature) { |
| 3289 | bool SeenTypedChunk = false; |
| 3290 | for (auto &Chunk : CCS) { |
| 3291 | if (Chunk.Kind == CodeCompletionString::CK_Optional) { |
| 3292 | assert(SeenTypedChunk && "optional parameter before name"); |
| 3293 | // Note that we put all chunks inside into NameAndSignature. |
| 3294 | printOverrideString(*Chunk.Optional, NameAndSignature, NameAndSignature); |
| 3295 | continue; |
| 3296 | } |
| 3297 | SeenTypedChunk |= Chunk.Kind == CodeCompletionString::CK_TypedText; |
| 3298 | if (SeenTypedChunk) |
| 3299 | NameAndSignature += Chunk.Text; |
| 3300 | else |
| 3301 | BeforeName += Chunk.Text; |
| 3302 | } |
| 3303 | } |
| 3304 | |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3305 | CodeCompletionString * |
| 3306 | CodeCompletionResult::createCodeCompletionStringForOverride( |
| 3307 | Preprocessor &PP, ASTContext &Ctx, CodeCompletionBuilder &Result, |
| 3308 | bool IncludeBriefComments, const CodeCompletionContext &CCContext, |
| 3309 | PrintingPolicy &Policy) { |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3310 | auto *CCS = createCodeCompletionStringForDecl(PP, Ctx, Result, |
| 3311 | /*IncludeBriefComments=*/false, |
| 3312 | CCContext, Policy); |
Ilya Biryukov | cabab29 | 2019-05-24 10:18:39 +0000 | [diff] [blame] | 3313 | std::string BeforeName; |
| 3314 | std::string NameAndSignature; |
| 3315 | // For overrides all chunks go into the result, none are informative. |
| 3316 | printOverrideString(*CCS, BeforeName, NameAndSignature); |
| 3317 | NameAndSignature += " override"; |
| 3318 | |
| 3319 | Result.AddTextChunk(Result.getAllocator().CopyString(BeforeName)); |
| 3320 | Result.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 3321 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(NameAndSignature)); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3322 | return Result.TakeString(); |
| 3323 | } |
| 3324 | |
Kirill Bobyrev | 7f0dcf6 | 2019-11-22 12:48:06 +0100 | [diff] [blame] | 3325 | // FIXME: Right now this works well with lambdas. Add support for other functor |
| 3326 | // types like std::function. |
| 3327 | static const NamedDecl *extractFunctorCallOperator(const NamedDecl *ND) { |
| 3328 | const auto *VD = dyn_cast<VarDecl>(ND); |
| 3329 | if (!VD) |
| 3330 | return nullptr; |
| 3331 | const auto *RecordDecl = VD->getType()->getAsCXXRecordDecl(); |
| 3332 | if (!RecordDecl || !RecordDecl->isLambda()) |
| 3333 | return nullptr; |
| 3334 | return RecordDecl->getLambdaCallOperator(); |
| 3335 | } |
| 3336 | |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3337 | CodeCompletionString *CodeCompletionResult::createCodeCompletionStringForDecl( |
| 3338 | Preprocessor &PP, ASTContext &Ctx, CodeCompletionBuilder &Result, |
| 3339 | bool IncludeBriefComments, const CodeCompletionContext &CCContext, |
| 3340 | PrintingPolicy &Policy) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3341 | const NamedDecl *ND = Declaration; |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3342 | Result.addParentContext(ND->getDeclContext()); |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3343 | |
| 3344 | if (IncludeBriefComments) { |
| 3345 | // Add documentation comment, if it exists. |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3346 | if (const RawComment *RC = getCompletionComment(Ctx, Declaration)) { |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3347 | Result.addBriefComment(RC->getBriefText(Ctx)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3348 | } |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3349 | } |
| 3350 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 3351 | if (StartsNestedNameSpecifier) { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3352 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3353 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3354 | Result.AddTextChunk("::"); |
| 3355 | return Result.TakeString(); |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 3356 | } |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 3357 | |
Aaron Ballman | be22bcb | 2014-03-10 17:08:28 +0000 | [diff] [blame] | 3358 | for (const auto *I : ND->specific_attrs<AnnotateAttr>()) |
| 3359 | Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation())); |
Aaron Ballman | b97112e | 2014-03-08 22:19:01 +0000 | [diff] [blame] | 3360 | |
Kirill Bobyrev | 7f0dcf6 | 2019-11-22 12:48:06 +0100 | [diff] [blame] | 3361 | auto AddFunctionTypeAndResult = [&](const FunctionDecl *Function) { |
| 3362 | AddResultTypeChunk(Ctx, Policy, Function, CCContext.getBaseType(), Result); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3363 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3364 | Ctx, Policy); |
| 3365 | AddTypedNameChunk(Ctx, Policy, ND, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3366 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3367 | AddFunctionParameterChunks(PP, Policy, Function, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3368 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3369 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Kirill Bobyrev | 7f0dcf6 | 2019-11-22 12:48:06 +0100 | [diff] [blame] | 3370 | }; |
| 3371 | |
| 3372 | if (const auto *Function = dyn_cast<FunctionDecl>(ND)) { |
| 3373 | AddFunctionTypeAndResult(Function); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3374 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3375 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3376 | |
Kirill Bobyrev | 7f0dcf6 | 2019-11-22 12:48:06 +0100 | [diff] [blame] | 3377 | if (const auto *CallOperator = |
| 3378 | dyn_cast_or_null<FunctionDecl>(extractFunctorCallOperator(ND))) { |
| 3379 | AddFunctionTypeAndResult(CallOperator); |
| 3380 | return Result.TakeString(); |
| 3381 | } |
| 3382 | |
| 3383 | AddResultTypeChunk(Ctx, Policy, ND, CCContext.getBaseType(), Result); |
| 3384 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3385 | if (const FunctionTemplateDecl *FunTmpl = |
| 3386 | dyn_cast<FunctionTemplateDecl>(ND)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3387 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3388 | Ctx, Policy); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3389 | FunctionDecl *Function = FunTmpl->getTemplatedDecl(); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3390 | AddTypedNameChunk(Ctx, Policy, Function, Result); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3391 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3392 | // Figure out which template parameters are deduced (or have default |
| 3393 | // arguments). |
Benjamin Kramer | e0513cb | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 3394 | llvm::SmallBitVector Deduced; |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3395 | Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3396 | unsigned LastDeducibleArgument; |
| 3397 | for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0; |
| 3398 | --LastDeducibleArgument) { |
| 3399 | if (!Deduced[LastDeducibleArgument - 1]) { |
| 3400 | // C++0x: Figure out if the template argument has a default. If so, |
| 3401 | // the user doesn't need to type this argument. |
| 3402 | // FIXME: We need to abstract template parameters better! |
| 3403 | bool HasDefaultArg = false; |
| 3404 | NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3405 | LastDeducibleArgument - 1); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3406 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) |
| 3407 | HasDefaultArg = TTP->hasDefaultArgument(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3408 | else if (NonTypeTemplateParmDecl *NTTP = |
| 3409 | dyn_cast<NonTypeTemplateParmDecl>(Param)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3410 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 3411 | else { |
| 3412 | assert(isa<TemplateTemplateParmDecl>(Param)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3413 | HasDefaultArg = |
| 3414 | cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3415 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3416 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3417 | if (!HasDefaultArg) |
| 3418 | break; |
| 3419 | } |
| 3420 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3421 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3422 | if (LastDeducibleArgument) { |
| 3423 | // Some of the function template arguments cannot be deduced from a |
| 3424 | // function call, so we introduce an explicit template argument list |
| 3425 | // containing all of the arguments up to the first deducible argument. |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3426 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3427 | AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result, |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3428 | LastDeducibleArgument); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3429 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3430 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3431 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3432 | // Add the function parameters |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3433 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3434 | AddFunctionParameterChunks(PP, Policy, Function, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3435 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3436 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3437 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3438 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3439 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3440 | if (const auto *Template = dyn_cast<TemplateDecl>(ND)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3441 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3442 | Ctx, Policy); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3443 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3444 | Result.getAllocator().CopyString(Template->getNameAsString())); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3445 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3446 | AddTemplateParameterChunks(Ctx, Policy, Template, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3447 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3448 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3449 | } |
Kirill Bobyrev | 7f0dcf6 | 2019-11-22 12:48:06 +0100 | [diff] [blame] | 3450 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3451 | if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3452 | Selector Sel = Method->getSelector(); |
| 3453 | if (Sel.isUnarySelector()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3454 | Result.AddTypedTextChunk( |
| 3455 | Result.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3456 | return Result.TakeString(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3457 | } |
| 3458 | |
Douglas Gregor | af2a6ae | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 3459 | std::string SelName = Sel.getNameForSlot(0).str(); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3460 | SelName += ':'; |
| 3461 | if (StartParameter == 0) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3462 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName)); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3463 | else { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3464 | Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3465 | |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3466 | // If there is only one parameter, and we're past it, add an empty |
| 3467 | // typed-text chunk since there is nothing to type. |
| 3468 | if (Method->param_size() == 1) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3469 | Result.AddTypedTextChunk(""); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3470 | } |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3471 | unsigned Idx = 0; |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3472 | for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3473 | PEnd = Method->param_end(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3474 | P != PEnd; (void)++P, ++Idx) { |
| 3475 | if (Idx > 0) { |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3476 | std::string Keyword; |
| 3477 | if (Idx > StartParameter) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3478 | Result.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3479 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx)) |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 3480 | Keyword += II->getName(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3481 | Keyword += ":"; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3482 | if (Idx < StartParameter || AllParametersAreInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3483 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3484 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3485 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword)); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3486 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3487 | |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3488 | // If we're before the starting parameter, skip the placeholder. |
| 3489 | if (Idx < StartParameter) |
| 3490 | continue; |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3491 | |
| 3492 | std::string Arg; |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3493 | QualType ParamType = (*P)->getType(); |
| 3494 | Optional<ArrayRef<QualType>> ObjCSubsts; |
| 3495 | if (!CCContext.getBaseType().isNull()) |
| 3496 | ObjCSubsts = CCContext.getBaseType()->getObjCSubstitutions(Method); |
| 3497 | |
| 3498 | if (ParamType->isBlockPointerType() && !DeclaringEntity) |
| 3499 | Arg = FormatFunctionParameter(Policy, *P, true, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3500 | /*SuppressBlock=*/false, ObjCSubsts); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3501 | else { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3502 | if (ObjCSubsts) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3503 | ParamType = ParamType.substObjCTypeArgs( |
| 3504 | Ctx, *ObjCSubsts, ObjCSubstitutionContext::Parameter); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 3505 | Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier(), |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3506 | ParamType); |
| 3507 | Arg += ParamType.getAsString(Policy) + ")"; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3508 | if (IdentifierInfo *II = (*P)->getIdentifier()) |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 3509 | if (DeclaringEntity || AllParametersAreInformative) |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 3510 | Arg += II->getName(); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3511 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3512 | |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3513 | if (Method->isVariadic() && (P + 1) == PEnd) |
| 3514 | Arg += ", ..."; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3515 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3516 | if (DeclaringEntity) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3517 | Result.AddTextChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3518 | else if (AllParametersAreInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3519 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 3520 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3521 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3522 | } |
| 3523 | |
Douglas Gregor | 04c5f97 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 3524 | if (Method->isVariadic()) { |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3525 | if (Method->param_size() == 0) { |
| 3526 | if (DeclaringEntity) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3527 | Result.AddTextChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3528 | else if (AllParametersAreInformative) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3529 | Result.AddInformativeChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3530 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3531 | Result.AddPlaceholderChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3532 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3533 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3534 | MaybeAddSentinel(PP, Method, Result); |
Douglas Gregor | 04c5f97 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 3535 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3536 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3537 | return Result.TakeString(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3538 | } |
| 3539 | |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3540 | if (Qualifier) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3541 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3542 | Ctx, Policy); |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3543 | |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3544 | Result.AddTypedTextChunk( |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3545 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3546 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3547 | } |
| 3548 | |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3549 | const RawComment *clang::getCompletionComment(const ASTContext &Ctx, |
| 3550 | const NamedDecl *ND) { |
| 3551 | if (!ND) |
| 3552 | return nullptr; |
| 3553 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(ND)) |
| 3554 | return RC; |
| 3555 | |
| 3556 | // Try to find comment from a property for ObjC methods. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3557 | const auto *M = dyn_cast<ObjCMethodDecl>(ND); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3558 | if (!M) |
| 3559 | return nullptr; |
| 3560 | const ObjCPropertyDecl *PDecl = M->findPropertyDecl(); |
| 3561 | if (!PDecl) |
| 3562 | return nullptr; |
| 3563 | |
| 3564 | return Ctx.getRawCommentForAnyRedecl(PDecl); |
| 3565 | } |
| 3566 | |
| 3567 | const RawComment *clang::getPatternCompletionComment(const ASTContext &Ctx, |
| 3568 | const NamedDecl *ND) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3569 | const auto *M = dyn_cast_or_null<ObjCMethodDecl>(ND); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3570 | if (!M || !M->isPropertyAccessor()) |
| 3571 | return nullptr; |
| 3572 | |
| 3573 | // Provide code completion comment for self.GetterName where |
| 3574 | // GetterName is the getter method for a property with name |
| 3575 | // different from the property name (declared via a property |
| 3576 | // getter attribute. |
| 3577 | const ObjCPropertyDecl *PDecl = M->findPropertyDecl(); |
| 3578 | if (!PDecl) |
| 3579 | return nullptr; |
| 3580 | if (PDecl->getGetterName() == M->getSelector() && |
| 3581 | PDecl->getIdentifier() != M->getIdentifier()) { |
| 3582 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(M)) |
| 3583 | return RC; |
| 3584 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(PDecl)) |
| 3585 | return RC; |
| 3586 | } |
| 3587 | return nullptr; |
| 3588 | } |
| 3589 | |
| 3590 | const RawComment *clang::getParameterComment( |
| 3591 | const ASTContext &Ctx, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3592 | const CodeCompleteConsumer::OverloadCandidate &Result, unsigned ArgIndex) { |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3593 | auto FDecl = Result.getFunction(); |
| 3594 | if (!FDecl) |
| 3595 | return nullptr; |
| 3596 | if (ArgIndex < FDecl->getNumParams()) |
| 3597 | return Ctx.getRawCommentForAnyRedecl(FDecl->getParamDecl(ArgIndex)); |
| 3598 | return nullptr; |
| 3599 | } |
| 3600 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3601 | /// Add function overload parameter chunks to the given code completion |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3602 | /// string. |
| 3603 | static void AddOverloadParameterChunks(ASTContext &Context, |
| 3604 | const PrintingPolicy &Policy, |
| 3605 | const FunctionDecl *Function, |
| 3606 | const FunctionProtoType *Prototype, |
| 3607 | CodeCompletionBuilder &Result, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3608 | unsigned CurrentArg, unsigned Start = 0, |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3609 | bool InOptional = false) { |
| 3610 | bool FirstParameter = true; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3611 | unsigned NumParams = |
| 3612 | Function ? Function->getNumParams() : Prototype->getNumParams(); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3613 | |
| 3614 | for (unsigned P = Start; P != NumParams; ++P) { |
| 3615 | if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) { |
| 3616 | // When we see an optional default argument, put that argument and |
| 3617 | // the remaining default arguments into a new, optional string. |
| 3618 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3619 | Result.getCodeCompletionTUInfo()); |
| 3620 | if (!FirstParameter) |
| 3621 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
| 3622 | // Optional sections are nested. |
| 3623 | AddOverloadParameterChunks(Context, Policy, Function, Prototype, Opt, |
| 3624 | CurrentArg, P, /*InOptional=*/true); |
| 3625 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3626 | return; |
| 3627 | } |
| 3628 | |
| 3629 | if (FirstParameter) |
| 3630 | FirstParameter = false; |
| 3631 | else |
| 3632 | Result.AddChunk(CodeCompletionString::CK_Comma); |
| 3633 | |
| 3634 | InOptional = false; |
| 3635 | |
| 3636 | // Format the placeholder string. |
| 3637 | std::string Placeholder; |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3638 | if (Function) { |
| 3639 | const ParmVarDecl *Param = Function->getParamDecl(P); |
| 3640 | Placeholder = FormatFunctionParameter(Policy, Param); |
| 3641 | if (Param->hasDefaultArg()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3642 | Placeholder += GetDefaultValueString(Param, Context.getSourceManager(), |
| 3643 | Context.getLangOpts()); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3644 | } else { |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3645 | Placeholder = Prototype->getParamType(P).getAsString(Policy); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3646 | } |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3647 | |
| 3648 | if (P == CurrentArg) |
| 3649 | Result.AddCurrentParameterChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3650 | Result.getAllocator().CopyString(Placeholder)); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3651 | else |
| 3652 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder)); |
| 3653 | } |
| 3654 | |
| 3655 | if (Prototype && Prototype->isVariadic()) { |
| 3656 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3657 | Result.getCodeCompletionTUInfo()); |
| 3658 | if (!FirstParameter) |
| 3659 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
| 3660 | |
| 3661 | if (CurrentArg < NumParams) |
| 3662 | Opt.AddPlaceholderChunk("..."); |
| 3663 | else |
| 3664 | Opt.AddCurrentParameterChunk("..."); |
| 3665 | |
| 3666 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3667 | } |
| 3668 | } |
| 3669 | |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3670 | CodeCompletionString * |
| 3671 | CodeCompleteConsumer::OverloadCandidate::CreateSignatureString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3672 | unsigned CurrentArg, Sema &S, CodeCompletionAllocator &Allocator, |
| 3673 | CodeCompletionTUInfo &CCTUInfo, bool IncludeBriefComments) const { |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3674 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Sam McCall | fa3b87f | 2019-11-15 14:52:04 +0100 | [diff] [blame] | 3675 | // Show signatures of constructors as they are declared: |
| 3676 | // vector(int n) rather than vector<string>(int n) |
| 3677 | // This is less noisy without being less clear, and avoids tricky cases. |
| 3678 | Policy.SuppressTemplateArgsInCXXConstructors = true; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3679 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3680 | // FIXME: Set priority, availability appropriately. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3681 | CodeCompletionBuilder Result(Allocator, CCTUInfo, 1, |
| 3682 | CXAvailability_Available); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3683 | FunctionDecl *FDecl = getFunction(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3684 | const FunctionProtoType *Proto = |
| 3685 | dyn_cast<FunctionProtoType>(getFunctionType()); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3686 | if (!FDecl && !Proto) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3687 | // Function without a prototype. Just give the return type and a |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3688 | // highlighted ellipsis. |
| 3689 | const FunctionType *FT = getFunctionType(); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3690 | Result.AddResultTypeChunk(Result.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3691 | FT->getReturnType().getAsString(Policy))); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3692 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
| 3693 | Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "..."); |
| 3694 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3695 | return Result.TakeString(); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3696 | } |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3697 | |
| 3698 | if (FDecl) { |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3699 | if (IncludeBriefComments) { |
| 3700 | if (auto RC = getParameterComment(S.getASTContext(), *this, CurrentArg)) |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3701 | Result.addBriefComment(RC->getBriefText(S.getASTContext())); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3702 | } |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3703 | AddResultTypeChunk(S.Context, Policy, FDecl, QualType(), Result); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3704 | Result.AddTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3705 | Result.getAllocator().CopyString(FDecl->getNameAsString())); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3706 | } else { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3707 | Result.AddResultTypeChunk(Result.getAllocator().CopyString( |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3708 | Proto->getReturnType().getAsString(Policy))); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3709 | } |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3710 | |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3711 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3712 | AddOverloadParameterChunks(S.getASTContext(), Policy, FDecl, Proto, Result, |
| 3713 | CurrentArg); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3714 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3715 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3716 | return Result.TakeString(); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3717 | } |
| 3718 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3719 | unsigned clang::getMacroUsagePriority(StringRef MacroName, |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3720 | const LangOptions &LangOpts, |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3721 | bool PreferredTypeIsPointer) { |
| 3722 | unsigned Priority = CCP_Macro; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3723 | |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3724 | // Treat the "nil", "Nil" and "NULL" macros as null pointer constants. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3725 | if (MacroName.equals("nil") || MacroName.equals("NULL") || |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3726 | MacroName.equals("Nil")) { |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3727 | Priority = CCP_Constant; |
| 3728 | if (PreferredTypeIsPointer) |
| 3729 | Priority = Priority / CCF_SimilarTypeMatch; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3730 | } |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3731 | // Treat "YES", "NO", "true", and "false" as constants. |
| 3732 | else if (MacroName.equals("YES") || MacroName.equals("NO") || |
| 3733 | MacroName.equals("true") || MacroName.equals("false")) |
| 3734 | Priority = CCP_Constant; |
| 3735 | // Treat "bool" as a type. |
| 3736 | else if (MacroName.equals("bool")) |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 3737 | Priority = CCP_Type + (LangOpts.ObjC ? CCD_bool_in_ObjC : 0); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3738 | |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3739 | return Priority; |
| 3740 | } |
| 3741 | |
Dmitri Gribenko | bdc80de | 2013-01-11 20:32:41 +0000 | [diff] [blame] | 3742 | CXCursorKind clang::getCursorKindForDecl(const Decl *D) { |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3743 | if (!D) |
| 3744 | return CXCursor_UnexposedDecl; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3745 | |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3746 | switch (D->getKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3747 | case Decl::Enum: |
| 3748 | return CXCursor_EnumDecl; |
| 3749 | case Decl::EnumConstant: |
| 3750 | return CXCursor_EnumConstantDecl; |
| 3751 | case Decl::Field: |
| 3752 | return CXCursor_FieldDecl; |
| 3753 | case Decl::Function: |
| 3754 | return CXCursor_FunctionDecl; |
| 3755 | case Decl::ObjCCategory: |
| 3756 | return CXCursor_ObjCCategoryDecl; |
| 3757 | case Decl::ObjCCategoryImpl: |
| 3758 | return CXCursor_ObjCCategoryImplDecl; |
| 3759 | case Decl::ObjCImplementation: |
| 3760 | return CXCursor_ObjCImplementationDecl; |
Douglas Gregor | deafd0b | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 3761 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3762 | case Decl::ObjCInterface: |
| 3763 | return CXCursor_ObjCInterfaceDecl; |
| 3764 | case Decl::ObjCIvar: |
| 3765 | return CXCursor_ObjCIvarDecl; |
| 3766 | case Decl::ObjCMethod: |
| 3767 | return cast<ObjCMethodDecl>(D)->isInstanceMethod() |
| 3768 | ? CXCursor_ObjCInstanceMethodDecl |
| 3769 | : CXCursor_ObjCClassMethodDecl; |
| 3770 | case Decl::CXXMethod: |
| 3771 | return CXCursor_CXXMethod; |
| 3772 | case Decl::CXXConstructor: |
| 3773 | return CXCursor_Constructor; |
| 3774 | case Decl::CXXDestructor: |
| 3775 | return CXCursor_Destructor; |
| 3776 | case Decl::CXXConversion: |
| 3777 | return CXCursor_ConversionFunction; |
| 3778 | case Decl::ObjCProperty: |
| 3779 | return CXCursor_ObjCPropertyDecl; |
| 3780 | case Decl::ObjCProtocol: |
| 3781 | return CXCursor_ObjCProtocolDecl; |
| 3782 | case Decl::ParmVar: |
| 3783 | return CXCursor_ParmDecl; |
| 3784 | case Decl::Typedef: |
| 3785 | return CXCursor_TypedefDecl; |
| 3786 | case Decl::TypeAlias: |
| 3787 | return CXCursor_TypeAliasDecl; |
| 3788 | case Decl::TypeAliasTemplate: |
| 3789 | return CXCursor_TypeAliasTemplateDecl; |
| 3790 | case Decl::Var: |
| 3791 | return CXCursor_VarDecl; |
| 3792 | case Decl::Namespace: |
| 3793 | return CXCursor_Namespace; |
| 3794 | case Decl::NamespaceAlias: |
| 3795 | return CXCursor_NamespaceAlias; |
| 3796 | case Decl::TemplateTypeParm: |
| 3797 | return CXCursor_TemplateTypeParameter; |
| 3798 | case Decl::NonTypeTemplateParm: |
| 3799 | return CXCursor_NonTypeTemplateParameter; |
| 3800 | case Decl::TemplateTemplateParm: |
| 3801 | return CXCursor_TemplateTemplateParameter; |
| 3802 | case Decl::FunctionTemplate: |
| 3803 | return CXCursor_FunctionTemplate; |
| 3804 | case Decl::ClassTemplate: |
| 3805 | return CXCursor_ClassTemplate; |
| 3806 | case Decl::AccessSpec: |
| 3807 | return CXCursor_CXXAccessSpecifier; |
| 3808 | case Decl::ClassTemplatePartialSpecialization: |
| 3809 | return CXCursor_ClassTemplatePartialSpecialization; |
| 3810 | case Decl::UsingDirective: |
| 3811 | return CXCursor_UsingDirective; |
| 3812 | case Decl::StaticAssert: |
| 3813 | return CXCursor_StaticAssert; |
| 3814 | case Decl::Friend: |
| 3815 | return CXCursor_FriendDecl; |
| 3816 | case Decl::TranslationUnit: |
| 3817 | return CXCursor_TranslationUnit; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3818 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3819 | case Decl::Using: |
| 3820 | case Decl::UnresolvedUsingValue: |
| 3821 | case Decl::UnresolvedUsingTypename: |
| 3822 | return CXCursor_UsingDeclaration; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3823 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3824 | case Decl::ObjCPropertyImpl: |
| 3825 | switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) { |
| 3826 | case ObjCPropertyImplDecl::Dynamic: |
| 3827 | return CXCursor_ObjCDynamicDecl; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3828 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3829 | case ObjCPropertyImplDecl::Synthesize: |
| 3830 | return CXCursor_ObjCSynthesizeDecl; |
| 3831 | } |
Bruno Ricci | e5bcf0b | 2018-12-21 17:52:13 +0000 | [diff] [blame] | 3832 | llvm_unreachable("Unexpected Kind!"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3833 | |
| 3834 | case Decl::Import: |
| 3835 | return CXCursor_ModuleImportDecl; |
| 3836 | |
| 3837 | case Decl::ObjCTypeParam: |
| 3838 | return CXCursor_TemplateTypeParameter; |
| 3839 | |
| 3840 | default: |
| 3841 | if (const auto *TD = dyn_cast<TagDecl>(D)) { |
| 3842 | switch (TD->getTagKind()) { |
| 3843 | case TTK_Interface: // fall through |
| 3844 | case TTK_Struct: |
| 3845 | return CXCursor_StructDecl; |
| 3846 | case TTK_Class: |
| 3847 | return CXCursor_ClassDecl; |
| 3848 | case TTK_Union: |
| 3849 | return CXCursor_UnionDecl; |
| 3850 | case TTK_Enum: |
| 3851 | return CXCursor_EnumDecl; |
Douglas Gregor | 4cd6596 | 2011-06-03 23:08:58 +0000 | [diff] [blame] | 3852 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3853 | } |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3854 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3855 | |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3856 | return CXCursor_UnexposedDecl; |
| 3857 | } |
| 3858 | |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3859 | static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results, |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 3860 | bool LoadExternal, bool IncludeUndefined, |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3861 | bool TargetTypeIsPointer = false) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3862 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3863 | |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 3864 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3865 | |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 3866 | for (Preprocessor::macro_iterator M = PP.macro_begin(LoadExternal), |
| 3867 | MEnd = PP.macro_end(LoadExternal); |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3868 | M != MEnd; ++M) { |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3869 | auto MD = PP.getMacroDefinition(M->first); |
| 3870 | if (IncludeUndefined || MD) { |
Eric Liu | d485df1 | 2018-09-05 14:59:17 +0000 | [diff] [blame] | 3871 | MacroInfo *MI = MD.getMacroInfo(); |
| 3872 | if (MI && MI->isUsedForHeaderGuard()) |
| 3873 | continue; |
Argyrios Kyrtzidis | 9ef53ce | 2014-04-09 18:21:23 +0000 | [diff] [blame] | 3874 | |
Eric Liu | d485df1 | 2018-09-05 14:59:17 +0000 | [diff] [blame] | 3875 | Results.AddResult( |
| 3876 | Result(M->first, MI, |
| 3877 | getMacroUsagePriority(M->first->getName(), PP.getLangOpts(), |
| 3878 | TargetTypeIsPointer))); |
Argyrios Kyrtzidis | 9ef53ce | 2014-04-09 18:21:23 +0000 | [diff] [blame] | 3879 | } |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3880 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3881 | |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 3882 | Results.ExitScope(); |
| 3883 | } |
| 3884 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3885 | static void AddPrettyFunctionResults(const LangOptions &LangOpts, |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3886 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3887 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3888 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3889 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3890 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3891 | Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant)); |
| 3892 | Results.AddResult(Result("__FUNCTION__", CCP_Constant)); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3893 | if (LangOpts.C99 || LangOpts.CPlusPlus11) |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3894 | Results.AddResult(Result("__func__", CCP_Constant)); |
| 3895 | Results.ExitScope(); |
| 3896 | } |
| 3897 | |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3898 | static void HandleCodeCompleteResults(Sema *S, |
| 3899 | CodeCompleteConsumer *CodeCompleter, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3900 | CodeCompletionContext Context, |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3901 | CodeCompletionResult *Results, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3902 | unsigned NumResults) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3903 | if (CodeCompleter) |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3904 | CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3905 | } |
| 3906 | |
Ilya Biryukov | 4110967 | 2018-12-13 15:36:32 +0000 | [diff] [blame] | 3907 | static CodeCompletionContext |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3908 | mapCodeCompletionContext(Sema &S, Sema::ParserCompletionContext PCC) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3909 | switch (PCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3910 | case Sema::PCC_Namespace: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3911 | return CodeCompletionContext::CCC_TopLevel; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3912 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3913 | case Sema::PCC_Class: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3914 | return CodeCompletionContext::CCC_ClassStructUnion; |
| 3915 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3916 | case Sema::PCC_ObjCInterface: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3917 | return CodeCompletionContext::CCC_ObjCInterface; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3918 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3919 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3920 | return CodeCompletionContext::CCC_ObjCImplementation; |
| 3921 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3922 | case Sema::PCC_ObjCInstanceVariableList: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3923 | return CodeCompletionContext::CCC_ObjCIvarList; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3924 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3925 | case Sema::PCC_Template: |
| 3926 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3927 | if (S.CurContext->isFileContext()) |
| 3928 | return CodeCompletionContext::CCC_TopLevel; |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3929 | if (S.CurContext->isRecord()) |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3930 | return CodeCompletionContext::CCC_ClassStructUnion; |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3931 | return CodeCompletionContext::CCC_Other; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3932 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3933 | case Sema::PCC_RecoveryInFunction: |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3934 | return CodeCompletionContext::CCC_Recovery; |
Douglas Gregor | c769d6e | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3935 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3936 | case Sema::PCC_ForInit: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3937 | if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 || |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 3938 | S.getLangOpts().ObjC) |
Douglas Gregor | c769d6e | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3939 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
| 3940 | else |
| 3941 | return CodeCompletionContext::CCC_Expression; |
| 3942 | |
| 3943 | case Sema::PCC_Expression: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3944 | return CodeCompletionContext::CCC_Expression; |
Ilya Biryukov | 4110967 | 2018-12-13 15:36:32 +0000 | [diff] [blame] | 3945 | case Sema::PCC_Condition: |
| 3946 | return CodeCompletionContext(CodeCompletionContext::CCC_Expression, |
| 3947 | S.getASTContext().BoolTy); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3948 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3949 | case Sema::PCC_Statement: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3950 | return CodeCompletionContext::CCC_Statement; |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3951 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3952 | case Sema::PCC_Type: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3953 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 3954 | |
| 3955 | case Sema::PCC_ParenthesizedExpression: |
| 3956 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3957 | |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 3958 | case Sema::PCC_LocalDeclarationSpecifiers: |
| 3959 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3960 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3961 | |
| 3962 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3963 | } |
| 3964 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3965 | /// If we're in a C++ virtual member function, add completion results |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3966 | /// that invoke the functions we override, since it's common to invoke the |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3967 | /// overridden function as well as adding new functionality. |
| 3968 | /// |
| 3969 | /// \param S The semantic analysis object for which we are generating results. |
| 3970 | /// |
| 3971 | /// \param InContext This context in which the nested-name-specifier preceding |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3972 | /// the code-completion point |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3973 | static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext, |
| 3974 | ResultBuilder &Results) { |
| 3975 | // Look through blocks. |
| 3976 | DeclContext *CurContext = S.CurContext; |
| 3977 | while (isa<BlockDecl>(CurContext)) |
| 3978 | CurContext = CurContext->getParent(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3979 | |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3980 | CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext); |
| 3981 | if (!Method || !Method->isVirtual()) |
| 3982 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3983 | |
| 3984 | // We need to have names for all of the parameters, if we're going to |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3985 | // generate a forwarding call. |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 3986 | for (auto P : Method->parameters()) |
Aaron Ballman | 43b68be | 2014-03-07 17:50:17 +0000 | [diff] [blame] | 3987 | if (!P->getDeclName()) |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3988 | return; |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3989 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3990 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 3991 | for (const CXXMethodDecl *Overridden : Method->overridden_methods()) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3992 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 3993 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3994 | if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl()) |
| 3995 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3996 | |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3997 | // If we need a nested-name-specifier, add one now. |
| 3998 | if (!InContext) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3999 | NestedNameSpecifier *NNS = getRequiredQualification( |
| 4000 | S.Context, CurContext, Overridden->getDeclContext()); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4001 | if (NNS) { |
| 4002 | std::string Str; |
| 4003 | llvm::raw_string_ostream OS(Str); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 4004 | NNS->print(OS, Policy); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 4005 | Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str())); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4006 | } |
| 4007 | } else if (!InContext->Equals(Overridden->getDeclContext())) |
| 4008 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4009 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4010 | Builder.AddTypedTextChunk( |
| 4011 | Results.getAllocator().CopyString(Overridden->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4012 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4013 | bool FirstParam = true; |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 4014 | for (auto P : Method->parameters()) { |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4015 | if (FirstParam) |
| 4016 | FirstParam = false; |
| 4017 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4018 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4019 | |
Aaron Ballman | 43b68be | 2014-03-07 17:50:17 +0000 | [diff] [blame] | 4020 | Builder.AddPlaceholderChunk( |
| 4021 | Results.getAllocator().CopyString(P->getIdentifier()->getName())); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4022 | } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4023 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4024 | Results.AddResult(CodeCompletionResult( |
| 4025 | Builder.TakeString(), CCP_SuperCompletion, CXCursor_CXXMethod, |
| 4026 | CXAvailability_Available, Overridden)); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4027 | Results.Ignore(Overridden); |
| 4028 | } |
| 4029 | } |
| 4030 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4031 | void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc, |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4032 | ModuleIdPath Path) { |
| 4033 | typedef CodeCompletionResult Result; |
| 4034 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4035 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4036 | CodeCompletionContext::CCC_Other); |
| 4037 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4038 | |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4039 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4040 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4041 | typedef CodeCompletionResult Result; |
| 4042 | if (Path.empty()) { |
| 4043 | // Enumerate all top-level modules. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 4044 | SmallVector<Module *, 8> Modules; |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4045 | PP.getHeaderSearchInfo().collectAllModules(Modules); |
| 4046 | for (unsigned I = 0, N = Modules.size(); I != N; ++I) { |
| 4047 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4048 | Builder.getAllocator().CopyString(Modules[I]->Name)); |
| 4049 | Results.AddResult(Result( |
| 4050 | Builder.TakeString(), CCP_Declaration, CXCursor_ModuleImportDecl, |
| 4051 | Modules[I]->isAvailable() ? CXAvailability_Available |
| 4052 | : CXAvailability_NotAvailable)); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4053 | } |
Daniel Jasper | 07e6c40 | 2013-08-05 20:26:17 +0000 | [diff] [blame] | 4054 | } else if (getLangOpts().Modules) { |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4055 | // Load the named module. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4056 | Module *Mod = |
| 4057 | PP.getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible, |
| 4058 | /*IsInclusionDirective=*/false); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4059 | // Enumerate submodules. |
| 4060 | if (Mod) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4061 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4062 | SubEnd = Mod->submodule_end(); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4063 | Sub != SubEnd; ++Sub) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4064 | |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4065 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4066 | Builder.getAllocator().CopyString((*Sub)->Name)); |
| 4067 | Results.AddResult(Result( |
| 4068 | Builder.TakeString(), CCP_Declaration, CXCursor_ModuleImportDecl, |
| 4069 | (*Sub)->isAvailable() ? CXAvailability_Available |
| 4070 | : CXAvailability_NotAvailable)); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4071 | } |
| 4072 | } |
| 4073 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4074 | Results.ExitScope(); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4075 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4076 | Results.data(), Results.size()); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4077 | } |
| 4078 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4079 | void Sema::CodeCompleteOrdinaryName(Scope *S, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4080 | ParserCompletionContext CompletionContext) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4081 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4082 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4083 | mapCodeCompletionContext(*this, CompletionContext)); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4084 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4085 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4086 | // Determine how to filter results, e.g., so that the names of |
| 4087 | // values (functions, enumerators, function templates, etc.) are |
| 4088 | // only allowed where we can have an expression. |
| 4089 | switch (CompletionContext) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4090 | case PCC_Namespace: |
| 4091 | case PCC_Class: |
| 4092 | case PCC_ObjCInterface: |
| 4093 | case PCC_ObjCImplementation: |
| 4094 | case PCC_ObjCInstanceVariableList: |
| 4095 | case PCC_Template: |
| 4096 | case PCC_MemberTemplate: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4097 | case PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 4098 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4099 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 4100 | break; |
| 4101 | |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4102 | case PCC_Statement: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 4103 | case PCC_ParenthesizedExpression: |
Douglas Gregor | 4d755e8 | 2010-08-24 23:58:17 +0000 | [diff] [blame] | 4104 | case PCC_Expression: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4105 | case PCC_ForInit: |
| 4106 | case PCC_Condition: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4107 | if (WantTypesInContext(CompletionContext, getLangOpts())) |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 4108 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 4109 | else |
| 4110 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4111 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4112 | if (getLangOpts().CPlusPlus) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4113 | MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4114 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4115 | |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4116 | case PCC_RecoveryInFunction: |
Douglas Gregor | 6da3db4 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 4117 | // Unfiltered |
| 4118 | break; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4119 | } |
| 4120 | |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 4121 | // If we are in a C++ non-static member function, check the qualifiers on |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4122 | // the member function to filter/prioritize the results list. |
Ilya Biryukov | b45d851b | 2018-12-19 18:01:24 +0000 | [diff] [blame] | 4123 | auto ThisType = getCurrentThisType(); |
| 4124 | if (!ThisType.isNull()) |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4125 | Results.setObjectTypeQualifiers(ThisType->getPointeeType().getQualifiers(), |
| 4126 | VK_LValue); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4127 | |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4128 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4129 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4130 | CodeCompleter->includeGlobals(), |
| 4131 | CodeCompleter->loadExternal()); |
Douglas Gregor | 9225369 | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 4132 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4133 | AddOrdinaryNameResults(CompletionContext, S, *this, Results); |
Douglas Gregor | 9225369 | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 4134 | Results.ExitScope(); |
| 4135 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4136 | switch (CompletionContext) { |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 4137 | case PCC_ParenthesizedExpression: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4138 | case PCC_Expression: |
| 4139 | case PCC_Statement: |
| 4140 | case PCC_RecoveryInFunction: |
| 4141 | if (S->getFnParent()) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 4142 | AddPrettyFunctionResults(getLangOpts(), Results); |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4143 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4144 | |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4145 | case PCC_Namespace: |
| 4146 | case PCC_Class: |
| 4147 | case PCC_ObjCInterface: |
| 4148 | case PCC_ObjCImplementation: |
| 4149 | case PCC_ObjCInstanceVariableList: |
| 4150 | case PCC_Template: |
| 4151 | case PCC_MemberTemplate: |
| 4152 | case PCC_ForInit: |
| 4153 | case PCC_Condition: |
| 4154 | case PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 4155 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4156 | break; |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4157 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4158 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 4159 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 4160 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4161 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 4162 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4163 | Results.data(), Results.size()); |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 4164 | } |
| 4165 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4166 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4167 | ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 4168 | ArrayRef<IdentifierInfo *> SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4169 | bool AtArgumentExpression, bool IsSuper, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4170 | ResultBuilder &Results); |
| 4171 | |
| 4172 | void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS, |
| 4173 | bool AllowNonIdentifiers, |
| 4174 | bool AllowNestedNameSpecifiers) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4175 | typedef CodeCompletionResult Result; |
Kadir Cetinkaya | b006e09 | 2018-10-24 15:23:49 +0000 | [diff] [blame] | 4176 | ResultBuilder Results( |
| 4177 | *this, CodeCompleter->getAllocator(), |
| 4178 | CodeCompleter->getCodeCompletionTUInfo(), |
| 4179 | AllowNestedNameSpecifiers |
| 4180 | // FIXME: Try to separate codepath leading here to deduce whether we |
| 4181 | // need an existing symbol or a new one. |
| 4182 | ? CodeCompletionContext::CCC_SymbolOrNewName |
| 4183 | : CodeCompletionContext::CCC_NewName); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4184 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4185 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4186 | // Type qualifiers can come after names. |
| 4187 | Results.AddResult(Result("const")); |
| 4188 | Results.AddResult(Result("volatile")); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4189 | if (getLangOpts().C99) |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4190 | Results.AddResult(Result("restrict")); |
| 4191 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4192 | if (getLangOpts().CPlusPlus) { |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4193 | if (getLangOpts().CPlusPlus11 && |
| 4194 | (DS.getTypeSpecType() == DeclSpec::TST_class || |
| 4195 | DS.getTypeSpecType() == DeclSpec::TST_struct)) |
| 4196 | Results.AddResult("final"); |
| 4197 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4198 | if (AllowNonIdentifiers) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4199 | Results.AddResult(Result("operator")); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4200 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4201 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4202 | // Add nested-name-specifiers. |
| 4203 | if (AllowNestedNameSpecifiers) { |
| 4204 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4205 | Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4206 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 4207 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4208 | CodeCompleter->includeGlobals(), |
| 4209 | CodeCompleter->loadExternal()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4210 | Results.setFilter(nullptr); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4211 | } |
| 4212 | } |
| 4213 | Results.ExitScope(); |
| 4214 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4215 | // If we're in a context where we might have an expression (rather than a |
| 4216 | // declaration), and what we've seen so far is an Objective-C type that could |
| 4217 | // be a receiver of a class message, this may be a class message send with |
| 4218 | // the initial opening bracket '[' missing. Add appropriate completions. |
| 4219 | if (AllowNonIdentifiers && !AllowNestedNameSpecifiers && |
Richard Smith | b4a9e86 | 2013-04-12 22:46:28 +0000 | [diff] [blame] | 4220 | DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4221 | DS.getTypeSpecType() == DeclSpec::TST_typename && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4222 | DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified && |
| 4223 | DS.getTypeSpecSign() == DeclSpec::TSS_unspecified && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4224 | !DS.isTypeAltiVecVector() && S && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4225 | (S->getFlags() & Scope::DeclScope) != 0 && |
| 4226 | (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4227 | Scope::FunctionPrototypeScope | Scope::AtCatchScope)) == |
| 4228 | 0) { |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4229 | ParsedType T = DS.getRepAsType(); |
| 4230 | if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType()) |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 4231 | AddClassMessageCompletions(*this, S, T, None, false, false, Results); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4232 | } |
| 4233 | |
Douglas Gregor | 56ccce0 | 2010-08-24 04:59:56 +0000 | [diff] [blame] | 4234 | // Note that we intentionally suppress macro results here, since we do not |
| 4235 | // encourage using macros to produce the names of entities. |
| 4236 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4237 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4238 | Results.data(), Results.size()); |
| 4239 | } |
| 4240 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4241 | struct Sema::CodeCompleteExpressionData { |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4242 | CodeCompleteExpressionData(QualType PreferredType = QualType(), |
| 4243 | bool IsParenthesized = false) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4244 | : PreferredType(PreferredType), IntegralConstantExpression(false), |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4245 | ObjCCollection(false), IsParenthesized(IsParenthesized) {} |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4246 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4247 | QualType PreferredType; |
| 4248 | bool IntegralConstantExpression; |
| 4249 | bool ObjCCollection; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4250 | bool IsParenthesized; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4251 | SmallVector<Decl *, 4> IgnoreDecls; |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4252 | }; |
| 4253 | |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4254 | namespace { |
| 4255 | /// Information that allows to avoid completing redundant enumerators. |
| 4256 | struct CoveredEnumerators { |
| 4257 | llvm::SmallPtrSet<EnumConstantDecl *, 8> Seen; |
| 4258 | NestedNameSpecifier *SuggestedQualifier = nullptr; |
| 4259 | }; |
| 4260 | } // namespace |
| 4261 | |
| 4262 | static void AddEnumerators(ResultBuilder &Results, ASTContext &Context, |
| 4263 | EnumDecl *Enum, DeclContext *CurContext, |
| 4264 | const CoveredEnumerators &Enumerators) { |
| 4265 | NestedNameSpecifier *Qualifier = Enumerators.SuggestedQualifier; |
| 4266 | if (Context.getLangOpts().CPlusPlus && !Qualifier && Enumerators.Seen.empty()) { |
| 4267 | // If there are no prior enumerators in C++, check whether we have to |
| 4268 | // qualify the names of the enumerators that we suggest, because they |
| 4269 | // may not be visible in this scope. |
| 4270 | Qualifier = getRequiredQualification(Context, CurContext, Enum); |
| 4271 | } |
| 4272 | |
| 4273 | Results.EnterNewScope(); |
| 4274 | for (auto *E : Enum->enumerators()) { |
| 4275 | if (Enumerators.Seen.count(E)) |
| 4276 | continue; |
| 4277 | |
| 4278 | CodeCompletionResult R(E, CCP_EnumInCase, Qualifier); |
| 4279 | Results.AddResult(R, CurContext, nullptr, false); |
| 4280 | } |
| 4281 | Results.ExitScope(); |
| 4282 | } |
| 4283 | |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4284 | /// Try to find a corresponding FunctionProtoType for function-like types (e.g. |
| 4285 | /// function pointers, std::function, etc). |
| 4286 | static const FunctionProtoType *TryDeconstructFunctionLike(QualType T) { |
| 4287 | assert(!T.isNull()); |
| 4288 | // Try to extract first template argument from std::function<> and similar. |
| 4289 | // Note we only handle the sugared types, they closely match what users wrote. |
| 4290 | // We explicitly choose to not handle ClassTemplateSpecializationDecl. |
| 4291 | if (auto *Specialization = T->getAs<TemplateSpecializationType>()) { |
| 4292 | if (Specialization->getNumArgs() != 1) |
| 4293 | return nullptr; |
| 4294 | const TemplateArgument &Argument = Specialization->getArg(0); |
| 4295 | if (Argument.getKind() != TemplateArgument::Type) |
| 4296 | return nullptr; |
| 4297 | return Argument.getAsType()->getAs<FunctionProtoType>(); |
| 4298 | } |
| 4299 | // Handle other cases. |
| 4300 | if (T->isPointerType()) |
| 4301 | T = T->getPointeeType(); |
| 4302 | return T->getAs<FunctionProtoType>(); |
| 4303 | } |
| 4304 | |
| 4305 | /// Adds a pattern completion for a lambda expression with the specified |
| 4306 | /// parameter types and placeholders for parameter names. |
| 4307 | static void AddLambdaCompletion(ResultBuilder &Results, |
| 4308 | llvm::ArrayRef<QualType> Parameters, |
| 4309 | const LangOptions &LangOpts) { |
Ilya Biryukov | fd11a5f | 2019-05-23 16:39:26 +0000 | [diff] [blame] | 4310 | if (!Results.includeCodePatterns()) |
| 4311 | return; |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4312 | CodeCompletionBuilder Completion(Results.getAllocator(), |
| 4313 | Results.getCodeCompletionTUInfo()); |
| 4314 | // [](<parameters>) {} |
| 4315 | Completion.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 4316 | Completion.AddPlaceholderChunk("="); |
| 4317 | Completion.AddChunk(CodeCompletionString::CK_RightBracket); |
| 4318 | if (!Parameters.empty()) { |
| 4319 | Completion.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4320 | bool First = true; |
| 4321 | for (auto Parameter : Parameters) { |
| 4322 | if (!First) |
| 4323 | Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); |
| 4324 | else |
| 4325 | First = false; |
| 4326 | |
| 4327 | constexpr llvm::StringLiteral NamePlaceholder = "!#!NAME_GOES_HERE!#!"; |
| 4328 | std::string Type = NamePlaceholder; |
| 4329 | Parameter.getAsStringInternal(Type, PrintingPolicy(LangOpts)); |
| 4330 | llvm::StringRef Prefix, Suffix; |
| 4331 | std::tie(Prefix, Suffix) = llvm::StringRef(Type).split(NamePlaceholder); |
| 4332 | Prefix = Prefix.rtrim(); |
| 4333 | Suffix = Suffix.ltrim(); |
| 4334 | |
| 4335 | Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); |
| 4336 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4337 | Completion.AddPlaceholderChunk("parameter"); |
| 4338 | Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); |
| 4339 | }; |
| 4340 | Completion.AddChunk(CodeCompletionString::CK_RightParen); |
| 4341 | } |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4342 | Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4343 | Completion.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4344 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4345 | Completion.AddPlaceholderChunk("body"); |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4346 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4347 | Completion.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4348 | |
| 4349 | Results.AddResult(Completion.TakeString()); |
| 4350 | } |
| 4351 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4352 | /// Perform code-completion in an expression context when we know what |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4353 | /// type we're looking for. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4354 | void Sema::CodeCompleteExpression(Scope *S, |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4355 | const CodeCompleteExpressionData &Data) { |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 4356 | ResultBuilder Results( |
| 4357 | *this, CodeCompleter->getAllocator(), |
| 4358 | CodeCompleter->getCodeCompletionTUInfo(), |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4359 | CodeCompletionContext( |
| 4360 | Data.IsParenthesized |
| 4361 | ? CodeCompletionContext::CCC_ParenthesizedExpression |
| 4362 | : CodeCompletionContext::CCC_Expression, |
| 4363 | Data.PreferredType)); |
| 4364 | auto PCC = |
| 4365 | Data.IsParenthesized ? PCC_ParenthesizedExpression : PCC_Expression; |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4366 | if (Data.ObjCCollection) |
| 4367 | Results.setFilter(&ResultBuilder::IsObjCCollection); |
| 4368 | else if (Data.IntegralConstantExpression) |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 4369 | Results.setFilter(&ResultBuilder::IsIntegralConstantValue); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4370 | else if (WantTypesInContext(PCC, getLangOpts())) |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4371 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 4372 | else |
| 4373 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4374 | |
| 4375 | if (!Data.PreferredType.isNull()) |
| 4376 | Results.setPreferredType(Data.PreferredType.getNonReferenceType()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4377 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4378 | // Ignore any declarations that we were told that we don't care about. |
| 4379 | for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I) |
| 4380 | Results.Ignore(Data.IgnoreDecls[I]); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4381 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4382 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4383 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4384 | CodeCompleter->includeGlobals(), |
| 4385 | CodeCompleter->loadExternal()); |
| 4386 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4387 | Results.EnterNewScope(); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4388 | AddOrdinaryNameResults(PCC, S, *this, Results); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4389 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4390 | |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 4391 | bool PreferredTypeIsPointer = false; |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4392 | if (!Data.PreferredType.isNull()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4393 | PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType() || |
| 4394 | Data.PreferredType->isMemberPointerType() || |
| 4395 | Data.PreferredType->isBlockPointerType(); |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4396 | if (Data.PreferredType->isEnumeralType()) { |
| 4397 | EnumDecl *Enum = Data.PreferredType->castAs<EnumType>()->getDecl(); |
| 4398 | if (auto *Def = Enum->getDefinition()) |
| 4399 | Enum = Def; |
| 4400 | // FIXME: collect covered enumerators in cases like: |
| 4401 | // if (x == my_enum::one) { ... } else if (x == ^) {} |
| 4402 | AddEnumerators(Results, Context, Enum, CurContext, CoveredEnumerators()); |
| 4403 | } |
| 4404 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4405 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4406 | if (S->getFnParent() && !Data.ObjCCollection && |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4407 | !Data.IntegralConstantExpression) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 4408 | AddPrettyFunctionResults(getLangOpts(), Results); |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4409 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4410 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 4411 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false, |
| 4412 | PreferredTypeIsPointer); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4413 | |
| 4414 | // Complete a lambda expression when preferred type is a function. |
| 4415 | if (!Data.PreferredType.isNull() && getLangOpts().CPlusPlus11) { |
| 4416 | if (const FunctionProtoType *F = |
| 4417 | TryDeconstructFunctionLike(Data.PreferredType)) |
| 4418 | AddLambdaCompletion(Results, F->getParamTypes(), getLangOpts()); |
| 4419 | } |
| 4420 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 4421 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4422 | Results.data(), Results.size()); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4423 | } |
| 4424 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4425 | void Sema::CodeCompleteExpression(Scope *S, QualType PreferredType, |
| 4426 | bool IsParenthesized) { |
| 4427 | return CodeCompleteExpression( |
| 4428 | S, CodeCompleteExpressionData(PreferredType, IsParenthesized)); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 4429 | } |
| 4430 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4431 | void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E, |
| 4432 | QualType PreferredType) { |
Douglas Gregor | eda7e54 | 2010-09-18 01:28:11 +0000 | [diff] [blame] | 4433 | if (E.isInvalid()) |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4434 | CodeCompleteExpression(S, PreferredType); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 4435 | else if (getLangOpts().ObjC) |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 4436 | CodeCompleteObjCInstanceMessage(S, E.get(), None, false); |
Douglas Gregor | ed0b69d | 2010-09-15 16:23:04 +0000 | [diff] [blame] | 4437 | } |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4438 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4439 | /// The set of properties that have already been added, referenced by |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 4440 | /// property name. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4441 | typedef llvm::SmallPtrSet<IdentifierInfo *, 16> AddedPropertiesSet; |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 4442 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4443 | /// Retrieve the container definition, if any? |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4444 | static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) { |
| 4445 | if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) { |
| 4446 | if (Interface->hasDefinition()) |
| 4447 | return Interface->getDefinition(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4448 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4449 | return Interface; |
| 4450 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4451 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4452 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
| 4453 | if (Protocol->hasDefinition()) |
| 4454 | return Protocol->getDefinition(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4455 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4456 | return Protocol; |
| 4457 | } |
| 4458 | return Container; |
| 4459 | } |
| 4460 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4461 | /// Adds a block invocation code completion result for the given block |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4462 | /// declaration \p BD. |
| 4463 | static void AddObjCBlockCall(ASTContext &Context, const PrintingPolicy &Policy, |
| 4464 | CodeCompletionBuilder &Builder, |
| 4465 | const NamedDecl *BD, |
| 4466 | const FunctionTypeLoc &BlockLoc, |
| 4467 | const FunctionProtoTypeLoc &BlockProtoLoc) { |
| 4468 | Builder.AddResultTypeChunk( |
| 4469 | GetCompletionTypeString(BlockLoc.getReturnLoc().getType(), Context, |
| 4470 | Policy, Builder.getAllocator())); |
| 4471 | |
| 4472 | AddTypedNameChunk(Context, Policy, BD, Builder); |
| 4473 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4474 | |
| 4475 | if (BlockProtoLoc && BlockProtoLoc.getTypePtr()->isVariadic()) { |
| 4476 | Builder.AddPlaceholderChunk("..."); |
| 4477 | } else { |
| 4478 | for (unsigned I = 0, N = BlockLoc.getNumParams(); I != N; ++I) { |
| 4479 | if (I) |
| 4480 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 4481 | |
| 4482 | // Format the placeholder string. |
| 4483 | std::string PlaceholderStr = |
| 4484 | FormatFunctionParameter(Policy, BlockLoc.getParam(I)); |
| 4485 | |
| 4486 | if (I == N - 1 && BlockProtoLoc && |
| 4487 | BlockProtoLoc.getTypePtr()->isVariadic()) |
| 4488 | PlaceholderStr += ", ..."; |
| 4489 | |
| 4490 | // Add the placeholder string. |
| 4491 | Builder.AddPlaceholderChunk( |
| 4492 | Builder.getAllocator().CopyString(PlaceholderStr)); |
| 4493 | } |
| 4494 | } |
| 4495 | |
| 4496 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4497 | } |
| 4498 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4499 | static void |
| 4500 | AddObjCProperties(const CodeCompletionContext &CCContext, |
| 4501 | ObjCContainerDecl *Container, bool AllowCategories, |
| 4502 | bool AllowNullaryMethods, DeclContext *CurContext, |
| 4503 | AddedPropertiesSet &AddedProperties, ResultBuilder &Results, |
| 4504 | bool IsBaseExprStatement = false, |
| 4505 | bool IsClassProperty = false, bool InOriginalClass = true) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4506 | typedef CodeCompletionResult Result; |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4507 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4508 | // Retrieve the definition. |
| 4509 | Container = getContainerDef(Container); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4510 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4511 | // Add properties in this container. |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4512 | const auto AddProperty = [&](const ObjCPropertyDecl *P) { |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4513 | if (!AddedProperties.insert(P->getIdentifier()).second) |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4514 | return; |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4515 | |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4516 | // FIXME: Provide block invocation completion for non-statement |
| 4517 | // expressions. |
| 4518 | if (!P->getType().getTypePtr()->isBlockPointerType() || |
| 4519 | !IsBaseExprStatement) { |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4520 | Result R = Result(P, Results.getBasePriority(P), nullptr); |
| 4521 | if (!InOriginalClass) |
| 4522 | setInBaseClass(R); |
| 4523 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4524 | return; |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4525 | } |
| 4526 | |
| 4527 | // Block setter and invocation completion is provided only when we are able |
| 4528 | // to find the FunctionProtoTypeLoc with parameter names for the block. |
| 4529 | FunctionTypeLoc BlockLoc; |
| 4530 | FunctionProtoTypeLoc BlockProtoLoc; |
| 4531 | findTypeLocationForBlockDecl(P->getTypeSourceInfo(), BlockLoc, |
| 4532 | BlockProtoLoc); |
| 4533 | if (!BlockLoc) { |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4534 | Result R = Result(P, Results.getBasePriority(P), nullptr); |
| 4535 | if (!InOriginalClass) |
| 4536 | setInBaseClass(R); |
| 4537 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4538 | return; |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4539 | } |
| 4540 | |
| 4541 | // The default completion result for block properties should be the block |
| 4542 | // invocation completion when the base expression is a statement. |
| 4543 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4544 | Results.getCodeCompletionTUInfo()); |
| 4545 | AddObjCBlockCall(Container->getASTContext(), |
| 4546 | getCompletionPrintingPolicy(Results.getSema()), Builder, P, |
| 4547 | BlockLoc, BlockProtoLoc); |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4548 | Result R = Result(Builder.TakeString(), P, Results.getBasePriority(P)); |
| 4549 | if (!InOriginalClass) |
| 4550 | setInBaseClass(R); |
| 4551 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4552 | |
| 4553 | // Provide additional block setter completion iff the base expression is a |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4554 | // statement and the block property is mutable. |
| 4555 | if (!P->isReadOnly()) { |
| 4556 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4557 | Results.getCodeCompletionTUInfo()); |
| 4558 | AddResultTypeChunk(Container->getASTContext(), |
| 4559 | getCompletionPrintingPolicy(Results.getSema()), P, |
| 4560 | CCContext.getBaseType(), Builder); |
| 4561 | Builder.AddTypedTextChunk( |
| 4562 | Results.getAllocator().CopyString(P->getName())); |
| 4563 | Builder.AddChunk(CodeCompletionString::CK_Equal); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4564 | |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4565 | std::string PlaceholderStr = formatBlockPlaceholder( |
| 4566 | getCompletionPrintingPolicy(Results.getSema()), P, BlockLoc, |
| 4567 | BlockProtoLoc, /*SuppressBlockName=*/true); |
| 4568 | // Add the placeholder string. |
| 4569 | Builder.AddPlaceholderChunk( |
| 4570 | Builder.getAllocator().CopyString(PlaceholderStr)); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4571 | |
Alex Lorenz | 6e0f393 | 2017-01-06 12:00:44 +0000 | [diff] [blame] | 4572 | // When completing blocks properties that return void the default |
| 4573 | // property completion result should show up before the setter, |
| 4574 | // otherwise the setter completion should show up before the default |
| 4575 | // property completion, as we normally want to use the result of the |
| 4576 | // call. |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4577 | Result R = |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4578 | Result(Builder.TakeString(), P, |
Alex Lorenz | 6e0f393 | 2017-01-06 12:00:44 +0000 | [diff] [blame] | 4579 | Results.getBasePriority(P) + |
| 4580 | (BlockLoc.getTypePtr()->getReturnType()->isVoidType() |
| 4581 | ? CCD_BlockPropertySetter |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4582 | : -CCD_BlockPropertySetter)); |
| 4583 | if (!InOriginalClass) |
| 4584 | setInBaseClass(R); |
| 4585 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4586 | } |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4587 | }; |
| 4588 | |
| 4589 | if (IsClassProperty) { |
| 4590 | for (const auto *P : Container->class_properties()) |
| 4591 | AddProperty(P); |
| 4592 | } else { |
| 4593 | for (const auto *P : Container->instance_properties()) |
| 4594 | AddProperty(P); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4595 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4596 | |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4597 | // Add nullary methods or implicit class properties |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 4598 | if (AllowNullaryMethods) { |
| 4599 | ASTContext &Context = Container->getASTContext(); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 4600 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4601 | // Adds a method result |
| 4602 | const auto AddMethod = [&](const ObjCMethodDecl *M) { |
| 4603 | IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0); |
| 4604 | if (!Name) |
| 4605 | return; |
| 4606 | if (!AddedProperties.insert(Name).second) |
| 4607 | return; |
| 4608 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4609 | Results.getCodeCompletionTUInfo()); |
| 4610 | AddResultTypeChunk(Context, Policy, M, CCContext.getBaseType(), Builder); |
| 4611 | Builder.AddTypedTextChunk( |
| 4612 | Results.getAllocator().CopyString(Name->getName())); |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4613 | Result R = Result(Builder.TakeString(), M, |
| 4614 | CCP_MemberDeclaration + CCD_MethodAsProperty); |
| 4615 | if (!InOriginalClass) |
| 4616 | setInBaseClass(R); |
| 4617 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4618 | }; |
| 4619 | |
| 4620 | if (IsClassProperty) { |
| 4621 | for (const auto *M : Container->methods()) { |
| 4622 | // Gather the class method that can be used as implicit property |
| 4623 | // getters. Methods with arguments or methods that return void aren't |
| 4624 | // added to the results as they can't be used as a getter. |
| 4625 | if (!M->getSelector().isUnarySelector() || |
| 4626 | M->getReturnType()->isVoidType() || M->isInstanceMethod()) |
| 4627 | continue; |
| 4628 | AddMethod(M); |
| 4629 | } |
| 4630 | } else { |
| 4631 | for (auto *M : Container->methods()) { |
| 4632 | if (M->getSelector().isUnarySelector()) |
| 4633 | AddMethod(M); |
| 4634 | } |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 4635 | } |
| 4636 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4637 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4638 | // Add properties in referenced protocols. |
| 4639 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 4640 | for (auto *P : Protocol->protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4641 | AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4642 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4643 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4644 | /*InOriginalClass*/ false); |
| 4645 | } else if (ObjCInterfaceDecl *IFace = |
| 4646 | dyn_cast<ObjCInterfaceDecl>(Container)) { |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 4647 | if (AllowCategories) { |
| 4648 | // Look through categories. |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 4649 | for (auto *Cat : IFace->known_categories()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4650 | AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4651 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4652 | IsBaseExprStatement, IsClassProperty, |
| 4653 | InOriginalClass); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 4654 | } |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 4655 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4656 | // Look through protocols. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 4657 | for (auto *I : IFace->all_referenced_protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4658 | AddObjCProperties(CCContext, I, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4659 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4660 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4661 | /*InOriginalClass*/ false); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4662 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4663 | // Look in the superclass. |
| 4664 | if (IFace->getSuperClass()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4665 | AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4666 | AllowNullaryMethods, CurContext, AddedProperties, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4667 | Results, IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4668 | /*InOriginalClass*/ false); |
| 4669 | } else if (const auto *Category = |
| 4670 | dyn_cast<ObjCCategoryDecl>(Container)) { |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4671 | // Look through protocols. |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 4672 | for (auto *P : Category->protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4673 | AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4674 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4675 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4676 | /*InOriginalClass*/ false); |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4677 | } |
| 4678 | } |
| 4679 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4680 | static void AddRecordMembersCompletionResults( |
| 4681 | Sema &SemaRef, ResultBuilder &Results, Scope *S, QualType BaseType, |
| 4682 | ExprValueKind BaseKind, RecordDecl *RD, Optional<FixItHint> AccessOpFixIt) { |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4683 | // Indicate that we are performing a member access, and the cv-qualifiers |
| 4684 | // for the base object type. |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4685 | Results.setObjectTypeQualifiers(BaseType.getQualifiers(), BaseKind); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4686 | |
| 4687 | // Access to a C/C++ class, struct, or union. |
| 4688 | Results.allowNestedNameSpecifiers(); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4689 | std::vector<FixItHint> FixIts; |
| 4690 | if (AccessOpFixIt) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4691 | FixIts.emplace_back(AccessOpFixIt.getValue()); |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4692 | CodeCompletionDeclConsumer Consumer(Results, RD, BaseType, std::move(FixIts)); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4693 | SemaRef.LookupVisibleDecls(RD, Sema::LookupMemberName, Consumer, |
Alex Lorenz | e6afa39 | 2017-05-11 13:48:57 +0000 | [diff] [blame] | 4694 | SemaRef.CodeCompleter->includeGlobals(), |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4695 | /*IncludeDependentBases=*/true, |
| 4696 | SemaRef.CodeCompleter->loadExternal()); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4697 | |
| 4698 | if (SemaRef.getLangOpts().CPlusPlus) { |
| 4699 | if (!Results.empty()) { |
| 4700 | // The "template" keyword can follow "->" or "." in the grammar. |
| 4701 | // However, we only want to suggest the template keyword if something |
| 4702 | // is dependent. |
| 4703 | bool IsDependent = BaseType->isDependentType(); |
| 4704 | if (!IsDependent) { |
| 4705 | for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent()) |
| 4706 | if (DeclContext *Ctx = DepScope->getEntity()) { |
| 4707 | IsDependent = Ctx->isDependentContext(); |
| 4708 | break; |
| 4709 | } |
| 4710 | } |
| 4711 | |
| 4712 | if (IsDependent) |
| 4713 | Results.AddResult(CodeCompletionResult("template")); |
| 4714 | } |
| 4715 | } |
| 4716 | } |
| 4717 | |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4718 | void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base, |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4719 | Expr *OtherOpBase, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4720 | SourceLocation OpLoc, bool IsArrow, |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4721 | bool IsBaseExprStatement, |
| 4722 | QualType PreferredType) { |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4723 | if (!Base || !CodeCompleter) |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4724 | return; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4725 | |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4726 | ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow); |
| 4727 | if (ConvertedBase.isInvalid()) |
| 4728 | return; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4729 | QualType ConvertedBaseType = ConvertedBase.get()->getType(); |
| 4730 | |
| 4731 | enum CodeCompletionContext::Kind contextKind; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4732 | |
| 4733 | if (IsArrow) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4734 | if (const auto *Ptr = ConvertedBaseType->getAs<PointerType>()) |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4735 | ConvertedBaseType = Ptr->getPointeeType(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4736 | } |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4737 | |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4738 | if (IsArrow) { |
| 4739 | contextKind = CodeCompletionContext::CCC_ArrowMemberAccess; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4740 | } else { |
| 4741 | if (ConvertedBaseType->isObjCObjectPointerType() || |
| 4742 | ConvertedBaseType->isObjCObjectOrInterfaceType()) { |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4743 | contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4744 | } else { |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4745 | contextKind = CodeCompletionContext::CCC_DotMemberAccess; |
| 4746 | } |
| 4747 | } |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4748 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4749 | CodeCompletionContext CCContext(contextKind, ConvertedBaseType); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4750 | CCContext.setPreferredType(PreferredType); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4751 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4752 | CodeCompleter->getCodeCompletionTUInfo(), CCContext, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4753 | &ResultBuilder::IsMember); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4754 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4755 | auto DoCompletion = [&](Expr *Base, bool IsArrow, |
| 4756 | Optional<FixItHint> AccessOpFixIt) -> bool { |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4757 | if (!Base) |
| 4758 | return false; |
| 4759 | |
| 4760 | ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow); |
| 4761 | if (ConvertedBase.isInvalid()) |
| 4762 | return false; |
| 4763 | Base = ConvertedBase.get(); |
| 4764 | |
| 4765 | QualType BaseType = Base->getType(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4766 | ExprValueKind BaseKind = Base->getValueKind(); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4767 | |
| 4768 | if (IsArrow) { |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4769 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4770 | BaseType = Ptr->getPointeeType(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4771 | BaseKind = VK_LValue; |
| 4772 | } else if (BaseType->isObjCObjectPointerType()) |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4773 | /*Do nothing*/; |
| 4774 | else |
| 4775 | return false; |
| 4776 | } |
| 4777 | |
| 4778 | if (const RecordType *Record = BaseType->getAs<RecordType>()) { |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4779 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4780 | Record->getDecl(), |
| 4781 | std::move(AccessOpFixIt)); |
| 4782 | } else if (const auto *TST = |
| 4783 | BaseType->getAs<TemplateSpecializationType>()) { |
| 4784 | TemplateName TN = TST->getTemplateName(); |
| 4785 | if (const auto *TD = |
| 4786 | dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl())) { |
| 4787 | CXXRecordDecl *RD = TD->getTemplatedDecl(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4788 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
| 4789 | RD, std::move(AccessOpFixIt)); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4790 | } |
| 4791 | } else if (const auto *ICNT = BaseType->getAs<InjectedClassNameType>()) { |
| 4792 | if (auto *RD = ICNT->getDecl()) |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4793 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
| 4794 | RD, std::move(AccessOpFixIt)); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4795 | } else if (!IsArrow && BaseType->isObjCObjectPointerType()) { |
| 4796 | // Objective-C property reference. |
| 4797 | AddedPropertiesSet AddedProperties; |
| 4798 | |
| 4799 | if (const ObjCObjectPointerType *ObjCPtr = |
| 4800 | BaseType->getAsObjCInterfacePointerType()) { |
| 4801 | // Add property results based on our interface. |
| 4802 | assert(ObjCPtr && "Non-NULL pointer guaranteed above!"); |
| 4803 | AddObjCProperties(CCContext, ObjCPtr->getInterfaceDecl(), true, |
| 4804 | /*AllowNullaryMethods=*/true, CurContext, |
| 4805 | AddedProperties, Results, IsBaseExprStatement); |
| 4806 | } |
| 4807 | |
| 4808 | // Add properties from the protocols in a qualified interface. |
| 4809 | for (auto *I : BaseType->getAs<ObjCObjectPointerType>()->quals()) |
| 4810 | AddObjCProperties(CCContext, I, true, /*AllowNullaryMethods=*/true, |
| 4811 | CurContext, AddedProperties, Results, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4812 | IsBaseExprStatement, /*IsClassProperty*/ false, |
| 4813 | /*InOriginalClass*/ false); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4814 | } else if ((IsArrow && BaseType->isObjCObjectPointerType()) || |
| 4815 | (!IsArrow && BaseType->isObjCObjectType())) { |
| 4816 | // Objective-C instance variable access. |
| 4817 | ObjCInterfaceDecl *Class = nullptr; |
| 4818 | if (const ObjCObjectPointerType *ObjCPtr = |
| 4819 | BaseType->getAs<ObjCObjectPointerType>()) |
| 4820 | Class = ObjCPtr->getInterfaceDecl(); |
| 4821 | else |
| 4822 | Class = BaseType->getAs<ObjCObjectType>()->getInterface(); |
| 4823 | |
| 4824 | // Add all ivars from this class and its superclasses. |
| 4825 | if (Class) { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4826 | CodeCompletionDeclConsumer Consumer(Results, Class, BaseType); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4827 | Results.setFilter(&ResultBuilder::IsObjCIvar); |
| 4828 | LookupVisibleDecls( |
| 4829 | Class, LookupMemberName, Consumer, CodeCompleter->includeGlobals(), |
| 4830 | /*IncludeDependentBases=*/false, CodeCompleter->loadExternal()); |
| 4831 | } |
| 4832 | } |
| 4833 | |
| 4834 | // FIXME: How do we cope with isa? |
| 4835 | return true; |
| 4836 | }; |
| 4837 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4838 | Results.EnterNewScope(); |
Alex Lorenz | 06cfa99 | 2016-10-12 11:40:15 +0000 | [diff] [blame] | 4839 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4840 | bool CompletionSucceded = DoCompletion(Base, IsArrow, None); |
| 4841 | if (CodeCompleter->includeFixIts()) { |
| 4842 | const CharSourceRange OpRange = |
| 4843 | CharSourceRange::getTokenRange(OpLoc, OpLoc); |
| 4844 | CompletionSucceded |= DoCompletion( |
| 4845 | OtherOpBase, !IsArrow, |
| 4846 | FixItHint::CreateReplacement(OpRange, IsArrow ? "." : "->")); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4847 | } |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4848 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4849 | Results.ExitScope(); |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 4850 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4851 | if (!CompletionSucceded) |
| 4852 | return; |
| 4853 | |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 4854 | // Hand off the results found for code completion. |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4855 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4856 | Results.data(), Results.size()); |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4857 | } |
| 4858 | |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4859 | void Sema::CodeCompleteObjCClassPropertyRefExpr(Scope *S, |
| 4860 | IdentifierInfo &ClassName, |
| 4861 | SourceLocation ClassNameLoc, |
| 4862 | bool IsBaseExprStatement) { |
| 4863 | IdentifierInfo *ClassNamePtr = &ClassName; |
| 4864 | ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(ClassNamePtr, ClassNameLoc); |
| 4865 | if (!IFace) |
| 4866 | return; |
| 4867 | CodeCompletionContext CCContext( |
| 4868 | CodeCompletionContext::CCC_ObjCPropertyAccess); |
| 4869 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4870 | CodeCompleter->getCodeCompletionTUInfo(), CCContext, |
| 4871 | &ResultBuilder::IsMember); |
| 4872 | Results.EnterNewScope(); |
| 4873 | AddedPropertiesSet AddedProperties; |
| 4874 | AddObjCProperties(CCContext, IFace, true, |
| 4875 | /*AllowNullaryMethods=*/true, CurContext, AddedProperties, |
| 4876 | Results, IsBaseExprStatement, |
| 4877 | /*IsClassProperty=*/true); |
| 4878 | Results.ExitScope(); |
| 4879 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4880 | Results.data(), Results.size()); |
| 4881 | } |
| 4882 | |
Faisal Vali | 090da2d | 2018-01-01 18:23:28 +0000 | [diff] [blame] | 4883 | void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) { |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4884 | if (!CodeCompleter) |
| 4885 | return; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4886 | |
| 4887 | ResultBuilder::LookupFilter Filter = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4888 | enum CodeCompletionContext::Kind ContextKind = |
| 4889 | CodeCompletionContext::CCC_Other; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4890 | switch ((DeclSpec::TST)TagSpec) { |
| 4891 | case DeclSpec::TST_enum: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4892 | Filter = &ResultBuilder::IsEnum; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4893 | ContextKind = CodeCompletionContext::CCC_EnumTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4894 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4895 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4896 | case DeclSpec::TST_union: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4897 | Filter = &ResultBuilder::IsUnion; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4898 | ContextKind = CodeCompletionContext::CCC_UnionTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4899 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4900 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4901 | case DeclSpec::TST_struct: |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4902 | case DeclSpec::TST_class: |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 4903 | case DeclSpec::TST_interface: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4904 | Filter = &ResultBuilder::IsClassOrStruct; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4905 | ContextKind = CodeCompletionContext::CCC_ClassOrStructTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4906 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4907 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4908 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4909 | llvm_unreachable("Unknown type specifier kind in CodeCompleteTag"); |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4910 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4911 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4912 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4913 | CodeCompleter->getCodeCompletionTUInfo(), ContextKind); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4914 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 4915 | |
| 4916 | // First pass: look for tags. |
| 4917 | Results.setFilter(Filter); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4918 | LookupVisibleDecls(S, LookupTagName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4919 | CodeCompleter->includeGlobals(), |
| 4920 | CodeCompleter->loadExternal()); |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 4921 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4922 | if (CodeCompleter->includeGlobals()) { |
| 4923 | // Second pass: look for nested name specifiers. |
| 4924 | Results.setFilter(&ResultBuilder::IsNestedNameSpecifier); |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4925 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer, |
| 4926 | CodeCompleter->includeGlobals(), |
| 4927 | CodeCompleter->loadExternal()); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4928 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4929 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4930 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4931 | Results.data(), Results.size()); |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4932 | } |
| 4933 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4934 | static void AddTypeQualifierResults(DeclSpec &DS, ResultBuilder &Results, |
| 4935 | const LangOptions &LangOpts) { |
| 4936 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const)) |
| 4937 | Results.AddResult("const"); |
| 4938 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile)) |
| 4939 | Results.AddResult("volatile"); |
| 4940 | if (LangOpts.C99 && !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict)) |
| 4941 | Results.AddResult("restrict"); |
| 4942 | if (LangOpts.C11 && !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic)) |
| 4943 | Results.AddResult("_Atomic"); |
| 4944 | if (LangOpts.MSVCCompat && !(DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)) |
| 4945 | Results.AddResult("__unaligned"); |
| 4946 | } |
| 4947 | |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4948 | void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4949 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4950 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4951 | CodeCompletionContext::CCC_TypeQualifiers); |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4952 | Results.EnterNewScope(); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4953 | AddTypeQualifierResults(DS, Results, LangOpts); |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4954 | Results.ExitScope(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4955 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4956 | Results.data(), Results.size()); |
| 4957 | } |
| 4958 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4959 | void Sema::CodeCompleteFunctionQualifiers(DeclSpec &DS, Declarator &D, |
| 4960 | const VirtSpecifiers *VS) { |
| 4961 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4962 | CodeCompleter->getCodeCompletionTUInfo(), |
| 4963 | CodeCompletionContext::CCC_TypeQualifiers); |
| 4964 | Results.EnterNewScope(); |
| 4965 | AddTypeQualifierResults(DS, Results, LangOpts); |
| 4966 | if (LangOpts.CPlusPlus11) { |
| 4967 | Results.AddResult("noexcept"); |
Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 4968 | if (D.getContext() == DeclaratorContext::MemberContext && |
| 4969 | !D.isCtorOrDtor() && !D.isStaticMember()) { |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4970 | if (!VS || !VS->isFinalSpecified()) |
| 4971 | Results.AddResult("final"); |
| 4972 | if (!VS || !VS->isOverrideSpecified()) |
| 4973 | Results.AddResult("override"); |
| 4974 | } |
| 4975 | } |
| 4976 | Results.ExitScope(); |
| 4977 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4978 | Results.data(), Results.size()); |
| 4979 | } |
| 4980 | |
Benjamin Kramer | 72dae62 | 2016-02-18 15:30:24 +0000 | [diff] [blame] | 4981 | void Sema::CodeCompleteBracketDeclarator(Scope *S) { |
| 4982 | CodeCompleteExpression(S, QualType(getASTContext().getSizeType())); |
| 4983 | } |
| 4984 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4985 | void Sema::CodeCompleteCase(Scope *S) { |
John McCall | aab3e41 | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 4986 | if (getCurFunction()->SwitchStack.empty() || !CodeCompleter) |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4987 | return; |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 4988 | |
Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 4989 | SwitchStmt *Switch = getCurFunction()->SwitchStack.back().getPointer(); |
Kadir Cetinkaya | 6d57266 | 2018-10-23 13:49:37 +0000 | [diff] [blame] | 4990 | // Condition expression might be invalid, do not continue in this case. |
| 4991 | if (!Switch->getCond()) |
| 4992 | return; |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 4993 | QualType type = Switch->getCond()->IgnoreImplicit()->getType(); |
| 4994 | if (!type->isEnumeralType()) { |
| 4995 | CodeCompleteExpressionData Data(type); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4996 | Data.IntegralConstantExpression = true; |
| 4997 | CodeCompleteExpression(S, Data); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4998 | return; |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 4999 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5000 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5001 | // Code-complete the cases of a switch statement over an enumeration type |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5002 | // by providing the list of |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 5003 | EnumDecl *Enum = type->castAs<EnumType>()->getDecl(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 5004 | if (EnumDecl *Def = Enum->getDefinition()) |
| 5005 | Enum = Def; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5006 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5007 | // Determine which enumerators we have already seen in the switch statement. |
| 5008 | // FIXME: Ideally, we would also be able to look *past* the code-completion |
| 5009 | // token, in case we are code-completing in the middle of the switch and not |
| 5010 | // at the end. However, we aren't able to do so at the moment. |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5011 | CoveredEnumerators Enumerators; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5012 | for (SwitchCase *SC = Switch->getSwitchCaseList(); SC; |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5013 | SC = SC->getNextSwitchCase()) { |
| 5014 | CaseStmt *Case = dyn_cast<CaseStmt>(SC); |
| 5015 | if (!Case) |
| 5016 | continue; |
| 5017 | |
| 5018 | Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5019 | if (auto *DRE = dyn_cast<DeclRefExpr>(CaseVal)) |
| 5020 | if (auto *Enumerator = |
| 5021 | dyn_cast<EnumConstantDecl>(DRE->getDecl())) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5022 | // We look into the AST of the case statement to determine which |
| 5023 | // enumerator was named. Alternatively, we could compute the value of |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5024 | // the integral constant expression, then compare it against the |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5025 | // values of each enumerator. However, value-based approach would not |
| 5026 | // work as well with C++ templates where enumerators declared within a |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5027 | // template are type- and value-dependent. |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5028 | Enumerators.Seen.insert(Enumerator); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5029 | |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 5030 | // If this is a qualified-id, keep track of the nested-name-specifier |
| 5031 | // so that we can reproduce it as part of code completion, e.g., |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5032 | // |
| 5033 | // switch (TagD.getKind()) { |
| 5034 | // case TagDecl::TK_enum: |
| 5035 | // break; |
| 5036 | // case XXX |
| 5037 | // |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 5038 | // At the XXX, our completions are TagDecl::TK_union, |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5039 | // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union, |
| 5040 | // TK_struct, and TK_class. |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5041 | Enumerators.SuggestedQualifier = DRE->getQualifier(); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5042 | } |
| 5043 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5044 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5045 | // Add any enumerators that have not yet been mentioned. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5046 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5047 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5048 | CodeCompletionContext::CCC_Expression); |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5049 | AddEnumerators(Results, Context, Enum, CurContext, Enumerators); |
Douglas Gregor | 28556092 | 2010-04-06 20:02:15 +0000 | [diff] [blame] | 5050 | |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5051 | if (CodeCompleter->includeMacros()) { |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 5052 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5053 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5054 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5055 | Results.data(), Results.size()); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5056 | } |
| 5057 | |
Robert Wilhelm | 16e94b9 | 2013-08-09 18:02:13 +0000 | [diff] [blame] | 5058 | static bool anyNullArguments(ArrayRef<Expr *> Args) { |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5059 | if (Args.size() && !Args.data()) |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5060 | return true; |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5061 | |
| 5062 | for (unsigned I = 0; I != Args.size(); ++I) |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5063 | if (!Args[I]) |
| 5064 | return true; |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5065 | |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5066 | return false; |
| 5067 | } |
| 5068 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5069 | typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate; |
| 5070 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5071 | static void mergeCandidatesWithResults( |
| 5072 | Sema &SemaRef, SmallVectorImpl<ResultCandidate> &Results, |
| 5073 | OverloadCandidateSet &CandidateSet, SourceLocation Loc) { |
Fangrui Song | 899d139 | 2019-04-24 14:43:05 +0000 | [diff] [blame] | 5074 | // Sort the overload candidate set by placing the best overloads first. |
| 5075 | llvm::stable_sort(CandidateSet, [&](const OverloadCandidate &X, |
| 5076 | const OverloadCandidate &Y) { |
| 5077 | return isBetterOverloadCandidate(SemaRef, X, Y, Loc, |
| 5078 | CandidateSet.getKind()); |
| 5079 | }); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5080 | |
Fangrui Song | 899d139 | 2019-04-24 14:43:05 +0000 | [diff] [blame] | 5081 | // Add the remaining viable overload candidates as code-completion results. |
| 5082 | for (OverloadCandidate &Candidate : CandidateSet) { |
| 5083 | if (Candidate.Function && Candidate.Function->isDeleted()) |
| 5084 | continue; |
| 5085 | if (Candidate.Viable) |
| 5086 | Results.push_back(ResultCandidate(Candidate.Function)); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5087 | } |
| 5088 | } |
| 5089 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5090 | /// Get the type of the Nth parameter from a given set of overload |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5091 | /// candidates. |
Francisco Lopes da Silva | 8cafefa | 2015-01-29 05:54:59 +0000 | [diff] [blame] | 5092 | static QualType getParamType(Sema &SemaRef, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5093 | ArrayRef<ResultCandidate> Candidates, unsigned N) { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5094 | |
| 5095 | // Given the overloads 'Candidates' for a function call matching all arguments |
| 5096 | // up to N, return the type of the Nth parameter if it is the same for all |
| 5097 | // overload candidates. |
| 5098 | QualType ParamType; |
| 5099 | for (auto &Candidate : Candidates) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5100 | if (const auto *FType = Candidate.getFunctionType()) |
| 5101 | if (const auto *Proto = dyn_cast<FunctionProtoType>(FType)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5102 | if (N < Proto->getNumParams()) { |
| 5103 | if (ParamType.isNull()) |
| 5104 | ParamType = Proto->getParamType(N); |
| 5105 | else if (!SemaRef.Context.hasSameUnqualifiedType( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5106 | ParamType.getNonReferenceType(), |
| 5107 | Proto->getParamType(N).getNonReferenceType())) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5108 | // Otherwise return a default-constructed QualType. |
| 5109 | return QualType(); |
| 5110 | } |
| 5111 | } |
| 5112 | |
| 5113 | return ParamType; |
| 5114 | } |
| 5115 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5116 | static QualType |
| 5117 | ProduceSignatureHelp(Sema &SemaRef, Scope *S, |
| 5118 | MutableArrayRef<ResultCandidate> Candidates, |
| 5119 | unsigned CurrentArg, SourceLocation OpenParLoc) { |
| 5120 | if (Candidates.empty()) |
| 5121 | return QualType(); |
| 5122 | SemaRef.CodeCompleter->ProcessOverloadCandidates( |
| 5123 | SemaRef, CurrentArg, Candidates.data(), Candidates.size(), OpenParLoc); |
| 5124 | return getParamType(SemaRef, Candidates, CurrentArg); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5125 | } |
| 5126 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5127 | QualType Sema::ProduceCallSignatureHelp(Scope *S, Expr *Fn, |
| 5128 | ArrayRef<Expr *> Args, |
| 5129 | SourceLocation OpenParLoc) { |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5130 | if (!CodeCompleter) |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5131 | return QualType(); |
Douglas Gregor | 3ef5952 | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 5132 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5133 | // FIXME: Provide support for variadic template functions. |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5134 | // Ignore type-dependent call expressions entirely. |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5135 | if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) || |
| 5136 | Expr::hasAnyTypeDependentArguments(Args)) { |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5137 | return QualType(); |
Douglas Gregor | 3ef5952 | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 5138 | } |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5139 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5140 | // Build an overload candidate set based on the functions we find. |
John McCall | bc077cf | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 5141 | SourceLocation Loc = Fn->getExprLoc(); |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 5142 | OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal); |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5143 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5144 | SmallVector<ResultCandidate, 8> Results; |
Douglas Gregor | ff59f67 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 5145 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5146 | Expr *NakedFn = Fn->IgnoreParenCasts(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5147 | if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5148 | AddOverloadedCallCandidates(ULE, Args, CandidateSet, |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5149 | /*PartialOverloading=*/true); |
| 5150 | else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { |
| 5151 | TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = nullptr; |
| 5152 | if (UME->hasExplicitTemplateArgs()) { |
| 5153 | UME->copyTemplateArgumentsInto(TemplateArgsBuffer); |
| 5154 | TemplateArgs = &TemplateArgsBuffer; |
Douglas Gregor | ff59f67 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 5155 | } |
Erik Verbruggen | f1898cf | 2017-03-28 07:22:21 +0000 | [diff] [blame] | 5156 | |
| 5157 | // Add the base as first argument (use a nullptr if the base is implicit). |
| 5158 | SmallVector<Expr *, 12> ArgExprs( |
| 5159 | 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5160 | ArgExprs.append(Args.begin(), Args.end()); |
| 5161 | UnresolvedSet<8> Decls; |
| 5162 | Decls.append(UME->decls_begin(), UME->decls_end()); |
Benjamin Kramer | e3962ae | 2017-10-26 08:41:28 +0000 | [diff] [blame] | 5163 | const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5164 | AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5165 | /*SuppressUserConversions=*/false, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5166 | /*PartialOverloading=*/true, FirstArgumentIsBase); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5167 | } else { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5168 | FunctionDecl *FD = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5169 | if (auto *MCE = dyn_cast<MemberExpr>(NakedFn)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5170 | FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5171 | else if (auto *DRE = dyn_cast<DeclRefExpr>(NakedFn)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5172 | FD = dyn_cast<FunctionDecl>(DRE->getDecl()); |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5173 | if (FD) { // We check whether it's a resolved function declaration. |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 5174 | if (!getLangOpts().CPlusPlus || |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5175 | !FD->getType()->getAs<FunctionProtoType>()) |
| 5176 | Results.push_back(ResultCandidate(FD)); |
| 5177 | else |
| 5178 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()), |
| 5179 | Args, CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5180 | /*SuppressUserConversions=*/false, |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5181 | /*PartialOverloading=*/true); |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5182 | |
| 5183 | } else if (auto DC = NakedFn->getType()->getAsCXXRecordDecl()) { |
| 5184 | // If expression's type is CXXRecordDecl, it may overload the function |
| 5185 | // call operator, so we check if it does and add them as candidates. |
Francisco Lopes da Silva | a349a8a | 2015-01-25 08:47:59 +0000 | [diff] [blame] | 5186 | // A complete type is needed to lookup for member function call operators. |
Richard Smith | db0ac55 | 2015-12-18 22:40:25 +0000 | [diff] [blame] | 5187 | if (isCompleteType(Loc, NakedFn->getType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5188 | DeclarationName OpName = |
| 5189 | Context.DeclarationNames.getCXXOperatorName(OO_Call); |
Francisco Lopes da Silva | a349a8a | 2015-01-25 08:47:59 +0000 | [diff] [blame] | 5190 | LookupResult R(*this, OpName, Loc, LookupOrdinaryName); |
| 5191 | LookupQualifiedName(R, DC); |
| 5192 | R.suppressDiagnostics(); |
| 5193 | SmallVector<Expr *, 12> ArgExprs(1, NakedFn); |
| 5194 | ArgExprs.append(Args.begin(), Args.end()); |
| 5195 | AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet, |
| 5196 | /*ExplicitArgs=*/nullptr, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5197 | /*SuppressUserConversions=*/false, |
Francisco Lopes da Silva | a349a8a | 2015-01-25 08:47:59 +0000 | [diff] [blame] | 5198 | /*PartialOverloading=*/true); |
| 5199 | } |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5200 | } else { |
| 5201 | // Lastly we check whether expression's type is function pointer or |
| 5202 | // function. |
| 5203 | QualType T = NakedFn->getType(); |
| 5204 | if (!T->getPointeeType().isNull()) |
| 5205 | T = T->getPointeeType(); |
| 5206 | |
| 5207 | if (auto FP = T->getAs<FunctionProtoType>()) { |
| 5208 | if (!TooManyArguments(FP->getNumParams(), Args.size(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5209 | /*PartialOverloading=*/true) || |
Francisco Lopes da Silva | 62a9a4f | 2015-01-23 13:17:51 +0000 | [diff] [blame] | 5210 | FP->isVariadic()) |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5211 | Results.push_back(ResultCandidate(FP)); |
| 5212 | } else if (auto FT = T->getAs<FunctionType>()) |
Francisco Lopes da Silva | 62a9a4f | 2015-01-23 13:17:51 +0000 | [diff] [blame] | 5213 | // No prototype and declaration, it may be a K & R style function. |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5214 | Results.push_back(ResultCandidate(FT)); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5215 | } |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5216 | } |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5217 | mergeCandidatesWithResults(*this, Results, CandidateSet, Loc); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5218 | QualType ParamType = |
| 5219 | ProduceSignatureHelp(*this, S, Results, Args.size(), OpenParLoc); |
| 5220 | return !CandidateSet.empty() ? ParamType : QualType(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5221 | } |
| 5222 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5223 | QualType Sema::ProduceConstructorSignatureHelp(Scope *S, QualType Type, |
| 5224 | SourceLocation Loc, |
| 5225 | ArrayRef<Expr *> Args, |
| 5226 | SourceLocation OpenParLoc) { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5227 | if (!CodeCompleter) |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5228 | return QualType(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5229 | |
| 5230 | // A complete type is needed to lookup for constructors. |
Ilya Biryukov | fb9dde7 | 2018-05-14 13:50:36 +0000 | [diff] [blame] | 5231 | CXXRecordDecl *RD = |
| 5232 | isCompleteType(Loc, Type) ? Type->getAsCXXRecordDecl() : nullptr; |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5233 | if (!RD) |
| 5234 | return Type; |
Argyrios Kyrtzidis | ee1d76f | 2015-03-13 07:39:30 +0000 | [diff] [blame] | 5235 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5236 | // FIXME: Provide support for member initializers. |
| 5237 | // FIXME: Provide support for variadic template constructors. |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5238 | |
| 5239 | OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal); |
| 5240 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5241 | for (NamedDecl *C : LookupConstructors(RD)) { |
| 5242 | if (auto *FD = dyn_cast<FunctionDecl>(C)) { |
| 5243 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, C->getAccess()), Args, |
| 5244 | CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5245 | /*SuppressUserConversions=*/false, |
Richard Smith | 76b9027 | 2019-05-09 03:59:21 +0000 | [diff] [blame] | 5246 | /*PartialOverloading=*/true, |
| 5247 | /*AllowExplicit*/ true); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5248 | } else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(C)) { |
| 5249 | AddTemplateOverloadCandidate( |
| 5250 | FTD, DeclAccessPair::make(FTD, C->getAccess()), |
| 5251 | /*ExplicitTemplateArgs=*/nullptr, Args, CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5252 | /*SuppressUserConversions=*/false, |
Hans Wennborg | d2b9fc8 | 2019-05-06 09:51:10 +0000 | [diff] [blame] | 5253 | /*PartialOverloading=*/true); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5254 | } |
| 5255 | } |
| 5256 | |
| 5257 | SmallVector<ResultCandidate, 8> Results; |
| 5258 | mergeCandidatesWithResults(*this, Results, CandidateSet, Loc); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5259 | return ProduceSignatureHelp(*this, S, Results, Args.size(), OpenParLoc); |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5260 | } |
| 5261 | |
Kadir Cetinkaya | 84774c3 | 2018-09-11 15:02:18 +0000 | [diff] [blame] | 5262 | QualType Sema::ProduceCtorInitMemberSignatureHelp( |
| 5263 | Scope *S, Decl *ConstructorDecl, CXXScopeSpec SS, ParsedType TemplateTypeTy, |
| 5264 | ArrayRef<Expr *> ArgExprs, IdentifierInfo *II, SourceLocation OpenParLoc) { |
| 5265 | if (!CodeCompleter) |
| 5266 | return QualType(); |
| 5267 | |
| 5268 | CXXConstructorDecl *Constructor = |
| 5269 | dyn_cast<CXXConstructorDecl>(ConstructorDecl); |
| 5270 | if (!Constructor) |
| 5271 | return QualType(); |
| 5272 | // FIXME: Add support for Base class constructors as well. |
| 5273 | if (ValueDecl *MemberDecl = tryLookupCtorInitMemberDecl( |
| 5274 | Constructor->getParent(), SS, TemplateTypeTy, II)) |
| 5275 | return ProduceConstructorSignatureHelp(getCurScope(), MemberDecl->getType(), |
| 5276 | MemberDecl->getLocation(), ArgExprs, |
| 5277 | OpenParLoc); |
| 5278 | return QualType(); |
| 5279 | } |
| 5280 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 5281 | void Sema::CodeCompleteInitializer(Scope *S, Decl *D) { |
| 5282 | ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5283 | if (!VD) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5284 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5285 | return; |
| 5286 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5287 | |
Ilya Biryukov | ebf0a6d | 2018-11-07 10:02:31 +0000 | [diff] [blame] | 5288 | CodeCompleteExpressionData Data; |
| 5289 | Data.PreferredType = VD->getType(); |
| 5290 | // Ignore VD to avoid completing the variable itself, e.g. in 'int foo = ^'. |
| 5291 | Data.IgnoreDecls.push_back(VD); |
| 5292 | |
| 5293 | CodeCompleteExpression(S, Data); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5294 | } |
| 5295 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5296 | void Sema::CodeCompleteAfterIf(Scope *S) { |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5297 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5298 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5299 | mapCodeCompletionContext(*this, PCC_Statement)); |
| 5300 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 5301 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5302 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5303 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 5304 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5305 | CodeCompleter->includeGlobals(), |
| 5306 | CodeCompleter->loadExternal()); |
| 5307 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5308 | AddOrdinaryNameResults(PCC_Statement, S, *this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5309 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5310 | // "else" block |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5311 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5312 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5313 | Builder.AddTypedTextChunk("else"); |
Douglas Gregor | 3a5d6c2 | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 5314 | if (Results.includeCodePatterns()) { |
| 5315 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5316 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5317 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5318 | Builder.AddPlaceholderChunk("statements"); |
| 5319 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5320 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5321 | } |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5322 | Results.AddResult(Builder.TakeString()); |
| 5323 | |
| 5324 | // "else if" block |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 5325 | Builder.AddTypedTextChunk("else if"); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5326 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5327 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5328 | if (getLangOpts().CPlusPlus) |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5329 | Builder.AddPlaceholderChunk("condition"); |
| 5330 | else |
| 5331 | Builder.AddPlaceholderChunk("expression"); |
| 5332 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 3a5d6c2 | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 5333 | if (Results.includeCodePatterns()) { |
| 5334 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5335 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5336 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5337 | Builder.AddPlaceholderChunk("statements"); |
| 5338 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5339 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5340 | } |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5341 | Results.AddResult(Builder.TakeString()); |
| 5342 | |
| 5343 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5344 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5345 | if (S->getFnParent()) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 5346 | AddPrettyFunctionResults(getLangOpts(), Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5347 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5348 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 5349 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5350 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5351 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5352 | Results.data(), Results.size()); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5353 | } |
| 5354 | |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 5355 | void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS, |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5356 | bool EnteringContext, |
| 5357 | bool IsUsingDeclaration, QualType BaseType, |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5358 | QualType PreferredType) { |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5359 | if (SS.isEmpty() || !CodeCompleter) |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 5360 | return; |
Alex Lorenz | 8a7a4cf | 2017-06-15 21:40:54 +0000 | [diff] [blame] | 5361 | |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5362 | CodeCompletionContext CC(CodeCompletionContext::CCC_Symbol, PreferredType); |
| 5363 | CC.setIsUsingDeclaration(IsUsingDeclaration); |
| 5364 | CC.setCXXScopeSpecifier(SS); |
| 5365 | |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5366 | // We want to keep the scope specifier even if it's invalid (e.g. the scope |
| 5367 | // "a::b::" is not corresponding to any context/namespace in the AST), since |
| 5368 | // it can be useful for global code completion which have information about |
| 5369 | // contexts/symbols that are not in the AST. |
| 5370 | if (SS.isInvalid()) { |
Eric Liu | 206740e | 2019-02-21 11:22:58 +0000 | [diff] [blame] | 5371 | // As SS is invalid, we try to collect accessible contexts from the current |
| 5372 | // scope with a dummy lookup so that the completion consumer can try to |
| 5373 | // guess what the specified scope is. |
| 5374 | ResultBuilder DummyResults(*this, CodeCompleter->getAllocator(), |
| 5375 | CodeCompleter->getCodeCompletionTUInfo(), CC); |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5376 | if (!PreferredType.isNull()) |
| 5377 | DummyResults.setPreferredType(PreferredType); |
Eric Liu | 206740e | 2019-02-21 11:22:58 +0000 | [diff] [blame] | 5378 | if (S->getEntity()) { |
| 5379 | CodeCompletionDeclConsumer Consumer(DummyResults, S->getEntity(), |
| 5380 | BaseType); |
| 5381 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 5382 | /*IncludeGlobalScope=*/false, |
| 5383 | /*LoadExternal=*/false); |
| 5384 | } |
| 5385 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5386 | DummyResults.getCompletionContext(), nullptr, 0); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5387 | return; |
| 5388 | } |
Alex Lorenz | 8a7a4cf | 2017-06-15 21:40:54 +0000 | [diff] [blame] | 5389 | // Always pretend to enter a context to ensure that a dependent type |
| 5390 | // resolves to a dependent record. |
| 5391 | DeclContext *Ctx = computeDeclContext(SS, /*EnteringContext=*/true); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5392 | if (!Ctx) |
| 5393 | return; |
Douglas Gregor | 800f2f0 | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 5394 | |
| 5395 | // Try to instantiate any non-dependent declaration contexts before |
| 5396 | // we look in them. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 5397 | if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx)) |
Douglas Gregor | 800f2f0 | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 5398 | return; |
| 5399 | |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5400 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 5401 | CodeCompleter->getCodeCompletionTUInfo(), CC); |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5402 | if (!PreferredType.isNull()) |
| 5403 | Results.setPreferredType(PreferredType); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5404 | Results.EnterNewScope(); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5405 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5406 | // The "template" keyword can follow "::" in the grammar, but only |
| 5407 | // put it into the grammar if the nested-name-specifier is dependent. |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 5408 | NestedNameSpecifier *NNS = SS.getScopeRep(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5409 | if (!Results.empty() && NNS->isDependent()) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 5410 | Results.AddResult("template"); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5411 | |
| 5412 | // Add calls to overridden virtual functions, if there are any. |
| 5413 | // |
| 5414 | // FIXME: This isn't wonderful, because we don't know whether we're actually |
| 5415 | // in a context that permits expressions. This is a general issue with |
| 5416 | // qualified-id completions. |
| 5417 | if (!EnteringContext) |
| 5418 | MaybeAddOverrideCalls(*this, Ctx, Results); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5419 | Results.ExitScope(); |
| 5420 | |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5421 | if (CodeCompleter->includeNamespaceLevelDecls() || |
| 5422 | (!Ctx->isNamespace() && !Ctx->isTranslationUnit())) { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 5423 | CodeCompletionDeclConsumer Consumer(Results, Ctx, BaseType); |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5424 | LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer, |
| 5425 | /*IncludeGlobalScope=*/true, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5426 | /*IncludeDependentBases=*/true, |
| 5427 | CodeCompleter->loadExternal()); |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5428 | } |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5429 | |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5430 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5431 | Results.data(), Results.size()); |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 5432 | } |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5433 | |
| 5434 | void Sema::CodeCompleteUsing(Scope *S) { |
| 5435 | if (!CodeCompleter) |
| 5436 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5437 | |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5438 | // This can be both a using alias or using declaration, in the former we |
| 5439 | // expect a new name and a symbol in the latter case. |
| 5440 | CodeCompletionContext Context(CodeCompletionContext::CCC_SymbolOrNewName); |
| 5441 | Context.setIsUsingDeclaration(true); |
| 5442 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5443 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Ilya Biryukov | d9971d0 | 2019-10-28 09:34:21 +0100 | [diff] [blame] | 5444 | CodeCompleter->getCodeCompletionTUInfo(), Context, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5445 | &ResultBuilder::IsNestedNameSpecifier); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5446 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5447 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5448 | // If we aren't in class scope, we could see the "namespace" keyword. |
| 5449 | if (!S->isClassScope()) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5450 | Results.AddResult(CodeCompletionResult("namespace")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5451 | |
| 5452 | // After "using", we can see anything that would start a |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5453 | // nested-name-specifier. |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5454 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5455 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5456 | CodeCompleter->includeGlobals(), |
| 5457 | CodeCompleter->loadExternal()); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5458 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5459 | |
| 5460 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5461 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5462 | } |
| 5463 | |
| 5464 | void Sema::CodeCompleteUsingDirective(Scope *S) { |
| 5465 | if (!CodeCompleter) |
| 5466 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5467 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5468 | // After "using namespace", we expect to see a namespace name or namespace |
| 5469 | // alias. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5470 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5471 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5472 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5473 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5474 | Results.EnterNewScope(); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5475 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5476 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5477 | CodeCompleter->includeGlobals(), |
| 5478 | CodeCompleter->loadExternal()); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5479 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5480 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5481 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5482 | } |
| 5483 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5484 | void Sema::CodeCompleteNamespaceDecl(Scope *S) { |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5485 | if (!CodeCompleter) |
| 5486 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5487 | |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 5488 | DeclContext *Ctx = S->getEntity(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5489 | if (!S->getParent()) |
| 5490 | Ctx = Context.getTranslationUnitDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5491 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5492 | bool SuppressedGlobalResults = |
| 5493 | Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5494 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5495 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5496 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5497 | SuppressedGlobalResults |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5498 | ? CodeCompletionContext::CCC_Namespace |
| 5499 | : CodeCompletionContext::CCC_Other, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5500 | &ResultBuilder::IsNamespace); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5501 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5502 | if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5503 | // We only want to see those namespaces that have already been defined |
| 5504 | // within this scope, because its likely that the user is creating an |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5505 | // extended namespace declaration. Keep track of the most recent |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5506 | // definition of each namespace. |
| 5507 | std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5508 | for (DeclContext::specific_decl_iterator<NamespaceDecl> |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5509 | NS(Ctx->decls_begin()), |
| 5510 | NSEnd(Ctx->decls_end()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5511 | NS != NSEnd; ++NS) |
David Blaikie | 40ed297 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 5512 | OrigToLatest[NS->getOriginalNamespace()] = *NS; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5513 | |
| 5514 | // Add the most recent definition (or extended definition) of each |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5515 | // namespace to the list of results. |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5516 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5517 | for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5518 | NS = OrigToLatest.begin(), |
| 5519 | NSEnd = OrigToLatest.end(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5520 | NS != NSEnd; ++NS) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5521 | Results.AddResult( |
| 5522 | CodeCompletionResult(NS->second, Results.getBasePriority(NS->second), |
| 5523 | nullptr), |
| 5524 | CurContext, nullptr, false); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5525 | Results.ExitScope(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5526 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5527 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5528 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5529 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5530 | } |
| 5531 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5532 | void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) { |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5533 | if (!CodeCompleter) |
| 5534 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5535 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5536 | // After "namespace", we expect to see a namespace or alias. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5537 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5538 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5539 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5540 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5541 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5542 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5543 | CodeCompleter->includeGlobals(), |
| 5544 | CodeCompleter->loadExternal()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5545 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5546 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5547 | } |
| 5548 | |
Douglas Gregor | c811ede | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 5549 | void Sema::CodeCompleteOperatorName(Scope *S) { |
| 5550 | if (!CodeCompleter) |
| 5551 | return; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5552 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5553 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5554 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5555 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5556 | CodeCompletionContext::CCC_Type, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5557 | &ResultBuilder::IsType); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5558 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5559 | |
Richard Smith | 7fa2b74 | 2019-06-14 20:01:51 +0000 | [diff] [blame] | 5560 | // Add the names of overloadable operators. Note that OO_Conditional is not |
| 5561 | // actually overloadable. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5562 | #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ |
Richard Smith | 7fa2b74 | 2019-06-14 20:01:51 +0000 | [diff] [blame] | 5563 | if (OO_##Name != OO_Conditional) \ |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 5564 | Results.AddResult(Result(Spelling)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5565 | #include "clang/Basic/OperatorKinds.def" |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5566 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5567 | // Add any type names visible from the current scope |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 5568 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5569 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5570 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5571 | CodeCompleter->includeGlobals(), |
| 5572 | CodeCompleter->loadExternal()); |
| 5573 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5574 | // Add any type specifiers |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5575 | AddTypeSpecifierResults(getLangOpts(), Results); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5576 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5577 | |
| 5578 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5579 | Results.data(), Results.size()); |
Douglas Gregor | c811ede | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 5580 | } |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5581 | |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5582 | void Sema::CodeCompleteConstructorInitializer( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5583 | Decl *ConstructorD, ArrayRef<CXXCtorInitializer *> Initializers) { |
Benjamin Kramer | a4f8df0 | 2015-07-09 15:31:10 +0000 | [diff] [blame] | 5584 | if (!ConstructorD) |
| 5585 | return; |
| 5586 | |
| 5587 | AdjustDeclIfTemplate(ConstructorD); |
| 5588 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5589 | auto *Constructor = dyn_cast<CXXConstructorDecl>(ConstructorD); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5590 | if (!Constructor) |
| 5591 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5592 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5593 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5594 | CodeCompleter->getCodeCompletionTUInfo(), |
Kadir Cetinkaya | b006e09 | 2018-10-24 15:23:49 +0000 | [diff] [blame] | 5595 | CodeCompletionContext::CCC_Symbol); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5596 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5597 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5598 | // Fill in any already-initialized fields or base classes. |
| 5599 | llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields; |
| 5600 | llvm::SmallPtrSet<CanQualType, 4> InitializedBases; |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5601 | for (unsigned I = 0, E = Initializers.size(); I != E; ++I) { |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5602 | if (Initializers[I]->isBaseInitializer()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5603 | InitializedBases.insert(Context.getCanonicalType( |
| 5604 | QualType(Initializers[I]->getBaseClass(), 0))); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5605 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5606 | InitializedFields.insert( |
| 5607 | cast<FieldDecl>(Initializers[I]->getAnyMember())); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5608 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5609 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5610 | // Add completions for base classes. |
Benjamin Kramer | a4f8df0 | 2015-07-09 15:31:10 +0000 | [diff] [blame] | 5611 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5612 | bool SawLastInitializer = Initializers.empty(); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5613 | CXXRecordDecl *ClassDecl = Constructor->getParent(); |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5614 | |
| 5615 | auto GenerateCCS = [&](const NamedDecl *ND, const char *Name) { |
| 5616 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5617 | Results.getCodeCompletionTUInfo()); |
| 5618 | Builder.AddTypedTextChunk(Name); |
| 5619 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5620 | if (const auto *Function = dyn_cast<FunctionDecl>(ND)) |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5621 | AddFunctionParameterChunks(PP, Policy, Function, Builder); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5622 | else if (const auto *FunTemplDecl = dyn_cast<FunctionTemplateDecl>(ND)) |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5623 | AddFunctionParameterChunks(PP, Policy, FunTemplDecl->getTemplatedDecl(), |
| 5624 | Builder); |
| 5625 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5626 | return Builder.TakeString(); |
| 5627 | }; |
| 5628 | auto AddDefaultCtorInit = [&](const char *Name, const char *Type, |
| 5629 | const NamedDecl *ND) { |
| 5630 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5631 | Results.getCodeCompletionTUInfo()); |
| 5632 | Builder.AddTypedTextChunk(Name); |
| 5633 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5634 | Builder.AddPlaceholderChunk(Type); |
| 5635 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5636 | if (ND) { |
| 5637 | auto CCR = CodeCompletionResult( |
| 5638 | Builder.TakeString(), ND, |
| 5639 | SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration); |
| 5640 | if (isa<FieldDecl>(ND)) |
| 5641 | CCR.CursorKind = CXCursor_MemberRef; |
| 5642 | return Results.AddResult(CCR); |
| 5643 | } |
| 5644 | return Results.AddResult(CodeCompletionResult( |
| 5645 | Builder.TakeString(), |
| 5646 | SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration)); |
| 5647 | }; |
| 5648 | auto AddCtorsWithName = [&](const CXXRecordDecl *RD, unsigned int Priority, |
| 5649 | const char *Name, const FieldDecl *FD) { |
| 5650 | if (!RD) |
| 5651 | return AddDefaultCtorInit(Name, |
| 5652 | FD ? Results.getAllocator().CopyString( |
| 5653 | FD->getType().getAsString(Policy)) |
| 5654 | : Name, |
| 5655 | FD); |
| 5656 | auto Ctors = getConstructors(Context, RD); |
| 5657 | if (Ctors.begin() == Ctors.end()) |
| 5658 | return AddDefaultCtorInit(Name, Name, RD); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5659 | for (const NamedDecl *Ctor : Ctors) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5660 | auto CCR = CodeCompletionResult(GenerateCCS(Ctor, Name), RD, Priority); |
| 5661 | CCR.CursorKind = getCursorKindForDecl(Ctor); |
| 5662 | Results.AddResult(CCR); |
| 5663 | } |
| 5664 | }; |
| 5665 | auto AddBase = [&](const CXXBaseSpecifier &Base) { |
| 5666 | const char *BaseName = |
| 5667 | Results.getAllocator().CopyString(Base.getType().getAsString(Policy)); |
| 5668 | const auto *RD = Base.getType()->getAsCXXRecordDecl(); |
| 5669 | AddCtorsWithName( |
| 5670 | RD, SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration, |
| 5671 | BaseName, nullptr); |
| 5672 | }; |
| 5673 | auto AddField = [&](const FieldDecl *FD) { |
| 5674 | const char *FieldName = |
| 5675 | Results.getAllocator().CopyString(FD->getIdentifier()->getName()); |
| 5676 | const CXXRecordDecl *RD = FD->getType()->getAsCXXRecordDecl(); |
| 5677 | AddCtorsWithName( |
| 5678 | RD, SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration, |
| 5679 | FieldName, FD); |
| 5680 | }; |
| 5681 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 5682 | for (const auto &Base : ClassDecl->bases()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5683 | if (!InitializedBases.insert(Context.getCanonicalType(Base.getType())) |
| 5684 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5685 | SawLastInitializer = |
| 5686 | !Initializers.empty() && Initializers.back()->isBaseInitializer() && |
| 5687 | Context.hasSameUnqualifiedType( |
| 5688 | Base.getType(), QualType(Initializers.back()->getBaseClass(), 0)); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5689 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5690 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5691 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5692 | AddBase(Base); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5693 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5694 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5695 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5696 | // Add completions for virtual base classes. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 5697 | for (const auto &Base : ClassDecl->vbases()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5698 | if (!InitializedBases.insert(Context.getCanonicalType(Base.getType())) |
| 5699 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5700 | SawLastInitializer = |
| 5701 | !Initializers.empty() && Initializers.back()->isBaseInitializer() && |
| 5702 | Context.hasSameUnqualifiedType( |
| 5703 | Base.getType(), QualType(Initializers.back()->getBaseClass(), 0)); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5704 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5705 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5706 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5707 | AddBase(Base); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5708 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5709 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5710 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5711 | // Add completions for members. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 5712 | for (auto *Field : ClassDecl->fields()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5713 | if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl())) |
| 5714 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5715 | SawLastInitializer = !Initializers.empty() && |
| 5716 | Initializers.back()->isAnyMemberInitializer() && |
| 5717 | Initializers.back()->getAnyMember() == Field; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5718 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5719 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5720 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5721 | if (!Field->getDeclName()) |
| 5722 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5723 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5724 | AddField(Field); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5725 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5726 | } |
| 5727 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5728 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5729 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5730 | Results.data(), Results.size()); |
| 5731 | } |
| 5732 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5733 | /// Determine whether this scope denotes a namespace. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5734 | static bool isNamespaceScope(Scope *S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 5735 | DeclContext *DC = S->getEntity(); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5736 | if (!DC) |
| 5737 | return false; |
| 5738 | |
| 5739 | return DC->isFileContext(); |
| 5740 | } |
| 5741 | |
| 5742 | void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, |
| 5743 | bool AfterAmpersand) { |
| 5744 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5745 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5746 | CodeCompletionContext::CCC_Other); |
| 5747 | Results.EnterNewScope(); |
| 5748 | |
| 5749 | // Note what has already been captured. |
| 5750 | llvm::SmallPtrSet<IdentifierInfo *, 4> Known; |
| 5751 | bool IncludedThis = false; |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 5752 | for (const auto &C : Intro.Captures) { |
| 5753 | if (C.Kind == LCK_This) { |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5754 | IncludedThis = true; |
| 5755 | continue; |
| 5756 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5757 | |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 5758 | Known.insert(C.Id); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5759 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5760 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5761 | // Look for other capturable variables. |
| 5762 | for (; S && !isNamespaceScope(S); S = S->getParent()) { |
Aaron Ballman | 35c5495 | 2014-03-17 16:55:25 +0000 | [diff] [blame] | 5763 | for (const auto *D : S->decls()) { |
| 5764 | const auto *Var = dyn_cast<VarDecl>(D); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5765 | if (!Var || !Var->hasLocalStorage() || Var->hasAttr<BlocksAttr>()) |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5766 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5767 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5768 | if (Known.insert(Var->getIdentifier()).second) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5769 | Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 5770 | CurContext, nullptr, false); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5771 | } |
| 5772 | } |
| 5773 | |
| 5774 | // Add 'this', if it would be valid. |
| 5775 | if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy) |
| 5776 | addThisCompletion(*this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5777 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5778 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5779 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5780 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5781 | Results.data(), Results.size()); |
| 5782 | } |
| 5783 | |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 5784 | /// Macro that optionally prepends an "@" to the string literal passed in via |
| 5785 | /// Keyword, depending on whether NeedAt is true or false. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5786 | #define OBJC_AT_KEYWORD_NAME(NeedAt, Keyword) ((NeedAt) ? "@" Keyword : Keyword) |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 5787 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5788 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5789 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5790 | typedef CodeCompletionResult Result; |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5791 | // Since we have an implementation, we can end it. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5792 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "end"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5793 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5794 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5795 | Results.getCodeCompletionTUInfo()); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 5796 | if (LangOpts.ObjC) { |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5797 | // @dynamic |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5798 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "dynamic")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5799 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5800 | Builder.AddPlaceholderChunk("property"); |
| 5801 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5802 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5803 | // @synthesize |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5804 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "synthesize")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5805 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5806 | Builder.AddPlaceholderChunk("property"); |
| 5807 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5808 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5809 | } |
| 5810 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5811 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5812 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5813 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5814 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5815 | // Since we have an interface or protocol, we can end it. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5816 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "end"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5817 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 5818 | if (LangOpts.ObjC) { |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5819 | // @property |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5820 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "property"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5821 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5822 | // @required |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5823 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "required"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5824 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5825 | // @optional |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5826 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "optional"))); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5827 | } |
| 5828 | } |
| 5829 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5830 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5831 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5832 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5833 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5834 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5835 | // @class name ; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5836 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "class")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5837 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5838 | Builder.AddPlaceholderChunk("name"); |
| 5839 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5840 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5841 | if (Results.includeCodePatterns()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5842 | // @interface name |
| 5843 | // FIXME: Could introduce the whole pattern, including superclasses and |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5844 | // such. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5845 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "interface")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5846 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5847 | Builder.AddPlaceholderChunk("class"); |
| 5848 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5849 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5850 | // @protocol name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5851 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "protocol")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5852 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5853 | Builder.AddPlaceholderChunk("protocol"); |
| 5854 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5855 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5856 | // @implementation name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5857 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "implementation")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5858 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5859 | Builder.AddPlaceholderChunk("class"); |
| 5860 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5861 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5862 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5863 | // @compatibility_alias name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5864 | Builder.AddTypedTextChunk( |
| 5865 | OBJC_AT_KEYWORD_NAME(NeedAt, "compatibility_alias")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5866 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5867 | Builder.AddPlaceholderChunk("alias"); |
| 5868 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5869 | Builder.AddPlaceholderChunk("class"); |
| 5870 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 61e3681 | 2013-03-07 23:26:24 +0000 | [diff] [blame] | 5871 | |
| 5872 | if (Results.getSema().getLangOpts().Modules) { |
| 5873 | // @import name |
| 5874 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import")); |
| 5875 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5876 | Builder.AddPlaceholderChunk("module"); |
| 5877 | Results.AddResult(Result(Builder.TakeString())); |
| 5878 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5879 | } |
| 5880 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5881 | void Sema::CodeCompleteObjCAtDirective(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5882 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5883 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5884 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5885 | Results.EnterNewScope(); |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5886 | if (isa<ObjCImplDecl>(CurContext)) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5887 | AddObjCImplementationResults(getLangOpts(), Results, false); |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5888 | else if (CurContext->isObjCContainer()) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5889 | AddObjCInterfaceResults(getLangOpts(), Results, false); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5890 | else |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5891 | AddObjCTopLevelResults(Results, false); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5892 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5893 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5894 | Results.data(), Results.size()); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5895 | } |
| 5896 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5897 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5898 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5899 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5900 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5901 | |
| 5902 | // @encode ( type-name ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5903 | const char *EncodeType = "char[]"; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5904 | if (Results.getSema().getLangOpts().CPlusPlus || |
| 5905 | Results.getSema().getLangOpts().ConstStrings) |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5906 | EncodeType = "const char[]"; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5907 | Builder.AddResultTypeChunk(EncodeType); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5908 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "encode")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5909 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5910 | Builder.AddPlaceholderChunk("type-name"); |
| 5911 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5912 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5913 | |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5914 | // @protocol ( protocol-name ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5915 | Builder.AddResultTypeChunk("Protocol *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5916 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "protocol")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5917 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5918 | Builder.AddPlaceholderChunk("protocol-name"); |
| 5919 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5920 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5921 | |
| 5922 | // @selector ( selector ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5923 | Builder.AddResultTypeChunk("SEL"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5924 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "selector")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5925 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5926 | Builder.AddPlaceholderChunk("selector"); |
| 5927 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5928 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5929 | |
| 5930 | // @"string" |
| 5931 | Builder.AddResultTypeChunk("NSString *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5932 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "\"")); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5933 | Builder.AddPlaceholderChunk("string"); |
| 5934 | Builder.AddTextChunk("\""); |
| 5935 | Results.AddResult(Result(Builder.TakeString())); |
| 5936 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5937 | // @[objects, ...] |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5938 | Builder.AddResultTypeChunk("NSArray *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5939 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "[")); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5940 | Builder.AddPlaceholderChunk("objects, ..."); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5941 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 5942 | Results.AddResult(Result(Builder.TakeString())); |
| 5943 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5944 | // @{key : object, ...} |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5945 | Builder.AddResultTypeChunk("NSDictionary *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5946 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "{")); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5947 | Builder.AddPlaceholderChunk("key"); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5948 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 5949 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5950 | Builder.AddPlaceholderChunk("object, ..."); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5951 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5952 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5953 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5954 | // @(expression) |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5955 | Builder.AddResultTypeChunk("id"); |
| 5956 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "(")); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5957 | Builder.AddPlaceholderChunk("expression"); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5958 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5959 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5960 | } |
| 5961 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5962 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5963 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5964 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5965 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5966 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5967 | if (Results.includeCodePatterns()) { |
| 5968 | // @try { statements } @catch ( declaration ) { statements } @finally |
| 5969 | // { statements } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5970 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "try")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5971 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5972 | Builder.AddPlaceholderChunk("statements"); |
| 5973 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5974 | Builder.AddTextChunk("@catch"); |
| 5975 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5976 | Builder.AddPlaceholderChunk("parameter"); |
| 5977 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5978 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5979 | Builder.AddPlaceholderChunk("statements"); |
| 5980 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5981 | Builder.AddTextChunk("@finally"); |
| 5982 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5983 | Builder.AddPlaceholderChunk("statements"); |
| 5984 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5985 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5986 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5987 | |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5988 | // @throw |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5989 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "throw")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5990 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5991 | Builder.AddPlaceholderChunk("expression"); |
| 5992 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5993 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5994 | if (Results.includeCodePatterns()) { |
| 5995 | // @synchronized ( expression ) { statements } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5996 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "synchronized")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5997 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5998 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5999 | Builder.AddPlaceholderChunk("expression"); |
| 6000 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 6001 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 6002 | Builder.AddPlaceholderChunk("statements"); |
| 6003 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 6004 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 6005 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 6006 | } |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6007 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 6008 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6009 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6010 | typedef CodeCompletionResult Result; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6011 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "private"))); |
| 6012 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "protected"))); |
| 6013 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "public"))); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 6014 | if (LangOpts.ObjC) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6015 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "package"))); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 6016 | } |
| 6017 | |
| 6018 | void Sema::CodeCompleteObjCAtVisibility(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6019 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6020 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6021 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 6022 | Results.EnterNewScope(); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6023 | AddObjCVisibilityResults(getLangOpts(), Results, false); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 6024 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6025 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6026 | Results.data(), Results.size()); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 6027 | } |
| 6028 | |
| 6029 | void Sema::CodeCompleteObjCAtStatement(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6030 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6031 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6032 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 6033 | Results.EnterNewScope(); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 6034 | AddObjCStatementResults(Results, false); |
| 6035 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6036 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6037 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6038 | Results.data(), Results.size()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6039 | } |
| 6040 | |
| 6041 | void Sema::CodeCompleteObjCAtExpression(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6042 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6043 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6044 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6045 | Results.EnterNewScope(); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 6046 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6047 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6048 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6049 | Results.data(), Results.size()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6050 | } |
| 6051 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6052 | /// Determine whether the addition of the given flag to an Objective-C |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6053 | /// property's attributes will cause a conflict. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6054 | static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6055 | // Check if we've already added this flag. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6056 | if (Attributes & NewFlag) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6057 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6058 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6059 | Attributes |= NewFlag; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6060 | |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6061 | // Check for collisions with "readonly". |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6062 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 6063 | (Attributes & ObjCDeclSpec::DQ_PR_readwrite)) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6064 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6065 | |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6066 | // Check for more than one of { assign, copy, retain, strong, weak }. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6067 | unsigned AssignCopyRetMask = |
| 6068 | Attributes & |
| 6069 | (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_unsafe_unretained | |
| 6070 | ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain | |
| 6071 | ObjCDeclSpec::DQ_PR_strong | ObjCDeclSpec::DQ_PR_weak); |
| 6072 | if (AssignCopyRetMask && AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6073 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained && |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6074 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6075 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain && |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6076 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong && |
| 6077 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6078 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6079 | |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6080 | return false; |
| 6081 | } |
| 6082 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6083 | void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) { |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6084 | if (!CodeCompleter) |
| 6085 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6086 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6087 | unsigned Attributes = ODS.getPropertyAttributes(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6088 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6089 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6090 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6091 | CodeCompletionContext::CCC_Other); |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6092 | Results.EnterNewScope(); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6093 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6094 | Results.AddResult(CodeCompletionResult("readonly")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6095 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6096 | Results.AddResult(CodeCompletionResult("assign")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6097 | if (!ObjCPropertyFlagConflicts(Attributes, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6098 | ObjCDeclSpec::DQ_PR_unsafe_unretained)) |
| 6099 | Results.AddResult(CodeCompletionResult("unsafe_unretained")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6100 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6101 | Results.AddResult(CodeCompletionResult("readwrite")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6102 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6103 | Results.AddResult(CodeCompletionResult("retain")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6104 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong)) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6105 | Results.AddResult(CodeCompletionResult("strong")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6106 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6107 | Results.AddResult(CodeCompletionResult("copy")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6108 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6109 | Results.AddResult(CodeCompletionResult("nonatomic")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6110 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic)) |
Fariborz Jahanian | 1c2d29e | 2011-06-11 17:14:27 +0000 | [diff] [blame] | 6111 | Results.AddResult(CodeCompletionResult("atomic")); |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6112 | |
| 6113 | // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC. |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 6114 | if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6115 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak)) |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6116 | Results.AddResult(CodeCompletionResult("weak")); |
| 6117 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6118 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6119 | CodeCompletionBuilder Setter(Results.getAllocator(), |
| 6120 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6121 | Setter.AddTypedTextChunk("setter"); |
Argyrios Kyrtzidis | 7bbb881 | 2014-02-20 07:55:15 +0000 | [diff] [blame] | 6122 | Setter.AddTextChunk("="); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6123 | Setter.AddPlaceholderChunk("method"); |
| 6124 | Results.AddResult(CodeCompletionResult(Setter.TakeString())); |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 6125 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6126 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6127 | CodeCompletionBuilder Getter(Results.getAllocator(), |
| 6128 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6129 | Getter.AddTypedTextChunk("getter"); |
Argyrios Kyrtzidis | 7bbb881 | 2014-02-20 07:55:15 +0000 | [diff] [blame] | 6130 | Getter.AddTextChunk("="); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6131 | Getter.AddPlaceholderChunk("method"); |
| 6132 | Results.AddResult(CodeCompletionResult(Getter.TakeString())); |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 6133 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 6134 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nullability)) { |
| 6135 | Results.AddResult(CodeCompletionResult("nonnull")); |
| 6136 | Results.AddResult(CodeCompletionResult("nullable")); |
| 6137 | Results.AddResult(CodeCompletionResult("null_unspecified")); |
| 6138 | Results.AddResult(CodeCompletionResult("null_resettable")); |
| 6139 | } |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6140 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6141 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6142 | Results.data(), Results.size()); |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6143 | } |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6144 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6145 | /// Describes the kind of Objective-C method that we want to find |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6146 | /// via code completion. |
| 6147 | enum ObjCMethodKind { |
Dmitri Gribenko | 4280e5c | 2012-06-08 23:13:42 +0000 | [diff] [blame] | 6148 | MK_Any, ///< Any kind of method, provided it means other specified criteria. |
| 6149 | MK_ZeroArgSelector, ///< Zero-argument (unary) selector. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6150 | MK_OneArgSelector ///< One-argument selector. |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6151 | }; |
| 6152 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6153 | static bool isAcceptableObjCSelector(Selector Sel, ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6154 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6155 | bool AllowSameLength = true) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6156 | unsigned NumSelIdents = SelIdents.size(); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6157 | if (NumSelIdents > Sel.getNumArgs()) |
| 6158 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6159 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6160 | switch (WantKind) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6161 | case MK_Any: |
| 6162 | break; |
| 6163 | case MK_ZeroArgSelector: |
| 6164 | return Sel.isUnarySelector(); |
| 6165 | case MK_OneArgSelector: |
| 6166 | return Sel.getNumArgs() == 1; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6167 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6168 | |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6169 | if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs()) |
| 6170 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6171 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6172 | for (unsigned I = 0; I != NumSelIdents; ++I) |
| 6173 | if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I)) |
| 6174 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6175 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6176 | return true; |
| 6177 | } |
| 6178 | |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6179 | static bool isAcceptableObjCMethod(ObjCMethodDecl *Method, |
| 6180 | ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6181 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6182 | bool AllowSameLength = true) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6183 | return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6184 | AllowSameLength); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6185 | } |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6186 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6187 | /// A set of selectors, which is used to avoid introducing multiple |
| 6188 | /// completions with the same selector into the result set. |
| 6189 | typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet; |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6190 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6191 | /// Add all of the Objective-C methods in the given Objective-C |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6192 | /// container to the set of results. |
| 6193 | /// |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6194 | /// The container will be a class, protocol, category, or implementation of |
| 6195 | /// any of the above. This mether will recurse to include methods from |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6196 | /// the superclasses of classes along with their categories, protocols, and |
| 6197 | /// implementations. |
| 6198 | /// |
| 6199 | /// \param Container the container in which we'll look to find methods. |
| 6200 | /// |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 6201 | /// \param WantInstanceMethods Whether to add instance methods (only); if |
| 6202 | /// false, this routine will add factory methods (only). |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6203 | /// |
| 6204 | /// \param CurContext the context in which we're performing the lookup that |
| 6205 | /// finds methods. |
| 6206 | /// |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6207 | /// \param AllowSameLength Whether we allow a method to be added to the list |
| 6208 | /// when it has the same number of parameters as we have selector identifiers. |
| 6209 | /// |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6210 | /// \param Results the structure into which we'll add results. |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6211 | static void AddObjCMethods(ObjCContainerDecl *Container, |
| 6212 | bool WantInstanceMethods, ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6213 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6214 | DeclContext *CurContext, |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6215 | VisitedSelectorSet &Selectors, bool AllowSameLength, |
| 6216 | ResultBuilder &Results, bool InOriginalClass = true, |
| 6217 | bool IsRootClass = false) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6218 | typedef CodeCompletionResult Result; |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6219 | Container = getContainerDef(Container); |
Douglas Gregor | 41778c3 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 6220 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container); |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6221 | IsRootClass = IsRootClass || (IFace && !IFace->getSuperClass()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6222 | for (ObjCMethodDecl *M : Container->methods()) { |
Douglas Gregor | 41778c3 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 6223 | // The instance methods on the root class can be messaged via the |
| 6224 | // metaclass. |
| 6225 | if (M->isInstanceMethod() == WantInstanceMethods || |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6226 | (IsRootClass && !WantInstanceMethods)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6227 | // Check whether the selector identifiers we've been given are a |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6228 | // subset of the identifiers for this particular method. |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 6229 | if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength)) |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6230 | continue; |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6231 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 6232 | if (!Selectors.insert(M->getSelector()).second) |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6233 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6234 | |
| 6235 | Result R = Result(M, Results.getBasePriority(M), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6236 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6237 | R.AllParametersAreInformative = (WantKind != MK_Any); |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6238 | if (!InOriginalClass) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 6239 | setInBaseClass(R); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6240 | Results.MaybeAddResult(R, CurContext); |
| 6241 | } |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6242 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6243 | |
Douglas Gregor | f37c949 | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 6244 | // Visit the protocols of protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6245 | if (const auto *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6246 | if (Protocol->hasDefinition()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6247 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 6248 | Protocol->getReferencedProtocols(); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6249 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6250 | E = Protocols.end(); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6251 | I != E; ++I) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6252 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6253 | Selectors, AllowSameLength, Results, false, IsRootClass); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6254 | } |
Douglas Gregor | f37c949 | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 6255 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6256 | |
Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 6257 | if (!IFace || !IFace->hasDefinition()) |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6258 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6259 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6260 | // Add methods in protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6261 | for (ObjCProtocolDecl *I : IFace->protocols()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6262 | AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6263 | Selectors, AllowSameLength, Results, false, IsRootClass); |
| 6264 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6265 | // Add methods in categories. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6266 | for (ObjCCategoryDecl *CatDecl : IFace->known_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6267 | AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents, |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6268 | CurContext, Selectors, AllowSameLength, Results, |
| 6269 | InOriginalClass, IsRootClass); |
| 6270 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6271 | // Add a categories protocol methods. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6272 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 6273 | CatDecl->getReferencedProtocols(); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6274 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 6275 | E = Protocols.end(); |
| 6276 | I != E; ++I) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6277 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6278 | Selectors, AllowSameLength, Results, false, IsRootClass); |
| 6279 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6280 | // Add methods in category implementations. |
| 6281 | if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6282 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6283 | Selectors, AllowSameLength, Results, InOriginalClass, |
| 6284 | IsRootClass); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6285 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6286 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6287 | // Add methods in superclass. |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6288 | // Avoid passing in IsRootClass since root classes won't have super classes. |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6289 | if (IFace->getSuperClass()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6290 | AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind, |
| 6291 | SelIdents, CurContext, Selectors, AllowSameLength, Results, |
| 6292 | /*IsRootClass=*/false); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6293 | |
| 6294 | // Add methods in our implementation, if any. |
| 6295 | if (ObjCImplementationDecl *Impl = IFace->getImplementation()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6296 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6297 | Selectors, AllowSameLength, Results, InOriginalClass, |
| 6298 | IsRootClass); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6299 | } |
| 6300 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6301 | void Sema::CodeCompleteObjCPropertyGetter(Scope *S) { |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6302 | // Try to find the interface where getters might live. |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6303 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6304 | if (!Class) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6305 | if (ObjCCategoryDecl *Category = |
| 6306 | dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6307 | Class = Category->getClassInterface(); |
| 6308 | |
| 6309 | if (!Class) |
| 6310 | return; |
| 6311 | } |
| 6312 | |
| 6313 | // Find all of the potential getters. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6314 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6315 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6316 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6317 | Results.EnterNewScope(); |
| 6318 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6319 | VisitedSelectorSet Selectors; |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6320 | AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6321 | /*AllowSameLength=*/true, Results); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6322 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6323 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6324 | Results.data(), Results.size()); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6325 | } |
| 6326 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6327 | void Sema::CodeCompleteObjCPropertySetter(Scope *S) { |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6328 | // Try to find the interface where setters might live. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6329 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6330 | if (!Class) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6331 | if (ObjCCategoryDecl *Category = |
| 6332 | dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6333 | Class = Category->getClassInterface(); |
| 6334 | |
| 6335 | if (!Class) |
| 6336 | return; |
| 6337 | } |
| 6338 | |
| 6339 | // Find all of the potential getters. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6340 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6341 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6342 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6343 | Results.EnterNewScope(); |
| 6344 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6345 | VisitedSelectorSet Selectors; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6346 | AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext, Selectors, |
| 6347 | /*AllowSameLength=*/true, Results); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6348 | |
| 6349 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6350 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6351 | Results.data(), Results.size()); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6352 | } |
| 6353 | |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6354 | void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS, |
| 6355 | bool IsParameter) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6356 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6357 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6358 | CodeCompletionContext::CCC_Type); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6359 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6360 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6361 | // Add context-sensitive, Objective-C parameter-passing keywords. |
| 6362 | bool AddedInOut = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6363 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6364 | (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 6365 | Results.AddResult("in"); |
| 6366 | Results.AddResult("inout"); |
| 6367 | AddedInOut = true; |
| 6368 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6369 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6370 | (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 6371 | Results.AddResult("out"); |
| 6372 | if (!AddedInOut) |
| 6373 | Results.AddResult("inout"); |
| 6374 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6375 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6376 | (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref | |
| 6377 | ObjCDeclSpec::DQ_Oneway)) == 0) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6378 | Results.AddResult("bycopy"); |
| 6379 | Results.AddResult("byref"); |
| 6380 | Results.AddResult("oneway"); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6381 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 6382 | if ((DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) == 0) { |
| 6383 | Results.AddResult("nonnull"); |
| 6384 | Results.AddResult("nullable"); |
| 6385 | Results.AddResult("null_unspecified"); |
| 6386 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6387 | |
| 6388 | // If we're completing the return type of an Objective-C method and the |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6389 | // identifier IBAction refers to a macro, provide a completion item for |
| 6390 | // an action, e.g., |
| 6391 | // IBAction)<#selector#>:(id)sender |
| 6392 | if (DS.getObjCDeclQualifier() == 0 && !IsParameter && |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 6393 | PP.isMacroDefined("IBAction")) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6394 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 6395 | Results.getCodeCompletionTUInfo(), |
| 6396 | CCP_CodePattern, CXAvailability_Available); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6397 | Builder.AddTypedTextChunk("IBAction"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6398 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6399 | Builder.AddPlaceholderChunk("selector"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6400 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 6401 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6402 | Builder.AddTextChunk("id"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6403 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6404 | Builder.AddTextChunk("sender"); |
| 6405 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 6406 | } |
Douglas Gregor | ed1f597 | 2013-01-30 07:11:43 +0000 | [diff] [blame] | 6407 | |
| 6408 | // If we're completing the return type, provide 'instancetype'. |
| 6409 | if (!IsParameter) { |
| 6410 | Results.AddResult(CodeCompletionResult("instancetype")); |
| 6411 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6412 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6413 | // Add various builtin type names and specifiers. |
| 6414 | AddOrdinaryNameResults(PCC_Type, S, *this, Results); |
| 6415 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6416 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6417 | // Add the various type names |
| 6418 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 6419 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 6420 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 6421 | CodeCompleter->includeGlobals(), |
| 6422 | CodeCompleter->loadExternal()); |
| 6423 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6424 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 6425 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6426 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6427 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6428 | Results.data(), Results.size()); |
| 6429 | } |
| 6430 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6431 | /// When we have an expression with type "id", we may assume |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6432 | /// that it has some more-specific class type based on knowledge of |
| 6433 | /// common uses of Objective-C. This routine returns that class type, |
| 6434 | /// or NULL if no better result could be determined. |
| 6435 | static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6436 | auto *Msg = dyn_cast_or_null<ObjCMessageExpr>(E); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6437 | if (!Msg) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6438 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6439 | |
| 6440 | Selector Sel = Msg->getSelector(); |
| 6441 | if (Sel.isNull()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6442 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6443 | |
| 6444 | IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0); |
| 6445 | if (!Id) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6446 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6447 | |
| 6448 | ObjCMethodDecl *Method = Msg->getMethodDecl(); |
| 6449 | if (!Method) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6450 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6451 | |
| 6452 | // Determine the class that we're sending the message to. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6453 | ObjCInterfaceDecl *IFace = nullptr; |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 6454 | switch (Msg->getReceiverKind()) { |
| 6455 | case ObjCMessageExpr::Class: |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6456 | if (const ObjCObjectType *ObjType = |
| 6457 | Msg->getClassReceiver()->getAs<ObjCObjectType>()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6458 | IFace = ObjType->getInterface(); |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 6459 | break; |
| 6460 | |
| 6461 | case ObjCMessageExpr::Instance: { |
| 6462 | QualType T = Msg->getInstanceReceiver()->getType(); |
| 6463 | if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>()) |
| 6464 | IFace = Ptr->getInterfaceDecl(); |
| 6465 | break; |
| 6466 | } |
| 6467 | |
| 6468 | case ObjCMessageExpr::SuperInstance: |
| 6469 | case ObjCMessageExpr::SuperClass: |
| 6470 | break; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6471 | } |
| 6472 | |
| 6473 | if (!IFace) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6474 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6475 | |
| 6476 | ObjCInterfaceDecl *Super = IFace->getSuperClass(); |
| 6477 | if (Method->isInstanceMethod()) |
| 6478 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6479 | .Case("retain", IFace) |
| 6480 | .Case("strong", IFace) |
| 6481 | .Case("autorelease", IFace) |
| 6482 | .Case("copy", IFace) |
| 6483 | .Case("copyWithZone", IFace) |
| 6484 | .Case("mutableCopy", IFace) |
| 6485 | .Case("mutableCopyWithZone", IFace) |
| 6486 | .Case("awakeFromCoder", IFace) |
| 6487 | .Case("replacementObjectFromCoder", IFace) |
| 6488 | .Case("class", IFace) |
| 6489 | .Case("classForCoder", IFace) |
| 6490 | .Case("superclass", Super) |
| 6491 | .Default(nullptr); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6492 | |
| 6493 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6494 | .Case("new", IFace) |
| 6495 | .Case("alloc", IFace) |
| 6496 | .Case("allocWithZone", IFace) |
| 6497 | .Case("class", IFace) |
| 6498 | .Case("superclass", Super) |
| 6499 | .Default(nullptr); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6500 | } |
| 6501 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6502 | // Add a special completion for a message send to "super", which fills in the |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6503 | // most likely case of forwarding all of our arguments to the superclass |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6504 | // function. |
| 6505 | /// |
| 6506 | /// \param S The semantic analysis object. |
| 6507 | /// |
Dmitri Gribenko | adba9be | 2012-08-23 17:58:28 +0000 | [diff] [blame] | 6508 | /// \param NeedSuperKeyword Whether we need to prefix this completion with |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6509 | /// the "super" keyword. Otherwise, we just need to provide the arguments. |
| 6510 | /// |
| 6511 | /// \param SelIdents The identifiers in the selector that have already been |
| 6512 | /// provided as arguments for a send to "super". |
| 6513 | /// |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6514 | /// \param Results The set of results to augment. |
| 6515 | /// |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6516 | /// \returns the Objective-C method declaration that would be invoked by |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6517 | /// this "super" completion. If NULL, no completion was added. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6518 | static ObjCMethodDecl * |
| 6519 | AddSuperSendCompletion(Sema &S, bool NeedSuperKeyword, |
| 6520 | ArrayRef<IdentifierInfo *> SelIdents, |
| 6521 | ResultBuilder &Results) { |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6522 | ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); |
| 6523 | if (!CurMethod) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6524 | return nullptr; |
| 6525 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6526 | ObjCInterfaceDecl *Class = CurMethod->getClassInterface(); |
| 6527 | if (!Class) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6528 | return nullptr; |
| 6529 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6530 | // Try to find a superclass method with the same selector. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6531 | ObjCMethodDecl *SuperMethod = nullptr; |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6532 | while ((Class = Class->getSuperClass()) && !SuperMethod) { |
| 6533 | // Check in the class |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6534 | SuperMethod = Class->getMethod(CurMethod->getSelector(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6535 | CurMethod->isInstanceMethod()); |
| 6536 | |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6537 | // Check in categories or class extensions. |
| 6538 | if (!SuperMethod) { |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 6539 | for (const auto *Cat : Class->known_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6540 | if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6541 | CurMethod->isInstanceMethod()))) |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6542 | break; |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6543 | } |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6544 | } |
| 6545 | } |
| 6546 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6547 | if (!SuperMethod) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6548 | return nullptr; |
| 6549 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6550 | // Check whether the superclass method has the same signature. |
| 6551 | if (CurMethod->param_size() != SuperMethod->param_size() || |
| 6552 | CurMethod->isVariadic() != SuperMethod->isVariadic()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6553 | return nullptr; |
| 6554 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6555 | for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6556 | CurPEnd = CurMethod->param_end(), |
| 6557 | SuperP = SuperMethod->param_begin(); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6558 | CurP != CurPEnd; ++CurP, ++SuperP) { |
| 6559 | // Make sure the parameter types are compatible. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6560 | if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6561 | (*SuperP)->getType())) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6562 | return nullptr; |
| 6563 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6564 | // Make sure we have a parameter name to forward! |
| 6565 | if (!(*CurP)->getIdentifier()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6566 | return nullptr; |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6567 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6568 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6569 | // We have a superclass method. Now, form the send-to-super completion. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6570 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 6571 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6572 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6573 | // Give this completion a return type. |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 6574 | AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6575 | Results.getCompletionContext().getBaseType(), Builder); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6576 | |
| 6577 | // If we need the "super" keyword, add it (plus some spacing). |
| 6578 | if (NeedSuperKeyword) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6579 | Builder.AddTypedTextChunk("super"); |
| 6580 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6581 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6582 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6583 | Selector Sel = CurMethod->getSelector(); |
| 6584 | if (Sel.isUnarySelector()) { |
| 6585 | if (NeedSuperKeyword) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6586 | Builder.AddTextChunk( |
| 6587 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6588 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6589 | Builder.AddTypedTextChunk( |
| 6590 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6591 | } else { |
| 6592 | ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(); |
| 6593 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6594 | if (I > SelIdents.size()) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6595 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6596 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6597 | if (I < SelIdents.size()) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6598 | Builder.AddInformativeChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6599 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6600 | else if (NeedSuperKeyword || I > SelIdents.size()) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6601 | Builder.AddTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6602 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6603 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6604 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6605 | } else { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6606 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6607 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6608 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6609 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6610 | } |
| 6611 | } |
| 6612 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6613 | |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 6614 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, |
| 6615 | CCP_SuperCompletion)); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6616 | return SuperMethod; |
| 6617 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6618 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6619 | void Sema::CodeCompleteObjCMessageReceiver(Scope *S) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6620 | typedef CodeCompletionResult Result; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6621 | ResultBuilder Results( |
| 6622 | *this, CodeCompleter->getAllocator(), |
| 6623 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6624 | CodeCompletionContext::CCC_ObjCMessageReceiver, |
| 6625 | getLangOpts().CPlusPlus11 |
| 6626 | ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture |
| 6627 | : &ResultBuilder::IsObjCMessageReceiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6628 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6629 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 6630 | Results.EnterNewScope(); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 6631 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 6632 | CodeCompleter->includeGlobals(), |
| 6633 | CodeCompleter->loadExternal()); |
| 6634 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6635 | // If we are in an Objective-C method inside a class that has a superclass, |
| 6636 | // add "super" as an option. |
| 6637 | if (ObjCMethodDecl *Method = getCurMethodDecl()) |
| 6638 | if (ObjCInterfaceDecl *Iface = Method->getClassInterface()) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6639 | if (Iface->getSuperClass()) { |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6640 | Results.AddResult(Result("super")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6641 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6642 | AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6643 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6644 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6645 | if (getLangOpts().CPlusPlus11) |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 6646 | addThisCompletion(*this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6647 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6648 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6649 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6650 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 6651 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 6652 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 6653 | Results.data(), Results.size()); |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6654 | } |
| 6655 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6656 | void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6657 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6658 | bool AtArgumentExpression) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6659 | ObjCInterfaceDecl *CDecl = nullptr; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6660 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 6661 | // Figure out which interface we're in. |
| 6662 | CDecl = CurMethod->getClassInterface(); |
| 6663 | if (!CDecl) |
| 6664 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6665 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6666 | // Find the superclass of this class. |
| 6667 | CDecl = CDecl->getSuperClass(); |
| 6668 | if (!CDecl) |
| 6669 | return; |
| 6670 | |
| 6671 | if (CurMethod->isInstanceMethod()) { |
| 6672 | // We are inside an instance method, which means that the message |
| 6673 | // send [super ...] is actually calling an instance method on the |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6674 | // current object. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6675 | return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6676 | AtArgumentExpression, CDecl); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6677 | } |
| 6678 | |
| 6679 | // Fall through to send to the superclass in CDecl. |
| 6680 | } else { |
| 6681 | // "super" may be the name of a type or variable. Figure out which |
| 6682 | // it is. |
Argyrios Kyrtzidis | 3e56dd4 | 2013-03-14 22:56:43 +0000 | [diff] [blame] | 6683 | IdentifierInfo *Super = getSuperIdentifier(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6684 | NamedDecl *ND = LookupSingleName(S, Super, SuperLoc, LookupOrdinaryName); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6685 | if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) { |
| 6686 | // "super" names an interface. Use it. |
| 6687 | } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6688 | if (const ObjCObjectType *Iface = |
| 6689 | Context.getTypeDeclType(TD)->getAs<ObjCObjectType>()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6690 | CDecl = Iface->getInterface(); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6691 | } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { |
| 6692 | // "super" names an unresolved type; we can't be more specific. |
| 6693 | } else { |
| 6694 | // Assume that "super" names some kind of value and parse that way. |
| 6695 | CXXScopeSpec SS; |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 6696 | SourceLocation TemplateKWLoc; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6697 | UnqualifiedId id; |
| 6698 | id.setIdentifier(Super, SuperLoc); |
Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 6699 | ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id, |
| 6700 | /*HasTrailingLParen=*/false, |
| 6701 | /*IsAddressOfOperand=*/false); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6702 | return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6703 | SelIdents, AtArgumentExpression); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6704 | } |
| 6705 | |
| 6706 | // Fall through |
| 6707 | } |
| 6708 | |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 6709 | ParsedType Receiver; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6710 | if (CDecl) |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 6711 | Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6712 | return CodeCompleteObjCClassMessage(S, Receiver, SelIdents, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6713 | AtArgumentExpression, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6714 | /*IsSuper=*/true); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6715 | } |
| 6716 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6717 | /// Given a set of code-completion results for the argument of a message |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6718 | /// send, determine the preferred type (if any) for that argument expression. |
| 6719 | static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results, |
| 6720 | unsigned NumSelIdents) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6721 | typedef CodeCompletionResult Result; |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6722 | ASTContext &Context = Results.getSema().Context; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6723 | |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6724 | QualType PreferredType; |
| 6725 | unsigned BestPriority = CCP_Unlikely * 2; |
| 6726 | Result *ResultsData = Results.data(); |
| 6727 | for (unsigned I = 0, N = Results.size(); I != N; ++I) { |
| 6728 | Result &R = ResultsData[I]; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6729 | if (R.Kind == Result::RK_Declaration && |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6730 | isa<ObjCMethodDecl>(R.Declaration)) { |
| 6731 | if (R.Priority <= BestPriority) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 6732 | const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6733 | if (NumSelIdents <= Method->param_size()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6734 | QualType MyPreferredType = |
| 6735 | Method->parameters()[NumSelIdents - 1]->getType(); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6736 | if (R.Priority < BestPriority || PreferredType.isNull()) { |
| 6737 | BestPriority = R.Priority; |
| 6738 | PreferredType = MyPreferredType; |
| 6739 | } else if (!Context.hasSameUnqualifiedType(PreferredType, |
| 6740 | MyPreferredType)) { |
| 6741 | PreferredType = QualType(); |
| 6742 | } |
| 6743 | } |
| 6744 | } |
| 6745 | } |
| 6746 | } |
| 6747 | |
| 6748 | return PreferredType; |
| 6749 | } |
| 6750 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6751 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6752 | ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6753 | ArrayRef<IdentifierInfo *> SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6754 | bool AtArgumentExpression, bool IsSuper, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6755 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6756 | typedef CodeCompletionResult Result; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6757 | ObjCInterfaceDecl *CDecl = nullptr; |
| 6758 | |
Douglas Gregor | 8ce3321 | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 6759 | // If the given name refers to an interface type, retrieve the |
| 6760 | // corresponding declaration. |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6761 | if (Receiver) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6762 | QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6763 | if (!T.isNull()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6764 | if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>()) |
| 6765 | CDecl = Interface->getInterface(); |
Douglas Gregor | 8ce3321 | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 6766 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6767 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6768 | // Add all of the factory methods in this Objective-C class, its protocols, |
| 6769 | // superclasses, categories, implementation, etc. |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6770 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6771 | |
| 6772 | // If this is a send-to-super, try to add the special "super" send |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6773 | // completion. |
| 6774 | if (IsSuper) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6775 | if (ObjCMethodDecl *SuperMethod = |
| 6776 | AddSuperSendCompletion(SemaRef, false, SelIdents, Results)) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6777 | Results.Ignore(SuperMethod); |
| 6778 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6779 | |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6780 | // If we're inside an Objective-C method definition, prefer its selector to |
| 6781 | // others. |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6782 | if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl()) |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6783 | Results.setPreferredSelector(CurMethod->getSelector()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6784 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6785 | VisitedSelectorSet Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6786 | if (CDecl) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6787 | AddObjCMethods(CDecl, false, MK_Any, SelIdents, SemaRef.CurContext, |
| 6788 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6789 | else { |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6790 | // We're messaging "id" as a type; provide all class/factory methods. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6791 | |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6792 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 6793 | // pool from the AST file. |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6794 | if (SemaRef.getExternalSource()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6795 | for (uint32_t I = 0, |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6796 | N = SemaRef.getExternalSource()->GetNumExternalSelectors(); |
John McCall | 75b960e | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 6797 | I != N; ++I) { |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6798 | Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6799 | if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6800 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6801 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6802 | SemaRef.ReadMethodPool(Sel); |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6803 | } |
| 6804 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6805 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6806 | for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6807 | MEnd = SemaRef.MethodPool.end(); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6808 | M != MEnd; ++M) { |
| 6809 | for (ObjCMethodList *MethList = &M->second.second; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6810 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6811 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6812 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6813 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6814 | Result R(MethList->getMethod(), |
| 6815 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6816 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6817 | R.AllParametersAreInformative = false; |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6818 | Results.MaybeAddResult(R, SemaRef.CurContext); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6819 | } |
| 6820 | } |
| 6821 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6822 | |
| 6823 | Results.ExitScope(); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6824 | } |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6825 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6826 | void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6827 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6828 | bool AtArgumentExpression, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6829 | bool IsSuper) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6830 | |
Douglas Gregor | 63745d5 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 6831 | QualType T = this->GetTypeFromParser(Receiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6832 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6833 | ResultBuilder Results( |
| 6834 | *this, CodeCompleter->getAllocator(), |
| 6835 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6836 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage, T, |
| 6837 | SelIdents)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6838 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6839 | AddClassMessageCompletions(*this, S, Receiver, SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6840 | AtArgumentExpression, IsSuper, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6841 | |
| 6842 | // If we're actually at the argument expression (rather than prior to the |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6843 | // selector), we're actually performing code completion for an expression. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6844 | // Determine whether we have a single, best method. If so, we can |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6845 | // code-complete the expression using the corresponding parameter type as |
| 6846 | // our preferred type, improving completion results. |
| 6847 | if (AtArgumentExpression) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6848 | QualType PreferredType = |
| 6849 | getPreferredArgumentTypeForMessageSend(Results, SelIdents.size()); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6850 | if (PreferredType.isNull()) |
| 6851 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 6852 | else |
| 6853 | CodeCompleteExpression(S, PreferredType); |
| 6854 | return; |
| 6855 | } |
| 6856 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6857 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6858 | Results.data(), Results.size()); |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6859 | } |
| 6860 | |
Richard Trieu | 2bd0401 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 6861 | void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6862 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6863 | bool AtArgumentExpression, |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6864 | ObjCInterfaceDecl *Super) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6865 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6866 | |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6867 | Expr *RecExpr = static_cast<Expr *>(Receiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6868 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6869 | // If necessary, apply function/array conversion to the receiver. |
| 6870 | // C99 6.7.5.3p[7,8]. |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6871 | if (RecExpr) { |
| 6872 | ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr); |
| 6873 | if (Conv.isInvalid()) // conversion failed. bail. |
| 6874 | return; |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6875 | RecExpr = Conv.get(); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6876 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6877 | QualType ReceiverType = RecExpr |
| 6878 | ? RecExpr->getType() |
| 6879 | : Super ? Context.getObjCObjectPointerType( |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6880 | Context.getObjCInterfaceType(Super)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6881 | : Context.getObjCIdType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6882 | |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6883 | // If we're messaging an expression with type "id" or "Class", check |
| 6884 | // whether we know something special about the receiver that allows |
| 6885 | // us to assume a more-specific receiver type. |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6886 | if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) { |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6887 | if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) { |
| 6888 | if (ReceiverType->isObjCClassType()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6889 | return CodeCompleteObjCClassMessage( |
| 6890 | S, ParsedType::make(Context.getObjCInterfaceType(IFace)), SelIdents, |
| 6891 | AtArgumentExpression, Super); |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6892 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6893 | ReceiverType = |
| 6894 | Context.getObjCObjectPointerType(Context.getObjCInterfaceType(IFace)); |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6895 | } |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6896 | } else if (RecExpr && getLangOpts().CPlusPlus) { |
| 6897 | ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr); |
| 6898 | if (Conv.isUsable()) { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6899 | RecExpr = Conv.get(); |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6900 | ReceiverType = RecExpr->getType(); |
| 6901 | } |
| 6902 | } |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6903 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6904 | // Build the set of methods we can see. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6905 | ResultBuilder Results( |
| 6906 | *this, CodeCompleter->getAllocator(), |
| 6907 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6908 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage, |
| 6909 | ReceiverType, SelIdents)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6910 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6911 | Results.EnterNewScope(); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6912 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6913 | // If this is a send-to-super, try to add the special "super" send |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6914 | // completion. |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6915 | if (Super) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6916 | if (ObjCMethodDecl *SuperMethod = |
| 6917 | AddSuperSendCompletion(*this, false, SelIdents, Results)) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6918 | Results.Ignore(SuperMethod); |
| 6919 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6920 | |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6921 | // If we're inside an Objective-C method definition, prefer its selector to |
| 6922 | // others. |
| 6923 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) |
| 6924 | Results.setPreferredSelector(CurMethod->getSelector()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6925 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6926 | // Keep track of the selectors we've already added. |
| 6927 | VisitedSelectorSet Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6928 | |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6929 | // Handle messages to Class. This really isn't a message to an instance |
| 6930 | // method, so we treat it the same way we would treat a message send to a |
| 6931 | // class method. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6932 | if (ReceiverType->isObjCClassType() || |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6933 | ReceiverType->isObjCQualifiedClassType()) { |
| 6934 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 6935 | if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6936 | AddObjCMethods(ClassDecl, false, MK_Any, SelIdents, CurContext, |
| 6937 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6938 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6939 | } |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6940 | // Handle messages to a qualified ID ("id<foo>"). |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6941 | else if (const ObjCObjectPointerType *QualID = |
| 6942 | ReceiverType->getAsObjCQualifiedIdType()) { |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6943 | // Search protocols for instance methods. |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 6944 | for (auto *I : QualID->quals()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6945 | AddObjCMethods(I, true, MK_Any, SelIdents, CurContext, Selectors, |
| 6946 | AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6947 | } |
| 6948 | // Handle messages to a pointer to interface type. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6949 | else if (const ObjCObjectPointerType *IFacePtr = |
| 6950 | ReceiverType->getAsObjCInterfacePointerType()) { |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6951 | // Search the class, its superclasses, etc., for instance methods. |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6952 | AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6953 | CurContext, Selectors, AtArgumentExpression, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6954 | |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6955 | // Search protocols for instance methods. |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 6956 | for (auto *I : IFacePtr->quals()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6957 | AddObjCMethods(I, true, MK_Any, SelIdents, CurContext, Selectors, |
| 6958 | AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6959 | } |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6960 | // Handle messages to "id". |
| 6961 | else if (ReceiverType->isObjCIdType()) { |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6962 | // We're messaging "id", so provide all instance methods we know |
| 6963 | // about as code-completion results. |
| 6964 | |
| 6965 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 6966 | // pool from the AST file. |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6967 | if (ExternalSource) { |
John McCall | 75b960e | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 6968 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); |
| 6969 | I != N; ++I) { |
| 6970 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6971 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6972 | continue; |
| 6973 | |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6974 | ReadMethodPool(Sel); |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6975 | } |
| 6976 | } |
| 6977 | |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6978 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 6979 | MEnd = MethodPool.end(); |
| 6980 | M != MEnd; ++M) { |
| 6981 | for (ObjCMethodList *MethList = &M->second.first; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6982 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6983 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6984 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6985 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6986 | if (!Selectors.insert(MethList->getMethod()->getSelector()).second) |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6987 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6988 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6989 | Result R(MethList->getMethod(), |
| 6990 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6991 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6992 | R.AllParametersAreInformative = false; |
| 6993 | Results.MaybeAddResult(R, CurContext); |
| 6994 | } |
| 6995 | } |
| 6996 | } |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6997 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6998 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6999 | // If we're actually at the argument expression (rather than prior to the |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 7000 | // selector), we're actually performing code completion for an expression. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7001 | // Determine whether we have a single, best method. If so, we can |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 7002 | // code-complete the expression using the corresponding parameter type as |
| 7003 | // our preferred type, improving completion results. |
| 7004 | if (AtArgumentExpression) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7005 | QualType PreferredType = |
| 7006 | getPreferredArgumentTypeForMessageSend(Results, SelIdents.size()); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 7007 | if (PreferredType.isNull()) |
| 7008 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 7009 | else |
| 7010 | CodeCompleteExpression(S, PreferredType); |
| 7011 | return; |
| 7012 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7013 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7014 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7015 | Results.data(), Results.size()); |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 7016 | } |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7017 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7018 | void Sema::CodeCompleteObjCForCollection(Scope *S, |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7019 | DeclGroupPtrTy IterationVar) { |
| 7020 | CodeCompleteExpressionData Data; |
| 7021 | Data.ObjCCollection = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7022 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7023 | if (IterationVar.getAsOpaquePtr()) { |
Serge Pavlov | 9ddb76e | 2013-08-27 13:15:56 +0000 | [diff] [blame] | 7024 | DeclGroupRef DG = IterationVar.get(); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7025 | for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) { |
| 7026 | if (*I) |
| 7027 | Data.IgnoreDecls.push_back(*I); |
| 7028 | } |
| 7029 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7030 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7031 | CodeCompleteExpression(S, Data); |
| 7032 | } |
| 7033 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7034 | void Sema::CodeCompleteObjCSelector(Scope *S, |
| 7035 | ArrayRef<IdentifierInfo *> SelIdents) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7036 | // If we have an external source, load the entire class method |
| 7037 | // pool from the AST file. |
| 7038 | if (ExternalSource) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7039 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); I != N; |
| 7040 | ++I) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7041 | Selector Sel = ExternalSource->GetExternalSelector(I); |
| 7042 | if (Sel.isNull() || MethodPool.count(Sel)) |
| 7043 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7044 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7045 | ReadMethodPool(Sel); |
| 7046 | } |
| 7047 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7048 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7049 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7050 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7051 | CodeCompletionContext::CCC_SelectorName); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7052 | Results.EnterNewScope(); |
| 7053 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7054 | MEnd = MethodPool.end(); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7055 | M != MEnd; ++M) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7056 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7057 | Selector Sel = M->first; |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7058 | if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents)) |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7059 | continue; |
| 7060 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7061 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7062 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7063 | if (Sel.isUnarySelector()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7064 | Builder.AddTypedTextChunk( |
| 7065 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7066 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7067 | continue; |
| 7068 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7069 | |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7070 | std::string Accumulator; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7071 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7072 | if (I == SelIdents.size()) { |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7073 | if (!Accumulator.empty()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7074 | Builder.AddInformativeChunk( |
| 7075 | Builder.getAllocator().CopyString(Accumulator)); |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7076 | Accumulator.clear(); |
| 7077 | } |
| 7078 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7079 | |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 7080 | Accumulator += Sel.getNameForSlot(I); |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7081 | Accumulator += ':'; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7082 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7083 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(Accumulator)); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7084 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7085 | } |
| 7086 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7087 | |
| 7088 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7089 | Results.data(), Results.size()); |
| 7090 | } |
| 7091 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7092 | /// Add all of the protocol declarations that we find in the given |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7093 | /// (translation unit) context. |
| 7094 | static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext, |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7095 | bool OnlyForwardDeclarations, |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7096 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7097 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7098 | |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7099 | for (const auto *D : Ctx->decls()) { |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7100 | // Record any protocols we find. |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7101 | if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D)) |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 7102 | if (!OnlyForwardDeclarations || !Proto->hasDefinition()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7103 | Results.AddResult( |
| 7104 | Result(Proto, Results.getBasePriority(Proto), nullptr), CurContext, |
| 7105 | nullptr, false); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7106 | } |
| 7107 | } |
| 7108 | |
Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 7109 | void Sema::CodeCompleteObjCProtocolReferences( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7110 | ArrayRef<IdentifierLocPair> Protocols) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7111 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7112 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7113 | CodeCompletionContext::CCC_ObjCProtocolName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7114 | |
Chandler Carruth | ede1163 | 2016-11-04 06:06:50 +0000 | [diff] [blame] | 7115 | if (CodeCompleter->includeGlobals()) { |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7116 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7117 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7118 | // Tell the result set to ignore all of the protocols we have |
| 7119 | // already seen. |
| 7120 | // FIXME: This doesn't work when caching code-completion results. |
Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 7121 | for (const IdentifierLocPair &Pair : Protocols) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7122 | if (ObjCProtocolDecl *Protocol = LookupProtocol(Pair.first, Pair.second)) |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7123 | Results.Ignore(Protocol); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7124 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7125 | // Add all protocols. |
| 7126 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7127 | Results); |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7128 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7129 | Results.ExitScope(); |
| 7130 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7131 | |
| 7132 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7133 | Results.data(), Results.size()); |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7134 | } |
| 7135 | |
| 7136 | void Sema::CodeCompleteObjCProtocolDecl(Scope *) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7137 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7138 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7139 | CodeCompletionContext::CCC_ObjCProtocolName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7140 | |
Chandler Carruth | ede1163 | 2016-11-04 06:06:50 +0000 | [diff] [blame] | 7141 | if (CodeCompleter->includeGlobals()) { |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7142 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7143 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7144 | // Add all protocols. |
| 7145 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true, |
| 7146 | Results); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7147 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7148 | Results.ExitScope(); |
| 7149 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7150 | |
| 7151 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7152 | Results.data(), Results.size()); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7153 | } |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7154 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7155 | /// Add all of the Objective-C interface declarations that we find in |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7156 | /// the given (translation unit) context. |
| 7157 | static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext, |
| 7158 | bool OnlyForwardDeclarations, |
| 7159 | bool OnlyUnimplemented, |
| 7160 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7161 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7162 | |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7163 | for (const auto *D : Ctx->decls()) { |
Douglas Gregor | 1c28331 | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 7164 | // Record any interfaces we find. |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7165 | if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D)) |
Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 7166 | if ((!OnlyForwardDeclarations || !Class->hasDefinition()) && |
Douglas Gregor | 1c28331 | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 7167 | (!OnlyUnimplemented || !Class->getImplementation())) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7168 | Results.AddResult( |
| 7169 | Result(Class, Results.getBasePriority(Class), nullptr), CurContext, |
| 7170 | nullptr, false); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7171 | } |
| 7172 | } |
| 7173 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7174 | void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7175 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7176 | CodeCompleter->getCodeCompletionTUInfo(), |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7177 | CodeCompletionContext::CCC_ObjCInterfaceName); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7178 | Results.EnterNewScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7179 | |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7180 | if (CodeCompleter->includeGlobals()) { |
| 7181 | // Add all classes. |
| 7182 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7183 | false, Results); |
| 7184 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7185 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7186 | Results.ExitScope(); |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7187 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7188 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7189 | Results.data(), Results.size()); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7190 | } |
| 7191 | |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7192 | void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7193 | SourceLocation ClassNameLoc) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7194 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7195 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7196 | CodeCompletionContext::CCC_ObjCInterfaceName); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7197 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7198 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7199 | // Make sure that we ignore the class we're currently defining. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7200 | NamedDecl *CurClass = |
| 7201 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7202 | if (CurClass && isa<ObjCInterfaceDecl>(CurClass)) |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7203 | Results.Ignore(CurClass); |
| 7204 | |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7205 | if (CodeCompleter->includeGlobals()) { |
| 7206 | // Add all classes. |
| 7207 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7208 | false, Results); |
| 7209 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7210 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7211 | Results.ExitScope(); |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7212 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7213 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7214 | Results.data(), Results.size()); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7215 | } |
| 7216 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7217 | void Sema::CodeCompleteObjCImplementationDecl(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7218 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7219 | CodeCompleter->getCodeCompletionTUInfo(), |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7220 | CodeCompletionContext::CCC_ObjCImplementation); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7221 | Results.EnterNewScope(); |
| 7222 | |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7223 | if (CodeCompleter->includeGlobals()) { |
| 7224 | // Add all unimplemented classes. |
| 7225 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7226 | true, Results); |
| 7227 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7228 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7229 | Results.ExitScope(); |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7230 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7231 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7232 | Results.data(), Results.size()); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7233 | } |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7234 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7235 | void Sema::CodeCompleteObjCInterfaceCategory(Scope *S, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7236 | IdentifierInfo *ClassName, |
| 7237 | SourceLocation ClassNameLoc) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7238 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7239 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7240 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7241 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 7242 | CodeCompletionContext::CCC_ObjCCategoryName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7243 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7244 | // Ignore any categories we find that have already been implemented by this |
| 7245 | // interface. |
| 7246 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7247 | NamedDecl *CurClass = |
| 7248 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
| 7249 | if (ObjCInterfaceDecl *Class = |
| 7250 | dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)) { |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7251 | for (const auto *Cat : Class->visible_categories()) |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7252 | CategoryNames.insert(Cat->getIdentifier()); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7253 | } |
| 7254 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7255 | // Add all of the categories we know about. |
| 7256 | Results.EnterNewScope(); |
| 7257 | TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7258 | for (const auto *D : TU->decls()) |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7259 | if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D)) |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7260 | if (CategoryNames.insert(Category->getIdentifier()).second) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7261 | Results.AddResult( |
| 7262 | Result(Category, Results.getBasePriority(Category), nullptr), |
| 7263 | CurContext, nullptr, false); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7264 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7265 | |
| 7266 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7267 | Results.data(), Results.size()); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7268 | } |
| 7269 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7270 | void Sema::CodeCompleteObjCImplementationCategory(Scope *S, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7271 | IdentifierInfo *ClassName, |
| 7272 | SourceLocation ClassNameLoc) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7273 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7274 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7275 | // Find the corresponding interface. If we couldn't find the interface, the |
| 7276 | // program itself is ill-formed. However, we'll try to be helpful still by |
| 7277 | // providing the list of all of the categories we know about. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7278 | NamedDecl *CurClass = |
| 7279 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7280 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass); |
| 7281 | if (!Class) |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7282 | return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7283 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7284 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7285 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 7286 | CodeCompletionContext::CCC_ObjCCategoryName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7287 | |
| 7288 | // Add all of the categories that have have corresponding interface |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7289 | // declarations in this class and any of its superclasses, except for |
| 7290 | // already-implemented categories in the class itself. |
| 7291 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
| 7292 | Results.EnterNewScope(); |
| 7293 | bool IgnoreImplemented = true; |
| 7294 | while (Class) { |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7295 | for (const auto *Cat : Class->visible_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7296 | if ((!IgnoreImplemented || !Cat->getImplementation()) && |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7297 | CategoryNames.insert(Cat->getIdentifier()).second) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7298 | Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), |
| 7299 | CurContext, nullptr, false); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7300 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7301 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7302 | Class = Class->getSuperClass(); |
| 7303 | IgnoreImplemented = false; |
| 7304 | } |
| 7305 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7306 | |
| 7307 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7308 | Results.data(), Results.size()); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7309 | } |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7310 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 7311 | void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7312 | CodeCompletionContext CCContext(CodeCompletionContext::CCC_Other); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7313 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7314 | CodeCompleter->getCodeCompletionTUInfo(), CCContext); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7315 | |
| 7316 | // Figure out where this @synthesize lives. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7317 | ObjCContainerDecl *Container = |
| 7318 | dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
| 7319 | if (!Container || (!isa<ObjCImplementationDecl>(Container) && |
| 7320 | !isa<ObjCCategoryImplDecl>(Container))) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7321 | return; |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7322 | |
| 7323 | // Ignore any properties that have already been implemented. |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7324 | Container = getContainerDef(Container); |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7325 | for (const auto *D : Container->decls()) |
| 7326 | if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D)) |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7327 | Results.Ignore(PropertyImpl->getPropertyDecl()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7328 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7329 | // Add any properties that we find. |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 7330 | AddedPropertiesSet AddedProperties; |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7331 | Results.EnterNewScope(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7332 | if (ObjCImplementationDecl *ClassImpl = |
| 7333 | dyn_cast<ObjCImplementationDecl>(Container)) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7334 | AddObjCProperties(CCContext, ClassImpl->getClassInterface(), false, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7335 | /*AllowNullaryMethods=*/false, CurContext, |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 7336 | AddedProperties, Results); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7337 | else |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7338 | AddObjCProperties(CCContext, |
| 7339 | cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7340 | false, /*AllowNullaryMethods=*/false, CurContext, |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 7341 | AddedProperties, Results); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7342 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7343 | |
| 7344 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7345 | Results.data(), Results.size()); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7346 | } |
| 7347 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7348 | void Sema::CodeCompleteObjCPropertySynthesizeIvar( |
| 7349 | Scope *S, IdentifierInfo *PropertyName) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7350 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7351 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7352 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7353 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7354 | |
| 7355 | // Figure out where this @synthesize lives. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7356 | ObjCContainerDecl *Container = |
| 7357 | dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
| 7358 | if (!Container || (!isa<ObjCImplementationDecl>(Container) && |
| 7359 | !isa<ObjCCategoryImplDecl>(Container))) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7360 | return; |
| 7361 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7362 | // Figure out which interface we're looking into. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7363 | ObjCInterfaceDecl *Class = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7364 | if (ObjCImplementationDecl *ClassImpl = |
| 7365 | dyn_cast<ObjCImplementationDecl>(Container)) |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7366 | Class = ClassImpl->getClassInterface(); |
| 7367 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7368 | Class = cast<ObjCCategoryImplDecl>(Container) |
| 7369 | ->getCategoryDecl() |
| 7370 | ->getClassInterface(); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7371 | |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7372 | // Determine the type of the property we're synthesizing. |
| 7373 | QualType PropertyType = Context.getObjCIdType(); |
| 7374 | if (Class) { |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 7375 | if (ObjCPropertyDecl *Property = Class->FindPropertyDeclaration( |
| 7376 | PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7377 | PropertyType = |
| 7378 | Property->getType().getNonReferenceType().getUnqualifiedType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7379 | |
| 7380 | // Give preference to ivars |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7381 | Results.setPreferredType(PropertyType); |
| 7382 | } |
| 7383 | } |
| 7384 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7385 | // Add all of the instance variables in this class and its superclasses. |
| 7386 | Results.EnterNewScope(); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7387 | bool SawSimilarlyNamedIvar = false; |
| 7388 | std::string NameWithPrefix; |
| 7389 | NameWithPrefix += '_'; |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 7390 | NameWithPrefix += PropertyName->getName(); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7391 | std::string NameWithSuffix = PropertyName->getName().str(); |
| 7392 | NameWithSuffix += '_'; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7393 | for (; Class; Class = Class->getSuperClass()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7394 | for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7395 | Ivar = Ivar->getNextIvar()) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7396 | Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr), |
| 7397 | CurContext, nullptr, false); |
| 7398 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7399 | // Determine whether we've seen an ivar with a name similar to the |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7400 | // property. |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7401 | if ((PropertyName == Ivar->getIdentifier() || |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7402 | NameWithPrefix == Ivar->getName() || |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7403 | NameWithSuffix == Ivar->getName())) { |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7404 | SawSimilarlyNamedIvar = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7405 | |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7406 | // Reduce the priority of this result by one, to give it a slight |
| 7407 | // advantage over other results whose names don't match so closely. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7408 | if (Results.size() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7409 | Results.data()[Results.size() - 1].Kind == |
| 7410 | CodeCompletionResult::RK_Declaration && |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7411 | Results.data()[Results.size() - 1].Declaration == Ivar) |
| 7412 | Results.data()[Results.size() - 1].Priority--; |
| 7413 | } |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7414 | } |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7415 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7416 | |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7417 | if (!SawSimilarlyNamedIvar) { |
| 7418 | // Create ivar result _propName, that the user can use to synthesize |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7419 | // an ivar of the appropriate type. |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7420 | unsigned Priority = CCP_MemberDeclaration + 1; |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7421 | typedef CodeCompletionResult Result; |
| 7422 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7423 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7424 | Priority, CXAvailability_Available); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7425 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7426 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7427 | Builder.AddResultTypeChunk( |
| 7428 | GetCompletionTypeString(PropertyType, Context, Policy, Allocator)); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7429 | Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7430 | Results.AddResult( |
| 7431 | Result(Builder.TakeString(), Priority, CXCursor_ObjCIvarDecl)); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7432 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7433 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7434 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7435 | |
| 7436 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7437 | Results.data(), Results.size()); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7438 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7439 | |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 7440 | // Mapping from selectors to the methods that implement that selector, along |
| 7441 | // with the "in original class" flag. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7442 | typedef llvm::DenseMap<Selector, |
| 7443 | llvm::PointerIntPair<ObjCMethodDecl *, 1, bool>> |
| 7444 | KnownMethodsMap; |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7445 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7446 | /// Find all of the methods that reside in the given container |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7447 | /// (and its superclasses, protocols, etc.) that meet the given |
| 7448 | /// criteria. Insert those methods into the map of known methods, |
| 7449 | /// indexed by selector so they can be easily found. |
| 7450 | static void FindImplementableMethods(ASTContext &Context, |
| 7451 | ObjCContainerDecl *Container, |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 7452 | Optional<bool> WantInstanceMethods, |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7453 | QualType ReturnType, |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 7454 | KnownMethodsMap &KnownMethods, |
| 7455 | bool InOriginalClass = true) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7456 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) { |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7457 | // Make sure we have a definition; that's what we'll walk. |
Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 7458 | if (!IFace->hasDefinition()) |
| 7459 | return; |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7460 | |
| 7461 | IFace = IFace->getDefinition(); |
| 7462 | Container = IFace; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7463 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7464 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7465 | IFace->getReferencedProtocols(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7466 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7467 | E = Protocols.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7468 | I != E; ++I) |
| 7469 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7470 | KnownMethods, InOriginalClass); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7471 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7472 | // Add methods from any class extensions and categories. |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7473 | for (auto *Cat : IFace->visible_categories()) { |
| 7474 | FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7475 | KnownMethods, false); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7476 | } |
| 7477 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7478 | // Visit the superclass. |
| 7479 | if (IFace->getSuperClass()) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7480 | FindImplementableMethods(Context, IFace->getSuperClass(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7481 | WantInstanceMethods, ReturnType, KnownMethods, |
| 7482 | false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7483 | } |
| 7484 | |
| 7485 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) { |
| 7486 | // Recurse into protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7487 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7488 | Category->getReferencedProtocols(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7489 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7490 | E = Protocols.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7491 | I != E; ++I) |
| 7492 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7493 | KnownMethods, InOriginalClass); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7494 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7495 | // If this category is the original class, jump to the interface. |
| 7496 | if (InOriginalClass && Category->getClassInterface()) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7497 | FindImplementableMethods(Context, Category->getClassInterface(), |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7498 | WantInstanceMethods, ReturnType, KnownMethods, |
| 7499 | false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7500 | } |
| 7501 | |
| 7502 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7503 | // Make sure we have a definition; that's what we'll walk. |
| 7504 | if (!Protocol->hasDefinition()) |
| 7505 | return; |
| 7506 | Protocol = Protocol->getDefinition(); |
| 7507 | Container = Protocol; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7508 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7509 | // Recurse into protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7510 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7511 | Protocol->getReferencedProtocols(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7512 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7513 | E = Protocols.end(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7514 | I != E; ++I) |
| 7515 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
| 7516 | KnownMethods, false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7517 | } |
| 7518 | |
| 7519 | // Add methods in this container. This operation occurs last because |
| 7520 | // we want the methods from this container to override any methods |
| 7521 | // we've previously seen with the same selector. |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 7522 | for (auto *M : Container->methods()) { |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 7523 | if (!WantInstanceMethods || M->isInstanceMethod() == *WantInstanceMethods) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7524 | if (!ReturnType.isNull() && |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 7525 | !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType())) |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7526 | continue; |
| 7527 | |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 7528 | KnownMethods[M->getSelector()] = |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 7529 | KnownMethodsMap::mapped_type(M, InOriginalClass); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7530 | } |
| 7531 | } |
| 7532 | } |
| 7533 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7534 | /// Add the parenthesized return or parameter type chunk to a code |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7535 | /// completion string. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7536 | static void AddObjCPassingTypeChunk(QualType Type, unsigned ObjCDeclQuals, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7537 | ASTContext &Context, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7538 | const PrintingPolicy &Policy, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7539 | CodeCompletionBuilder &Builder) { |
| 7540 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 7541 | std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals, Type); |
Douglas Gregor | 2997914 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 7542 | if (!Quals.empty()) |
| 7543 | Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7544 | Builder.AddTextChunk( |
| 7545 | GetCompletionTypeString(Type, Context, Policy, Builder.getAllocator())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7546 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7547 | } |
| 7548 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7549 | /// Determine whether the given class is or inherits from a class by |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7550 | /// the given name. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7551 | static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class, StringRef Name) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7552 | if (!Class) |
| 7553 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7554 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7555 | if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name) |
| 7556 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7557 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7558 | return InheritsFromClassNamed(Class->getSuperClass(), Name); |
| 7559 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7560 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7561 | /// Add code completions for Objective-C Key-Value Coding (KVC) and |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7562 | /// Key-Value Observing (KVO). |
| 7563 | static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, |
| 7564 | bool IsInstanceMethod, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7565 | QualType ReturnType, ASTContext &Context, |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 7566 | VisitedSelectorSet &KnownSelectors, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7567 | ResultBuilder &Results) { |
| 7568 | IdentifierInfo *PropName = Property->getIdentifier(); |
| 7569 | if (!PropName || PropName->getLength() == 0) |
| 7570 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7571 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7572 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
| 7573 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7574 | // Builder that will create each code completion. |
| 7575 | typedef CodeCompletionResult Result; |
| 7576 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7577 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7578 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7579 | // The selector table. |
| 7580 | SelectorTable &Selectors = Context.Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7581 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7582 | // The property name, copied into the code completion allocation region |
| 7583 | // on demand. |
| 7584 | struct KeyHolder { |
| 7585 | CodeCompletionAllocator &Allocator; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7586 | StringRef Key; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7587 | const char *CopiedKey; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7588 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7589 | KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7590 | : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {} |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7591 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7592 | operator const char *() { |
| 7593 | if (CopiedKey) |
| 7594 | return CopiedKey; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7595 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7596 | return CopiedKey = Allocator.CopyString(Key); |
| 7597 | } |
| 7598 | } Key(Allocator, PropName->getName()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7599 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7600 | // The uppercased name of the property name. |
| 7601 | std::string UpperKey = PropName->getName(); |
| 7602 | if (!UpperKey.empty()) |
Jordan Rose | 4938f27 | 2013-02-09 10:09:43 +0000 | [diff] [blame] | 7603 | UpperKey[0] = toUppercase(UpperKey[0]); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7604 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7605 | bool ReturnTypeMatchesProperty = |
| 7606 | ReturnType.isNull() || |
| 7607 | Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(), |
| 7608 | Property->getType()); |
| 7609 | bool ReturnTypeMatchesVoid = ReturnType.isNull() || ReturnType->isVoidType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7610 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7611 | // Add the normal accessor -(type)key. |
| 7612 | if (IsInstanceMethod && |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7613 | KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7614 | ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) { |
| 7615 | if (ReturnType.isNull()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7616 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, Context, Policy, |
| 7617 | Builder); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7618 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7619 | Builder.AddTypedTextChunk(Key); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7620 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7621 | CXCursor_ObjCInstanceMethodDecl)); |
| 7622 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7623 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7624 | // If we have an integral or boolean property (or the user has provided |
| 7625 | // an integral or boolean return type), add the accessor -(type)isKey. |
| 7626 | if (IsInstanceMethod && |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7627 | ((!ReturnType.isNull() && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7628 | (ReturnType->isIntegerType() || ReturnType->isBooleanType())) || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7629 | (ReturnType.isNull() && (Property->getType()->isIntegerType() || |
| 7630 | Property->getType()->isBooleanType())))) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7631 | std::string SelectorName = (Twine("is") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7632 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7633 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7634 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7635 | if (ReturnType.isNull()) { |
| 7636 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7637 | Builder.AddTextChunk("BOOL"); |
| 7638 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7639 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7640 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7641 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7642 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7643 | CXCursor_ObjCInstanceMethodDecl)); |
| 7644 | } |
| 7645 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7646 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7647 | // Add the normal mutator. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7648 | if (IsInstanceMethod && ReturnTypeMatchesVoid && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7649 | !Property->getSetterMethodDecl()) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7650 | std::string SelectorName = (Twine("set") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7651 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7652 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7653 | if (ReturnType.isNull()) { |
| 7654 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7655 | Builder.AddTextChunk("void"); |
| 7656 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7657 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7658 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7659 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7660 | Builder.AddTypedTextChunk(":"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7661 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, Context, Policy, |
| 7662 | Builder); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7663 | Builder.AddTextChunk(Key); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7664 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7665 | CXCursor_ObjCInstanceMethodDecl)); |
| 7666 | } |
| 7667 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7668 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7669 | // Indexed and unordered accessors |
| 7670 | unsigned IndexedGetterPriority = CCP_CodePattern; |
| 7671 | unsigned IndexedSetterPriority = CCP_CodePattern; |
| 7672 | unsigned UnorderedGetterPriority = CCP_CodePattern; |
| 7673 | unsigned UnorderedSetterPriority = CCP_CodePattern; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7674 | if (const auto *ObjCPointer = |
| 7675 | Property->getType()->getAs<ObjCObjectPointerType>()) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7676 | if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) { |
| 7677 | // If this interface type is not provably derived from a known |
| 7678 | // collection, penalize the corresponding completions. |
| 7679 | if (!InheritsFromClassNamed(IFace, "NSMutableArray")) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7680 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7681 | if (!InheritsFromClassNamed(IFace, "NSArray")) |
| 7682 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7683 | } |
| 7684 | |
| 7685 | if (!InheritsFromClassNamed(IFace, "NSMutableSet")) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7686 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7687 | if (!InheritsFromClassNamed(IFace, "NSSet")) |
| 7688 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7689 | } |
| 7690 | } |
| 7691 | } else { |
| 7692 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7693 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 7694 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7695 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 7696 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7697 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7698 | // Add -(NSUInteger)countOf<key> |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7699 | if (IsInstanceMethod && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7700 | (ReturnType.isNull() || ReturnType->isIntegerType())) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7701 | std::string SelectorName = (Twine("countOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7702 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7703 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7704 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7705 | if (ReturnType.isNull()) { |
| 7706 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7707 | Builder.AddTextChunk("NSUInteger"); |
| 7708 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7709 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7710 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7711 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
| 7712 | Results.AddResult( |
| 7713 | Result(Builder.TakeString(), |
| 7714 | std::min(IndexedGetterPriority, UnorderedGetterPriority), |
| 7715 | CXCursor_ObjCInstanceMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7716 | } |
| 7717 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7718 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7719 | // Indexed getters |
| 7720 | // Add -(id)objectInKeyAtIndex:(NSUInteger)index |
| 7721 | if (IsInstanceMethod && |
| 7722 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7723 | std::string SelectorName = (Twine("objectIn") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7724 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7725 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7726 | if (ReturnType.isNull()) { |
| 7727 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7728 | Builder.AddTextChunk("id"); |
| 7729 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7730 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7731 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7732 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7733 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7734 | Builder.AddTextChunk("NSUInteger"); |
| 7735 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7736 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7737 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7738 | CXCursor_ObjCInstanceMethodDecl)); |
| 7739 | } |
| 7740 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7741 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7742 | // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes |
| 7743 | if (IsInstanceMethod && |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7744 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7745 | (ReturnType->isObjCObjectPointerType() && |
| 7746 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7747 | ReturnType->getAs<ObjCObjectPointerType>() |
| 7748 | ->getInterfaceDecl() |
| 7749 | ->getName() == "NSArray"))) { |
| 7750 | std::string SelectorName = (Twine(Property->getName()) + "AtIndexes").str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7751 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7752 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7753 | if (ReturnType.isNull()) { |
| 7754 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7755 | Builder.AddTextChunk("NSArray *"); |
| 7756 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7757 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7758 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7759 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7760 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7761 | Builder.AddTextChunk("NSIndexSet *"); |
| 7762 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7763 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7764 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7765 | CXCursor_ObjCInstanceMethodDecl)); |
| 7766 | } |
| 7767 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7768 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7769 | // Add -(void)getKey:(type **)buffer range:(NSRange)inRange |
| 7770 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7771 | std::string SelectorName = (Twine("get") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7772 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7773 | &Context.Idents.get("range")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7774 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7775 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7776 | if (ReturnType.isNull()) { |
| 7777 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7778 | Builder.AddTextChunk("void"); |
| 7779 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7780 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7781 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7782 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7783 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7784 | Builder.AddPlaceholderChunk("object-type"); |
| 7785 | Builder.AddTextChunk(" **"); |
| 7786 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7787 | Builder.AddTextChunk("buffer"); |
| 7788 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7789 | Builder.AddTypedTextChunk("range:"); |
| 7790 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7791 | Builder.AddTextChunk("NSRange"); |
| 7792 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7793 | Builder.AddTextChunk("inRange"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7794 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7795 | CXCursor_ObjCInstanceMethodDecl)); |
| 7796 | } |
| 7797 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7798 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7799 | // Mutable indexed accessors |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7800 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7801 | // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index |
| 7802 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7803 | std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7804 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get("insertObject"), |
| 7805 | &Context.Idents.get(SelectorName)}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7806 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7807 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7808 | if (ReturnType.isNull()) { |
| 7809 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7810 | Builder.AddTextChunk("void"); |
| 7811 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7812 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7813 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7814 | Builder.AddTypedTextChunk("insertObject:"); |
| 7815 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7816 | Builder.AddPlaceholderChunk("object-type"); |
| 7817 | Builder.AddTextChunk(" *"); |
| 7818 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7819 | Builder.AddTextChunk("object"); |
| 7820 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7821 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7822 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7823 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 7824 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7825 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7826 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7827 | CXCursor_ObjCInstanceMethodDecl)); |
| 7828 | } |
| 7829 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7830 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7831 | // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes |
| 7832 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7833 | std::string SelectorName = (Twine("insert") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7834 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7835 | &Context.Idents.get("atIndexes")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7836 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7837 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7838 | if (ReturnType.isNull()) { |
| 7839 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7840 | Builder.AddTextChunk("void"); |
| 7841 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7842 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7843 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7844 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7845 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7846 | Builder.AddTextChunk("NSArray *"); |
| 7847 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7848 | Builder.AddTextChunk("array"); |
| 7849 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7850 | Builder.AddTypedTextChunk("atIndexes:"); |
| 7851 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7852 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 7853 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7854 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7855 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7856 | CXCursor_ObjCInstanceMethodDecl)); |
| 7857 | } |
| 7858 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7859 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7860 | // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index |
| 7861 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7862 | std::string SelectorName = |
| 7863 | (Twine("removeObjectFrom") + UpperKey + "AtIndex").str(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7864 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7865 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7866 | if (ReturnType.isNull()) { |
| 7867 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7868 | Builder.AddTextChunk("void"); |
| 7869 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7870 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7871 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7872 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7873 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7874 | Builder.AddTextChunk("NSUInteger"); |
| 7875 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7876 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7877 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7878 | CXCursor_ObjCInstanceMethodDecl)); |
| 7879 | } |
| 7880 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7881 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7882 | // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes |
| 7883 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7884 | std::string SelectorName = (Twine("remove") + UpperKey + "AtIndexes").str(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7885 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7886 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7887 | if (ReturnType.isNull()) { |
| 7888 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7889 | Builder.AddTextChunk("void"); |
| 7890 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7891 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7892 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7893 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7894 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7895 | Builder.AddTextChunk("NSIndexSet *"); |
| 7896 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7897 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7898 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7899 | CXCursor_ObjCInstanceMethodDecl)); |
| 7900 | } |
| 7901 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7902 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7903 | // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object |
| 7904 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7905 | std::string SelectorName = |
| 7906 | (Twine("replaceObjectIn") + UpperKey + "AtIndex").str(); |
| 7907 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7908 | &Context.Idents.get("withObject")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7909 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7910 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7911 | if (ReturnType.isNull()) { |
| 7912 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7913 | Builder.AddTextChunk("void"); |
| 7914 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7915 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7916 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7917 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7918 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7919 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 7920 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7921 | Builder.AddTextChunk("index"); |
| 7922 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7923 | Builder.AddTypedTextChunk("withObject:"); |
| 7924 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7925 | Builder.AddTextChunk("id"); |
| 7926 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7927 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7928 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7929 | CXCursor_ObjCInstanceMethodDecl)); |
| 7930 | } |
| 7931 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7932 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7933 | // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array |
| 7934 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7935 | std::string SelectorName1 = |
| 7936 | (Twine("replace") + UpperKey + "AtIndexes").str(); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7937 | std::string SelectorName2 = (Twine("with") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7938 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName1), |
| 7939 | &Context.Idents.get(SelectorName2)}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7940 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7941 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7942 | if (ReturnType.isNull()) { |
| 7943 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7944 | Builder.AddTextChunk("void"); |
| 7945 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7946 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7947 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7948 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":")); |
| 7949 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7950 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 7951 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7952 | Builder.AddTextChunk("indexes"); |
| 7953 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7954 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":")); |
| 7955 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7956 | Builder.AddTextChunk("NSArray *"); |
| 7957 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7958 | Builder.AddTextChunk("array"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7959 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7960 | CXCursor_ObjCInstanceMethodDecl)); |
| 7961 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7962 | } |
| 7963 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7964 | // Unordered getters |
| 7965 | // - (NSEnumerator *)enumeratorOfKey |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7966 | if (IsInstanceMethod && |
| 7967 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7968 | (ReturnType->isObjCObjectPointerType() && |
| 7969 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7970 | ReturnType->getAs<ObjCObjectPointerType>() |
| 7971 | ->getInterfaceDecl() |
| 7972 | ->getName() == "NSEnumerator"))) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7973 | std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7974 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7975 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7976 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7977 | if (ReturnType.isNull()) { |
| 7978 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7979 | Builder.AddTextChunk("NSEnumerator *"); |
| 7980 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7981 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7982 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7983 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7984 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7985 | CXCursor_ObjCInstanceMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7986 | } |
| 7987 | } |
| 7988 | |
| 7989 | // - (type *)memberOfKey:(type *)object |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7990 | if (IsInstanceMethod && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7991 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7992 | std::string SelectorName = (Twine("memberOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7993 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7994 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7995 | if (ReturnType.isNull()) { |
| 7996 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7997 | Builder.AddPlaceholderChunk("object-type"); |
| 7998 | Builder.AddTextChunk(" *"); |
| 7999 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8000 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8001 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8002 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8003 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8004 | if (ReturnType.isNull()) { |
| 8005 | Builder.AddPlaceholderChunk("object-type"); |
| 8006 | Builder.AddTextChunk(" *"); |
| 8007 | } else { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8008 | Builder.AddTextChunk(GetCompletionTypeString( |
| 8009 | ReturnType, Context, Policy, Builder.getAllocator())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8010 | } |
| 8011 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8012 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8013 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8014 | CXCursor_ObjCInstanceMethodDecl)); |
| 8015 | } |
| 8016 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8017 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8018 | // Mutable unordered accessors |
| 8019 | // - (void)addKeyObject:(type *)object |
| 8020 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8021 | std::string SelectorName = |
| 8022 | (Twine("add") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8023 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8024 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8025 | if (ReturnType.isNull()) { |
| 8026 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8027 | Builder.AddTextChunk("void"); |
| 8028 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8029 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8030 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8031 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8032 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8033 | Builder.AddPlaceholderChunk("object-type"); |
| 8034 | Builder.AddTextChunk(" *"); |
| 8035 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8036 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8037 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8038 | CXCursor_ObjCInstanceMethodDecl)); |
| 8039 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8040 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8041 | |
| 8042 | // - (void)addKey:(NSSet *)objects |
| 8043 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8044 | std::string SelectorName = (Twine("add") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8045 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8046 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8047 | if (ReturnType.isNull()) { |
| 8048 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8049 | Builder.AddTextChunk("void"); |
| 8050 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8051 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8052 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8053 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8054 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8055 | Builder.AddTextChunk("NSSet *"); |
| 8056 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8057 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8058 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8059 | CXCursor_ObjCInstanceMethodDecl)); |
| 8060 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8061 | } |
| 8062 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8063 | // - (void)removeKeyObject:(type *)object |
| 8064 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8065 | std::string SelectorName = |
| 8066 | (Twine("remove") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8067 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8068 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8069 | if (ReturnType.isNull()) { |
| 8070 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8071 | Builder.AddTextChunk("void"); |
| 8072 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8073 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8074 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8075 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8076 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8077 | Builder.AddPlaceholderChunk("object-type"); |
| 8078 | Builder.AddTextChunk(" *"); |
| 8079 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8080 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8081 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8082 | CXCursor_ObjCInstanceMethodDecl)); |
| 8083 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8084 | } |
| 8085 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8086 | // - (void)removeKey:(NSSet *)objects |
| 8087 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8088 | std::string SelectorName = (Twine("remove") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8089 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8090 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8091 | if (ReturnType.isNull()) { |
| 8092 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8093 | Builder.AddTextChunk("void"); |
| 8094 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8095 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8096 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8097 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8098 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8099 | Builder.AddTextChunk("NSSet *"); |
| 8100 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8101 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8102 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8103 | CXCursor_ObjCInstanceMethodDecl)); |
| 8104 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8105 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8106 | |
| 8107 | // - (void)intersectKey:(NSSet *)objects |
| 8108 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8109 | std::string SelectorName = (Twine("intersect") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8110 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8111 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8112 | if (ReturnType.isNull()) { |
| 8113 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8114 | Builder.AddTextChunk("void"); |
| 8115 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8116 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8117 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8118 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8119 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8120 | Builder.AddTextChunk("NSSet *"); |
| 8121 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8122 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8123 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8124 | CXCursor_ObjCInstanceMethodDecl)); |
| 8125 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8126 | } |
| 8127 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8128 | // Key-Value Observing |
| 8129 | // + (NSSet *)keyPathsForValuesAffectingKey |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8130 | if (!IsInstanceMethod && |
| 8131 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8132 | (ReturnType->isObjCObjectPointerType() && |
| 8133 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8134 | ReturnType->getAs<ObjCObjectPointerType>() |
| 8135 | ->getInterfaceDecl() |
| 8136 | ->getName() == "NSSet"))) { |
| 8137 | std::string SelectorName = |
| 8138 | (Twine("keyPathsForValuesAffecting") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8139 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8140 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 8141 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8142 | if (ReturnType.isNull()) { |
| 8143 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Alex Lorenz | 71ecb07 | 2016-12-08 16:49:05 +0000 | [diff] [blame] | 8144 | Builder.AddTextChunk("NSSet<NSString *> *"); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8145 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8146 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8147 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8148 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8149 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8150 | CXCursor_ObjCClassMethodDecl)); |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8151 | } |
| 8152 | } |
| 8153 | |
| 8154 | // + (BOOL)automaticallyNotifiesObserversForKey |
| 8155 | if (!IsInstanceMethod && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8156 | (ReturnType.isNull() || ReturnType->isIntegerType() || |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8157 | ReturnType->isBooleanType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8158 | std::string SelectorName = |
| 8159 | (Twine("automaticallyNotifiesObserversOf") + UpperKey).str(); |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8160 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8161 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 8162 | .second) { |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8163 | if (ReturnType.isNull()) { |
| 8164 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8165 | Builder.AddTextChunk("BOOL"); |
| 8166 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8167 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8168 | |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8169 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8170 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8171 | CXCursor_ObjCClassMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8172 | } |
| 8173 | } |
| 8174 | } |
| 8175 | |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8176 | void Sema::CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod, |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8177 | ParsedType ReturnTy) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8178 | // Determine the return type of the method we're declaring, if |
| 8179 | // provided. |
| 8180 | QualType ReturnType = GetTypeFromParser(ReturnTy); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8181 | Decl *IDecl = nullptr; |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8182 | if (CurContext->isObjCContainer()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8183 | ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); |
| 8184 | IDecl = OCD; |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8185 | } |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8186 | // Determine where we should start searching for methods. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8187 | ObjCContainerDecl *SearchDecl = nullptr; |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8188 | bool IsInImplementation = false; |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8189 | if (Decl *D = IDecl) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8190 | if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) { |
| 8191 | SearchDecl = Impl->getClassInterface(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8192 | IsInImplementation = true; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8193 | } else if (ObjCCategoryImplDecl *CatImpl = |
| 8194 | dyn_cast<ObjCCategoryImplDecl>(D)) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8195 | SearchDecl = CatImpl->getCategoryDecl(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8196 | IsInImplementation = true; |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8197 | } else |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8198 | SearchDecl = dyn_cast<ObjCContainerDecl>(D); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8199 | } |
| 8200 | |
| 8201 | if (!SearchDecl && S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 8202 | if (DeclContext *DC = S->getEntity()) |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8203 | SearchDecl = dyn_cast<ObjCContainerDecl>(DC); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8204 | } |
| 8205 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8206 | if (!SearchDecl) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8207 | HandleCodeCompleteResults(this, CodeCompleter, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8208 | CodeCompletionContext::CCC_Other, nullptr, 0); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8209 | return; |
| 8210 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8211 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8212 | // Find all of the methods that we could declare/implement here. |
| 8213 | KnownMethodsMap KnownMethods; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8214 | FindImplementableMethods(Context, SearchDecl, IsInstanceMethod, ReturnType, |
| 8215 | KnownMethods); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8216 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8217 | // Add declarations or definitions for each of the known methods. |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 8218 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8219 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8220 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8221 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8222 | Results.EnterNewScope(); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 8223 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8224 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8225 | MEnd = KnownMethods.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8226 | M != MEnd; ++M) { |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 8227 | ObjCMethodDecl *Method = M->second.getPointer(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8228 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8229 | Results.getCodeCompletionTUInfo()); |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8230 | |
| 8231 | // Add the '-'/'+' prefix if it wasn't provided yet. |
| 8232 | if (!IsInstanceMethod) { |
| 8233 | Builder.AddTextChunk(Method->isInstanceMethod() ? "-" : "+"); |
| 8234 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8235 | } |
| 8236 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8237 | // If the result type was not already provided, add it to the |
| 8238 | // pattern as (type). |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8239 | if (ReturnType.isNull()) { |
| 8240 | QualType ResTy = Method->getSendResultType().stripObjCKindOfType(Context); |
| 8241 | AttributedType::stripOuterNullability(ResTy); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8242 | AddObjCPassingTypeChunk(ResTy, Method->getObjCDeclQualifier(), Context, |
| 8243 | Policy, Builder); |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8244 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8245 | |
| 8246 | Selector Sel = Method->getSelector(); |
| 8247 | |
| 8248 | // Add the first part of the selector to the pattern. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8249 | Builder.AddTypedTextChunk( |
| 8250 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8251 | |
| 8252 | // Add parameters to the pattern. |
| 8253 | unsigned I = 0; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8254 | for (ObjCMethodDecl::param_iterator P = Method->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8255 | PEnd = Method->param_end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8256 | P != PEnd; (void)++P, ++I) { |
| 8257 | // Add the part of the selector name. |
| 8258 | if (I == 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8259 | Builder.AddTypedTextChunk(":"); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8260 | else if (I < Sel.getNumArgs()) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8261 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8262 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8263 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8264 | } else |
| 8265 | break; |
| 8266 | |
| 8267 | // Add the parameter type. |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 8268 | QualType ParamType; |
| 8269 | if ((*P)->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) |
| 8270 | ParamType = (*P)->getType(); |
| 8271 | else |
| 8272 | ParamType = (*P)->getOriginalType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8273 | ParamType = ParamType.substObjCTypeArgs( |
| 8274 | Context, {}, ObjCSubstitutionContext::Parameter); |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8275 | AttributedType::stripOuterNullability(ParamType); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8276 | AddObjCPassingTypeChunk(ParamType, (*P)->getObjCDeclQualifier(), Context, |
| 8277 | Policy, Builder); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8278 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8279 | if (IdentifierInfo *Id = (*P)->getIdentifier()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8280 | Builder.AddTextChunk(Builder.getAllocator().CopyString(Id->getName())); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8281 | } |
| 8282 | |
| 8283 | if (Method->isVariadic()) { |
| 8284 | if (Method->param_size() > 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8285 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 8286 | Builder.AddTextChunk("..."); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8287 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8288 | |
Douglas Gregor | d37c59d | 2010-05-28 00:57:46 +0000 | [diff] [blame] | 8289 | if (IsInImplementation && Results.includeCodePatterns()) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8290 | // We will be defining the method here, so add a compound statement. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8291 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8292 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 8293 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 8294 | if (!Method->getReturnType()->isVoidType()) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8295 | // If the result type is not void, add a return clause. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8296 | Builder.AddTextChunk("return"); |
| 8297 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8298 | Builder.AddPlaceholderChunk("expression"); |
| 8299 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8300 | } else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8301 | Builder.AddPlaceholderChunk("statements"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8302 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8303 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 8304 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8305 | } |
| 8306 | |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 8307 | unsigned Priority = CCP_CodePattern; |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 8308 | auto R = Result(Builder.TakeString(), Method, Priority); |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 8309 | if (!M->second.getInt()) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 8310 | setInBaseClass(R); |
| 8311 | Results.AddResult(std::move(R)); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8312 | } |
| 8313 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8314 | // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8315 | // the properties in this class and its categories. |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 8316 | if (Context.getLangOpts().ObjC) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8317 | SmallVector<ObjCContainerDecl *, 4> Containers; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8318 | Containers.push_back(SearchDecl); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8319 | |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 8320 | VisitedSelectorSet KnownSelectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8321 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8322 | MEnd = KnownMethods.end(); |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 8323 | M != MEnd; ++M) |
| 8324 | KnownSelectors.insert(M->first); |
| 8325 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8326 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl); |
| 8327 | if (!IFace) |
| 8328 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl)) |
| 8329 | IFace = Category->getClassInterface(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8330 | |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 8331 | if (IFace) |
| 8332 | for (auto *Cat : IFace->visible_categories()) |
| 8333 | Containers.push_back(Cat); |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8334 | |
| 8335 | if (IsInstanceMethod) { |
| 8336 | for (unsigned I = 0, N = Containers.size(); I != N; ++I) |
| 8337 | for (auto *P : Containers[I]->instance_properties()) |
| 8338 | AddObjCKeyValueCompletions(P, *IsInstanceMethod, ReturnType, Context, |
| 8339 | KnownSelectors, Results); |
| 8340 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8341 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8342 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8343 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8344 | |
| 8345 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8346 | Results.data(), Results.size()); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8347 | } |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8348 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8349 | void Sema::CodeCompleteObjCMethodDeclSelector( |
| 8350 | Scope *S, bool IsInstanceMethod, bool AtParameterName, ParsedType ReturnTy, |
| 8351 | ArrayRef<IdentifierInfo *> SelIdents) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8352 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 8353 | // pool from the AST file. |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8354 | if (ExternalSource) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8355 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); I != N; |
| 8356 | ++I) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8357 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8358 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8359 | continue; |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8360 | |
| 8361 | ReadMethodPool(Sel); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8362 | } |
| 8363 | } |
| 8364 | |
| 8365 | // Build the set of methods we can see. |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 8366 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8367 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8368 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8369 | CodeCompletionContext::CCC_Other); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8370 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8371 | if (ReturnTy) |
| 8372 | Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType()); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8373 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8374 | Results.EnterNewScope(); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8375 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 8376 | MEnd = MethodPool.end(); |
| 8377 | M != MEnd; ++M) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8378 | for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first |
| 8379 | : &M->second.second; |
| 8380 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8381 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8382 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8383 | |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8384 | if (AtParameterName) { |
| 8385 | // Suggest parameter names we've seen before. |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 8386 | unsigned NumSelIdents = SelIdents.size(); |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8387 | if (NumSelIdents && |
| 8388 | NumSelIdents <= MethList->getMethod()->param_size()) { |
| 8389 | ParmVarDecl *Param = |
| 8390 | MethList->getMethod()->parameters()[NumSelIdents - 1]; |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8391 | if (Param->getIdentifier()) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8392 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8393 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 8394 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8395 | Param->getIdentifier()->getName())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8396 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8397 | } |
| 8398 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8399 | |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8400 | continue; |
| 8401 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8402 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8403 | Result R(MethList->getMethod(), |
| 8404 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 8405 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8406 | R.AllParametersAreInformative = false; |
| 8407 | R.DeclaringEntity = true; |
| 8408 | Results.MaybeAddResult(R, CurContext); |
| 8409 | } |
| 8410 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8411 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8412 | Results.ExitScope(); |
Alex Lorenz | 847fda1 | 2017-01-03 11:56:40 +0000 | [diff] [blame] | 8413 | |
| 8414 | if (!AtParameterName && !SelIdents.empty() && |
| 8415 | SelIdents.front()->getName().startswith("init")) { |
| 8416 | for (const auto &M : PP.macros()) { |
| 8417 | if (M.first->getName() != "NS_DESIGNATED_INITIALIZER") |
| 8418 | continue; |
| 8419 | Results.EnterNewScope(); |
| 8420 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8421 | Results.getCodeCompletionTUInfo()); |
| 8422 | Builder.AddTypedTextChunk( |
| 8423 | Builder.getAllocator().CopyString(M.first->getName())); |
| 8424 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), CCP_Macro, |
| 8425 | CXCursor_MacroDefinition)); |
| 8426 | Results.ExitScope(); |
| 8427 | } |
| 8428 | } |
| 8429 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8430 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8431 | Results.data(), Results.size()); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8432 | } |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8433 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8434 | void Sema::CodeCompletePreprocessorDirective(bool InConditional) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8435 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8436 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8437 | CodeCompletionContext::CCC_PreprocessorDirective); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8438 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8439 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8440 | // #if <condition> |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8441 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8442 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8443 | Builder.AddTypedTextChunk("if"); |
| 8444 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8445 | Builder.AddPlaceholderChunk("condition"); |
| 8446 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8447 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8448 | // #ifdef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8449 | Builder.AddTypedTextChunk("ifdef"); |
| 8450 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8451 | Builder.AddPlaceholderChunk("macro"); |
| 8452 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8453 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8454 | // #ifndef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8455 | Builder.AddTypedTextChunk("ifndef"); |
| 8456 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8457 | Builder.AddPlaceholderChunk("macro"); |
| 8458 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8459 | |
| 8460 | if (InConditional) { |
| 8461 | // #elif <condition> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8462 | Builder.AddTypedTextChunk("elif"); |
| 8463 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8464 | Builder.AddPlaceholderChunk("condition"); |
| 8465 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8466 | |
| 8467 | // #else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8468 | Builder.AddTypedTextChunk("else"); |
| 8469 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8470 | |
| 8471 | // #endif |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8472 | Builder.AddTypedTextChunk("endif"); |
| 8473 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8474 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8475 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8476 | // #include "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8477 | Builder.AddTypedTextChunk("include"); |
| 8478 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8479 | Builder.AddTextChunk("\""); |
| 8480 | Builder.AddPlaceholderChunk("header"); |
| 8481 | Builder.AddTextChunk("\""); |
| 8482 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8483 | |
| 8484 | // #include <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8485 | Builder.AddTypedTextChunk("include"); |
| 8486 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8487 | Builder.AddTextChunk("<"); |
| 8488 | Builder.AddPlaceholderChunk("header"); |
| 8489 | Builder.AddTextChunk(">"); |
| 8490 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8491 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8492 | // #define <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8493 | Builder.AddTypedTextChunk("define"); |
| 8494 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8495 | Builder.AddPlaceholderChunk("macro"); |
| 8496 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8497 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8498 | // #define <macro>(<args>) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8499 | Builder.AddTypedTextChunk("define"); |
| 8500 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8501 | Builder.AddPlaceholderChunk("macro"); |
| 8502 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8503 | Builder.AddPlaceholderChunk("args"); |
| 8504 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8505 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8506 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8507 | // #undef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8508 | Builder.AddTypedTextChunk("undef"); |
| 8509 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8510 | Builder.AddPlaceholderChunk("macro"); |
| 8511 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8512 | |
| 8513 | // #line <number> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8514 | Builder.AddTypedTextChunk("line"); |
| 8515 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8516 | Builder.AddPlaceholderChunk("number"); |
| 8517 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8518 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8519 | // #line <number> "filename" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8520 | Builder.AddTypedTextChunk("line"); |
| 8521 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8522 | Builder.AddPlaceholderChunk("number"); |
| 8523 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8524 | Builder.AddTextChunk("\""); |
| 8525 | Builder.AddPlaceholderChunk("filename"); |
| 8526 | Builder.AddTextChunk("\""); |
| 8527 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8528 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8529 | // #error <message> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8530 | Builder.AddTypedTextChunk("error"); |
| 8531 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8532 | Builder.AddPlaceholderChunk("message"); |
| 8533 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8534 | |
| 8535 | // #pragma <arguments> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8536 | Builder.AddTypedTextChunk("pragma"); |
| 8537 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8538 | Builder.AddPlaceholderChunk("arguments"); |
| 8539 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8540 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 8541 | if (getLangOpts().ObjC) { |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8542 | // #import "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8543 | Builder.AddTypedTextChunk("import"); |
| 8544 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8545 | Builder.AddTextChunk("\""); |
| 8546 | Builder.AddPlaceholderChunk("header"); |
| 8547 | Builder.AddTextChunk("\""); |
| 8548 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8549 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8550 | // #import <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8551 | Builder.AddTypedTextChunk("import"); |
| 8552 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8553 | Builder.AddTextChunk("<"); |
| 8554 | Builder.AddPlaceholderChunk("header"); |
| 8555 | Builder.AddTextChunk(">"); |
| 8556 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8557 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8558 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8559 | // #include_next "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8560 | Builder.AddTypedTextChunk("include_next"); |
| 8561 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8562 | Builder.AddTextChunk("\""); |
| 8563 | Builder.AddPlaceholderChunk("header"); |
| 8564 | Builder.AddTextChunk("\""); |
| 8565 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8566 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8567 | // #include_next <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8568 | Builder.AddTypedTextChunk("include_next"); |
| 8569 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8570 | Builder.AddTextChunk("<"); |
| 8571 | Builder.AddPlaceholderChunk("header"); |
| 8572 | Builder.AddTextChunk(">"); |
| 8573 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8574 | |
| 8575 | // #warning <message> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8576 | Builder.AddTypedTextChunk("warning"); |
| 8577 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8578 | Builder.AddPlaceholderChunk("message"); |
| 8579 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8580 | |
| 8581 | // Note: #ident and #sccs are such crazy anachronisms that we don't provide |
| 8582 | // completions for them. And __include_macros is a Clang-internal extension |
| 8583 | // that we don't want to encourage anyone to use. |
| 8584 | |
| 8585 | // FIXME: we don't support #assert or #unassert, so don't suggest them. |
| 8586 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8587 | |
| 8588 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8589 | Results.data(), Results.size()); |
| 8590 | } |
| 8591 | |
| 8592 | void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8593 | CodeCompleteOrdinaryName(S, S->getFnParent() ? Sema::PCC_RecoveryInFunction |
| 8594 | : Sema::PCC_Namespace); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8595 | } |
| 8596 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8597 | void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8598 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8599 | CodeCompleter->getCodeCompletionTUInfo(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8600 | IsDefinition ? CodeCompletionContext::CCC_MacroName |
| 8601 | : CodeCompletionContext::CCC_MacroNameUse); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8602 | if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8603 | // Add just the names of macros, not their arguments. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8604 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8605 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8606 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8607 | for (Preprocessor::macro_iterator M = PP.macro_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8608 | MEnd = PP.macro_end(); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8609 | M != MEnd; ++M) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8610 | Builder.AddTypedTextChunk( |
| 8611 | Builder.getAllocator().CopyString(M->first->getName())); |
| 8612 | Results.AddResult(CodeCompletionResult( |
| 8613 | Builder.TakeString(), CCP_CodePattern, CXCursor_MacroDefinition)); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8614 | } |
| 8615 | Results.ExitScope(); |
| 8616 | } else if (IsDefinition) { |
| 8617 | // FIXME: Can we detect when the user just wrote an include guard above? |
| 8618 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8619 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8620 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8621 | Results.data(), Results.size()); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8622 | } |
| 8623 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8624 | void Sema::CodeCompletePreprocessorExpression() { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8625 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8626 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8627 | CodeCompletionContext::CCC_PreprocessorExpression); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8628 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8629 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 8630 | AddMacroResults(PP, Results, |
Sam McCall | 36082e3 | 2019-07-18 07:17:49 +0000 | [diff] [blame] | 8631 | !CodeCompleter || CodeCompleter->loadExternal(), true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8632 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8633 | // defined (<macro>) |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8634 | Results.EnterNewScope(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8635 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8636 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8637 | Builder.AddTypedTextChunk("defined"); |
| 8638 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8639 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8640 | Builder.AddPlaceholderChunk("macro"); |
| 8641 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8642 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8643 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8644 | |
| 8645 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8646 | Results.data(), Results.size()); |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8647 | } |
| 8648 | |
| 8649 | void Sema::CodeCompletePreprocessorMacroArgument(Scope *S, |
| 8650 | IdentifierInfo *Macro, |
| 8651 | MacroInfo *MacroInfo, |
| 8652 | unsigned Argument) { |
| 8653 | // FIXME: In the future, we could provide "overload" results, much like we |
| 8654 | // do for function calls. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8655 | |
Argyrios Kyrtzidis | 75f6cd2 | 2011-08-18 19:41:28 +0000 | [diff] [blame] | 8656 | // Now just ignore this. There will be another code-completion callback |
| 8657 | // for the expanded tokens. |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8658 | } |
| 8659 | |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8660 | // This handles completion inside an #include filename, e.g. #include <foo/ba |
| 8661 | // We look for the directory "foo" under each directory on the include path, |
| 8662 | // list its files, and reassemble the appropriate #include. |
| 8663 | void Sema::CodeCompleteIncludedFile(llvm::StringRef Dir, bool Angled) { |
| 8664 | // RelDir should use /, but unescaped \ is possible on windows! |
| 8665 | // Our completions will normalize to / for simplicity, this case is rare. |
| 8666 | std::string RelDir = llvm::sys::path::convert_to_slash(Dir); |
| 8667 | // We need the native slashes for the actual file system interactions. |
| 8668 | SmallString<128> NativeRelDir = StringRef(RelDir); |
| 8669 | llvm::sys::path::native(NativeRelDir); |
Duncan P. N. Exon Smith | db8a742 | 2019-03-26 22:32:06 +0000 | [diff] [blame] | 8670 | llvm::vfs::FileSystem &FS = |
| 8671 | getSourceManager().getFileManager().getVirtualFileSystem(); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8672 | |
| 8673 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 8674 | CodeCompleter->getCodeCompletionTUInfo(), |
| 8675 | CodeCompletionContext::CCC_IncludedFile); |
| 8676 | llvm::DenseSet<StringRef> SeenResults; // To deduplicate results. |
| 8677 | |
| 8678 | // Helper: adds one file or directory completion result. |
| 8679 | auto AddCompletion = [&](StringRef Filename, bool IsDirectory) { |
| 8680 | SmallString<64> TypedChunk = Filename; |
| 8681 | // Directory completion is up to the slash, e.g. <sys/ |
| 8682 | TypedChunk.push_back(IsDirectory ? '/' : Angled ? '>' : '"'); |
| 8683 | auto R = SeenResults.insert(TypedChunk); |
| 8684 | if (R.second) { // New completion |
| 8685 | const char *InternedTyped = Results.getAllocator().CopyString(TypedChunk); |
| 8686 | *R.first = InternedTyped; // Avoid dangling StringRef. |
| 8687 | CodeCompletionBuilder Builder(CodeCompleter->getAllocator(), |
| 8688 | CodeCompleter->getCodeCompletionTUInfo()); |
| 8689 | Builder.AddTypedTextChunk(InternedTyped); |
| 8690 | // The result is a "Pattern", which is pretty opaque. |
| 8691 | // We may want to include the real filename to allow smart ranking. |
| 8692 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 8693 | } |
| 8694 | }; |
| 8695 | |
| 8696 | // Helper: scans IncludeDir for nice files, and adds results for each. |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8697 | auto AddFilesFromIncludeDir = [&](StringRef IncludeDir, |
| 8698 | bool IsSystem, |
| 8699 | DirectoryLookup::LookupType_t LookupType) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8700 | llvm::SmallString<128> Dir = IncludeDir; |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8701 | if (!NativeRelDir.empty()) { |
| 8702 | if (LookupType == DirectoryLookup::LT_Framework) { |
| 8703 | // For a framework dir, #include <Foo/Bar/> actually maps to |
| 8704 | // a path of Foo.framework/Headers/Bar/. |
| 8705 | auto Begin = llvm::sys::path::begin(NativeRelDir); |
| 8706 | auto End = llvm::sys::path::end(NativeRelDir); |
| 8707 | |
| 8708 | llvm::sys::path::append(Dir, *Begin + ".framework", "Headers"); |
| 8709 | llvm::sys::path::append(Dir, ++Begin, End); |
| 8710 | } else { |
| 8711 | llvm::sys::path::append(Dir, NativeRelDir); |
| 8712 | } |
| 8713 | } |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8714 | |
| 8715 | std::error_code EC; |
| 8716 | unsigned Count = 0; |
Duncan P. N. Exon Smith | db8a742 | 2019-03-26 22:32:06 +0000 | [diff] [blame] | 8717 | for (auto It = FS.dir_begin(Dir, EC); |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 8718 | !EC && It != llvm::vfs::directory_iterator(); It.increment(EC)) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8719 | if (++Count == 2500) // If we happen to hit a huge directory, |
| 8720 | break; // bail out early so we're not too slow. |
| 8721 | StringRef Filename = llvm::sys::path::filename(It->path()); |
| 8722 | switch (It->type()) { |
| 8723 | case llvm::sys::fs::file_type::directory_file: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8724 | // All entries in a framework directory must have a ".framework" suffix, |
| 8725 | // but the suffix does not appear in the source code's include/import. |
| 8726 | if (LookupType == DirectoryLookup::LT_Framework && |
| 8727 | NativeRelDir.empty() && !Filename.consume_back(".framework")) |
| 8728 | break; |
| 8729 | |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8730 | AddCompletion(Filename, /*IsDirectory=*/true); |
| 8731 | break; |
| 8732 | case llvm::sys::fs::file_type::regular_file: |
| 8733 | // Only files that really look like headers. (Except in system dirs). |
| 8734 | if (!IsSystem) { |
| 8735 | // Header extensions from Types.def, which we can't depend on here. |
| 8736 | if (!(Filename.endswith_lower(".h") || |
| 8737 | Filename.endswith_lower(".hh") || |
| 8738 | Filename.endswith_lower(".hpp") || |
| 8739 | Filename.endswith_lower(".inc"))) |
| 8740 | break; |
| 8741 | } |
| 8742 | AddCompletion(Filename, /*IsDirectory=*/false); |
| 8743 | break; |
| 8744 | default: |
| 8745 | break; |
| 8746 | } |
| 8747 | } |
| 8748 | }; |
| 8749 | |
| 8750 | // Helper: adds results relative to IncludeDir, if possible. |
| 8751 | auto AddFilesFromDirLookup = [&](const DirectoryLookup &IncludeDir, |
| 8752 | bool IsSystem) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8753 | switch (IncludeDir.getLookupType()) { |
| 8754 | case DirectoryLookup::LT_HeaderMap: |
| 8755 | // header maps are not (currently) enumerable. |
| 8756 | break; |
| 8757 | case DirectoryLookup::LT_NormalDir: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8758 | AddFilesFromIncludeDir(IncludeDir.getDir()->getName(), IsSystem, |
| 8759 | DirectoryLookup::LT_NormalDir); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8760 | break; |
| 8761 | case DirectoryLookup::LT_Framework: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8762 | AddFilesFromIncludeDir(IncludeDir.getFrameworkDir()->getName(), IsSystem, |
| 8763 | DirectoryLookup::LT_Framework); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8764 | break; |
| 8765 | } |
| 8766 | }; |
| 8767 | |
| 8768 | // Finally with all our helpers, we can scan the include path. |
| 8769 | // Do this in standard order so deduplication keeps the right file. |
| 8770 | // (In case we decide to add more details to the results later). |
| 8771 | const auto &S = PP.getHeaderSearchInfo(); |
| 8772 | using llvm::make_range; |
| 8773 | if (!Angled) { |
| 8774 | // The current directory is on the include path for "quoted" includes. |
| 8775 | auto *CurFile = PP.getCurrentFileLexer()->getFileEntry(); |
| 8776 | if (CurFile && CurFile->getDir()) |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8777 | AddFilesFromIncludeDir(CurFile->getDir()->getName(), false, |
| 8778 | DirectoryLookup::LT_NormalDir); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8779 | for (const auto &D : make_range(S.quoted_dir_begin(), S.quoted_dir_end())) |
| 8780 | AddFilesFromDirLookup(D, false); |
| 8781 | } |
| 8782 | for (const auto &D : make_range(S.angled_dir_begin(), S.angled_dir_end())) |
Sam McCall | 3e4f5eb | 2018-10-01 11:56:42 +0000 | [diff] [blame] | 8783 | AddFilesFromDirLookup(D, false); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8784 | for (const auto &D : make_range(S.system_dir_begin(), S.system_dir_end())) |
| 8785 | AddFilesFromDirLookup(D, true); |
| 8786 | |
| 8787 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8788 | Results.data(), Results.size()); |
| 8789 | } |
| 8790 | |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8791 | void Sema::CodeCompleteNaturalLanguage() { |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8792 | HandleCodeCompleteResults(this, CodeCompleter, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8793 | CodeCompletionContext::CCC_NaturalLanguage, nullptr, |
| 8794 | 0); |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8795 | } |
| 8796 | |
Alex Lorenz | f7f6f82 | 2017-05-09 16:05:04 +0000 | [diff] [blame] | 8797 | void Sema::CodeCompleteAvailabilityPlatformName() { |
| 8798 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 8799 | CodeCompleter->getCodeCompletionTUInfo(), |
| 8800 | CodeCompletionContext::CCC_Other); |
| 8801 | Results.EnterNewScope(); |
| 8802 | static const char *Platforms[] = {"macOS", "iOS", "watchOS", "tvOS"}; |
| 8803 | for (const char *Platform : llvm::makeArrayRef(Platforms)) { |
| 8804 | Results.AddResult(CodeCompletionResult(Platform)); |
| 8805 | Results.AddResult(CodeCompletionResult(Results.getAllocator().CopyString( |
| 8806 | Twine(Platform) + "ApplicationExtension"))); |
| 8807 | } |
| 8808 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8809 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8810 | Results.data(), Results.size()); |
Alex Lorenz | f7f6f82 | 2017-05-09 16:05:04 +0000 | [diff] [blame] | 8811 | } |
| 8812 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8813 | void Sema::GatherGlobalCodeCompletions( |
| 8814 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 8815 | SmallVectorImpl<CodeCompletionResult> &Results) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8816 | ResultBuilder Builder(*this, Allocator, CCTUInfo, |
| 8817 | CodeCompletionContext::CCC_Recovery); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8818 | if (!CodeCompleter || CodeCompleter->includeGlobals()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8819 | CodeCompletionDeclConsumer Consumer(Builder, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8820 | Context.getTranslationUnitDecl()); |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 8821 | LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName, |
| 8822 | Consumer, |
| 8823 | !CodeCompleter || CodeCompleter->loadExternal()); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8824 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8825 | |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8826 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 8827 | AddMacroResults(PP, Builder, |
Sam McCall | 36082e3 | 2019-07-18 07:17:49 +0000 | [diff] [blame] | 8828 | !CodeCompleter || CodeCompleter->loadExternal(), true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8829 | |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8830 | Results.clear(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8831 | Results.insert(Results.end(), Builder.data(), |
| 8832 | Builder.data() + Builder.size()); |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8833 | } |