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 | |
Alp Toker | 034bbd5 | 2014-06-30 01:33:53 +0000 | [diff] [blame] | 695 | /// Determine whether \p Id is a name reserved for the implementation (C99 |
| 696 | /// 7.1.3, C++ [lib.global.names]). |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 697 | static bool isReservedName(const IdentifierInfo *Id, |
| 698 | bool doubleUnderscoreOnly = false) { |
Alp Toker | 034bbd5 | 2014-06-30 01:33:53 +0000 | [diff] [blame] | 699 | if (Id->getLength() < 2) |
| 700 | return false; |
| 701 | const char *Name = Id->getNameStart(); |
| 702 | return Name[0] == '_' && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 703 | (Name[1] == '_' || |
| 704 | (Name[1] >= 'A' && Name[1] <= 'Z' && !doubleUnderscoreOnly)); |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | // Some declarations have reserved names that we don't want to ever show. |
| 708 | // Filter out names reserved for the implementation if they come from a |
| 709 | // system header. |
| 710 | static bool shouldIgnoreDueToReservedName(const NamedDecl *ND, Sema &SemaRef) { |
| 711 | const IdentifierInfo *Id = ND->getIdentifier(); |
| 712 | if (!Id) |
| 713 | return false; |
| 714 | |
| 715 | // Ignore reserved names for compiler provided decls. |
| 716 | if (isReservedName(Id) && ND->getLocation().isInvalid()) |
| 717 | return true; |
| 718 | |
| 719 | // For system headers ignore only double-underscore names. |
| 720 | // This allows for system headers providing private symbols with a single |
| 721 | // underscore. |
| 722 | if (isReservedName(Id, /*doubleUnderscoreOnly=*/true) && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 723 | SemaRef.SourceMgr.isInSystemHeader( |
| 724 | SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))) |
| 725 | return true; |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 726 | |
| 727 | return false; |
Alp Toker | 034bbd5 | 2014-06-30 01:33:53 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 730 | bool ResultBuilder::isInterestingDecl(const NamedDecl *ND, |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 731 | bool &AsNestedNameSpecifier) const { |
| 732 | AsNestedNameSpecifier = false; |
| 733 | |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 734 | auto *Named = ND; |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 735 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 58acf32 | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 736 | |
| 737 | // Skip unnamed entities. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 738 | if (!ND->getDeclName()) |
| 739 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 740 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 741 | // Friend declarations and declarations introduced due to friends are never |
| 742 | // added as results. |
Richard Smith | 6eece29 | 2015-01-15 02:27:20 +0000 | [diff] [blame] | 743 | if (ND->getFriendObjectKind() == Decl::FOK_Undeclared) |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 744 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 745 | |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 746 | // Class template (partial) specializations are never added as results. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 747 | if (isa<ClassTemplateSpecializationDecl>(ND) || |
| 748 | isa<ClassTemplatePartialSpecializationDecl>(ND)) |
| 749 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 750 | |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 751 | // Using declarations themselves are never added as results. |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 752 | if (isa<UsingDecl>(ND)) |
| 753 | return false; |
Argyrios Kyrtzidis | 5d8006d | 2016-07-01 01:17:02 +0000 | [diff] [blame] | 754 | |
| 755 | if (shouldIgnoreDueToReservedName(ND, SemaRef)) |
| 756 | return false; |
Douglas Gregor | 2927c0c | 2010-11-09 03:59:40 +0000 | [diff] [blame] | 757 | |
Douglas Gregor | 59cab55 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 758 | if (Filter == &ResultBuilder::IsNestedNameSpecifier || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 759 | (isa<NamespaceDecl>(ND) && Filter != &ResultBuilder::IsNamespace && |
| 760 | Filter != &ResultBuilder::IsNamespaceOrAlias && Filter != nullptr)) |
Douglas Gregor | 59cab55 | 2010-08-16 23:05:20 +0000 | [diff] [blame] | 761 | AsNestedNameSpecifier = true; |
| 762 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 763 | // Filter out any unwanted results. |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 764 | if (Filter && !(this->*Filter)(Named)) { |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 765 | // Check whether it is interesting as a nested-name-specifier. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 766 | if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus && |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 767 | IsNestedNameSpecifier(ND) && |
| 768 | (Filter != &ResultBuilder::IsMember || |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 769 | (isa<CXXRecordDecl>(ND) && |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 770 | cast<CXXRecordDecl>(ND)->isInjectedClassName()))) { |
| 771 | AsNestedNameSpecifier = true; |
| 772 | return true; |
| 773 | } |
| 774 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 775 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 776 | } |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 777 | // ... then it must be interesting! |
| 778 | return true; |
| 779 | } |
| 780 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 781 | bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 782 | const NamedDecl *Hiding) { |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 783 | // In C, there is no way to refer to a hidden name. |
| 784 | // FIXME: This isn't true; we can find a tag name hidden by an ordinary |
| 785 | // name if we introduce the tag type. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 786 | if (!SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 787 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 788 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 789 | const DeclContext *HiddenCtx = |
| 790 | R.Declaration->getDeclContext()->getRedeclContext(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 791 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 792 | // There is no way to qualify a name declared in a function or method. |
| 793 | if (HiddenCtx->isFunctionOrMethod()) |
| 794 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 795 | |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 796 | if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext()) |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 797 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 798 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 799 | // We can refer to the result with the appropriate qualification. Do it. |
| 800 | R.Hidden = true; |
| 801 | R.QualifierIsInformative = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 802 | |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 803 | if (!R.Qualifier) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 804 | R.Qualifier = getRequiredQualification(SemaRef.Context, CurContext, |
Douglas Gregor | e0717ab | 2010-01-14 00:41:07 +0000 | [diff] [blame] | 805 | R.Declaration->getDeclContext()); |
| 806 | return false; |
| 807 | } |
| 808 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 809 | /// A simplified classification of types used to determine whether two |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 810 | /// types are "similar enough" when adjusting priorities. |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 811 | SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 812 | switch (T->getTypeClass()) { |
| 813 | case Type::Builtin: |
| 814 | switch (cast<BuiltinType>(T)->getKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 815 | case BuiltinType::Void: |
| 816 | return STC_Void; |
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 | case BuiltinType::NullPtr: |
| 819 | return STC_Pointer; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 820 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 821 | case BuiltinType::Overload: |
| 822 | case BuiltinType::Dependent: |
| 823 | return STC_Other; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 824 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 825 | case BuiltinType::ObjCId: |
| 826 | case BuiltinType::ObjCClass: |
| 827 | case BuiltinType::ObjCSel: |
| 828 | return STC_ObjectiveC; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 829 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 830 | default: |
| 831 | return STC_Arithmetic; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 832 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 833 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 834 | case Type::Complex: |
| 835 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 836 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 837 | case Type::Pointer: |
| 838 | return STC_Pointer; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 839 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 840 | case Type::BlockPointer: |
| 841 | return STC_Block; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 842 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 843 | case Type::LValueReference: |
| 844 | case Type::RValueReference: |
| 845 | return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 846 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 847 | case Type::ConstantArray: |
| 848 | case Type::IncompleteArray: |
| 849 | case Type::VariableArray: |
| 850 | case Type::DependentSizedArray: |
| 851 | return STC_Array; |
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::DependentSizedExtVector: |
| 854 | case Type::Vector: |
| 855 | case Type::ExtVector: |
| 856 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 857 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 858 | case Type::FunctionProto: |
| 859 | case Type::FunctionNoProto: |
| 860 | return STC_Function; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 861 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 862 | case Type::Record: |
| 863 | return STC_Record; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 864 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 865 | case Type::Enum: |
| 866 | return STC_Arithmetic; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 867 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 868 | case Type::ObjCObject: |
| 869 | case Type::ObjCInterface: |
| 870 | case Type::ObjCObjectPointer: |
| 871 | return STC_ObjectiveC; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 872 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 873 | default: |
| 874 | return STC_Other; |
| 875 | } |
| 876 | } |
| 877 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 878 | /// Get the type that a given expression will have if this declaration |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 879 | /// is used as an expression in its "typical" code-completion form. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 880 | QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 881 | ND = ND->getUnderlyingDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 882 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 883 | if (const auto *Type = dyn_cast<TypeDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 884 | return C.getTypeDeclType(Type); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 885 | if (const auto *Iface = dyn_cast<ObjCInterfaceDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 886 | return C.getObjCInterfaceType(Iface); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 887 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 888 | QualType T; |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 889 | if (const FunctionDecl *Function = ND->getAsFunction()) |
Douglas Gregor | 603d81b | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 890 | T = Function->getCallResultType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 891 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) |
Douglas Gregor | 603d81b | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 892 | T = Method->getSendResultType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 893 | else if (const auto *Enumerator = dyn_cast<EnumConstantDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 894 | T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext())); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 895 | else if (const auto *Property = dyn_cast<ObjCPropertyDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 896 | T = Property->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 897 | else if (const auto *Value = dyn_cast<ValueDecl>(ND)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 898 | T = Value->getType(); |
Ilya Biryukov | c514ade | 2019-01-24 10:41:43 +0000 | [diff] [blame] | 899 | |
| 900 | if (T.isNull()) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 901 | return QualType(); |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 902 | |
| 903 | // Dig through references, function pointers, and block pointers to |
| 904 | // get down to the likely type of an expression when the entity is |
| 905 | // used. |
| 906 | do { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 907 | if (const auto *Ref = T->getAs<ReferenceType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 908 | T = Ref->getPointeeType(); |
| 909 | continue; |
| 910 | } |
| 911 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 912 | if (const auto *Pointer = T->getAs<PointerType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 913 | if (Pointer->getPointeeType()->isFunctionType()) { |
| 914 | T = Pointer->getPointeeType(); |
| 915 | continue; |
| 916 | } |
| 917 | |
| 918 | break; |
| 919 | } |
| 920 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 921 | if (const auto *Block = T->getAs<BlockPointerType>()) { |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 922 | T = Block->getPointeeType(); |
| 923 | continue; |
| 924 | } |
| 925 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 926 | if (const auto *Function = T->getAs<FunctionType>()) { |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 927 | T = Function->getReturnType(); |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 928 | continue; |
| 929 | } |
| 930 | |
| 931 | break; |
| 932 | } while (true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 933 | |
Douglas Gregor | af670a8 | 2011-04-14 20:33:34 +0000 | [diff] [blame] | 934 | return T; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 935 | } |
| 936 | |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 937 | unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) { |
| 938 | if (!ND) |
| 939 | return CCP_Unlikely; |
| 940 | |
| 941 | // Context-based decisions. |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 942 | const DeclContext *LexicalDC = ND->getLexicalDeclContext(); |
| 943 | if (LexicalDC->isFunctionOrMethod()) { |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 944 | // _cmd is relatively rare |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 945 | if (const auto *ImplicitParam = dyn_cast<ImplicitParamDecl>(ND)) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 946 | if (ImplicitParam->getIdentifier() && |
| 947 | ImplicitParam->getIdentifier()->isStr("_cmd")) |
| 948 | return CCP_ObjC_cmd; |
| 949 | |
| 950 | return CCP_LocalDeclaration; |
| 951 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 952 | |
| 953 | const DeclContext *DC = ND->getDeclContext()->getRedeclContext(); |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 954 | if (DC->isRecord() || isa<ObjCContainerDecl>(DC)) { |
| 955 | // Explicit destructor calls are very rare. |
| 956 | if (isa<CXXDestructorDecl>(ND)) |
| 957 | return CCP_Unlikely; |
| 958 | // Explicit operator and conversion function calls are also very rare. |
| 959 | auto DeclNameKind = ND->getDeclName().getNameKind(); |
| 960 | if (DeclNameKind == DeclarationName::CXXOperatorName || |
| 961 | DeclNameKind == DeclarationName::CXXLiteralOperatorName || |
| 962 | DeclNameKind == DeclarationName::CXXConversionFunctionName) |
| 963 | return CCP_Unlikely; |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 964 | return CCP_MemberDeclaration; |
Ilya Biryukov | 4e7a6fe | 2017-09-22 19:07:37 +0000 | [diff] [blame] | 965 | } |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 966 | |
| 967 | // Content-based decisions. |
| 968 | if (isa<EnumConstantDecl>(ND)) |
| 969 | return CCP_Constant; |
| 970 | |
Douglas Gregor | 52e0de4 | 2013-01-31 05:03:46 +0000 | [diff] [blame] | 971 | // Use CCP_Type for type declarations unless we're in a statement, Objective-C |
| 972 | // message receiver, or parenthesized expression context. There, it's as |
| 973 | // likely that the user will want to write a type as other declarations. |
| 974 | if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) && |
| 975 | !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 976 | CompletionContext.getKind() == |
| 977 | CodeCompletionContext::CCC_ObjCMessageReceiver || |
| 978 | CompletionContext.getKind() == |
| 979 | CodeCompletionContext::CCC_ParenthesizedExpression)) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 980 | return CCP_Type; |
| 981 | |
| 982 | return CCP_Declaration; |
| 983 | } |
| 984 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 985 | void ResultBuilder::AdjustResultPriorityForDecl(Result &R) { |
| 986 | // If this is an Objective-C method declaration whose selector matches our |
| 987 | // preferred selector, give it a priority boost. |
| 988 | if (!PreferredSelector.isNull()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 989 | if (const auto *Method = dyn_cast<ObjCMethodDecl>(R.Declaration)) |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 990 | if (PreferredSelector == Method->getSelector()) |
| 991 | R.Priority += CCD_SelectorMatch; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 992 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 993 | // If we have a preferred type, adjust the priority for results with exactly- |
| 994 | // matching or nearly-matching types. |
| 995 | if (!PreferredType.isNull()) { |
| 996 | QualType T = getDeclUsageType(SemaRef.Context, R.Declaration); |
| 997 | if (!T.isNull()) { |
| 998 | CanQualType TC = SemaRef.Context.getCanonicalType(T); |
| 999 | // Check for exactly-matching types (modulo qualifiers). |
| 1000 | if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC)) |
| 1001 | R.Priority /= CCF_ExactTypeMatch; |
| 1002 | // Check for nearly-matching types, based on classification of each. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1003 | else if ((getSimplifiedTypeClass(PreferredType) == |
| 1004 | getSimplifiedTypeClass(TC)) && |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 1005 | !(PreferredType->isEnumeralType() && TC->isEnumeralType())) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1006 | R.Priority /= CCF_SimilarTypeMatch; |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 1007 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1008 | } |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Benjamin Kramer | 756ecb8 | 2019-02-11 14:52:15 +0000 | [diff] [blame] | 1011 | static DeclContext::lookup_result getConstructors(ASTContext &Context, |
| 1012 | const CXXRecordDecl *Record) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 1013 | QualType RecordTy = Context.getTypeDeclType(Record); |
| 1014 | DeclarationName ConstructorName = |
| 1015 | Context.DeclarationNames.getCXXConstructorName( |
| 1016 | Context.getCanonicalType(RecordTy)); |
| 1017 | return Record->lookup(ConstructorName); |
| 1018 | } |
| 1019 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1020 | void ResultBuilder::MaybeAddConstructorResults(Result R) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1021 | if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration || |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1022 | !CompletionContext.wantConstructorResults()) |
| 1023 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1024 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1025 | const NamedDecl *D = R.Declaration; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1026 | const CXXRecordDecl *Record = nullptr; |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1027 | if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1028 | Record = ClassTemplate->getTemplatedDecl(); |
| 1029 | else if ((Record = dyn_cast<CXXRecordDecl>(D))) { |
| 1030 | // Skip specializations and partial specializations. |
| 1031 | if (isa<ClassTemplateSpecializationDecl>(Record)) |
| 1032 | return; |
| 1033 | } else { |
| 1034 | // There are no constructors here. |
| 1035 | return; |
| 1036 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1037 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1038 | Record = Record->getDefinition(); |
| 1039 | if (!Record) |
| 1040 | return; |
| 1041 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1042 | for (NamedDecl *Ctor : getConstructors(SemaRef.Context, Record)) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 1043 | R.Declaration = Ctor; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1044 | R.CursorKind = getCursorKindForDecl(R.Declaration); |
| 1045 | Results.push_back(R); |
| 1046 | } |
| 1047 | } |
| 1048 | |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1049 | static bool isConstructor(const Decl *ND) { |
| 1050 | if (const auto *Tmpl = dyn_cast<FunctionTemplateDecl>(ND)) |
| 1051 | ND = Tmpl->getTemplatedDecl(); |
| 1052 | return isa<CXXConstructorDecl>(ND); |
| 1053 | } |
| 1054 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1055 | void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) { |
| 1056 | assert(!ShadowMaps.empty() && "Must enter into a results scope"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1057 | |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1058 | if (R.Kind != Result::RK_Declaration) { |
| 1059 | // For non-declaration results, just add the result. |
| 1060 | Results.push_back(R); |
| 1061 | return; |
| 1062 | } |
| 1063 | |
| 1064 | // Look through using declarations. |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1065 | if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) { |
| 1066 | CodeCompletionResult Result(Using->getTargetDecl(), |
| 1067 | getBasePriority(Using->getTargetDecl()), |
| 1068 | R.Qualifier); |
| 1069 | Result.ShadowDecl = Using; |
| 1070 | MaybeAddResult(Result, CurContext); |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1071 | return; |
| 1072 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1073 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1074 | const Decl *CanonDecl = R.Declaration->getCanonicalDecl(); |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1075 | unsigned IDNS = CanonDecl->getIdentifierNamespace(); |
| 1076 | |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 1077 | bool AsNestedNameSpecifier = false; |
| 1078 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | 7c20861 | 2010-01-14 00:20:49 +0000 | [diff] [blame] | 1079 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1080 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1081 | // C++ constructors are never found by name lookup. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1082 | if (isConstructor(R.Declaration)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1083 | return; |
| 1084 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1085 | ShadowMap &SMap = ShadowMaps.back(); |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1086 | ShadowMapEntry::iterator I, IEnd; |
| 1087 | ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName()); |
| 1088 | if (NamePos != SMap.end()) { |
| 1089 | I = NamePos->second.begin(); |
| 1090 | IEnd = NamePos->second.end(); |
| 1091 | } |
| 1092 | |
| 1093 | for (; I != IEnd; ++I) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1094 | const NamedDecl *ND = I->first; |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1095 | unsigned Index = I->second; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1096 | if (ND->getCanonicalDecl() == CanonDecl) { |
| 1097 | // This is a redeclaration. Always pick the newer declaration. |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1098 | Results[Index].Declaration = R.Declaration; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1099 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1100 | // We're done. |
| 1101 | return; |
| 1102 | } |
| 1103 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1104 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1105 | // This is a new declaration in this scope. However, check whether this |
| 1106 | // declaration name is hidden by a similarly-named declaration in an outer |
| 1107 | // scope. |
| 1108 | std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end(); |
| 1109 | --SMEnd; |
| 1110 | for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) { |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1111 | ShadowMapEntry::iterator I, IEnd; |
| 1112 | ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName()); |
| 1113 | if (NamePos != SM->end()) { |
| 1114 | I = NamePos->second.begin(); |
| 1115 | IEnd = NamePos->second.end(); |
| 1116 | } |
| 1117 | for (; I != IEnd; ++I) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1118 | // A tag declaration does not hide a non-tag declaration. |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 1119 | if (I->first->hasTagIdentifierNamespace() && |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1120 | (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | |
| 1121 | Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol))) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1122 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1123 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1124 | // Protocols are in distinct namespaces from everything else. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1125 | if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) || |
| 1126 | (IDNS & Decl::IDNS_ObjCProtocol)) && |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1127 | I->first->getIdentifierNamespace() != IDNS) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1128 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1129 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1130 | // 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] | 1131 | if (CheckHiddenResult(R, CurContext, I->first)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1132 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1133 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1134 | break; |
| 1135 | } |
| 1136 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1137 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1138 | // 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] | 1139 | if (!AllDeclsFound.insert(CanonDecl).second) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1140 | return; |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 1141 | |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1142 | // If the filter is for nested-name-specifiers, then this result starts a |
| 1143 | // nested-name-specifier. |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1144 | if (AsNestedNameSpecifier) { |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1145 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1146 | R.Priority = CCP_NestedNameSpecifier; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1147 | } else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1148 | AdjustResultPriorityForDecl(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1149 | |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 1150 | // If this result is supposed to have an informative qualifier, add one. |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1151 | if (R.QualifierIsInformative && !R.Qualifier && |
| 1152 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1153 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
| 1154 | if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1155 | R.Qualifier = |
| 1156 | NestedNameSpecifier::Create(SemaRef.Context, nullptr, Namespace); |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1157 | else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1158 | R.Qualifier = NestedNameSpecifier::Create( |
| 1159 | SemaRef.Context, nullptr, false, |
| 1160 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 1161 | else |
| 1162 | R.QualifierIsInformative = false; |
| 1163 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1164 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1165 | // Insert this result into the set of results and into the current shadow |
| 1166 | // map. |
Douglas Gregor | 05e7ca3 | 2009-12-06 20:23:50 +0000 | [diff] [blame] | 1167 | SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1168 | Results.push_back(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1169 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1170 | if (!AsNestedNameSpecifier) |
| 1171 | MaybeAddConstructorResults(R); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 1174 | static void setInBaseClass(ResultBuilder::Result &R) { |
| 1175 | R.Priority += CCD_InBaseClass; |
| 1176 | R.InBaseClass = true; |
| 1177 | } |
| 1178 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1179 | enum class OverloadCompare { BothViable, Dominates, Dominated }; |
| 1180 | // Will Candidate ever be called on the object, when overloaded with Incumbent? |
| 1181 | // Returns Dominates if Candidate is always called, Dominated if Incumbent is |
| 1182 | // always called, BothViable if either may be called dependending on arguments. |
| 1183 | // Precondition: must actually be overloads! |
| 1184 | static OverloadCompare compareOverloads(const CXXMethodDecl &Candidate, |
| 1185 | const CXXMethodDecl &Incumbent, |
| 1186 | const Qualifiers &ObjectQuals, |
| 1187 | ExprValueKind ObjectKind) { |
| 1188 | if (Candidate.isVariadic() != Incumbent.isVariadic() || |
| 1189 | Candidate.getNumParams() != Incumbent.getNumParams() || |
| 1190 | Candidate.getMinRequiredArguments() != |
| 1191 | Incumbent.getMinRequiredArguments()) |
| 1192 | return OverloadCompare::BothViable; |
| 1193 | for (unsigned I = 0, E = Candidate.getNumParams(); I != E; ++I) |
| 1194 | if (Candidate.parameters()[I]->getType().getCanonicalType() != |
| 1195 | Incumbent.parameters()[I]->getType().getCanonicalType()) |
| 1196 | return OverloadCompare::BothViable; |
| 1197 | if (!llvm::empty(Candidate.specific_attrs<EnableIfAttr>()) || |
| 1198 | !llvm::empty(Incumbent.specific_attrs<EnableIfAttr>())) |
| 1199 | return OverloadCompare::BothViable; |
| 1200 | // At this point, we know calls can't pick one or the other based on |
| 1201 | // arguments, so one of the two must win. (Or both fail, handled elsewhere). |
| 1202 | RefQualifierKind CandidateRef = Candidate.getRefQualifier(); |
| 1203 | RefQualifierKind IncumbentRef = Incumbent.getRefQualifier(); |
| 1204 | if (CandidateRef != IncumbentRef) { |
| 1205 | // If the object kind is LValue/RValue, there's one acceptable ref-qualifier |
| 1206 | // and it can't be mixed with ref-unqualified overloads (in valid code). |
| 1207 | |
| 1208 | // For xvalue objects, we prefer the rvalue overload even if we have to |
| 1209 | // add qualifiers (which is rare, because const&& is rare). |
| 1210 | if (ObjectKind == clang::VK_XValue) |
| 1211 | return CandidateRef == RQ_RValue ? OverloadCompare::Dominates |
| 1212 | : OverloadCompare::Dominated; |
| 1213 | } |
| 1214 | // Now the ref qualifiers are the same (or we're in some invalid state). |
| 1215 | // So make some decision based on the qualifiers. |
| 1216 | Qualifiers CandidateQual = Candidate.getMethodQualifiers(); |
| 1217 | Qualifiers IncumbentQual = Incumbent.getMethodQualifiers(); |
| 1218 | bool CandidateSuperset = CandidateQual.compatiblyIncludes(IncumbentQual); |
| 1219 | bool IncumbentSuperset = IncumbentQual.compatiblyIncludes(CandidateQual); |
| 1220 | if (CandidateSuperset == IncumbentSuperset) |
| 1221 | return OverloadCompare::BothViable; |
| 1222 | return IncumbentSuperset ? OverloadCompare::Dominates |
| 1223 | : OverloadCompare::Dominated; |
| 1224 | } |
| 1225 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1226 | void ResultBuilder::AddResult(Result R, DeclContext *CurContext, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 1227 | NamedDecl *Hiding, bool InBaseClass = false) { |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1228 | if (R.Kind != Result::RK_Declaration) { |
| 1229 | // For non-declaration results, just add the result. |
| 1230 | Results.push_back(R); |
| 1231 | return; |
| 1232 | } |
| 1233 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1234 | // Look through using declarations. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1235 | if (const auto *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) { |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1236 | CodeCompletionResult Result(Using->getTargetDecl(), |
| 1237 | getBasePriority(Using->getTargetDecl()), |
| 1238 | R.Qualifier); |
| 1239 | Result.ShadowDecl = Using; |
| 1240 | AddResult(Result, CurContext, Hiding); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1241 | return; |
| 1242 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1243 | |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 1244 | bool AsNestedNameSpecifier = false; |
| 1245 | if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier)) |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1246 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1247 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1248 | // C++ constructors are never found by name lookup. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 1249 | if (isConstructor(R.Declaration)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1250 | return; |
| 1251 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1252 | if (Hiding && CheckHiddenResult(R, CurContext, Hiding)) |
| 1253 | return; |
Nick Lewycky | c392148 | 2012-04-03 21:44:08 +0000 | [diff] [blame] | 1254 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1255 | // 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] | 1256 | if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second) |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1257 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1258 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1259 | // If the filter is for nested-name-specifiers, then this result starts a |
| 1260 | // nested-name-specifier. |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1261 | if (AsNestedNameSpecifier) { |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1262 | R.StartsNestedNameSpecifier = true; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1263 | R.Priority = CCP_NestedNameSpecifier; |
Kirill Bobyrev | 47d7f52 | 2018-07-11 14:49:49 +0000 | [diff] [blame] | 1264 | } else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && |
| 1265 | InBaseClass && |
| 1266 | isa<CXXRecordDecl>( |
| 1267 | R.Declaration->getDeclContext()->getRedeclContext())) |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 1268 | R.QualifierIsInformative = true; |
| 1269 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1270 | // If this result is supposed to have an informative qualifier, add one. |
| 1271 | if (R.QualifierIsInformative && !R.Qualifier && |
| 1272 | !R.StartsNestedNameSpecifier) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1273 | const DeclContext *Ctx = R.Declaration->getDeclContext(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1274 | if (const auto *Namespace = dyn_cast<NamespaceDecl>(Ctx)) |
| 1275 | R.Qualifier = |
| 1276 | NestedNameSpecifier::Create(SemaRef.Context, nullptr, Namespace); |
| 1277 | else if (const auto *Tag = dyn_cast<TagDecl>(Ctx)) |
| 1278 | R.Qualifier = NestedNameSpecifier::Create( |
| 1279 | SemaRef.Context, nullptr, false, |
| 1280 | SemaRef.Context.getTypeDeclType(Tag).getTypePtr()); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1281 | else |
| 1282 | R.QualifierIsInformative = false; |
| 1283 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1284 | |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1285 | // Adjust the priority if this result comes from a base class. |
| 1286 | if (InBaseClass) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 1287 | setInBaseClass(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1288 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 1289 | AdjustResultPriorityForDecl(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1290 | |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1291 | if (HasObjectTypeQualifiers) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1292 | if (const auto *Method = dyn_cast<CXXMethodDecl>(R.Declaration)) |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1293 | if (Method->isInstance()) { |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 1294 | Qualifiers MethodQuals = Method->getMethodQualifiers(); |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1295 | if (ObjectTypeQualifiers == MethodQuals) |
| 1296 | R.Priority += CCD_ObjectQualifierMatch; |
| 1297 | else if (ObjectTypeQualifiers - MethodQuals) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1298 | // The method cannot be invoked, because doing so would drop |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1299 | // qualifiers. |
| 1300 | return; |
| 1301 | } |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 1302 | // Detect cases where a ref-qualified method cannot be invoked. |
| 1303 | switch (Method->getRefQualifier()) { |
| 1304 | case RQ_LValue: |
| 1305 | if (ObjectKind != VK_LValue && !MethodQuals.hasConst()) |
| 1306 | return; |
| 1307 | break; |
| 1308 | case RQ_RValue: |
| 1309 | if (ObjectKind == VK_LValue) |
| 1310 | return; |
| 1311 | break; |
| 1312 | case RQ_None: |
| 1313 | break; |
| 1314 | } |
| 1315 | |
| 1316 | /// Check whether this dominates another overloaded method, which should |
| 1317 | /// be suppressed (or vice versa). |
| 1318 | /// Motivating case is const_iterator begin() const vs iterator begin(). |
| 1319 | auto &OverloadSet = OverloadMap[std::make_pair( |
| 1320 | CurContext, Method->getDeclName().getAsOpaqueInteger())]; |
| 1321 | for (const DeclIndexPair& Entry : OverloadSet) { |
| 1322 | Result &Incumbent = Results[Entry.second]; |
| 1323 | switch (compareOverloads(*Method, |
| 1324 | *cast<CXXMethodDecl>(Incumbent.Declaration), |
| 1325 | ObjectTypeQualifiers, ObjectKind)) { |
| 1326 | case OverloadCompare::Dominates: |
| 1327 | // Replace the dominated overload with this one. |
| 1328 | // FIXME: if the overload dominates multiple incumbents then we |
| 1329 | // should remove all. But two overloads is by far the common case. |
| 1330 | Incumbent = std::move(R); |
| 1331 | return; |
| 1332 | case OverloadCompare::Dominated: |
| 1333 | // This overload can't be called, drop it. |
| 1334 | return; |
| 1335 | case OverloadCompare::BothViable: |
| 1336 | break; |
| 1337 | } |
| 1338 | } |
| 1339 | OverloadSet.Add(Method, Results.size()); |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 1340 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1341 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1342 | // Insert this result into the set of results. |
| 1343 | Results.push_back(R); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1344 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 1345 | if (!AsNestedNameSpecifier) |
| 1346 | MaybeAddConstructorResults(R); |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1349 | void ResultBuilder::AddResult(Result R) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1350 | assert(R.Kind != Result::RK_Declaration && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1351 | "Declaration results need more context"); |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1352 | Results.push_back(R); |
| 1353 | } |
| 1354 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1355 | /// Enter into a new scope. |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 1356 | void ResultBuilder::EnterNewScope() { ShadowMaps.emplace_back(); } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1357 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1358 | /// Exit from the current scope. |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1359 | void ResultBuilder::ExitScope() { |
| 1360 | ShadowMaps.pop_back(); |
| 1361 | } |
| 1362 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1363 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1364 | /// ordinary name lookup. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1365 | bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1366 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1367 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1368 | // If name lookup finds a local extern declaration, then we are in a |
| 1369 | // context where it behaves like an ordinary name. |
| 1370 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1371 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9858ed5 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1372 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1373 | else if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1374 | if (isa<ObjCIvarDecl>(ND)) |
| 1375 | return true; |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1376 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1377 | |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 1378 | return ND->getIdentifierNamespace() & IDNS; |
| 1379 | } |
| 1380 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1381 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1382 | /// ordinary name lookup but is not a type name. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1383 | bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1384 | ND = ND->getUnderlyingDecl(); |
Alex Lorenz | f3df1f7 | 2017-11-14 01:46:24 +0000 | [diff] [blame] | 1385 | if (isa<TypeDecl>(ND)) |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1386 | return false; |
Alex Lorenz | f3df1f7 | 2017-11-14 01:46:24 +0000 | [diff] [blame] | 1387 | // Objective-C interfaces names are not filtered by this method because they |
| 1388 | // can be used in a class property expression. We can still filter out |
| 1389 | // @class declarations though. |
| 1390 | if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND)) { |
| 1391 | if (!ID->getDefinition()) |
| 1392 | return false; |
| 1393 | } |
| 1394 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1395 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1396 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | 9858ed5 | 2010-06-15 20:26:51 +0000 | [diff] [blame] | 1397 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1398 | else if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1399 | if (isa<ObjCIvarDecl>(ND)) |
| 1400 | return true; |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 1401 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1402 | |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1403 | return ND->getIdentifierNamespace() & IDNS; |
| 1404 | } |
| 1405 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1406 | bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const { |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1407 | if (!IsOrdinaryNonTypeName(ND)) |
| 1408 | return 0; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1409 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1410 | if (const auto *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl())) |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1411 | if (VD->getType()->isIntegralOrEnumerationType()) |
| 1412 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1413 | |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 1414 | return false; |
| 1415 | } |
| 1416 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1417 | /// Determines whether this given declaration will be found by |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1418 | /// ordinary name lookup. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1419 | bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 1420 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1421 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1422 | unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1423 | if (SemaRef.getLangOpts().CPlusPlus) |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 1424 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1425 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1426 | return (ND->getIdentifierNamespace() & IDNS) && !isa<ValueDecl>(ND) && |
| 1427 | !isa<FunctionTemplateDecl>(ND) && !isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1428 | } |
| 1429 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1430 | /// Determines whether the given declaration is suitable as the |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1431 | /// 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] | 1432 | bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1433 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1434 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1435 | ND = ClassTemplate->getTemplatedDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1436 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1437 | return SemaRef.isAcceptableNestedNameSpecifier(ND); |
| 1438 | } |
| 1439 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1440 | /// Determines whether the given declaration is an enumeration. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1441 | bool ResultBuilder::IsEnum(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1442 | return isa<EnumDecl>(ND); |
| 1443 | } |
| 1444 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1445 | /// Determines whether the given declaration is a class or struct. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1446 | bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1447 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1448 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1449 | ND = ClassTemplate->getTemplatedDecl(); |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1450 | |
| 1451 | // For purposes of this check, interfaces match too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1452 | if (const auto *RD = dyn_cast<RecordDecl>(ND)) |
| 1453 | return RD->getTagKind() == TTK_Class || RD->getTagKind() == TTK_Struct || |
| 1454 | RD->getTagKind() == TTK_Interface; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1455 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1456 | return false; |
| 1457 | } |
| 1458 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1459 | /// Determines whether the given declaration is a union. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1460 | bool ResultBuilder::IsUnion(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1461 | // Allow us to find class templates, too. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1462 | if (const auto *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1463 | ND = ClassTemplate->getTemplatedDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1464 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1465 | if (const auto *RD = dyn_cast<RecordDecl>(ND)) |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1466 | return RD->getTagKind() == TTK_Union; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1467 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1468 | return false; |
| 1469 | } |
| 1470 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1471 | /// Determines whether the given declaration is a namespace. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1472 | bool ResultBuilder::IsNamespace(const NamedDecl *ND) const { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1473 | return isa<NamespaceDecl>(ND); |
| 1474 | } |
| 1475 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1476 | /// Determines whether the given declaration is a namespace or |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1477 | /// namespace alias. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1478 | bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1479 | return isa<NamespaceDecl>(ND->getUnderlyingDecl()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1480 | } |
| 1481 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1482 | /// Determines whether the given declaration is a type. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1483 | bool ResultBuilder::IsType(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1484 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 1485 | return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1486 | } |
| 1487 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1488 | /// Determines which members of a class should be visible via |
Douglas Gregor | 99fe2ad | 2009-12-11 17:31:05 +0000 | [diff] [blame] | 1489 | /// "." or "->". Only value declarations, nested name specifiers, and |
| 1490 | /// using declarations thereof should show up. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1491 | bool ResultBuilder::IsMember(const NamedDecl *ND) const { |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1492 | ND = ND->getUnderlyingDecl(); |
Douglas Gregor | 7078839 | 2009-12-11 18:14:22 +0000 | [diff] [blame] | 1493 | return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) || |
Richard Smith | f2005d3 | 2015-12-29 23:34:32 +0000 | [diff] [blame] | 1494 | isa<ObjCPropertyDecl>(ND); |
Douglas Gregor | e412a5a | 2009-09-23 22:26:46 +0000 | [diff] [blame] | 1495 | } |
| 1496 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1497 | static bool isObjCReceiverType(ASTContext &C, QualType T) { |
| 1498 | T = C.getCanonicalType(T); |
| 1499 | switch (T->getTypeClass()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1500 | case Type::ObjCObject: |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1501 | case Type::ObjCInterface: |
| 1502 | case Type::ObjCObjectPointer: |
| 1503 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1504 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1505 | case Type::Builtin: |
| 1506 | switch (cast<BuiltinType>(T)->getKind()) { |
| 1507 | case BuiltinType::ObjCId: |
| 1508 | case BuiltinType::ObjCClass: |
| 1509 | case BuiltinType::ObjCSel: |
| 1510 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1511 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1512 | default: |
| 1513 | break; |
| 1514 | } |
| 1515 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1516 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1517 | default: |
| 1518 | break; |
| 1519 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1520 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1521 | if (!C.getLangOpts().CPlusPlus) |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1522 | return false; |
| 1523 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1524 | // FIXME: We could perform more analysis here to determine whether a |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1525 | // particular class type has any conversions to Objective-C types. For now, |
| 1526 | // just accept all class types. |
| 1527 | return T->isDependentType() || T->isRecordType(); |
| 1528 | } |
| 1529 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1530 | bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const { |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1531 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1532 | if (T.isNull()) |
| 1533 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1534 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1535 | T = SemaRef.Context.getBaseElementType(T); |
| 1536 | return isObjCReceiverType(SemaRef.Context, T); |
| 1537 | } |
| 1538 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1539 | bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture( |
| 1540 | const NamedDecl *ND) const { |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1541 | if (IsObjCMessageReceiver(ND)) |
| 1542 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1543 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1544 | const auto *Var = dyn_cast<VarDecl>(ND); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1545 | if (!Var) |
| 1546 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1547 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1548 | return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>(); |
| 1549 | } |
| 1550 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1551 | bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1552 | if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) || |
| 1553 | (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND))) |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1554 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1555 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1556 | QualType T = getDeclUsageType(SemaRef.Context, ND); |
| 1557 | if (T.isNull()) |
| 1558 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1559 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1560 | T = SemaRef.Context.getBaseElementType(T); |
| 1561 | return T->isObjCObjectType() || T->isObjCObjectPointerType() || |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1562 | T->isObjCIdType() || |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1563 | (SemaRef.getLangOpts().CPlusPlus && T->isRecordType()); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 1564 | } |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 1565 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1566 | bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const { |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 1567 | return false; |
| 1568 | } |
| 1569 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1570 | /// Determines whether the given declaration is an Objective-C |
Douglas Gregor | 2b8162b | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1571 | /// instance variable. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 1572 | bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const { |
Douglas Gregor | 2b8162b | 2010-01-14 16:08:12 +0000 | [diff] [blame] | 1573 | return isa<ObjCIvarDecl>(ND); |
| 1574 | } |
| 1575 | |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1576 | namespace { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1577 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1578 | /// Visible declaration consumer that adds a code-completion result |
| 1579 | /// for each visible declaration. |
| 1580 | class CodeCompletionDeclConsumer : public VisibleDeclConsumer { |
| 1581 | ResultBuilder &Results; |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1582 | DeclContext *InitialLookupCtx; |
| 1583 | // NamingClass and BaseType are used for access-checking. See |
| 1584 | // Sema::IsSimplyAccessible for details. |
| 1585 | CXXRecordDecl *NamingClass; |
| 1586 | QualType BaseType; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1587 | std::vector<FixItHint> FixIts; |
Haojian Wu | 10d95c5 | 2018-01-17 14:29:25 +0000 | [diff] [blame] | 1588 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1589 | public: |
| 1590 | CodeCompletionDeclConsumer( |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1591 | ResultBuilder &Results, DeclContext *InitialLookupCtx, |
| 1592 | QualType BaseType = QualType(), |
| 1593 | std::vector<FixItHint> FixIts = std::vector<FixItHint>()) |
| 1594 | : Results(Results), InitialLookupCtx(InitialLookupCtx), |
| 1595 | FixIts(std::move(FixIts)) { |
| 1596 | NamingClass = llvm::dyn_cast<CXXRecordDecl>(InitialLookupCtx); |
| 1597 | // If BaseType was not provided explicitly, emulate implicit 'this->'. |
| 1598 | if (BaseType.isNull()) { |
| 1599 | auto ThisType = Results.getSema().getCurrentThisType(); |
| 1600 | if (!ThisType.isNull()) { |
| 1601 | assert(ThisType->isPointerType()); |
| 1602 | BaseType = ThisType->getPointeeType(); |
| 1603 | if (!NamingClass) |
| 1604 | NamingClass = BaseType->getAsCXXRecordDecl(); |
| 1605 | } |
| 1606 | } |
| 1607 | this->BaseType = BaseType; |
| 1608 | } |
Craig Topper | e14c0f8 | 2014-03-12 04:55:44 +0000 | [diff] [blame] | 1609 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1610 | void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx, |
| 1611 | bool InBaseClass) override { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1612 | ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr, |
Ilya Biryukov | 9839755 | 2018-12-05 17:38:39 +0000 | [diff] [blame] | 1613 | false, IsAccessible(ND, Ctx), FixIts); |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 1614 | Results.AddResult(Result, InitialLookupCtx, Hiding, InBaseClass); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1615 | } |
Haojian Wu | 10d95c5 | 2018-01-17 14:29:25 +0000 | [diff] [blame] | 1616 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1617 | void EnteredContext(DeclContext *Ctx) override { |
| 1618 | Results.addVisitedContext(Ctx); |
| 1619 | } |
Ilya Biryukov | 9839755 | 2018-12-05 17:38:39 +0000 | [diff] [blame] | 1620 | |
| 1621 | private: |
| 1622 | bool IsAccessible(NamedDecl *ND, DeclContext *Ctx) { |
| 1623 | // Naming class to use for access check. In most cases it was provided |
| 1624 | // explicitly (e.g. member access (lhs.foo) or qualified lookup (X::)), |
| 1625 | // for unqualified lookup we fallback to the \p Ctx in which we found the |
| 1626 | // member. |
| 1627 | auto *NamingClass = this->NamingClass; |
| 1628 | QualType BaseType = this->BaseType; |
| 1629 | if (auto *Cls = llvm::dyn_cast_or_null<CXXRecordDecl>(Ctx)) { |
| 1630 | if (!NamingClass) |
| 1631 | NamingClass = Cls; |
| 1632 | // When we emulate implicit 'this->' in an unqualified lookup, we might |
| 1633 | // end up with an invalid naming class. In that case, we avoid emulating |
| 1634 | // 'this->' qualifier to satisfy preconditions of the access checking. |
| 1635 | if (NamingClass->getCanonicalDecl() != Cls->getCanonicalDecl() && |
| 1636 | !NamingClass->isDerivedFrom(Cls)) { |
| 1637 | NamingClass = Cls; |
| 1638 | BaseType = QualType(); |
| 1639 | } |
| 1640 | } else { |
| 1641 | // The decl was found outside the C++ class, so only ObjC access checks |
| 1642 | // apply. Those do not rely on NamingClass and BaseType, so we clear them |
| 1643 | // out. |
| 1644 | NamingClass = nullptr; |
| 1645 | BaseType = QualType(); |
| 1646 | } |
| 1647 | return Results.getSema().IsSimplyAccessible(ND, NamingClass, BaseType); |
| 1648 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1649 | }; |
| 1650 | } // namespace |
Douglas Gregor | c580c52 | 2010-01-14 01:09:38 +0000 | [diff] [blame] | 1651 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1652 | /// Add type specifiers for the current language as keyword results. |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1653 | static void AddTypeSpecifierResults(const LangOptions &LangOpts, |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1654 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1655 | typedef CodeCompletionResult Result; |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1656 | Results.AddResult(Result("short", CCP_Type)); |
| 1657 | Results.AddResult(Result("long", CCP_Type)); |
| 1658 | Results.AddResult(Result("signed", CCP_Type)); |
| 1659 | Results.AddResult(Result("unsigned", CCP_Type)); |
| 1660 | Results.AddResult(Result("void", CCP_Type)); |
| 1661 | Results.AddResult(Result("char", CCP_Type)); |
| 1662 | Results.AddResult(Result("int", CCP_Type)); |
| 1663 | Results.AddResult(Result("float", CCP_Type)); |
| 1664 | Results.AddResult(Result("double", CCP_Type)); |
| 1665 | Results.AddResult(Result("enum", CCP_Type)); |
| 1666 | Results.AddResult(Result("struct", CCP_Type)); |
| 1667 | Results.AddResult(Result("union", CCP_Type)); |
| 1668 | Results.AddResult(Result("const", CCP_Type)); |
| 1669 | Results.AddResult(Result("volatile", CCP_Type)); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1670 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1671 | if (LangOpts.C99) { |
| 1672 | // C99-specific |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1673 | Results.AddResult(Result("_Complex", CCP_Type)); |
| 1674 | Results.AddResult(Result("_Imaginary", CCP_Type)); |
| 1675 | Results.AddResult(Result("_Bool", CCP_Type)); |
| 1676 | Results.AddResult(Result("restrict", CCP_Type)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1677 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1678 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1679 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1680 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1681 | if (LangOpts.CPlusPlus) { |
| 1682 | // C++-specific |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1683 | Results.AddResult( |
| 1684 | Result("bool", CCP_Type + (LangOpts.ObjC ? CCD_bool_in_ObjC : 0))); |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1685 | Results.AddResult(Result("class", CCP_Type)); |
| 1686 | Results.AddResult(Result("wchar_t", CCP_Type)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1687 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1688 | // typename qualified-id |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1689 | Builder.AddTypedTextChunk("typename"); |
| 1690 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1691 | Builder.AddPlaceholderChunk("qualifier"); |
| 1692 | Builder.AddTextChunk("::"); |
| 1693 | Builder.AddPlaceholderChunk("name"); |
| 1694 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1695 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1696 | if (LangOpts.CPlusPlus11) { |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 1697 | Results.AddResult(Result("auto", CCP_Type)); |
| 1698 | Results.AddResult(Result("char16_t", CCP_Type)); |
| 1699 | Results.AddResult(Result("char32_t", CCP_Type)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1700 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1701 | Builder.AddTypedTextChunk("decltype"); |
| 1702 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1703 | Builder.AddPlaceholderChunk("expression"); |
| 1704 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1705 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1706 | } |
Alex Lorenz | 46eed9d | 2017-02-13 23:35:59 +0000 | [diff] [blame] | 1707 | } else |
| 1708 | Results.AddResult(Result("__auto_type", CCP_Type)); |
| 1709 | |
Richard Smith | 7b301e2 | 2018-05-24 21:51:52 +0000 | [diff] [blame] | 1710 | // GNU keywords |
| 1711 | if (LangOpts.GNUKeywords) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1712 | // FIXME: Enable when we actually support decimal floating point. |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1713 | // Results.AddResult(Result("_Decimal32")); |
| 1714 | // Results.AddResult(Result("_Decimal64")); |
| 1715 | // Results.AddResult(Result("_Decimal128")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1716 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1717 | Builder.AddTypedTextChunk("typeof"); |
| 1718 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1719 | Builder.AddPlaceholderChunk("expression"); |
| 1720 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1721 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1722 | Builder.AddTypedTextChunk("typeof"); |
| 1723 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1724 | Builder.AddPlaceholderChunk("type"); |
| 1725 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1726 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1727 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 1728 | |
| 1729 | // Nullability |
Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 1730 | Results.AddResult(Result("_Nonnull", CCP_Type)); |
| 1731 | Results.AddResult(Result("_Null_unspecified", CCP_Type)); |
| 1732 | Results.AddResult(Result("_Nullable", CCP_Type)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 1733 | } |
| 1734 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1735 | static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1736 | const LangOptions &LangOpts, |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1737 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1738 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1739 | // Note: we don't suggest either "auto" or "register", because both |
| 1740 | // are pointless as storage specifiers. Elsewhere, we suggest "auto" |
| 1741 | // in C++0x as a type specifier. |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1742 | Results.AddResult(Result("extern")); |
| 1743 | Results.AddResult(Result("static")); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1744 | |
| 1745 | if (LangOpts.CPlusPlus11) { |
| 1746 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
| 1747 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
| 1748 | |
| 1749 | // alignas |
| 1750 | Builder.AddTypedTextChunk("alignas"); |
| 1751 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1752 | Builder.AddPlaceholderChunk("expression"); |
| 1753 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 1754 | Results.AddResult(Result(Builder.TakeString())); |
| 1755 | |
| 1756 | Results.AddResult(Result("constexpr")); |
| 1757 | Results.AddResult(Result("thread_local")); |
| 1758 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1759 | } |
| 1760 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1761 | static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1762 | const LangOptions &LangOpts, |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1763 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1764 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1765 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1766 | case Sema::PCC_Class: |
| 1767 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1768 | if (LangOpts.CPlusPlus) { |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1769 | Results.AddResult(Result("explicit")); |
| 1770 | Results.AddResult(Result("friend")); |
| 1771 | Results.AddResult(Result("mutable")); |
| 1772 | Results.AddResult(Result("virtual")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1773 | } |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 1774 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1775 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1776 | case Sema::PCC_ObjCInterface: |
| 1777 | case Sema::PCC_ObjCImplementation: |
| 1778 | case Sema::PCC_Namespace: |
| 1779 | case Sema::PCC_Template: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1780 | if (LangOpts.CPlusPlus || LangOpts.C99) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 1781 | Results.AddResult(Result("inline")); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1782 | break; |
| 1783 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1784 | case Sema::PCC_ObjCInstanceVariableList: |
| 1785 | case Sema::PCC_Expression: |
| 1786 | case Sema::PCC_Statement: |
| 1787 | case Sema::PCC_ForInit: |
| 1788 | case Sema::PCC_Condition: |
| 1789 | case Sema::PCC_RecoveryInFunction: |
| 1790 | case Sema::PCC_Type: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1791 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1792 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1793 | break; |
| 1794 | } |
| 1795 | } |
| 1796 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1797 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt); |
| 1798 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt); |
| 1799 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1800 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1801 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1802 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1803 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1804 | ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 1805 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 1806 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1807 | static void AddTypedefResult(ResultBuilder &Results) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1808 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 1809 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1810 | Builder.AddTypedTextChunk("typedef"); |
| 1811 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1812 | Builder.AddPlaceholderChunk("type"); |
| 1813 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 1814 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 2fa3188 | 2019-05-29 15:32:17 +0000 | [diff] [blame] | 1815 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1816 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1817 | } |
| 1818 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1819 | static bool WantTypesInContext(Sema::ParserCompletionContext CCC, |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1820 | const LangOptions &LangOpts) { |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1821 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1822 | case Sema::PCC_Namespace: |
| 1823 | case Sema::PCC_Class: |
| 1824 | case Sema::PCC_ObjCInstanceVariableList: |
| 1825 | case Sema::PCC_Template: |
| 1826 | case Sema::PCC_MemberTemplate: |
| 1827 | case Sema::PCC_Statement: |
| 1828 | case Sema::PCC_RecoveryInFunction: |
| 1829 | case Sema::PCC_Type: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1830 | case Sema::PCC_ParenthesizedExpression: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 1831 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1832 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1833 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1834 | case Sema::PCC_Expression: |
| 1835 | case Sema::PCC_Condition: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1836 | return LangOpts.CPlusPlus; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1837 | |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 1838 | case Sema::PCC_ObjCInterface: |
| 1839 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1840 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1841 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1842 | case Sema::PCC_ForInit: |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 1843 | return LangOpts.CPlusPlus || LangOpts.ObjC || LangOpts.C99; |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1844 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 1845 | |
| 1846 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 1847 | } |
| 1848 | |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1849 | static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context, |
| 1850 | const Preprocessor &PP) { |
| 1851 | PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP); |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1852 | Policy.AnonymousTagLocations = false; |
| 1853 | Policy.SuppressStrongLifetime = true; |
Douglas Gregor | 2e10cf9 | 2011-11-03 00:16:13 +0000 | [diff] [blame] | 1854 | Policy.SuppressUnwrittenScope = true; |
Ilya Biryukov | b5da91c | 2017-11-08 10:39:09 +0000 | [diff] [blame] | 1855 | Policy.SuppressScope = true; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1856 | return Policy; |
| 1857 | } |
| 1858 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1859 | /// Retrieve a printing policy suitable for code completion. |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 1860 | static PrintingPolicy getCompletionPrintingPolicy(Sema &S) { |
| 1861 | return getCompletionPrintingPolicy(S.Context, S.PP); |
| 1862 | } |
| 1863 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1864 | /// Retrieve the string representation of the given type as a string |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1865 | /// that has the appropriate lifetime for code completion. |
| 1866 | /// |
| 1867 | /// This routine provides a fast path where we provide constant strings for |
| 1868 | /// common type names. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1869 | static const char *GetCompletionTypeString(QualType T, ASTContext &Context, |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1870 | const PrintingPolicy &Policy, |
| 1871 | CodeCompletionAllocator &Allocator) { |
| 1872 | if (!T.getLocalQualifiers()) { |
| 1873 | // Built-in type names are constant strings. |
| 1874 | if (const BuiltinType *BT = dyn_cast<BuiltinType>(T)) |
Argyrios Kyrtzidis | bbff3da | 2012-05-05 04:20:28 +0000 | [diff] [blame] | 1875 | return BT->getNameAsCString(Policy); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1876 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1877 | // Anonymous tag types are constant strings. |
| 1878 | if (const TagType *TagT = dyn_cast<TagType>(T)) |
| 1879 | if (TagDecl *Tag = TagT->getDecl()) |
John McCall | 5ea9577 | 2013-03-09 00:54:27 +0000 | [diff] [blame] | 1880 | if (!Tag->hasNameForLinkage()) { |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1881 | switch (Tag->getTagKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1882 | case TTK_Struct: |
| 1883 | return "struct <anonymous>"; |
| 1884 | case TTK_Interface: |
| 1885 | return "__interface <anonymous>"; |
| 1886 | case TTK_Class: |
| 1887 | return "class <anonymous>"; |
| 1888 | case TTK_Union: |
| 1889 | return "union <anonymous>"; |
| 1890 | case TTK_Enum: |
| 1891 | return "enum <anonymous>"; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1892 | } |
| 1893 | } |
| 1894 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1895 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1896 | // Slow path: format the type as a string. |
| 1897 | std::string Result; |
| 1898 | T.getAsStringInternal(Result, Policy); |
| 1899 | return Allocator.CopyString(Result); |
| 1900 | } |
| 1901 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1902 | /// Add a completion for "this", if we're in a member function. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1903 | static void addThisCompletion(Sema &S, ResultBuilder &Results) { |
| 1904 | QualType ThisTy = S.getCurrentThisType(); |
| 1905 | if (ThisTy.isNull()) |
| 1906 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1907 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1908 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1909 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1910 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1911 | Builder.AddResultTypeChunk( |
| 1912 | GetCompletionTypeString(ThisTy, S.Context, Policy, Allocator)); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1913 | Builder.AddTypedTextChunk("this"); |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 1914 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1917 | static void AddStaticAssertResult(CodeCompletionBuilder &Builder, |
| 1918 | ResultBuilder &Results, |
| 1919 | const LangOptions &LangOpts) { |
| 1920 | if (!LangOpts.CPlusPlus11) |
| 1921 | return; |
| 1922 | |
| 1923 | Builder.AddTypedTextChunk("static_assert"); |
| 1924 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 1925 | Builder.AddPlaceholderChunk("expression"); |
| 1926 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 1927 | Builder.AddPlaceholderChunk("message"); |
| 1928 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 2fa3188 | 2019-05-29 15:32:17 +0000 | [diff] [blame] | 1929 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 1930 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 1931 | } |
| 1932 | |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 1933 | static void AddOverrideResults(ResultBuilder &Results, |
| 1934 | const CodeCompletionContext &CCContext, |
| 1935 | CodeCompletionBuilder &Builder) { |
| 1936 | Sema &S = Results.getSema(); |
| 1937 | const auto *CR = llvm::dyn_cast<CXXRecordDecl>(S.CurContext); |
| 1938 | // If not inside a class/struct/union return empty. |
| 1939 | if (!CR) |
| 1940 | return; |
| 1941 | // First store overrides within current class. |
| 1942 | // These are stored by name to make querying fast in the later step. |
| 1943 | llvm::StringMap<std::vector<FunctionDecl *>> Overrides; |
| 1944 | for (auto *Method : CR->methods()) { |
| 1945 | if (!Method->isVirtual() || !Method->getIdentifier()) |
| 1946 | continue; |
| 1947 | Overrides[Method->getName()].push_back(Method); |
| 1948 | } |
| 1949 | |
| 1950 | for (const auto &Base : CR->bases()) { |
| 1951 | const auto *BR = Base.getType().getTypePtr()->getAsCXXRecordDecl(); |
| 1952 | if (!BR) |
| 1953 | continue; |
| 1954 | for (auto *Method : BR->methods()) { |
| 1955 | if (!Method->isVirtual() || !Method->getIdentifier()) |
| 1956 | continue; |
| 1957 | const auto it = Overrides.find(Method->getName()); |
| 1958 | bool IsOverriden = false; |
| 1959 | if (it != Overrides.end()) { |
| 1960 | for (auto *MD : it->second) { |
| 1961 | // If the method in current body is not an overload of this virtual |
| 1962 | // function, then it overrides this one. |
| 1963 | if (!S.IsOverload(MD, Method, false)) { |
| 1964 | IsOverriden = true; |
| 1965 | break; |
| 1966 | } |
| 1967 | } |
| 1968 | } |
| 1969 | if (!IsOverriden) { |
| 1970 | // Generates a new CodeCompletionResult by taking this function and |
| 1971 | // converting it into an override declaration with only one chunk in the |
| 1972 | // final CodeCompletionString as a TypedTextChunk. |
| 1973 | std::string OverrideSignature; |
| 1974 | llvm::raw_string_ostream OS(OverrideSignature); |
| 1975 | CodeCompletionResult CCR(Method, 0); |
| 1976 | PrintingPolicy Policy = |
| 1977 | getCompletionPrintingPolicy(S.getASTContext(), S.getPreprocessor()); |
| 1978 | auto *CCS = CCR.createCodeCompletionStringForOverride( |
| 1979 | S.getPreprocessor(), S.getASTContext(), Builder, |
| 1980 | /*IncludeBriefComments=*/false, CCContext, Policy); |
| 1981 | Results.AddResult(CodeCompletionResult(CCS, Method, CCP_CodePattern)); |
| 1982 | } |
| 1983 | } |
| 1984 | } |
| 1985 | } |
| 1986 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1987 | /// Add language constructs that show up for "ordinary" names. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 1988 | static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, Scope *S, |
| 1989 | Sema &SemaRef, ResultBuilder &Results) { |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 1990 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 1991 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 1992 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 1993 | typedef CodeCompletionResult Result; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 1994 | switch (CCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1995 | case Sema::PCC_Namespace: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1996 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 1997 | if (Results.includeCodePatterns()) { |
| 1998 | // namespace <identifier> { declarations } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 1999 | Builder.AddTypedTextChunk("namespace"); |
| 2000 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2001 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2002 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2003 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2004 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2005 | Builder.AddPlaceholderChunk("declarations"); |
| 2006 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2007 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2008 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2009 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2010 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2011 | // namespace identifier = identifier ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2012 | Builder.AddTypedTextChunk("namespace"); |
| 2013 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2014 | Builder.AddPlaceholderChunk("name"); |
| 2015 | Builder.AddChunk(CodeCompletionString::CK_Equal); |
| 2016 | Builder.AddPlaceholderChunk("namespace"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2017 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2018 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2019 | |
| 2020 | // Using directives |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2021 | Builder.AddTypedTextChunk("using namespace"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2022 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2023 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2024 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2025 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2026 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2027 | // asm(string-literal) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2028 | Builder.AddTypedTextChunk("asm"); |
| 2029 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2030 | Builder.AddPlaceholderChunk("string-literal"); |
| 2031 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2032 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2033 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2034 | if (Results.includeCodePatterns()) { |
| 2035 | // Explicit template instantiation |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2036 | Builder.AddTypedTextChunk("template"); |
| 2037 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2038 | Builder.AddPlaceholderChunk("declaration"); |
| 2039 | Results.AddResult(Result(Builder.TakeString())); |
Eric Liu | b87c6eb | 2018-10-15 12:37:23 +0000 | [diff] [blame] | 2040 | } else { |
| 2041 | Results.AddResult(Result("template", CodeCompletionResult::RK_Keyword)); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2042 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2043 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2044 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2045 | if (SemaRef.getLangOpts().ObjC) |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2046 | AddObjCTopLevelResults(Results, true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2047 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2048 | AddTypedefResult(Results); |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 2049 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2050 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2051 | case Sema::PCC_Class: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2052 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2053 | // Using declaration |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2054 | Builder.AddTypedTextChunk("using"); |
| 2055 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2056 | Builder.AddPlaceholderChunk("qualifier"); |
| 2057 | Builder.AddTextChunk("::"); |
| 2058 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2059 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2060 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2061 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2062 | // using typename qualifier::name (only in a dependent context) |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2063 | if (SemaRef.CurContext->isDependentContext()) { |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2064 | Builder.AddTypedTextChunk("using typename"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2065 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2066 | Builder.AddPlaceholderChunk("qualifier"); |
| 2067 | Builder.AddTextChunk("::"); |
| 2068 | Builder.AddPlaceholderChunk("name"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2069 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2070 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2071 | } |
| 2072 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 2073 | AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts()); |
| 2074 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2075 | if (CCC == Sema::PCC_Class) { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2076 | AddTypedefResult(Results); |
| 2077 | |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2078 | bool IsNotInheritanceScope = |
| 2079 | !(S->getFlags() & Scope::ClassInheritanceScope); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2080 | // public: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2081 | Builder.AddTypedTextChunk("public"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2082 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2083 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2084 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2085 | |
| 2086 | // protected: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2087 | Builder.AddTypedTextChunk("protected"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2088 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2089 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2090 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2091 | |
| 2092 | // private: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2093 | Builder.AddTypedTextChunk("private"); |
Erik Verbruggen | 6524c05 | 2017-10-24 13:46:58 +0000 | [diff] [blame] | 2094 | if (IsNotInheritanceScope && Results.includeCodePatterns()) |
Douglas Gregor | 9489cdf | 2012-04-10 17:56:28 +0000 | [diff] [blame] | 2095 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2096 | Results.AddResult(Result(Builder.TakeString())); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 2097 | |
| 2098 | // FIXME: This adds override results only if we are at the first word of |
| 2099 | // the declaration/definition. Also call this from other sides to have |
| 2100 | // more use-cases. |
| 2101 | AddOverrideResults(Results, CodeCompletionContext::CCC_ClassStructUnion, |
| 2102 | Builder); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2103 | } |
| 2104 | } |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 2105 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2106 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2107 | case Sema::PCC_Template: |
| 2108 | case Sema::PCC_MemberTemplate: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2109 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2110 | // template < parameters > |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2111 | Builder.AddTypedTextChunk("template"); |
| 2112 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2113 | Builder.AddPlaceholderChunk("parameters"); |
| 2114 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2115 | Results.AddResult(Result(Builder.TakeString())); |
Eric Liu | b87c6eb | 2018-10-15 12:37:23 +0000 | [diff] [blame] | 2116 | } else { |
| 2117 | Results.AddResult(Result("template", CodeCompletionResult::RK_Keyword)); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2118 | } |
| 2119 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2120 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2121 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2122 | break; |
| 2123 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2124 | case Sema::PCC_ObjCInterface: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2125 | AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true); |
| 2126 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2127 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 2128 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2129 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2130 | case Sema::PCC_ObjCImplementation: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2131 | AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true); |
| 2132 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
| 2133 | AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 2134 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2135 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2136 | case Sema::PCC_ObjCInstanceVariableList: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2137 | AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 2138 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2139 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2140 | case Sema::PCC_RecoveryInFunction: |
| 2141 | case Sema::PCC_Statement: { |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2142 | AddTypedefResult(Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2143 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2144 | if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() && |
| 2145 | SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2146 | Builder.AddTypedTextChunk("try"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2147 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2148 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2149 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2150 | Builder.AddPlaceholderChunk("statements"); |
| 2151 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2152 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2153 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2154 | Builder.AddTextChunk("catch"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2155 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2156 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2157 | Builder.AddPlaceholderChunk("declaration"); |
| 2158 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2159 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2160 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2161 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2162 | Builder.AddPlaceholderChunk("statements"); |
| 2163 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2164 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2165 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2166 | } |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2167 | if (SemaRef.getLangOpts().ObjC) |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2168 | AddObjCStatementResults(Results, true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2169 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2170 | if (Results.includeCodePatterns()) { |
| 2171 | // if (condition) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2172 | Builder.AddTypedTextChunk("if"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2173 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2174 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2175 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2176 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2177 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2178 | Builder.AddPlaceholderChunk("expression"); |
| 2179 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2180 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2181 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2182 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2183 | Builder.AddPlaceholderChunk("statements"); |
| 2184 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2185 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2186 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2187 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2188 | // switch (condition) { } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2189 | Builder.AddTypedTextChunk("switch"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2190 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2191 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2192 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2193 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2194 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2195 | Builder.AddPlaceholderChunk("expression"); |
| 2196 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2197 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2198 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 2199 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2200 | Builder.AddPlaceholderChunk("cases"); |
| 2201 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2202 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2203 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2204 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2205 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2206 | // Switch-specific statements. |
Sam McCall | aeb4b3e | 2018-10-10 10:51:48 +0000 | [diff] [blame] | 2207 | if (SemaRef.getCurFunction() && |
| 2208 | !SemaRef.getCurFunction()->SwitchStack.empty()) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2209 | // case expression: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2210 | Builder.AddTypedTextChunk("case"); |
| 2211 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2212 | Builder.AddPlaceholderChunk("expression"); |
| 2213 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 2214 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2215 | |
| 2216 | // default: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2217 | Builder.AddTypedTextChunk("default"); |
| 2218 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 2219 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2220 | } |
| 2221 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2222 | if (Results.includeCodePatterns()) { |
| 2223 | /// while (condition) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2224 | Builder.AddTypedTextChunk("while"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2225 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2226 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2227 | if (SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2228 | Builder.AddPlaceholderChunk("condition"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2229 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2230 | Builder.AddPlaceholderChunk("expression"); |
| 2231 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2232 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2233 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2234 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2235 | Builder.AddPlaceholderChunk("statements"); |
| 2236 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2237 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2238 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2239 | |
| 2240 | // do { statements } while ( expression ); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2241 | Builder.AddTypedTextChunk("do"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2242 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2243 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 49e432d | 2019-05-28 14:33:16 +0000 | [diff] [blame] | 2244 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2245 | Builder.AddPlaceholderChunk("statements"); |
| 2246 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2247 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2248 | Builder.AddTextChunk("while"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2249 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2250 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2251 | Builder.AddPlaceholderChunk("expression"); |
| 2252 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2253 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2254 | |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2255 | // for ( for-init-statement ; condition ; expression ) { statements } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2256 | Builder.AddTypedTextChunk("for"); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2257 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2258 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2259 | if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2260 | Builder.AddPlaceholderChunk("init-statement"); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2261 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2262 | Builder.AddPlaceholderChunk("init-expression"); |
| 2263 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2264 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2265 | Builder.AddPlaceholderChunk("condition"); |
| 2266 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2267 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2268 | Builder.AddPlaceholderChunk("inc-expression"); |
| 2269 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Ilya Biryukov | 1a445845 | 2019-06-03 08:34:25 +0000 | [diff] [blame] | 2270 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2271 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 2272 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2273 | Builder.AddPlaceholderChunk("statements"); |
| 2274 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 2275 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 2276 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 2277 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2278 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2279 | if (S->getContinueParent()) { |
| 2280 | // continue ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2281 | Builder.AddTypedTextChunk("continue"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2282 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2283 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2284 | } |
| 2285 | |
| 2286 | if (S->getBreakParent()) { |
| 2287 | // break ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2288 | Builder.AddTypedTextChunk("break"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2289 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2290 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2291 | } |
| 2292 | |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2293 | // "return expression ;" or "return ;", depending on the return type. |
| 2294 | QualType ReturnType; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2295 | if (const auto *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext)) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2296 | ReturnType = Function->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2297 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext)) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2298 | ReturnType = Method->getReturnType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2299 | else if (SemaRef.getCurBlock() && |
Douglas Gregor | 9a28e84 | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 2300 | !SemaRef.getCurBlock()->ReturnType.isNull()) |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2301 | ReturnType = SemaRef.getCurBlock()->ReturnType;; |
| 2302 | if (ReturnType.isNull() || ReturnType->isVoidType()) { |
| 2303 | Builder.AddTypedTextChunk("return"); |
| 2304 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2305 | Results.AddResult(Result(Builder.TakeString())); |
| 2306 | } else { |
| 2307 | assert(!ReturnType.isNull()); |
| 2308 | // "return expression ;" |
| 2309 | Builder.AddTypedTextChunk("return"); |
| 2310 | Builder.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2311 | Builder.AddPlaceholderChunk("expression"); |
Ilya Biryukov | 32497f5 | 2019-05-27 09:52:09 +0000 | [diff] [blame] | 2312 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2313 | Results.AddResult(Result(Builder.TakeString())); |
| 2314 | // When boolean, also add 'return true;' and 'return false;'. |
| 2315 | if (ReturnType->isBooleanType()) { |
| 2316 | Builder.AddTypedTextChunk("return true"); |
| 2317 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2318 | Results.AddResult(Result(Builder.TakeString())); |
| 2319 | |
| 2320 | Builder.AddTypedTextChunk("return false"); |
| 2321 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
| 2322 | Results.AddResult(Result(Builder.TakeString())); |
| 2323 | } |
Douglas Gregor | 44272ca | 2010-02-18 04:06:48 +0000 | [diff] [blame] | 2324 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2325 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2326 | // goto identifier ; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2327 | Builder.AddTypedTextChunk("goto"); |
| 2328 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2329 | Builder.AddPlaceholderChunk("label"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2330 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2331 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2332 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2333 | // Using directives |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 2334 | Builder.AddTypedTextChunk("using namespace"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2335 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2336 | Builder.AddPlaceholderChunk("identifier"); |
Ilya Biryukov | 15a37eb | 2019-05-06 13:18:00 +0000 | [diff] [blame] | 2337 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2338 | Results.AddResult(Result(Builder.TakeString())); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 2339 | |
| 2340 | AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts()); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2341 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2342 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2343 | |
| 2344 | // Fall through (for statement expressions). |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2345 | case Sema::PCC_ForInit: |
| 2346 | case Sema::PCC_Condition: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2347 | AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2348 | // Fall through: conditions and statements can have expressions. |
Galina Kistanova | 3339911 | 2017-06-03 06:35:06 +0000 | [diff] [blame] | 2349 | LLVM_FALLTHROUGH; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2350 | |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 2351 | case Sema::PCC_ParenthesizedExpression: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2352 | if (SemaRef.getLangOpts().ObjCAutoRefCount && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2353 | CCC == Sema::PCC_ParenthesizedExpression) { |
| 2354 | // (__bridge <type>)<expression> |
| 2355 | Builder.AddTypedTextChunk("__bridge"); |
| 2356 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2357 | Builder.AddPlaceholderChunk("type"); |
| 2358 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2359 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2360 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2361 | |
| 2362 | // (__bridge_transfer <Objective-C type>)<expression> |
| 2363 | Builder.AddTypedTextChunk("__bridge_transfer"); |
| 2364 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2365 | Builder.AddPlaceholderChunk("Objective-C type"); |
| 2366 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2367 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2368 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2369 | |
| 2370 | // (__bridge_retained <CF type>)<expression> |
| 2371 | Builder.AddTypedTextChunk("__bridge_retained"); |
| 2372 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2373 | Builder.AddPlaceholderChunk("CF type"); |
| 2374 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2375 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2376 | Results.AddResult(Result(Builder.TakeString())); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2377 | } |
| 2378 | // Fall through |
Galina Kistanova | 3339911 | 2017-06-03 06:35:06 +0000 | [diff] [blame] | 2379 | LLVM_FALLTHROUGH; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2380 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2381 | case Sema::PCC_Expression: { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2382 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2383 | // 'this', if we're in a non-static member function. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 2384 | addThisCompletion(SemaRef, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2385 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2386 | // true |
| 2387 | Builder.AddResultTypeChunk("bool"); |
| 2388 | Builder.AddTypedTextChunk("true"); |
| 2389 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2390 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2391 | // false |
| 2392 | Builder.AddResultTypeChunk("bool"); |
| 2393 | Builder.AddTypedTextChunk("false"); |
| 2394 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2395 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2396 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2397 | // dynamic_cast < type-id > ( expression ) |
| 2398 | Builder.AddTypedTextChunk("dynamic_cast"); |
| 2399 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2400 | Builder.AddPlaceholderChunk("type"); |
| 2401 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2402 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2403 | Builder.AddPlaceholderChunk("expression"); |
| 2404 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2405 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2406 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2407 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2408 | // static_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2409 | Builder.AddTypedTextChunk("static_cast"); |
| 2410 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2411 | Builder.AddPlaceholderChunk("type"); |
| 2412 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2413 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2414 | Builder.AddPlaceholderChunk("expression"); |
| 2415 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2416 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2417 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2418 | // reinterpret_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2419 | Builder.AddTypedTextChunk("reinterpret_cast"); |
| 2420 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2421 | Builder.AddPlaceholderChunk("type"); |
| 2422 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2423 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2424 | Builder.AddPlaceholderChunk("expression"); |
| 2425 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2426 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2427 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2428 | // const_cast < type-id > ( expression ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2429 | Builder.AddTypedTextChunk("const_cast"); |
| 2430 | Builder.AddChunk(CodeCompletionString::CK_LeftAngle); |
| 2431 | Builder.AddPlaceholderChunk("type"); |
| 2432 | Builder.AddChunk(CodeCompletionString::CK_RightAngle); |
| 2433 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2434 | Builder.AddPlaceholderChunk("expression"); |
| 2435 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2436 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2437 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2438 | if (SemaRef.getLangOpts().RTTI) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2439 | // typeid ( expression-or-type ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2440 | Builder.AddResultTypeChunk("std::type_info"); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2441 | Builder.AddTypedTextChunk("typeid"); |
| 2442 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2443 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 2444 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2445 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2446 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2447 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2448 | // new T ( ... ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2449 | Builder.AddTypedTextChunk("new"); |
| 2450 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2451 | Builder.AddPlaceholderChunk("type"); |
| 2452 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2453 | Builder.AddPlaceholderChunk("expressions"); |
| 2454 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2455 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2456 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2457 | // new T [ ] ( ... ) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2458 | Builder.AddTypedTextChunk("new"); |
| 2459 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2460 | Builder.AddPlaceholderChunk("type"); |
| 2461 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 2462 | Builder.AddPlaceholderChunk("size"); |
| 2463 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 2464 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2465 | Builder.AddPlaceholderChunk("expressions"); |
| 2466 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2467 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2468 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2469 | // delete expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2470 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2471 | Builder.AddTypedTextChunk("delete"); |
| 2472 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2473 | Builder.AddPlaceholderChunk("expression"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2474 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2475 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2476 | // delete [] expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2477 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2478 | Builder.AddTypedTextChunk("delete"); |
| 2479 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2480 | Builder.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 2481 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 2482 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2483 | Builder.AddPlaceholderChunk("expression"); |
| 2484 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2485 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2486 | if (SemaRef.getLangOpts().CXXExceptions) { |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2487 | // throw expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2488 | Builder.AddResultTypeChunk("void"); |
Douglas Gregor | c05f657 | 2011-04-12 02:47:21 +0000 | [diff] [blame] | 2489 | Builder.AddTypedTextChunk("throw"); |
| 2490 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 2491 | Builder.AddPlaceholderChunk("expression"); |
| 2492 | Results.AddResult(Result(Builder.TakeString())); |
| 2493 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2494 | |
Douglas Gregor | a2db793 | 2010-05-26 22:00:08 +0000 | [diff] [blame] | 2495 | // FIXME: Rethrow? |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2496 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2497 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2498 | // nullptr |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2499 | Builder.AddResultTypeChunk("std::nullptr_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2500 | Builder.AddTypedTextChunk("nullptr"); |
| 2501 | Results.AddResult(Result(Builder.TakeString())); |
| 2502 | |
| 2503 | // alignof |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2504 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2505 | Builder.AddTypedTextChunk("alignof"); |
| 2506 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2507 | Builder.AddPlaceholderChunk("type"); |
| 2508 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2509 | Results.AddResult(Result(Builder.TakeString())); |
| 2510 | |
| 2511 | // noexcept |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2512 | Builder.AddResultTypeChunk("bool"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2513 | Builder.AddTypedTextChunk("noexcept"); |
| 2514 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2515 | Builder.AddPlaceholderChunk("expression"); |
| 2516 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2517 | Results.AddResult(Result(Builder.TakeString())); |
| 2518 | |
| 2519 | // sizeof... expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2520 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | 4205fef | 2011-10-18 16:29:03 +0000 | [diff] [blame] | 2521 | Builder.AddTypedTextChunk("sizeof..."); |
| 2522 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2523 | Builder.AddPlaceholderChunk("parameter-pack"); |
| 2524 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2525 | Results.AddResult(Result(Builder.TakeString())); |
| 2526 | } |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2527 | } |
| 2528 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2529 | if (SemaRef.getLangOpts().ObjC) { |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2530 | // 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] | 2531 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { |
| 2532 | // The interface can be NULL. |
| 2533 | if (ObjCInterfaceDecl *ID = Method->getClassInterface()) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2534 | if (ID->getSuperClass()) { |
| 2535 | std::string SuperType; |
| 2536 | SuperType = ID->getSuperClass()->getNameAsString(); |
| 2537 | if (Method->isInstanceMethod()) |
| 2538 | SuperType += " *"; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2539 | |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2540 | Builder.AddResultTypeChunk(Allocator.CopyString(SuperType)); |
| 2541 | Builder.AddTypedTextChunk("super"); |
| 2542 | Results.AddResult(Result(Builder.TakeString())); |
| 2543 | } |
Ted Kremenek | 305a0a7 | 2010-05-31 21:43:10 +0000 | [diff] [blame] | 2544 | } |
| 2545 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 2546 | AddObjCExpressionResults(Results, true); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2547 | } |
| 2548 | |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 2549 | if (SemaRef.getLangOpts().C11) { |
| 2550 | // _Alignof |
| 2551 | Builder.AddResultTypeChunk("size_t"); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2552 | if (SemaRef.PP.isMacroDefined("alignof")) |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 2553 | Builder.AddTypedTextChunk("alignof"); |
| 2554 | else |
| 2555 | Builder.AddTypedTextChunk("_Alignof"); |
| 2556 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2557 | Builder.AddPlaceholderChunk("type"); |
| 2558 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2559 | Results.AddResult(Result(Builder.TakeString())); |
| 2560 | } |
| 2561 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 2562 | // sizeof expression |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 2563 | Builder.AddResultTypeChunk("size_t"); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2564 | Builder.AddTypedTextChunk("sizeof"); |
| 2565 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 2566 | Builder.AddPlaceholderChunk("expression-or-type"); |
| 2567 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 2568 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2569 | break; |
| 2570 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2571 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 2572 | case Sema::PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 2573 | case Sema::PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 2574 | break; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2575 | } |
| 2576 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2577 | if (WantTypesInContext(CCC, SemaRef.getLangOpts())) |
| 2578 | AddTypeSpecifierResults(SemaRef.getLangOpts(), Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2579 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2580 | if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 2581 | Results.AddResult(Result("operator")); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 2582 | } |
| 2583 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2584 | /// 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] | 2585 | /// type chunk. |
| 2586 | static void AddResultTypeChunk(ASTContext &Context, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2587 | const PrintingPolicy &Policy, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2588 | const NamedDecl *ND, QualType BaseType, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2589 | CodeCompletionBuilder &Result) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2590 | if (!ND) |
| 2591 | return; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2592 | |
| 2593 | // Skip constructors and conversion functions, which have their return types |
| 2594 | // built into their names. |
Sam McCall | 63c5972 | 2018-01-22 20:44:47 +0000 | [diff] [blame] | 2595 | if (isConstructor(ND) || isa<CXXConversionDecl>(ND)) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 2596 | return; |
| 2597 | |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2598 | // Determine the type of the declaration (if it has a type). |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 2599 | QualType T; |
| 2600 | if (const FunctionDecl *Function = ND->getAsFunction()) |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2601 | T = Function->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2602 | else if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2603 | if (!BaseType.isNull()) |
| 2604 | T = Method->getSendResultType(BaseType); |
| 2605 | else |
| 2606 | T = Method->getReturnType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2607 | } else if (const auto *Enumerator = dyn_cast<EnumConstantDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2608 | T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext())); |
Ilya Biryukov | b5da91c | 2017-11-08 10:39:09 +0000 | [diff] [blame] | 2609 | T = clang::TypeName::getFullyQualifiedType(T, Context); |
| 2610 | } else if (isa<UnresolvedUsingValueDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2611 | /* Do nothing: ignore unresolved using declarations*/ |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2612 | } else if (const auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2613 | if (!BaseType.isNull()) |
| 2614 | T = Ivar->getUsageType(BaseType); |
| 2615 | else |
| 2616 | T = Ivar->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2617 | } else if (const auto *Value = dyn_cast<ValueDecl>(ND)) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2618 | T = Value->getType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2619 | } else if (const auto *Property = dyn_cast<ObjCPropertyDecl>(ND)) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2620 | if (!BaseType.isNull()) |
| 2621 | T = Property->getUsageType(BaseType); |
| 2622 | else |
| 2623 | T = Property->getType(); |
| 2624 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2625 | |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2626 | if (T.isNull() || Context.hasSameType(T, Context.DependentTy)) |
| 2627 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2628 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2629 | Result.AddResultTypeChunk( |
| 2630 | GetCompletionTypeString(T, Context, Policy, Result.getAllocator())); |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 2631 | } |
| 2632 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2633 | static void MaybeAddSentinel(Preprocessor &PP, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2634 | const NamedDecl *FunctionOrMethod, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2635 | CodeCompletionBuilder &Result) { |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2636 | if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>()) |
| 2637 | if (Sentinel->getSentinel() == 0) { |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 2638 | if (PP.getLangOpts().ObjC && PP.isMacroDefined("nil")) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2639 | Result.AddTextChunk(", nil"); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2640 | else if (PP.isMacroDefined("NULL")) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2641 | Result.AddTextChunk(", NULL"); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2642 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2643 | Result.AddTextChunk(", (void*)0"); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2644 | } |
| 2645 | } |
| 2646 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2647 | static std::string formatObjCParamQualifiers(unsigned ObjCQuals, |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2648 | QualType &Type) { |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2649 | std::string Result; |
| 2650 | if (ObjCQuals & Decl::OBJC_TQ_In) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2651 | Result += "in "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2652 | else if (ObjCQuals & Decl::OBJC_TQ_Inout) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2653 | Result += "inout "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2654 | else if (ObjCQuals & Decl::OBJC_TQ_Out) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2655 | Result += "out "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2656 | if (ObjCQuals & Decl::OBJC_TQ_Bycopy) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2657 | Result += "bycopy "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2658 | else if (ObjCQuals & Decl::OBJC_TQ_Byref) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2659 | Result += "byref "; |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2660 | if (ObjCQuals & Decl::OBJC_TQ_Oneway) |
Douglas Gregor | 407d1f9 | 2011-11-09 02:13:45 +0000 | [diff] [blame] | 2661 | Result += "oneway "; |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2662 | if (ObjCQuals & Decl::OBJC_TQ_CSNullability) { |
| 2663 | if (auto nullability = AttributedType::stripOuterNullability(Type)) { |
| 2664 | switch (*nullability) { |
| 2665 | case NullabilityKind::NonNull: |
| 2666 | Result += "nonnull "; |
| 2667 | break; |
| 2668 | |
| 2669 | case NullabilityKind::Nullable: |
| 2670 | Result += "nullable "; |
| 2671 | break; |
| 2672 | |
| 2673 | case NullabilityKind::Unspecified: |
| 2674 | Result += "null_unspecified "; |
| 2675 | break; |
| 2676 | } |
| 2677 | } |
| 2678 | } |
Douglas Gregor | 8f08d74 | 2011-07-30 07:55:26 +0000 | [diff] [blame] | 2679 | return Result; |
| 2680 | } |
| 2681 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2682 | /// Tries to find the most appropriate type location for an Objective-C |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2683 | /// block placeholder. |
| 2684 | /// |
| 2685 | /// This function ignores things like typedefs and qualifiers in order to |
| 2686 | /// present the most relevant and accurate block placeholders in code completion |
| 2687 | /// results. |
| 2688 | static void findTypeLocationForBlockDecl(const TypeSourceInfo *TSInfo, |
| 2689 | FunctionTypeLoc &Block, |
| 2690 | FunctionProtoTypeLoc &BlockProto, |
| 2691 | bool SuppressBlock = false) { |
| 2692 | if (!TSInfo) |
| 2693 | return; |
| 2694 | TypeLoc TL = TSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2695 | while (true) { |
| 2696 | // Look through typedefs. |
| 2697 | if (!SuppressBlock) { |
| 2698 | if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) { |
| 2699 | if (TypeSourceInfo *InnerTSInfo = |
| 2700 | TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) { |
| 2701 | TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc(); |
| 2702 | continue; |
| 2703 | } |
| 2704 | } |
| 2705 | |
| 2706 | // Look through qualified types |
| 2707 | if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) { |
| 2708 | TL = QualifiedTL.getUnqualifiedLoc(); |
| 2709 | continue; |
| 2710 | } |
| 2711 | |
| 2712 | if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) { |
| 2713 | TL = AttrTL.getModifiedLoc(); |
| 2714 | continue; |
| 2715 | } |
| 2716 | } |
| 2717 | |
| 2718 | // Try to get the function prototype behind the block pointer type, |
| 2719 | // then we're done. |
| 2720 | if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) { |
| 2721 | TL = BlockPtr.getPointeeLoc().IgnoreParens(); |
| 2722 | Block = TL.getAs<FunctionTypeLoc>(); |
| 2723 | BlockProto = TL.getAs<FunctionProtoTypeLoc>(); |
| 2724 | } |
| 2725 | break; |
| 2726 | } |
| 2727 | } |
| 2728 | |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2729 | static std::string |
| 2730 | formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl, |
| 2731 | FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2732 | bool SuppressBlockName = false, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2733 | bool SuppressBlock = false, |
| 2734 | Optional<ArrayRef<QualType>> ObjCSubsts = None); |
| 2735 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2736 | static std::string |
| 2737 | FormatFunctionParameter(const PrintingPolicy &Policy, const ParmVarDecl *Param, |
| 2738 | bool SuppressName = false, bool SuppressBlock = false, |
| 2739 | Optional<ArrayRef<QualType>> ObjCSubsts = None) { |
Sam McCall | bc7ff89 | 2019-04-04 11:34:18 +0000 | [diff] [blame] | 2740 | // Params are unavailable in FunctionTypeLoc if the FunctionType is invalid. |
| 2741 | // It would be better to pass in the param Type, which is usually avaliable. |
| 2742 | // But this case is rare, so just pretend we fell back to int as elsewhere. |
| 2743 | if (!Param) |
| 2744 | return "int"; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2745 | bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext()); |
| 2746 | if (Param->getType()->isDependentType() || |
| 2747 | !Param->getType()->isBlockPointerType()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2748 | // The argument for a dependent or non-block parameter is a placeholder |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2749 | // containing that parameter's type. |
| 2750 | std::string Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2751 | |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2752 | if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName) |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2753 | Result = Param->getIdentifier()->getName(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2754 | |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2755 | QualType Type = Param->getType(); |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2756 | if (ObjCSubsts) |
| 2757 | Type = Type.substObjCTypeArgs(Param->getASTContext(), *ObjCSubsts, |
| 2758 | ObjCSubstitutionContext::Parameter); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2759 | if (ObjCMethodParam) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2760 | Result = |
| 2761 | "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(), Type); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2762 | Result += Type.getAsString(Policy) + ")"; |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 2763 | if (Param->getIdentifier() && !SuppressName) |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2764 | Result += Param->getIdentifier()->getName(); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2765 | } else { |
| 2766 | Type.getAsStringInternal(Result, Policy); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2767 | } |
| 2768 | return Result; |
| 2769 | } |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2770 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2771 | // The argument for a block pointer parameter is a block literal with |
| 2772 | // the appropriate type. |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2773 | FunctionTypeLoc Block; |
| 2774 | FunctionProtoTypeLoc BlockProto; |
Alex Lorenz | a195120 | 2016-10-18 10:35:27 +0000 | [diff] [blame] | 2775 | findTypeLocationForBlockDecl(Param->getTypeSourceInfo(), Block, BlockProto, |
| 2776 | SuppressBlock); |
Alex Lorenz | 6bf4a58 | 2017-03-13 15:43:42 +0000 | [diff] [blame] | 2777 | // Try to retrieve the block type information from the property if this is a |
| 2778 | // parameter in a setter. |
| 2779 | if (!Block && ObjCMethodParam && |
| 2780 | cast<ObjCMethodDecl>(Param->getDeclContext())->isPropertyAccessor()) { |
| 2781 | if (const auto *PD = cast<ObjCMethodDecl>(Param->getDeclContext()) |
| 2782 | ->findPropertyDecl(/*CheckOverrides=*/false)) |
| 2783 | findTypeLocationForBlockDecl(PD->getTypeSourceInfo(), Block, BlockProto, |
| 2784 | SuppressBlock); |
| 2785 | } |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2786 | |
| 2787 | if (!Block) { |
| 2788 | // We were unable to find a FunctionProtoTypeLoc with parameter names |
| 2789 | // for the block; just use the parameter type as a placeholder. |
| 2790 | std::string Result; |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2791 | if (!ObjCMethodParam && Param->getIdentifier()) |
| 2792 | Result = Param->getIdentifier()->getName(); |
| 2793 | |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2794 | QualType Type = Param->getType().getUnqualifiedType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2795 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2796 | if (ObjCMethodParam) { |
Alex Lorenz | 01bcfc1 | 2016-11-23 16:28:34 +0000 | [diff] [blame] | 2797 | Result = Type.getAsString(Policy); |
| 2798 | std::string Quals = |
| 2799 | formatObjCParamQualifiers(Param->getObjCDeclQualifier(), Type); |
| 2800 | if (!Quals.empty()) |
| 2801 | Result = "(" + Quals + " " + Result + ")"; |
| 2802 | if (Result.back() != ')') |
| 2803 | Result += " "; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2804 | if (Param->getIdentifier()) |
| 2805 | Result += Param->getIdentifier()->getName(); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 2806 | } else { |
| 2807 | Type.getAsStringInternal(Result, Policy); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2808 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2809 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2810 | return Result; |
| 2811 | } |
Alex Lorenz | 01bcfc1 | 2016-11-23 16:28:34 +0000 | [diff] [blame] | 2812 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2813 | // We have the function prototype behind the block pointer type, as it was |
| 2814 | // written in the source. |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2815 | return formatBlockPlaceholder(Policy, Param, Block, BlockProto, |
| 2816 | /*SuppressBlockName=*/false, SuppressBlock, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2817 | ObjCSubsts); |
| 2818 | } |
| 2819 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2820 | /// Returns a placeholder string that corresponds to an Objective-C block |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2821 | /// declaration. |
| 2822 | /// |
| 2823 | /// \param BlockDecl A declaration with an Objective-C block type. |
| 2824 | /// |
| 2825 | /// \param Block The most relevant type location for that block type. |
| 2826 | /// |
Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 2827 | /// \param SuppressBlockName Determines whether or not the name of the block |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2828 | /// declaration is included in the resulting string. |
| 2829 | static std::string |
| 2830 | formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl, |
| 2831 | FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2832 | bool SuppressBlockName, bool SuppressBlock, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2833 | Optional<ArrayRef<QualType>> ObjCSubsts) { |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2834 | std::string Result; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2835 | QualType ResultType = Block.getTypePtr()->getReturnType(); |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 2836 | if (ObjCSubsts) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2837 | ResultType = |
| 2838 | ResultType.substObjCTypeArgs(BlockDecl->getASTContext(), *ObjCSubsts, |
| 2839 | ObjCSubstitutionContext::Result); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2840 | if (!ResultType->isVoidType() || SuppressBlock) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2841 | ResultType.getAsStringInternal(Result, Policy); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2842 | |
| 2843 | // Format the parameter list. |
| 2844 | std::string Params; |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2845 | if (!BlockProto || Block.getNumParams() == 0) { |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2846 | if (BlockProto && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2847 | Params = "(...)"; |
Douglas Gregor | af25cfa | 2010-10-02 23:49:58 +0000 | [diff] [blame] | 2848 | else |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2849 | Params = "(void)"; |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2850 | } else { |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2851 | Params += "("; |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2852 | for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) { |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2853 | if (I) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2854 | Params += ", "; |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2855 | Params += FormatFunctionParameter(Policy, Block.getParam(I), |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2856 | /*SuppressName=*/false, |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2857 | /*SuppressBlock=*/true, ObjCSubsts); |
Alp Toker | b3fd5cf | 2014-01-21 00:32:38 +0000 | [diff] [blame] | 2858 | |
David Blaikie | 6adc78e | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 2859 | if (I == N - 1 && BlockProto.getTypePtr()->isVariadic()) |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2860 | Params += ", ..."; |
Douglas Gregor | 67da50e | 2010-09-08 22:47:51 +0000 | [diff] [blame] | 2861 | } |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2862 | Params += ")"; |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2863 | } |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2864 | |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2865 | if (SuppressBlock) { |
| 2866 | // Format as a parameter. |
| 2867 | Result = Result + " (^"; |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2868 | if (!SuppressBlockName && BlockDecl->getIdentifier()) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2869 | Result += BlockDecl->getIdentifier()->getName(); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2870 | Result += ")"; |
| 2871 | Result += Params; |
| 2872 | } else { |
| 2873 | // Format as a block literal argument. |
| 2874 | Result = '^' + Result; |
| 2875 | Result += Params; |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2876 | |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 2877 | if (!SuppressBlockName && BlockDecl->getIdentifier()) |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2878 | Result += BlockDecl->getIdentifier()->getName(); |
Douglas Gregor | d793e7c | 2011-10-18 04:23:19 +0000 | [diff] [blame] | 2879 | } |
Alex Lorenz | 920ae14 | 2016-10-18 10:38:58 +0000 | [diff] [blame] | 2880 | |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 2881 | return Result; |
| 2882 | } |
| 2883 | |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2884 | static std::string GetDefaultValueString(const ParmVarDecl *Param, |
| 2885 | const SourceManager &SM, |
| 2886 | const LangOptions &LangOpts) { |
Ilya Biryukov | b6d1ec8 | 2017-07-21 09:24:00 +0000 | [diff] [blame] | 2887 | const SourceRange SrcRange = Param->getDefaultArgRange(); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2888 | CharSourceRange CharSrcRange = CharSourceRange::getTokenRange(SrcRange); |
| 2889 | bool Invalid = CharSrcRange.isInvalid(); |
| 2890 | if (Invalid) |
| 2891 | return ""; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2892 | StringRef srcText = |
| 2893 | Lexer::getSourceText(CharSrcRange, SM, LangOpts, &Invalid); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2894 | if (Invalid) |
| 2895 | return ""; |
| 2896 | |
| 2897 | if (srcText.empty() || srcText == "=") { |
| 2898 | // Lexer can't determine the value. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2899 | // This happens if the code is incorrect (for example class is forward |
| 2900 | // declared). |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2901 | return ""; |
| 2902 | } |
Erik Verbruggen | 797980e | 2017-07-19 11:15:36 +0000 | [diff] [blame] | 2903 | std::string DefValue(srcText.str()); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2904 | // FIXME: remove this check if the Lexer::getSourceText value is fixed and |
| 2905 | // this value always has (or always does not have) '=' in front of it |
| 2906 | if (DefValue.at(0) != '=') { |
| 2907 | // If we don't have '=' in front of value. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2908 | // Lexer returns built-in types values without '=' and user-defined types |
| 2909 | // values with it. |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2910 | return " = " + DefValue; |
| 2911 | } |
| 2912 | return " " + DefValue; |
| 2913 | } |
| 2914 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2915 | /// Add function parameter chunks to the given code completion string. |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2916 | static void AddFunctionParameterChunks(Preprocessor &PP, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 2917 | const PrintingPolicy &Policy, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2918 | const FunctionDecl *Function, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2919 | CodeCompletionBuilder &Result, |
| 2920 | unsigned Start = 0, |
| 2921 | bool InOptional = false) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2922 | bool FirstParameter = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2923 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2924 | for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 2925 | const ParmVarDecl *Param = Function->getParamDecl(P); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2926 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2927 | if (Param->hasDefaultArg() && !InOptional) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2928 | // When we see an optional default argument, put that argument and |
| 2929 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 2930 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 2931 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2932 | if (!FirstParameter) |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2933 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2934 | AddFunctionParameterChunks(PP, Policy, Function, Opt, P, true); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2935 | Result.AddOptionalChunk(Opt.TakeString()); |
| 2936 | break; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2937 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2938 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2939 | if (FirstParameter) |
| 2940 | FirstParameter = false; |
| 2941 | else |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 2942 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2943 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2944 | InOptional = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2945 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2946 | // Format the placeholder string. |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2947 | std::string PlaceholderStr = FormatFunctionParameter(Policy, Param); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 2948 | if (Param->hasDefaultArg()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2949 | PlaceholderStr += |
| 2950 | GetDefaultValueString(Param, PP.getSourceManager(), PP.getLangOpts()); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2951 | |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 2952 | if (Function->isVariadic() && P == N - 1) |
| 2953 | PlaceholderStr += ", ..."; |
| 2954 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2955 | // Add the placeholder string. |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 2956 | Result.AddPlaceholderChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2957 | Result.getAllocator().CopyString(PlaceholderStr)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2958 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2959 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2960 | if (const auto *Proto = Function->getType()->getAs<FunctionProtoType>()) |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2961 | if (Proto->isVariadic()) { |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 2962 | if (Proto->getNumParams() == 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 2963 | Result.AddPlaceholderChunk("..."); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2964 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 2965 | MaybeAddSentinel(PP, Function, Result); |
Douglas Gregor | dbb71db | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 2966 | } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2967 | } |
| 2968 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 2969 | /// Add template parameter chunks to the given code completion string. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2970 | static void AddTemplateParameterChunks( |
| 2971 | ASTContext &Context, const PrintingPolicy &Policy, |
| 2972 | const TemplateDecl *Template, CodeCompletionBuilder &Result, |
| 2973 | unsigned MaxParameters = 0, unsigned Start = 0, bool InDefaultArg = false) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2974 | bool FirstParameter = true; |
Richard Smith | 6eece29 | 2015-01-15 02:27:20 +0000 | [diff] [blame] | 2975 | |
| 2976 | // Prefer to take the template parameter names from the first declaration of |
| 2977 | // the template. |
| 2978 | Template = cast<TemplateDecl>(Template->getCanonicalDecl()); |
| 2979 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2980 | TemplateParameterList *Params = Template->getTemplateParameters(); |
| 2981 | TemplateParameterList::iterator PEnd = Params->end(); |
| 2982 | if (MaxParameters) |
| 2983 | PEnd = Params->begin() + MaxParameters; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 2984 | for (TemplateParameterList::iterator P = Params->begin() + Start; P != PEnd; |
| 2985 | ++P) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2986 | bool HasDefaultArg = false; |
| 2987 | std::string PlaceholderStr; |
| 2988 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { |
| 2989 | if (TTP->wasDeclaredWithTypename()) |
| 2990 | PlaceholderStr = "typename"; |
| 2991 | else |
| 2992 | PlaceholderStr = "class"; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2993 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2994 | if (TTP->getIdentifier()) { |
| 2995 | PlaceholderStr += ' '; |
| 2996 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 2997 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 2998 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 2999 | HasDefaultArg = TTP->hasDefaultArgument(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3000 | } else if (NonTypeTemplateParmDecl *NTTP = |
| 3001 | dyn_cast<NonTypeTemplateParmDecl>(*P)) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3002 | if (NTTP->getIdentifier()) |
| 3003 | PlaceholderStr = NTTP->getIdentifier()->getName(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3004 | NTTP->getType().getAsStringInternal(PlaceholderStr, Policy); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3005 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 3006 | } else { |
| 3007 | assert(isa<TemplateTemplateParmDecl>(*P)); |
| 3008 | TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3009 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3010 | // Since putting the template argument list into the placeholder would |
| 3011 | // be very, very long, we just use an abbreviation. |
| 3012 | PlaceholderStr = "template<...> class"; |
| 3013 | if (TTP->getIdentifier()) { |
| 3014 | PlaceholderStr += ' '; |
| 3015 | PlaceholderStr += TTP->getIdentifier()->getName(); |
| 3016 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3017 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3018 | HasDefaultArg = TTP->hasDefaultArgument(); |
| 3019 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3020 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3021 | if (HasDefaultArg && !InDefaultArg) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3022 | // When we see an optional default argument, put that argument and |
| 3023 | // the remaining default arguments into a new, optional string. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3024 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3025 | Result.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3026 | if (!FirstParameter) |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3027 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3028 | AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters, |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3029 | P - Params->begin(), true); |
| 3030 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3031 | break; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3032 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3033 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3034 | InDefaultArg = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3035 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3036 | if (FirstParameter) |
| 3037 | FirstParameter = false; |
| 3038 | else |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3039 | Result.AddChunk(CodeCompletionString::CK_Comma); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3040 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3041 | // Add the placeholder string. |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3042 | Result.AddPlaceholderChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3043 | Result.getAllocator().CopyString(PlaceholderStr)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3044 | } |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3045 | } |
| 3046 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3047 | /// Add a qualifier to the given code-completion string, if the |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3048 | /// provided nested-name-specifier is non-NULL. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3049 | static void AddQualifierToCompletionString(CodeCompletionBuilder &Result, |
| 3050 | NestedNameSpecifier *Qualifier, |
| 3051 | bool QualifierIsInformative, |
| 3052 | ASTContext &Context, |
| 3053 | const PrintingPolicy &Policy) { |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3054 | if (!Qualifier) |
| 3055 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3056 | |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3057 | std::string PrintedNNS; |
| 3058 | { |
| 3059 | llvm::raw_string_ostream OS(PrintedNNS); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3060 | Qualifier->print(OS, Policy); |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3061 | } |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 3062 | if (QualifierIsInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3063 | Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 3064 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3065 | Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS)); |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 3066 | } |
| 3067 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3068 | static void |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3069 | AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3070 | const FunctionDecl *Function) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3071 | const auto *Proto = Function->getType()->getAs<FunctionProtoType>(); |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3072 | if (!Proto || !Proto->getMethodQuals()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3073 | return; |
| 3074 | |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3075 | // FIXME: Add ref-qualifier! |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3076 | |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3077 | // Handle single qualifiers without copying |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3078 | if (Proto->getMethodQuals().hasOnlyConst()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3079 | Result.AddInformativeChunk(" const"); |
| 3080 | return; |
| 3081 | } |
| 3082 | |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3083 | if (Proto->getMethodQuals().hasOnlyVolatile()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3084 | Result.AddInformativeChunk(" volatile"); |
| 3085 | return; |
| 3086 | } |
| 3087 | |
Anastasia Stulova | c61eaa5 | 2019-01-28 11:37:49 +0000 | [diff] [blame] | 3088 | if (Proto->getMethodQuals().hasOnlyRestrict()) { |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3089 | Result.AddInformativeChunk(" restrict"); |
| 3090 | return; |
| 3091 | } |
| 3092 | |
| 3093 | // Handle multiple qualifiers. |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3094 | std::string QualsStr; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3095 | if (Proto->isConst()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3096 | QualsStr += " const"; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3097 | if (Proto->isVolatile()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3098 | QualsStr += " volatile"; |
David Blaikie | f5697e5 | 2012-08-10 00:55:35 +0000 | [diff] [blame] | 3099 | if (Proto->isRestrict()) |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3100 | QualsStr += " restrict"; |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3101 | Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr)); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3102 | } |
| 3103 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3104 | /// Add the name of the given declaration |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3105 | static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy, |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3106 | const NamedDecl *ND, |
| 3107 | CodeCompletionBuilder &Result) { |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3108 | DeclarationName Name = ND->getDeclName(); |
| 3109 | if (!Name) |
| 3110 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3111 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3112 | switch (Name.getNameKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3113 | case DeclarationName::CXXOperatorName: { |
| 3114 | const char *OperatorName = nullptr; |
| 3115 | switch (Name.getCXXOverloadedOperator()) { |
| 3116 | case OO_None: |
| 3117 | case OO_Conditional: |
| 3118 | case NUM_OVERLOADED_OPERATORS: |
| 3119 | OperatorName = "operator"; |
| 3120 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3121 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3122 | #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ |
| 3123 | case OO_##Name: \ |
| 3124 | OperatorName = "operator" Spelling; \ |
| 3125 | break; |
| 3126 | #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemberOnly) |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3127 | #include "clang/Basic/OperatorKinds.def" |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3128 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3129 | case OO_New: |
| 3130 | OperatorName = "operator new"; |
| 3131 | break; |
| 3132 | case OO_Delete: |
| 3133 | OperatorName = "operator delete"; |
| 3134 | break; |
| 3135 | case OO_Array_New: |
| 3136 | OperatorName = "operator new[]"; |
| 3137 | break; |
| 3138 | case OO_Array_Delete: |
| 3139 | OperatorName = "operator delete[]"; |
| 3140 | break; |
| 3141 | case OO_Call: |
| 3142 | OperatorName = "operator()"; |
| 3143 | break; |
| 3144 | case OO_Subscript: |
| 3145 | OperatorName = "operator[]"; |
Douglas Gregor | 304f9b0 | 2011-02-01 21:15:40 +0000 | [diff] [blame] | 3146 | break; |
| 3147 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3148 | Result.AddTypedTextChunk(OperatorName); |
| 3149 | break; |
| 3150 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3151 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3152 | case DeclarationName::Identifier: |
| 3153 | case DeclarationName::CXXConversionFunctionName: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3154 | case DeclarationName::CXXDestructorName: |
| 3155 | case DeclarationName::CXXLiteralOperatorName: |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3156 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3157 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3158 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3159 | |
Richard Smith | 3584515 | 2017-02-07 01:37:30 +0000 | [diff] [blame] | 3160 | case DeclarationName::CXXDeductionGuideName: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3161 | case DeclarationName::CXXUsingDirective: |
| 3162 | case DeclarationName::ObjCZeroArgSelector: |
| 3163 | case DeclarationName::ObjCOneArgSelector: |
| 3164 | case DeclarationName::ObjCMultiArgSelector: |
| 3165 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3166 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3167 | case DeclarationName::CXXConstructorName: { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3168 | CXXRecordDecl *Record = nullptr; |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3169 | QualType Ty = Name.getCXXNameType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3170 | if (const auto *RecordTy = Ty->getAs<RecordType>()) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3171 | Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3172 | else if (const auto *InjectedTy = Ty->getAs<InjectedClassNameType>()) |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3173 | Record = InjectedTy->getDecl(); |
| 3174 | else { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3175 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3176 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3177 | break; |
| 3178 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3179 | |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3180 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3181 | Result.getAllocator().CopyString(Record->getNameAsString())); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3182 | if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) { |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3183 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3184 | AddTemplateParameterChunks(Context, Policy, Template, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3185 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3186 | } |
| 3187 | break; |
| 3188 | } |
| 3189 | } |
| 3190 | } |
| 3191 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3192 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString( |
| 3193 | Sema &S, const CodeCompletionContext &CCContext, |
| 3194 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 3195 | bool IncludeBriefComments) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3196 | return CreateCodeCompletionString(S.Context, S.PP, CCContext, Allocator, |
| 3197 | CCTUInfo, IncludeBriefComments); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3198 | } |
| 3199 | |
Eric Liu | 00f43c9 | 2018-07-06 09:43:57 +0000 | [diff] [blame] | 3200 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionStringForMacro( |
| 3201 | Preprocessor &PP, CodeCompletionAllocator &Allocator, |
| 3202 | CodeCompletionTUInfo &CCTUInfo) { |
| 3203 | assert(Kind == RK_Macro); |
| 3204 | CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); |
| 3205 | const MacroInfo *MI = PP.getMacroInfo(Macro); |
| 3206 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(Macro->getName())); |
| 3207 | |
| 3208 | if (!MI || !MI->isFunctionLike()) |
| 3209 | return Result.TakeString(); |
| 3210 | |
| 3211 | // Format a function-like macro with placeholders for the arguments. |
| 3212 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
| 3213 | MacroInfo::param_iterator A = MI->param_begin(), AEnd = MI->param_end(); |
| 3214 | |
| 3215 | // C99 variadic macros add __VA_ARGS__ at the end. Skip it. |
| 3216 | if (MI->isC99Varargs()) { |
| 3217 | --AEnd; |
| 3218 | |
| 3219 | if (A == AEnd) { |
| 3220 | Result.AddPlaceholderChunk("..."); |
| 3221 | } |
| 3222 | } |
| 3223 | |
| 3224 | for (MacroInfo::param_iterator A = MI->param_begin(); A != AEnd; ++A) { |
| 3225 | if (A != MI->param_begin()) |
| 3226 | Result.AddChunk(CodeCompletionString::CK_Comma); |
| 3227 | |
| 3228 | if (MI->isVariadic() && (A + 1) == AEnd) { |
| 3229 | SmallString<32> Arg = (*A)->getName(); |
| 3230 | if (MI->isC99Varargs()) |
| 3231 | Arg += ", ..."; |
| 3232 | else |
| 3233 | Arg += "..."; |
| 3234 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
| 3235 | break; |
| 3236 | } |
| 3237 | |
| 3238 | // Non-variadic macros are simple. |
| 3239 | Result.AddPlaceholderChunk( |
| 3240 | Result.getAllocator().CopyString((*A)->getName())); |
| 3241 | } |
| 3242 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
| 3243 | return Result.TakeString(); |
| 3244 | } |
| 3245 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3246 | /// If possible, create a new code completion string for the given |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3247 | /// result. |
| 3248 | /// |
| 3249 | /// \returns Either a new, heap-allocated code completion string describing |
| 3250 | /// how to use this result, or NULL to indicate that the string or name of the |
| 3251 | /// result is all that is needed. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3252 | CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString( |
| 3253 | ASTContext &Ctx, Preprocessor &PP, const CodeCompletionContext &CCContext, |
| 3254 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 3255 | bool IncludeBriefComments) { |
Eric Liu | 00f43c9 | 2018-07-06 09:43:57 +0000 | [diff] [blame] | 3256 | if (Kind == RK_Macro) |
| 3257 | return CreateCodeCompletionStringForMacro(PP, Allocator, CCTUInfo); |
| 3258 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3259 | CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3260 | |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3261 | PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3262 | if (Kind == RK_Pattern) { |
| 3263 | Pattern->Priority = Priority; |
| 3264 | Pattern->Availability = Availability; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3265 | |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3266 | if (Declaration) { |
| 3267 | Result.addParentContext(Declaration->getDeclContext()); |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3268 | Pattern->ParentName = Result.getParentName(); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3269 | if (const RawComment *RC = |
| 3270 | getPatternCompletionComment(Ctx, Declaration)) { |
| 3271 | Result.addBriefComment(RC->getBriefText(Ctx)); |
| 3272 | Pattern->BriefComment = Result.getBriefComment(); |
| 3273 | } |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3274 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3275 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3276 | return Pattern; |
| 3277 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3278 | |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3279 | if (Kind == RK_Keyword) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3280 | Result.AddTypedTextChunk(Keyword); |
| 3281 | return Result.TakeString(); |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3282 | } |
Douglas Gregor | f64acca | 2010-05-25 21:41:55 +0000 | [diff] [blame] | 3283 | assert(Kind == RK_Declaration && "Missed a result kind?"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3284 | return createCodeCompletionStringForDecl( |
| 3285 | PP, Ctx, Result, IncludeBriefComments, CCContext, Policy); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3286 | } |
| 3287 | |
Ilya Biryukov | cabab29 | 2019-05-24 10:18:39 +0000 | [diff] [blame] | 3288 | static void printOverrideString(const CodeCompletionString &CCS, |
| 3289 | std::string &BeforeName, |
| 3290 | std::string &NameAndSignature) { |
| 3291 | bool SeenTypedChunk = false; |
| 3292 | for (auto &Chunk : CCS) { |
| 3293 | if (Chunk.Kind == CodeCompletionString::CK_Optional) { |
| 3294 | assert(SeenTypedChunk && "optional parameter before name"); |
| 3295 | // Note that we put all chunks inside into NameAndSignature. |
| 3296 | printOverrideString(*Chunk.Optional, NameAndSignature, NameAndSignature); |
| 3297 | continue; |
| 3298 | } |
| 3299 | SeenTypedChunk |= Chunk.Kind == CodeCompletionString::CK_TypedText; |
| 3300 | if (SeenTypedChunk) |
| 3301 | NameAndSignature += Chunk.Text; |
| 3302 | else |
| 3303 | BeforeName += Chunk.Text; |
| 3304 | } |
| 3305 | } |
| 3306 | |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3307 | CodeCompletionString * |
| 3308 | CodeCompletionResult::createCodeCompletionStringForOverride( |
| 3309 | Preprocessor &PP, ASTContext &Ctx, CodeCompletionBuilder &Result, |
| 3310 | bool IncludeBriefComments, const CodeCompletionContext &CCContext, |
| 3311 | PrintingPolicy &Policy) { |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3312 | auto *CCS = createCodeCompletionStringForDecl(PP, Ctx, Result, |
| 3313 | /*IncludeBriefComments=*/false, |
| 3314 | CCContext, Policy); |
Ilya Biryukov | cabab29 | 2019-05-24 10:18:39 +0000 | [diff] [blame] | 3315 | std::string BeforeName; |
| 3316 | std::string NameAndSignature; |
| 3317 | // For overrides all chunks go into the result, none are informative. |
| 3318 | printOverrideString(*CCS, BeforeName, NameAndSignature); |
| 3319 | NameAndSignature += " override"; |
| 3320 | |
| 3321 | Result.AddTextChunk(Result.getAllocator().CopyString(BeforeName)); |
| 3322 | Result.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 3323 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(NameAndSignature)); |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3324 | return Result.TakeString(); |
| 3325 | } |
| 3326 | |
| 3327 | CodeCompletionString *CodeCompletionResult::createCodeCompletionStringForDecl( |
| 3328 | Preprocessor &PP, ASTContext &Ctx, CodeCompletionBuilder &Result, |
| 3329 | bool IncludeBriefComments, const CodeCompletionContext &CCContext, |
| 3330 | PrintingPolicy &Policy) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3331 | const NamedDecl *ND = Declaration; |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 3332 | Result.addParentContext(ND->getDeclContext()); |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3333 | |
| 3334 | if (IncludeBriefComments) { |
| 3335 | // Add documentation comment, if it exists. |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3336 | if (const RawComment *RC = getCompletionComment(Ctx, Declaration)) { |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3337 | Result.addBriefComment(RC->getBriefText(Ctx)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3338 | } |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 3339 | } |
| 3340 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 3341 | if (StartsNestedNameSpecifier) { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3342 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3343 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3344 | Result.AddTextChunk("::"); |
| 3345 | return Result.TakeString(); |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 3346 | } |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 3347 | |
Aaron Ballman | be22bcb | 2014-03-10 17:08:28 +0000 | [diff] [blame] | 3348 | for (const auto *I : ND->specific_attrs<AnnotateAttr>()) |
| 3349 | Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation())); |
Aaron Ballman | b97112e | 2014-03-08 22:19:01 +0000 | [diff] [blame] | 3350 | |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3351 | AddResultTypeChunk(Ctx, Policy, ND, CCContext.getBaseType(), Result); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3352 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3353 | if (const auto *Function = dyn_cast<FunctionDecl>(ND)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3354 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3355 | Ctx, Policy); |
| 3356 | AddTypedNameChunk(Ctx, Policy, ND, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3357 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3358 | AddFunctionParameterChunks(PP, Policy, Function, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3359 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3360 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3361 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3362 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3363 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3364 | if (const FunctionTemplateDecl *FunTmpl = |
| 3365 | dyn_cast<FunctionTemplateDecl>(ND)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3366 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3367 | Ctx, Policy); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3368 | FunctionDecl *Function = FunTmpl->getTemplatedDecl(); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3369 | AddTypedNameChunk(Ctx, Policy, Function, Result); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 3370 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3371 | // Figure out which template parameters are deduced (or have default |
| 3372 | // arguments). |
Benjamin Kramer | e0513cb | 2012-01-30 16:17:39 +0000 | [diff] [blame] | 3373 | llvm::SmallBitVector Deduced; |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3374 | Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3375 | unsigned LastDeducibleArgument; |
| 3376 | for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0; |
| 3377 | --LastDeducibleArgument) { |
| 3378 | if (!Deduced[LastDeducibleArgument - 1]) { |
| 3379 | // C++0x: Figure out if the template argument has a default. If so, |
| 3380 | // the user doesn't need to type this argument. |
| 3381 | // FIXME: We need to abstract template parameters better! |
| 3382 | bool HasDefaultArg = false; |
| 3383 | NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3384 | LastDeducibleArgument - 1); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3385 | if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) |
| 3386 | HasDefaultArg = TTP->hasDefaultArgument(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3387 | else if (NonTypeTemplateParmDecl *NTTP = |
| 3388 | dyn_cast<NonTypeTemplateParmDecl>(Param)) |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3389 | HasDefaultArg = NTTP->hasDefaultArgument(); |
| 3390 | else { |
| 3391 | assert(isa<TemplateTemplateParmDecl>(Param)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3392 | HasDefaultArg = |
| 3393 | cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3394 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3395 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3396 | if (!HasDefaultArg) |
| 3397 | break; |
| 3398 | } |
| 3399 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3400 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3401 | if (LastDeducibleArgument) { |
| 3402 | // Some of the function template arguments cannot be deduced from a |
| 3403 | // function call, so we introduce an explicit template argument list |
| 3404 | // containing all of the arguments up to the first deducible argument. |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3405 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3406 | AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result, |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3407 | LastDeducibleArgument); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3408 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3409 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3410 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3411 | // Add the function parameters |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3412 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3413 | AddFunctionParameterChunks(PP, Policy, Function, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3414 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 0f62236 | 2009-12-11 18:44:16 +0000 | [diff] [blame] | 3415 | AddFunctionTypeQualsToCompletionString(Result, Function); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3416 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3417 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3418 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3419 | if (const auto *Template = dyn_cast<TemplateDecl>(ND)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3420 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3421 | Ctx, Policy); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3422 | Result.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3423 | Result.getAllocator().CopyString(Template->getNameAsString())); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3424 | Result.AddChunk(CodeCompletionString::CK_LeftAngle); |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3425 | AddTemplateParameterChunks(Ctx, Policy, Template, Result); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3426 | Result.AddChunk(CodeCompletionString::CK_RightAngle); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3427 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3428 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3429 | if (const auto *Method = dyn_cast<ObjCMethodDecl>(ND)) { |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3430 | Selector Sel = Method->getSelector(); |
| 3431 | if (Sel.isUnarySelector()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3432 | Result.AddTypedTextChunk( |
| 3433 | Result.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3434 | return Result.TakeString(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3435 | } |
| 3436 | |
Douglas Gregor | af2a6ae | 2011-02-18 22:29:55 +0000 | [diff] [blame] | 3437 | std::string SelName = Sel.getNameForSlot(0).str(); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3438 | SelName += ':'; |
| 3439 | if (StartParameter == 0) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3440 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName)); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3441 | else { |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3442 | Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3443 | |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3444 | // If there is only one parameter, and we're past it, add an empty |
| 3445 | // typed-text chunk since there is nothing to type. |
| 3446 | if (Method->param_size() == 1) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3447 | Result.AddTypedTextChunk(""); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3448 | } |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3449 | unsigned Idx = 0; |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 3450 | for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3451 | PEnd = Method->param_end(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3452 | P != PEnd; (void)++P, ++Idx) { |
| 3453 | if (Idx > 0) { |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 3454 | std::string Keyword; |
| 3455 | if (Idx > StartParameter) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3456 | Result.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3457 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx)) |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 3458 | Keyword += II->getName(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3459 | Keyword += ":"; |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3460 | if (Idx < StartParameter || AllParametersAreInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3461 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3462 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3463 | Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword)); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3464 | } |
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 we're before the starting parameter, skip the placeholder. |
| 3467 | if (Idx < StartParameter) |
| 3468 | continue; |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3469 | |
| 3470 | std::string Arg; |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3471 | QualType ParamType = (*P)->getType(); |
| 3472 | Optional<ArrayRef<QualType>> ObjCSubsts; |
| 3473 | if (!CCContext.getBaseType().isNull()) |
| 3474 | ObjCSubsts = CCContext.getBaseType()->getObjCSubstitutions(Method); |
| 3475 | |
| 3476 | if (ParamType->isBlockPointerType() && !DeclaringEntity) |
| 3477 | Arg = FormatFunctionParameter(Policy, *P, true, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3478 | /*SuppressBlock=*/false, ObjCSubsts); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3479 | else { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3480 | if (ObjCSubsts) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3481 | ParamType = ParamType.substObjCTypeArgs( |
| 3482 | Ctx, *ObjCSubsts, ObjCSubstitutionContext::Parameter); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 3483 | Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier(), |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3484 | ParamType); |
| 3485 | Arg += ParamType.getAsString(Policy) + ")"; |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3486 | if (IdentifierInfo *II = (*P)->getIdentifier()) |
Douglas Gregor | 981a0c4 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 3487 | if (DeclaringEntity || AllParametersAreInformative) |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 3488 | Arg += II->getName(); |
Douglas Gregor | e90dd00 | 2010-08-24 16:15:59 +0000 | [diff] [blame] | 3489 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3490 | |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3491 | if (Method->isVariadic() && (P + 1) == PEnd) |
| 3492 | Arg += ", ..."; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3493 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3494 | if (DeclaringEntity) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3495 | Result.AddTextChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 3496 | else if (AllParametersAreInformative) |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3497 | Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 3498 | else |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3499 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg)); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3500 | } |
| 3501 | |
Douglas Gregor | 04c5f97 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 3502 | if (Method->isVariadic()) { |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3503 | if (Method->param_size() == 0) { |
| 3504 | if (DeclaringEntity) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3505 | Result.AddTextChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3506 | else if (AllParametersAreInformative) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3507 | Result.AddInformativeChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3508 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3509 | Result.AddPlaceholderChunk(", ..."); |
Douglas Gregor | 400f597 | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 3510 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3511 | |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3512 | MaybeAddSentinel(PP, Method, Result); |
Douglas Gregor | 04c5f97 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 3513 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3514 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3515 | return Result.TakeString(); |
Douglas Gregor | d3c5d79 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 3516 | } |
| 3517 | |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3518 | if (Qualifier) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3519 | AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative, |
Argyrios Kyrtzidis | 8d05ca7 | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 3520 | Ctx, Policy); |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 3521 | |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3522 | Result.AddTypedTextChunk( |
Kadir Cetinkaya | ae45d0a4 | 2018-10-02 09:42:31 +0000 | [diff] [blame] | 3523 | Result.getAllocator().CopyString(ND->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3524 | return Result.TakeString(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3525 | } |
| 3526 | |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3527 | const RawComment *clang::getCompletionComment(const ASTContext &Ctx, |
| 3528 | const NamedDecl *ND) { |
| 3529 | if (!ND) |
| 3530 | return nullptr; |
| 3531 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(ND)) |
| 3532 | return RC; |
| 3533 | |
| 3534 | // Try to find comment from a property for ObjC methods. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3535 | const auto *M = dyn_cast<ObjCMethodDecl>(ND); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3536 | if (!M) |
| 3537 | return nullptr; |
| 3538 | const ObjCPropertyDecl *PDecl = M->findPropertyDecl(); |
| 3539 | if (!PDecl) |
| 3540 | return nullptr; |
| 3541 | |
| 3542 | return Ctx.getRawCommentForAnyRedecl(PDecl); |
| 3543 | } |
| 3544 | |
| 3545 | const RawComment *clang::getPatternCompletionComment(const ASTContext &Ctx, |
| 3546 | const NamedDecl *ND) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3547 | const auto *M = dyn_cast_or_null<ObjCMethodDecl>(ND); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3548 | if (!M || !M->isPropertyAccessor()) |
| 3549 | return nullptr; |
| 3550 | |
| 3551 | // Provide code completion comment for self.GetterName where |
| 3552 | // GetterName is the getter method for a property with name |
| 3553 | // different from the property name (declared via a property |
| 3554 | // getter attribute. |
| 3555 | const ObjCPropertyDecl *PDecl = M->findPropertyDecl(); |
| 3556 | if (!PDecl) |
| 3557 | return nullptr; |
| 3558 | if (PDecl->getGetterName() == M->getSelector() && |
| 3559 | PDecl->getIdentifier() != M->getIdentifier()) { |
| 3560 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(M)) |
| 3561 | return RC; |
| 3562 | if (auto *RC = Ctx.getRawCommentForAnyRedecl(PDecl)) |
| 3563 | return RC; |
| 3564 | } |
| 3565 | return nullptr; |
| 3566 | } |
| 3567 | |
| 3568 | const RawComment *clang::getParameterComment( |
| 3569 | const ASTContext &Ctx, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3570 | const CodeCompleteConsumer::OverloadCandidate &Result, unsigned ArgIndex) { |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3571 | auto FDecl = Result.getFunction(); |
| 3572 | if (!FDecl) |
| 3573 | return nullptr; |
| 3574 | if (ArgIndex < FDecl->getNumParams()) |
| 3575 | return Ctx.getRawCommentForAnyRedecl(FDecl->getParamDecl(ArgIndex)); |
| 3576 | return nullptr; |
| 3577 | } |
| 3578 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3579 | /// Add function overload parameter chunks to the given code completion |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3580 | /// string. |
| 3581 | static void AddOverloadParameterChunks(ASTContext &Context, |
| 3582 | const PrintingPolicy &Policy, |
| 3583 | const FunctionDecl *Function, |
| 3584 | const FunctionProtoType *Prototype, |
| 3585 | CodeCompletionBuilder &Result, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3586 | unsigned CurrentArg, unsigned Start = 0, |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3587 | bool InOptional = false) { |
| 3588 | bool FirstParameter = true; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3589 | unsigned NumParams = |
| 3590 | Function ? Function->getNumParams() : Prototype->getNumParams(); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3591 | |
| 3592 | for (unsigned P = Start; P != NumParams; ++P) { |
| 3593 | if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) { |
| 3594 | // When we see an optional default argument, put that argument and |
| 3595 | // the remaining default arguments into a new, optional string. |
| 3596 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3597 | Result.getCodeCompletionTUInfo()); |
| 3598 | if (!FirstParameter) |
| 3599 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
| 3600 | // Optional sections are nested. |
| 3601 | AddOverloadParameterChunks(Context, Policy, Function, Prototype, Opt, |
| 3602 | CurrentArg, P, /*InOptional=*/true); |
| 3603 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3604 | return; |
| 3605 | } |
| 3606 | |
| 3607 | if (FirstParameter) |
| 3608 | FirstParameter = false; |
| 3609 | else |
| 3610 | Result.AddChunk(CodeCompletionString::CK_Comma); |
| 3611 | |
| 3612 | InOptional = false; |
| 3613 | |
| 3614 | // Format the placeholder string. |
| 3615 | std::string Placeholder; |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3616 | if (Function) { |
| 3617 | const ParmVarDecl *Param = Function->getParamDecl(P); |
| 3618 | Placeholder = FormatFunctionParameter(Policy, Param); |
| 3619 | if (Param->hasDefaultArg()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3620 | Placeholder += GetDefaultValueString(Param, Context.getSourceManager(), |
| 3621 | Context.getLangOpts()); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3622 | } else { |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3623 | Placeholder = Prototype->getParamType(P).getAsString(Policy); |
Erik Verbruggen | 11338c5 | 2017-07-19 10:45:40 +0000 | [diff] [blame] | 3624 | } |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3625 | |
| 3626 | if (P == CurrentArg) |
| 3627 | Result.AddCurrentParameterChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3628 | Result.getAllocator().CopyString(Placeholder)); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3629 | else |
| 3630 | Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder)); |
| 3631 | } |
| 3632 | |
| 3633 | if (Prototype && Prototype->isVariadic()) { |
| 3634 | CodeCompletionBuilder Opt(Result.getAllocator(), |
| 3635 | Result.getCodeCompletionTUInfo()); |
| 3636 | if (!FirstParameter) |
| 3637 | Opt.AddChunk(CodeCompletionString::CK_Comma); |
| 3638 | |
| 3639 | if (CurrentArg < NumParams) |
| 3640 | Opt.AddPlaceholderChunk("..."); |
| 3641 | else |
| 3642 | Opt.AddCurrentParameterChunk("..."); |
| 3643 | |
| 3644 | Result.AddOptionalChunk(Opt.TakeString()); |
| 3645 | } |
| 3646 | } |
| 3647 | |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3648 | CodeCompletionString * |
| 3649 | CodeCompleteConsumer::OverloadCandidate::CreateSignatureString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3650 | unsigned CurrentArg, Sema &S, CodeCompletionAllocator &Allocator, |
| 3651 | CodeCompletionTUInfo &CCTUInfo, bool IncludeBriefComments) const { |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3652 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 3653 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3654 | // FIXME: Set priority, availability appropriately. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3655 | CodeCompletionBuilder Result(Allocator, CCTUInfo, 1, |
| 3656 | CXAvailability_Available); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3657 | FunctionDecl *FDecl = getFunction(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3658 | const FunctionProtoType *Proto = |
| 3659 | dyn_cast<FunctionProtoType>(getFunctionType()); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3660 | if (!FDecl && !Proto) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3661 | // Function without a prototype. Just give the return type and a |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3662 | // highlighted ellipsis. |
| 3663 | const FunctionType *FT = getFunctionType(); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3664 | Result.AddResultTypeChunk(Result.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3665 | FT->getReturnType().getAsString(Policy))); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3666 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
| 3667 | Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "..."); |
| 3668 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3669 | return Result.TakeString(); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3670 | } |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3671 | |
| 3672 | if (FDecl) { |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3673 | if (IncludeBriefComments) { |
| 3674 | if (auto RC = getParameterComment(S.getASTContext(), *this, CurrentArg)) |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3675 | Result.addBriefComment(RC->getBriefText(S.getASTContext())); |
Ilya Biryukov | a3f955b | 2018-05-16 12:30:01 +0000 | [diff] [blame] | 3676 | } |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 3677 | AddResultTypeChunk(S.Context, Policy, FDecl, QualType(), Result); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3678 | Result.AddTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3679 | Result.getAllocator().CopyString(FDecl->getNameAsString())); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3680 | } else { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3681 | Result.AddResultTypeChunk(Result.getAllocator().CopyString( |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3682 | Proto->getReturnType().getAsString(Policy))); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3683 | } |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 3684 | |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3685 | Result.AddChunk(CodeCompletionString::CK_LeftParen); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3686 | AddOverloadParameterChunks(S.getASTContext(), Policy, FDecl, Proto, Result, |
| 3687 | CurrentArg); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 3688 | Result.AddChunk(CodeCompletionString::CK_RightParen); |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 3689 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3690 | return Result.TakeString(); |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 3691 | } |
| 3692 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3693 | unsigned clang::getMacroUsagePriority(StringRef MacroName, |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3694 | const LangOptions &LangOpts, |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3695 | bool PreferredTypeIsPointer) { |
| 3696 | unsigned Priority = CCP_Macro; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3697 | |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3698 | // Treat the "nil", "Nil" and "NULL" macros as null pointer constants. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3699 | if (MacroName.equals("nil") || MacroName.equals("NULL") || |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3700 | MacroName.equals("Nil")) { |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3701 | Priority = CCP_Constant; |
| 3702 | if (PreferredTypeIsPointer) |
| 3703 | Priority = Priority / CCF_SimilarTypeMatch; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3704 | } |
Douglas Gregor | 9dcf58a | 2010-09-20 21:11:48 +0000 | [diff] [blame] | 3705 | // Treat "YES", "NO", "true", and "false" as constants. |
| 3706 | else if (MacroName.equals("YES") || MacroName.equals("NO") || |
| 3707 | MacroName.equals("true") || MacroName.equals("false")) |
| 3708 | Priority = CCP_Constant; |
| 3709 | // Treat "bool" as a type. |
| 3710 | else if (MacroName.equals("bool")) |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 3711 | Priority = CCP_Type + (LangOpts.ObjC ? CCD_bool_in_ObjC : 0); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3712 | |
Douglas Gregor | 6e24033 | 2010-08-16 16:18:59 +0000 | [diff] [blame] | 3713 | return Priority; |
| 3714 | } |
| 3715 | |
Dmitri Gribenko | bdc80de | 2013-01-11 20:32:41 +0000 | [diff] [blame] | 3716 | CXCursorKind clang::getCursorKindForDecl(const Decl *D) { |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3717 | if (!D) |
| 3718 | return CXCursor_UnexposedDecl; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3719 | |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3720 | switch (D->getKind()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3721 | case Decl::Enum: |
| 3722 | return CXCursor_EnumDecl; |
| 3723 | case Decl::EnumConstant: |
| 3724 | return CXCursor_EnumConstantDecl; |
| 3725 | case Decl::Field: |
| 3726 | return CXCursor_FieldDecl; |
| 3727 | case Decl::Function: |
| 3728 | return CXCursor_FunctionDecl; |
| 3729 | case Decl::ObjCCategory: |
| 3730 | return CXCursor_ObjCCategoryDecl; |
| 3731 | case Decl::ObjCCategoryImpl: |
| 3732 | return CXCursor_ObjCCategoryImplDecl; |
| 3733 | case Decl::ObjCImplementation: |
| 3734 | return CXCursor_ObjCImplementationDecl; |
Douglas Gregor | deafd0b | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 3735 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3736 | case Decl::ObjCInterface: |
| 3737 | return CXCursor_ObjCInterfaceDecl; |
| 3738 | case Decl::ObjCIvar: |
| 3739 | return CXCursor_ObjCIvarDecl; |
| 3740 | case Decl::ObjCMethod: |
| 3741 | return cast<ObjCMethodDecl>(D)->isInstanceMethod() |
| 3742 | ? CXCursor_ObjCInstanceMethodDecl |
| 3743 | : CXCursor_ObjCClassMethodDecl; |
| 3744 | case Decl::CXXMethod: |
| 3745 | return CXCursor_CXXMethod; |
| 3746 | case Decl::CXXConstructor: |
| 3747 | return CXCursor_Constructor; |
| 3748 | case Decl::CXXDestructor: |
| 3749 | return CXCursor_Destructor; |
| 3750 | case Decl::CXXConversion: |
| 3751 | return CXCursor_ConversionFunction; |
| 3752 | case Decl::ObjCProperty: |
| 3753 | return CXCursor_ObjCPropertyDecl; |
| 3754 | case Decl::ObjCProtocol: |
| 3755 | return CXCursor_ObjCProtocolDecl; |
| 3756 | case Decl::ParmVar: |
| 3757 | return CXCursor_ParmDecl; |
| 3758 | case Decl::Typedef: |
| 3759 | return CXCursor_TypedefDecl; |
| 3760 | case Decl::TypeAlias: |
| 3761 | return CXCursor_TypeAliasDecl; |
| 3762 | case Decl::TypeAliasTemplate: |
| 3763 | return CXCursor_TypeAliasTemplateDecl; |
| 3764 | case Decl::Var: |
| 3765 | return CXCursor_VarDecl; |
| 3766 | case Decl::Namespace: |
| 3767 | return CXCursor_Namespace; |
| 3768 | case Decl::NamespaceAlias: |
| 3769 | return CXCursor_NamespaceAlias; |
| 3770 | case Decl::TemplateTypeParm: |
| 3771 | return CXCursor_TemplateTypeParameter; |
| 3772 | case Decl::NonTypeTemplateParm: |
| 3773 | return CXCursor_NonTypeTemplateParameter; |
| 3774 | case Decl::TemplateTemplateParm: |
| 3775 | return CXCursor_TemplateTemplateParameter; |
| 3776 | case Decl::FunctionTemplate: |
| 3777 | return CXCursor_FunctionTemplate; |
| 3778 | case Decl::ClassTemplate: |
| 3779 | return CXCursor_ClassTemplate; |
| 3780 | case Decl::AccessSpec: |
| 3781 | return CXCursor_CXXAccessSpecifier; |
| 3782 | case Decl::ClassTemplatePartialSpecialization: |
| 3783 | return CXCursor_ClassTemplatePartialSpecialization; |
| 3784 | case Decl::UsingDirective: |
| 3785 | return CXCursor_UsingDirective; |
| 3786 | case Decl::StaticAssert: |
| 3787 | return CXCursor_StaticAssert; |
| 3788 | case Decl::Friend: |
| 3789 | return CXCursor_FriendDecl; |
| 3790 | case Decl::TranslationUnit: |
| 3791 | return CXCursor_TranslationUnit; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3792 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3793 | case Decl::Using: |
| 3794 | case Decl::UnresolvedUsingValue: |
| 3795 | case Decl::UnresolvedUsingTypename: |
| 3796 | return CXCursor_UsingDeclaration; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3797 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3798 | case Decl::ObjCPropertyImpl: |
| 3799 | switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) { |
| 3800 | case ObjCPropertyImplDecl::Dynamic: |
| 3801 | return CXCursor_ObjCDynamicDecl; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3802 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3803 | case ObjCPropertyImplDecl::Synthesize: |
| 3804 | return CXCursor_ObjCSynthesizeDecl; |
| 3805 | } |
Bruno Ricci | e5bcf0b | 2018-12-21 17:52:13 +0000 | [diff] [blame] | 3806 | llvm_unreachable("Unexpected Kind!"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3807 | |
| 3808 | case Decl::Import: |
| 3809 | return CXCursor_ModuleImportDecl; |
| 3810 | |
| 3811 | case Decl::ObjCTypeParam: |
| 3812 | return CXCursor_TemplateTypeParameter; |
| 3813 | |
| 3814 | default: |
| 3815 | if (const auto *TD = dyn_cast<TagDecl>(D)) { |
| 3816 | switch (TD->getTagKind()) { |
| 3817 | case TTK_Interface: // fall through |
| 3818 | case TTK_Struct: |
| 3819 | return CXCursor_StructDecl; |
| 3820 | case TTK_Class: |
| 3821 | return CXCursor_ClassDecl; |
| 3822 | case TTK_Union: |
| 3823 | return CXCursor_UnionDecl; |
| 3824 | case TTK_Enum: |
| 3825 | return CXCursor_EnumDecl; |
Douglas Gregor | 4cd6596 | 2011-06-03 23:08:58 +0000 | [diff] [blame] | 3826 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3827 | } |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3828 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3829 | |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 3830 | return CXCursor_UnexposedDecl; |
| 3831 | } |
| 3832 | |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3833 | static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results, |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 3834 | bool LoadExternal, bool IncludeUndefined, |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3835 | bool TargetTypeIsPointer = false) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3836 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3837 | |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 3838 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3839 | |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 3840 | for (Preprocessor::macro_iterator M = PP.macro_begin(LoadExternal), |
| 3841 | MEnd = PP.macro_end(LoadExternal); |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3842 | M != MEnd; ++M) { |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 3843 | auto MD = PP.getMacroDefinition(M->first); |
| 3844 | if (IncludeUndefined || MD) { |
Eric Liu | d485df1 | 2018-09-05 14:59:17 +0000 | [diff] [blame] | 3845 | MacroInfo *MI = MD.getMacroInfo(); |
| 3846 | if (MI && MI->isUsedForHeaderGuard()) |
| 3847 | continue; |
Argyrios Kyrtzidis | 9ef53ce | 2014-04-09 18:21:23 +0000 | [diff] [blame] | 3848 | |
Eric Liu | d485df1 | 2018-09-05 14:59:17 +0000 | [diff] [blame] | 3849 | Results.AddResult( |
| 3850 | Result(M->first, MI, |
| 3851 | getMacroUsagePriority(M->first->getName(), PP.getLangOpts(), |
| 3852 | TargetTypeIsPointer))); |
Argyrios Kyrtzidis | 9ef53ce | 2014-04-09 18:21:23 +0000 | [diff] [blame] | 3853 | } |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 3854 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3855 | |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 3856 | Results.ExitScope(); |
| 3857 | } |
| 3858 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3859 | static void AddPrettyFunctionResults(const LangOptions &LangOpts, |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3860 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3861 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3862 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3863 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3864 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3865 | Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant)); |
| 3866 | Results.AddResult(Result("__FUNCTION__", CCP_Constant)); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3867 | if (LangOpts.C99 || LangOpts.CPlusPlus11) |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 3868 | Results.AddResult(Result("__func__", CCP_Constant)); |
| 3869 | Results.ExitScope(); |
| 3870 | } |
| 3871 | |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 3872 | static void HandleCodeCompleteResults(Sema *S, |
| 3873 | CodeCompleteConsumer *CodeCompleter, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3874 | CodeCompletionContext Context, |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 3875 | CodeCompletionResult *Results, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3876 | unsigned NumResults) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3877 | if (CodeCompleter) |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3878 | CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 3879 | } |
| 3880 | |
Ilya Biryukov | 4110967 | 2018-12-13 15:36:32 +0000 | [diff] [blame] | 3881 | static CodeCompletionContext |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3882 | mapCodeCompletionContext(Sema &S, Sema::ParserCompletionContext PCC) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3883 | switch (PCC) { |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3884 | case Sema::PCC_Namespace: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3885 | return CodeCompletionContext::CCC_TopLevel; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3886 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3887 | case Sema::PCC_Class: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3888 | return CodeCompletionContext::CCC_ClassStructUnion; |
| 3889 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3890 | case Sema::PCC_ObjCInterface: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3891 | return CodeCompletionContext::CCC_ObjCInterface; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3892 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3893 | case Sema::PCC_ObjCImplementation: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3894 | return CodeCompletionContext::CCC_ObjCImplementation; |
| 3895 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3896 | case Sema::PCC_ObjCInstanceVariableList: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3897 | return CodeCompletionContext::CCC_ObjCIvarList; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3898 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3899 | case Sema::PCC_Template: |
| 3900 | case Sema::PCC_MemberTemplate: |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3901 | if (S.CurContext->isFileContext()) |
| 3902 | return CodeCompletionContext::CCC_TopLevel; |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3903 | if (S.CurContext->isRecord()) |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3904 | return CodeCompletionContext::CCC_ClassStructUnion; |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3905 | return CodeCompletionContext::CCC_Other; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3906 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3907 | case Sema::PCC_RecoveryInFunction: |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 3908 | return CodeCompletionContext::CCC_Recovery; |
Douglas Gregor | c769d6e | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3909 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3910 | case Sema::PCC_ForInit: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3911 | if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 || |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 3912 | S.getLangOpts().ObjC) |
Douglas Gregor | c769d6e | 2010-10-18 22:01:46 +0000 | [diff] [blame] | 3913 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
| 3914 | else |
| 3915 | return CodeCompletionContext::CCC_Expression; |
| 3916 | |
| 3917 | case Sema::PCC_Expression: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3918 | return CodeCompletionContext::CCC_Expression; |
Ilya Biryukov | 4110967 | 2018-12-13 15:36:32 +0000 | [diff] [blame] | 3919 | case Sema::PCC_Condition: |
| 3920 | return CodeCompletionContext(CodeCompletionContext::CCC_Expression, |
| 3921 | S.getASTContext().BoolTy); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3922 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3923 | case Sema::PCC_Statement: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3924 | return CodeCompletionContext::CCC_Statement; |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3925 | |
John McCall | faf5fb4 | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 3926 | case Sema::PCC_Type: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 3927 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 3928 | |
| 3929 | case Sema::PCC_ParenthesizedExpression: |
| 3930 | return CodeCompletionContext::CCC_ParenthesizedExpression; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3931 | |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 3932 | case Sema::PCC_LocalDeclarationSpecifiers: |
| 3933 | return CodeCompletionContext::CCC_Type; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3934 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 3935 | |
| 3936 | llvm_unreachable("Invalid ParserCompletionContext!"); |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 3937 | } |
| 3938 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 3939 | /// If we're in a C++ virtual member function, add completion results |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3940 | /// 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] | 3941 | /// overridden function as well as adding new functionality. |
| 3942 | /// |
| 3943 | /// \param S The semantic analysis object for which we are generating results. |
| 3944 | /// |
| 3945 | /// \param InContext This context in which the nested-name-specifier preceding |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3946 | /// the code-completion point |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3947 | static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext, |
| 3948 | ResultBuilder &Results) { |
| 3949 | // Look through blocks. |
| 3950 | DeclContext *CurContext = S.CurContext; |
| 3951 | while (isa<BlockDecl>(CurContext)) |
| 3952 | CurContext = CurContext->getParent(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3953 | |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3954 | CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext); |
| 3955 | if (!Method || !Method->isVirtual()) |
| 3956 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3957 | |
| 3958 | // 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] | 3959 | // generate a forwarding call. |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 3960 | for (auto P : Method->parameters()) |
Aaron Ballman | 43b68be | 2014-03-07 17:50:17 +0000 | [diff] [blame] | 3961 | if (!P->getDeclName()) |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3962 | return; |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3963 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3964 | PrintingPolicy Policy = getCompletionPrintingPolicy(S); |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 3965 | for (const CXXMethodDecl *Overridden : Method->overridden_methods()) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 3966 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 3967 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3968 | if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl()) |
| 3969 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3970 | |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3971 | // If we need a nested-name-specifier, add one now. |
| 3972 | if (!InContext) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3973 | NestedNameSpecifier *NNS = getRequiredQualification( |
| 3974 | S.Context, CurContext, Overridden->getDeclContext()); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3975 | if (NNS) { |
| 3976 | std::string Str; |
| 3977 | llvm::raw_string_ostream OS(Str); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 3978 | NNS->print(OS, Policy); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 3979 | Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str())); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3980 | } |
| 3981 | } else if (!InContext->Equals(Overridden->getDeclContext())) |
| 3982 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 3983 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3984 | Builder.AddTypedTextChunk( |
| 3985 | Results.getAllocator().CopyString(Overridden->getNameAsString())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3986 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3987 | bool FirstParam = true; |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 3988 | for (auto P : Method->parameters()) { |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3989 | if (FirstParam) |
| 3990 | FirstParam = false; |
| 3991 | else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3992 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3993 | |
Aaron Ballman | 43b68be | 2014-03-07 17:50:17 +0000 | [diff] [blame] | 3994 | Builder.AddPlaceholderChunk( |
| 3995 | Results.getAllocator().CopyString(P->getIdentifier()->getName())); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 3996 | } |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 3997 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 3998 | Results.AddResult(CodeCompletionResult( |
| 3999 | Builder.TakeString(), CCP_SuperCompletion, CXCursor_CXXMethod, |
| 4000 | CXAvailability_Available, Overridden)); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4001 | Results.Ignore(Overridden); |
| 4002 | } |
| 4003 | } |
| 4004 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4005 | void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc, |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4006 | ModuleIdPath Path) { |
| 4007 | typedef CodeCompletionResult Result; |
| 4008 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4009 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4010 | CodeCompletionContext::CCC_Other); |
| 4011 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4012 | |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4013 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4014 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4015 | typedef CodeCompletionResult Result; |
| 4016 | if (Path.empty()) { |
| 4017 | // Enumerate all top-level modules. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 4018 | SmallVector<Module *, 8> Modules; |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4019 | PP.getHeaderSearchInfo().collectAllModules(Modules); |
| 4020 | for (unsigned I = 0, N = Modules.size(); I != N; ++I) { |
| 4021 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4022 | Builder.getAllocator().CopyString(Modules[I]->Name)); |
| 4023 | Results.AddResult(Result( |
| 4024 | Builder.TakeString(), CCP_Declaration, CXCursor_ModuleImportDecl, |
| 4025 | Modules[I]->isAvailable() ? CXAvailability_Available |
| 4026 | : CXAvailability_NotAvailable)); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4027 | } |
Daniel Jasper | 07e6c40 | 2013-08-05 20:26:17 +0000 | [diff] [blame] | 4028 | } else if (getLangOpts().Modules) { |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4029 | // Load the named module. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4030 | Module *Mod = |
| 4031 | PP.getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible, |
| 4032 | /*IsInclusionDirective=*/false); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4033 | // Enumerate submodules. |
| 4034 | if (Mod) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4035 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4036 | SubEnd = Mod->submodule_end(); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4037 | Sub != SubEnd; ++Sub) { |
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 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4040 | Builder.getAllocator().CopyString((*Sub)->Name)); |
| 4041 | Results.AddResult(Result( |
| 4042 | Builder.TakeString(), CCP_Declaration, CXCursor_ModuleImportDecl, |
| 4043 | (*Sub)->isAvailable() ? CXAvailability_Available |
| 4044 | : CXAvailability_NotAvailable)); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4045 | } |
| 4046 | } |
| 4047 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4048 | Results.ExitScope(); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4049 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4050 | Results.data(), Results.size()); |
Douglas Gregor | 07f4357 | 2012-01-29 18:15:03 +0000 | [diff] [blame] | 4051 | } |
| 4052 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4053 | void Sema::CodeCompleteOrdinaryName(Scope *S, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4054 | ParserCompletionContext CompletionContext) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4055 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4056 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4057 | mapCodeCompletionContext(*this, CompletionContext)); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 4058 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4059 | |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4060 | // Determine how to filter results, e.g., so that the names of |
| 4061 | // values (functions, enumerators, function templates, etc.) are |
| 4062 | // only allowed where we can have an expression. |
| 4063 | switch (CompletionContext) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4064 | case PCC_Namespace: |
| 4065 | case PCC_Class: |
| 4066 | case PCC_ObjCInterface: |
| 4067 | case PCC_ObjCImplementation: |
| 4068 | case PCC_ObjCInstanceVariableList: |
| 4069 | case PCC_Template: |
| 4070 | case PCC_MemberTemplate: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4071 | case PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 4072 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4073 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 4074 | break; |
| 4075 | |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4076 | case PCC_Statement: |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 4077 | case PCC_ParenthesizedExpression: |
Douglas Gregor | 4d755e8 | 2010-08-24 23:58:17 +0000 | [diff] [blame] | 4078 | case PCC_Expression: |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4079 | case PCC_ForInit: |
| 4080 | case PCC_Condition: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4081 | if (WantTypesInContext(CompletionContext, getLangOpts())) |
Douglas Gregor | 70febae | 2010-05-28 00:49:12 +0000 | [diff] [blame] | 4082 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 4083 | else |
| 4084 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4085 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4086 | if (getLangOpts().CPlusPlus) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4087 | MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results); |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4088 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4089 | |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4090 | case PCC_RecoveryInFunction: |
Douglas Gregor | 6da3db4 | 2010-05-25 05:58:43 +0000 | [diff] [blame] | 4091 | // Unfiltered |
| 4092 | break; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 4093 | } |
| 4094 | |
Douglas Gregor | 9be0ed4 | 2010-08-26 16:36:48 +0000 | [diff] [blame] | 4095 | // 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] | 4096 | // the member function to filter/prioritize the results list. |
Ilya Biryukov | b45d851b | 2018-12-19 18:01:24 +0000 | [diff] [blame] | 4097 | auto ThisType = getCurrentThisType(); |
| 4098 | if (!ThisType.isNull()) |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4099 | Results.setObjectTypeQualifiers(ThisType->getPointeeType().getQualifiers(), |
| 4100 | VK_LValue); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4101 | |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4102 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4103 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4104 | CodeCompleter->includeGlobals(), |
| 4105 | CodeCompleter->loadExternal()); |
Douglas Gregor | 9225369 | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 4106 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 4107 | AddOrdinaryNameResults(CompletionContext, S, *this, Results); |
Douglas Gregor | 9225369 | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 4108 | Results.ExitScope(); |
| 4109 | |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4110 | switch (CompletionContext) { |
Douglas Gregor | 5e35d59 | 2010-09-14 23:59:36 +0000 | [diff] [blame] | 4111 | case PCC_ParenthesizedExpression: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4112 | case PCC_Expression: |
| 4113 | case PCC_Statement: |
| 4114 | case PCC_RecoveryInFunction: |
| 4115 | if (S->getFnParent()) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 4116 | AddPrettyFunctionResults(getLangOpts(), Results); |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4117 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4118 | |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4119 | case PCC_Namespace: |
| 4120 | case PCC_Class: |
| 4121 | case PCC_ObjCInterface: |
| 4122 | case PCC_ObjCImplementation: |
| 4123 | case PCC_ObjCInstanceVariableList: |
| 4124 | case PCC_Template: |
| 4125 | case PCC_MemberTemplate: |
| 4126 | case PCC_ForInit: |
| 4127 | case PCC_Condition: |
| 4128 | case PCC_Type: |
Douglas Gregor | 8003924 | 2011-02-15 20:33:25 +0000 | [diff] [blame] | 4129 | case PCC_LocalDeclarationSpecifiers: |
Douglas Gregor | f02e5f3 | 2010-08-24 01:11:00 +0000 | [diff] [blame] | 4130 | break; |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4131 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4132 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 4133 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 4134 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4135 | |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 4136 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4137 | Results.data(), Results.size()); |
Douglas Gregor | 9d64c5e | 2009-09-21 20:51:25 +0000 | [diff] [blame] | 4138 | } |
| 4139 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4140 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4141 | ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 4142 | ArrayRef<IdentifierInfo *> SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4143 | bool AtArgumentExpression, bool IsSuper, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4144 | ResultBuilder &Results); |
| 4145 | |
| 4146 | void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS, |
| 4147 | bool AllowNonIdentifiers, |
| 4148 | bool AllowNestedNameSpecifiers) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4149 | typedef CodeCompletionResult Result; |
Kadir Cetinkaya | b006e09 | 2018-10-24 15:23:49 +0000 | [diff] [blame] | 4150 | ResultBuilder Results( |
| 4151 | *this, CodeCompleter->getAllocator(), |
| 4152 | CodeCompleter->getCodeCompletionTUInfo(), |
| 4153 | AllowNestedNameSpecifiers |
| 4154 | // FIXME: Try to separate codepath leading here to deduce whether we |
| 4155 | // need an existing symbol or a new one. |
| 4156 | ? CodeCompletionContext::CCC_SymbolOrNewName |
| 4157 | : CodeCompletionContext::CCC_NewName); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4158 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4159 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4160 | // Type qualifiers can come after names. |
| 4161 | Results.AddResult(Result("const")); |
| 4162 | Results.AddResult(Result("volatile")); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4163 | if (getLangOpts().C99) |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4164 | Results.AddResult(Result("restrict")); |
| 4165 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4166 | if (getLangOpts().CPlusPlus) { |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4167 | if (getLangOpts().CPlusPlus11 && |
| 4168 | (DS.getTypeSpecType() == DeclSpec::TST_class || |
| 4169 | DS.getTypeSpecType() == DeclSpec::TST_struct)) |
| 4170 | Results.AddResult("final"); |
| 4171 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4172 | if (AllowNonIdentifiers) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4173 | Results.AddResult(Result("operator")); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4174 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4175 | |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4176 | // Add nested-name-specifiers. |
| 4177 | if (AllowNestedNameSpecifiers) { |
| 4178 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4179 | Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4180 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 4181 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4182 | CodeCompleter->includeGlobals(), |
| 4183 | CodeCompleter->loadExternal()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4184 | Results.setFilter(nullptr); |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4185 | } |
| 4186 | } |
| 4187 | Results.ExitScope(); |
| 4188 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4189 | // If we're in a context where we might have an expression (rather than a |
| 4190 | // declaration), and what we've seen so far is an Objective-C type that could |
| 4191 | // be a receiver of a class message, this may be a class message send with |
| 4192 | // the initial opening bracket '[' missing. Add appropriate completions. |
| 4193 | if (AllowNonIdentifiers && !AllowNestedNameSpecifiers && |
Richard Smith | b4a9e86 | 2013-04-12 22:46:28 +0000 | [diff] [blame] | 4194 | DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4195 | DS.getTypeSpecType() == DeclSpec::TST_typename && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4196 | DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified && |
| 4197 | DS.getTypeSpecSign() == DeclSpec::TSS_unspecified && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4198 | !DS.isTypeAltiVecVector() && S && |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4199 | (S->getFlags() & Scope::DeclScope) != 0 && |
| 4200 | (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4201 | Scope::FunctionPrototypeScope | Scope::AtCatchScope)) == |
| 4202 | 0) { |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4203 | ParsedType T = DS.getRepAsType(); |
| 4204 | if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType()) |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 4205 | AddClassMessageCompletions(*this, S, T, None, false, false, Results); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 4206 | } |
| 4207 | |
Douglas Gregor | 56ccce0 | 2010-08-24 04:59:56 +0000 | [diff] [blame] | 4208 | // Note that we intentionally suppress macro results here, since we do not |
| 4209 | // encourage using macros to produce the names of entities. |
| 4210 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4211 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | c49f5b2 | 2010-08-23 18:23:48 +0000 | [diff] [blame] | 4212 | Results.data(), Results.size()); |
| 4213 | } |
| 4214 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4215 | struct Sema::CodeCompleteExpressionData { |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4216 | CodeCompleteExpressionData(QualType PreferredType = QualType(), |
| 4217 | bool IsParenthesized = false) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4218 | : PreferredType(PreferredType), IntegralConstantExpression(false), |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4219 | ObjCCollection(false), IsParenthesized(IsParenthesized) {} |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4220 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4221 | QualType PreferredType; |
| 4222 | bool IntegralConstantExpression; |
| 4223 | bool ObjCCollection; |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4224 | bool IsParenthesized; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4225 | SmallVector<Decl *, 4> IgnoreDecls; |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4226 | }; |
| 4227 | |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4228 | namespace { |
| 4229 | /// Information that allows to avoid completing redundant enumerators. |
| 4230 | struct CoveredEnumerators { |
| 4231 | llvm::SmallPtrSet<EnumConstantDecl *, 8> Seen; |
| 4232 | NestedNameSpecifier *SuggestedQualifier = nullptr; |
| 4233 | }; |
| 4234 | } // namespace |
| 4235 | |
| 4236 | static void AddEnumerators(ResultBuilder &Results, ASTContext &Context, |
| 4237 | EnumDecl *Enum, DeclContext *CurContext, |
| 4238 | const CoveredEnumerators &Enumerators) { |
| 4239 | NestedNameSpecifier *Qualifier = Enumerators.SuggestedQualifier; |
| 4240 | if (Context.getLangOpts().CPlusPlus && !Qualifier && Enumerators.Seen.empty()) { |
| 4241 | // If there are no prior enumerators in C++, check whether we have to |
| 4242 | // qualify the names of the enumerators that we suggest, because they |
| 4243 | // may not be visible in this scope. |
| 4244 | Qualifier = getRequiredQualification(Context, CurContext, Enum); |
| 4245 | } |
| 4246 | |
| 4247 | Results.EnterNewScope(); |
| 4248 | for (auto *E : Enum->enumerators()) { |
| 4249 | if (Enumerators.Seen.count(E)) |
| 4250 | continue; |
| 4251 | |
| 4252 | CodeCompletionResult R(E, CCP_EnumInCase, Qualifier); |
| 4253 | Results.AddResult(R, CurContext, nullptr, false); |
| 4254 | } |
| 4255 | Results.ExitScope(); |
| 4256 | } |
| 4257 | |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4258 | /// Try to find a corresponding FunctionProtoType for function-like types (e.g. |
| 4259 | /// function pointers, std::function, etc). |
| 4260 | static const FunctionProtoType *TryDeconstructFunctionLike(QualType T) { |
| 4261 | assert(!T.isNull()); |
| 4262 | // Try to extract first template argument from std::function<> and similar. |
| 4263 | // Note we only handle the sugared types, they closely match what users wrote. |
| 4264 | // We explicitly choose to not handle ClassTemplateSpecializationDecl. |
| 4265 | if (auto *Specialization = T->getAs<TemplateSpecializationType>()) { |
| 4266 | if (Specialization->getNumArgs() != 1) |
| 4267 | return nullptr; |
| 4268 | const TemplateArgument &Argument = Specialization->getArg(0); |
| 4269 | if (Argument.getKind() != TemplateArgument::Type) |
| 4270 | return nullptr; |
| 4271 | return Argument.getAsType()->getAs<FunctionProtoType>(); |
| 4272 | } |
| 4273 | // Handle other cases. |
| 4274 | if (T->isPointerType()) |
| 4275 | T = T->getPointeeType(); |
| 4276 | return T->getAs<FunctionProtoType>(); |
| 4277 | } |
| 4278 | |
| 4279 | /// Adds a pattern completion for a lambda expression with the specified |
| 4280 | /// parameter types and placeholders for parameter names. |
| 4281 | static void AddLambdaCompletion(ResultBuilder &Results, |
| 4282 | llvm::ArrayRef<QualType> Parameters, |
| 4283 | const LangOptions &LangOpts) { |
Ilya Biryukov | fd11a5f | 2019-05-23 16:39:26 +0000 | [diff] [blame] | 4284 | if (!Results.includeCodePatterns()) |
| 4285 | return; |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4286 | CodeCompletionBuilder Completion(Results.getAllocator(), |
| 4287 | Results.getCodeCompletionTUInfo()); |
| 4288 | // [](<parameters>) {} |
| 4289 | Completion.AddChunk(CodeCompletionString::CK_LeftBracket); |
| 4290 | Completion.AddPlaceholderChunk("="); |
| 4291 | Completion.AddChunk(CodeCompletionString::CK_RightBracket); |
| 4292 | if (!Parameters.empty()) { |
| 4293 | Completion.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4294 | bool First = true; |
| 4295 | for (auto Parameter : Parameters) { |
| 4296 | if (!First) |
| 4297 | Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); |
| 4298 | else |
| 4299 | First = false; |
| 4300 | |
| 4301 | constexpr llvm::StringLiteral NamePlaceholder = "!#!NAME_GOES_HERE!#!"; |
| 4302 | std::string Type = NamePlaceholder; |
| 4303 | Parameter.getAsStringInternal(Type, PrintingPolicy(LangOpts)); |
| 4304 | llvm::StringRef Prefix, Suffix; |
| 4305 | std::tie(Prefix, Suffix) = llvm::StringRef(Type).split(NamePlaceholder); |
| 4306 | Prefix = Prefix.rtrim(); |
| 4307 | Suffix = Suffix.ltrim(); |
| 4308 | |
| 4309 | Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); |
| 4310 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 4311 | Completion.AddPlaceholderChunk("parameter"); |
| 4312 | Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); |
| 4313 | }; |
| 4314 | Completion.AddChunk(CodeCompletionString::CK_RightParen); |
| 4315 | } |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4316 | Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4317 | Completion.AddChunk(CodeCompletionString::CK_LeftBrace); |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4318 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4319 | Completion.AddPlaceholderChunk("body"); |
Ilya Biryukov | 47fd4f0 | 2019-05-24 16:16:15 +0000 | [diff] [blame] | 4320 | Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4321 | Completion.AddChunk(CodeCompletionString::CK_RightBrace); |
| 4322 | |
| 4323 | Results.AddResult(Completion.TakeString()); |
| 4324 | } |
| 4325 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4326 | /// Perform code-completion in an expression context when we know what |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4327 | /// type we're looking for. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4328 | void Sema::CodeCompleteExpression(Scope *S, |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4329 | const CodeCompleteExpressionData &Data) { |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 4330 | ResultBuilder Results( |
| 4331 | *this, CodeCompleter->getAllocator(), |
| 4332 | CodeCompleter->getCodeCompletionTUInfo(), |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4333 | CodeCompletionContext( |
| 4334 | Data.IsParenthesized |
| 4335 | ? CodeCompletionContext::CCC_ParenthesizedExpression |
| 4336 | : CodeCompletionContext::CCC_Expression, |
| 4337 | Data.PreferredType)); |
| 4338 | auto PCC = |
| 4339 | Data.IsParenthesized ? PCC_ParenthesizedExpression : PCC_Expression; |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4340 | if (Data.ObjCCollection) |
| 4341 | Results.setFilter(&ResultBuilder::IsObjCCollection); |
| 4342 | else if (Data.IntegralConstantExpression) |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 4343 | Results.setFilter(&ResultBuilder::IsIntegralConstantValue); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4344 | else if (WantTypesInContext(PCC, getLangOpts())) |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4345 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 4346 | else |
| 4347 | Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4348 | |
| 4349 | if (!Data.PreferredType.isNull()) |
| 4350 | Results.setPreferredType(Data.PreferredType.getNonReferenceType()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4351 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4352 | // Ignore any declarations that we were told that we don't care about. |
| 4353 | for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I) |
| 4354 | Results.Ignore(Data.IgnoreDecls[I]); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4355 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4356 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4357 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4358 | CodeCompleter->includeGlobals(), |
| 4359 | CodeCompleter->loadExternal()); |
| 4360 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4361 | Results.EnterNewScope(); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4362 | AddOrdinaryNameResults(PCC, S, *this, Results); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4363 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4364 | |
Douglas Gregor | 55b037b | 2010-07-08 20:55:51 +0000 | [diff] [blame] | 4365 | bool PreferredTypeIsPointer = false; |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4366 | if (!Data.PreferredType.isNull()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4367 | PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType() || |
| 4368 | Data.PreferredType->isMemberPointerType() || |
| 4369 | Data.PreferredType->isBlockPointerType(); |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 4370 | if (Data.PreferredType->isEnumeralType()) { |
| 4371 | EnumDecl *Enum = Data.PreferredType->castAs<EnumType>()->getDecl(); |
| 4372 | if (auto *Def = Enum->getDefinition()) |
| 4373 | Enum = Def; |
| 4374 | // FIXME: collect covered enumerators in cases like: |
| 4375 | // if (x == my_enum::one) { ... } else if (x == ^) {} |
| 4376 | AddEnumerators(Results, Context, Enum, CurContext, CoveredEnumerators()); |
| 4377 | } |
| 4378 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4379 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4380 | if (S->getFnParent() && !Data.ObjCCollection && |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4381 | !Data.IntegralConstantExpression) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 4382 | AddPrettyFunctionResults(getLangOpts(), Results); |
Douglas Gregor | ce0e856 | 2010-08-23 21:54:33 +0000 | [diff] [blame] | 4383 | |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4384 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 4385 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false, |
| 4386 | PreferredTypeIsPointer); |
Ilya Biryukov | 3a2f0e4 | 2019-05-23 07:45:35 +0000 | [diff] [blame] | 4387 | |
| 4388 | // Complete a lambda expression when preferred type is a function. |
| 4389 | if (!Data.PreferredType.isNull() && getLangOpts().CPlusPlus11) { |
| 4390 | if (const FunctionProtoType *F = |
| 4391 | TryDeconstructFunctionLike(Data.PreferredType)) |
| 4392 | AddLambdaCompletion(Results, F->getParamTypes(), getLangOpts()); |
| 4393 | } |
| 4394 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 4395 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4396 | Results.data(), Results.size()); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4397 | } |
| 4398 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4399 | void Sema::CodeCompleteExpression(Scope *S, QualType PreferredType, |
| 4400 | bool IsParenthesized) { |
| 4401 | return CodeCompleteExpression( |
| 4402 | S, CodeCompleteExpressionData(PreferredType, IsParenthesized)); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 4403 | } |
| 4404 | |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4405 | void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E, |
| 4406 | QualType PreferredType) { |
Douglas Gregor | eda7e54 | 2010-09-18 01:28:11 +0000 | [diff] [blame] | 4407 | if (E.isInvalid()) |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4408 | CodeCompleteExpression(S, PreferredType); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 4409 | else if (getLangOpts().ObjC) |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 4410 | CodeCompleteObjCInstanceMessage(S, E.get(), None, false); |
Douglas Gregor | ed0b69d | 2010-09-15 16:23:04 +0000 | [diff] [blame] | 4411 | } |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 4412 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4413 | /// The set of properties that have already been added, referenced by |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 4414 | /// property name. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4415 | typedef llvm::SmallPtrSet<IdentifierInfo *, 16> AddedPropertiesSet; |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 4416 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4417 | /// Retrieve the container definition, if any? |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4418 | static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) { |
| 4419 | if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) { |
| 4420 | if (Interface->hasDefinition()) |
| 4421 | return Interface->getDefinition(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4422 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4423 | return Interface; |
| 4424 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4425 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4426 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
| 4427 | if (Protocol->hasDefinition()) |
| 4428 | return Protocol->getDefinition(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4429 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4430 | return Protocol; |
| 4431 | } |
| 4432 | return Container; |
| 4433 | } |
| 4434 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 4435 | /// Adds a block invocation code completion result for the given block |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4436 | /// declaration \p BD. |
| 4437 | static void AddObjCBlockCall(ASTContext &Context, const PrintingPolicy &Policy, |
| 4438 | CodeCompletionBuilder &Builder, |
| 4439 | const NamedDecl *BD, |
| 4440 | const FunctionTypeLoc &BlockLoc, |
| 4441 | const FunctionProtoTypeLoc &BlockProtoLoc) { |
| 4442 | Builder.AddResultTypeChunk( |
| 4443 | GetCompletionTypeString(BlockLoc.getReturnLoc().getType(), Context, |
| 4444 | Policy, Builder.getAllocator())); |
| 4445 | |
| 4446 | AddTypedNameChunk(Context, Policy, BD, Builder); |
| 4447 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 4448 | |
| 4449 | if (BlockProtoLoc && BlockProtoLoc.getTypePtr()->isVariadic()) { |
| 4450 | Builder.AddPlaceholderChunk("..."); |
| 4451 | } else { |
| 4452 | for (unsigned I = 0, N = BlockLoc.getNumParams(); I != N; ++I) { |
| 4453 | if (I) |
| 4454 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 4455 | |
| 4456 | // Format the placeholder string. |
| 4457 | std::string PlaceholderStr = |
| 4458 | FormatFunctionParameter(Policy, BlockLoc.getParam(I)); |
| 4459 | |
| 4460 | if (I == N - 1 && BlockProtoLoc && |
| 4461 | BlockProtoLoc.getTypePtr()->isVariadic()) |
| 4462 | PlaceholderStr += ", ..."; |
| 4463 | |
| 4464 | // Add the placeholder string. |
| 4465 | Builder.AddPlaceholderChunk( |
| 4466 | Builder.getAllocator().CopyString(PlaceholderStr)); |
| 4467 | } |
| 4468 | } |
| 4469 | |
| 4470 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 4471 | } |
| 4472 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4473 | static void |
| 4474 | AddObjCProperties(const CodeCompletionContext &CCContext, |
| 4475 | ObjCContainerDecl *Container, bool AllowCategories, |
| 4476 | bool AllowNullaryMethods, DeclContext *CurContext, |
| 4477 | AddedPropertiesSet &AddedProperties, ResultBuilder &Results, |
| 4478 | bool IsBaseExprStatement = false, |
| 4479 | bool IsClassProperty = false, bool InOriginalClass = true) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 4480 | typedef CodeCompletionResult Result; |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4481 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4482 | // Retrieve the definition. |
| 4483 | Container = getContainerDef(Container); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4484 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4485 | // Add properties in this container. |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4486 | const auto AddProperty = [&](const ObjCPropertyDecl *P) { |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4487 | if (!AddedProperties.insert(P->getIdentifier()).second) |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4488 | return; |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4489 | |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4490 | // FIXME: Provide block invocation completion for non-statement |
| 4491 | // expressions. |
| 4492 | if (!P->getType().getTypePtr()->isBlockPointerType() || |
| 4493 | !IsBaseExprStatement) { |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4494 | Result R = Result(P, Results.getBasePriority(P), nullptr); |
| 4495 | if (!InOriginalClass) |
| 4496 | setInBaseClass(R); |
| 4497 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4498 | return; |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4499 | } |
| 4500 | |
| 4501 | // Block setter and invocation completion is provided only when we are able |
| 4502 | // to find the FunctionProtoTypeLoc with parameter names for the block. |
| 4503 | FunctionTypeLoc BlockLoc; |
| 4504 | FunctionProtoTypeLoc BlockProtoLoc; |
| 4505 | findTypeLocationForBlockDecl(P->getTypeSourceInfo(), BlockLoc, |
| 4506 | BlockProtoLoc); |
| 4507 | if (!BlockLoc) { |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4508 | Result R = Result(P, Results.getBasePriority(P), nullptr); |
| 4509 | if (!InOriginalClass) |
| 4510 | setInBaseClass(R); |
| 4511 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4512 | return; |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4513 | } |
| 4514 | |
| 4515 | // The default completion result for block properties should be the block |
| 4516 | // invocation completion when the base expression is a statement. |
| 4517 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4518 | Results.getCodeCompletionTUInfo()); |
| 4519 | AddObjCBlockCall(Container->getASTContext(), |
| 4520 | getCompletionPrintingPolicy(Results.getSema()), Builder, P, |
| 4521 | BlockLoc, BlockProtoLoc); |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4522 | Result R = Result(Builder.TakeString(), P, Results.getBasePriority(P)); |
| 4523 | if (!InOriginalClass) |
| 4524 | setInBaseClass(R); |
| 4525 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4526 | |
| 4527 | // Provide additional block setter completion iff the base expression is a |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4528 | // statement and the block property is mutable. |
| 4529 | if (!P->isReadOnly()) { |
| 4530 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4531 | Results.getCodeCompletionTUInfo()); |
| 4532 | AddResultTypeChunk(Container->getASTContext(), |
| 4533 | getCompletionPrintingPolicy(Results.getSema()), P, |
| 4534 | CCContext.getBaseType(), Builder); |
| 4535 | Builder.AddTypedTextChunk( |
| 4536 | Results.getAllocator().CopyString(P->getName())); |
| 4537 | Builder.AddChunk(CodeCompletionString::CK_Equal); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4538 | |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4539 | std::string PlaceholderStr = formatBlockPlaceholder( |
| 4540 | getCompletionPrintingPolicy(Results.getSema()), P, BlockLoc, |
| 4541 | BlockProtoLoc, /*SuppressBlockName=*/true); |
| 4542 | // Add the placeholder string. |
| 4543 | Builder.AddPlaceholderChunk( |
| 4544 | Builder.getAllocator().CopyString(PlaceholderStr)); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4545 | |
Alex Lorenz | 6e0f393 | 2017-01-06 12:00:44 +0000 | [diff] [blame] | 4546 | // When completing blocks properties that return void the default |
| 4547 | // property completion result should show up before the setter, |
| 4548 | // otherwise the setter completion should show up before the default |
| 4549 | // property completion, as we normally want to use the result of the |
| 4550 | // call. |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4551 | Result R = |
Alex Lorenz | baef802 | 2016-11-09 13:43:18 +0000 | [diff] [blame] | 4552 | Result(Builder.TakeString(), P, |
Alex Lorenz | 6e0f393 | 2017-01-06 12:00:44 +0000 | [diff] [blame] | 4553 | Results.getBasePriority(P) + |
| 4554 | (BlockLoc.getTypePtr()->getReturnType()->isVoidType() |
| 4555 | ? CCD_BlockPropertySetter |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4556 | : -CCD_BlockPropertySetter)); |
| 4557 | if (!InOriginalClass) |
| 4558 | setInBaseClass(R); |
| 4559 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4560 | } |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4561 | }; |
| 4562 | |
| 4563 | if (IsClassProperty) { |
| 4564 | for (const auto *P : Container->class_properties()) |
| 4565 | AddProperty(P); |
| 4566 | } else { |
| 4567 | for (const auto *P : Container->instance_properties()) |
| 4568 | AddProperty(P); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4569 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4570 | |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4571 | // Add nullary methods or implicit class properties |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 4572 | if (AllowNullaryMethods) { |
| 4573 | ASTContext &Context = Container->getASTContext(); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 4574 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4575 | // Adds a method result |
| 4576 | const auto AddMethod = [&](const ObjCMethodDecl *M) { |
| 4577 | IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0); |
| 4578 | if (!Name) |
| 4579 | return; |
| 4580 | if (!AddedProperties.insert(Name).second) |
| 4581 | return; |
| 4582 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 4583 | Results.getCodeCompletionTUInfo()); |
| 4584 | AddResultTypeChunk(Context, Policy, M, CCContext.getBaseType(), Builder); |
| 4585 | Builder.AddTypedTextChunk( |
| 4586 | Results.getAllocator().CopyString(Name->getName())); |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4587 | Result R = Result(Builder.TakeString(), M, |
| 4588 | CCP_MemberDeclaration + CCD_MethodAsProperty); |
| 4589 | if (!InOriginalClass) |
| 4590 | setInBaseClass(R); |
| 4591 | Results.MaybeAddResult(R, CurContext); |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4592 | }; |
| 4593 | |
| 4594 | if (IsClassProperty) { |
| 4595 | for (const auto *M : Container->methods()) { |
| 4596 | // Gather the class method that can be used as implicit property |
| 4597 | // getters. Methods with arguments or methods that return void aren't |
| 4598 | // added to the results as they can't be used as a getter. |
| 4599 | if (!M->getSelector().isUnarySelector() || |
| 4600 | M->getReturnType()->isVoidType() || M->isInstanceMethod()) |
| 4601 | continue; |
| 4602 | AddMethod(M); |
| 4603 | } |
| 4604 | } else { |
| 4605 | for (auto *M : Container->methods()) { |
| 4606 | if (M->getSelector().isUnarySelector()) |
| 4607 | AddMethod(M); |
| 4608 | } |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 4609 | } |
| 4610 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4611 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4612 | // Add properties in referenced protocols. |
| 4613 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 4614 | for (auto *P : Protocol->protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4615 | AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4616 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4617 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4618 | /*InOriginalClass*/ false); |
| 4619 | } else if (ObjCInterfaceDecl *IFace = |
| 4620 | dyn_cast<ObjCInterfaceDecl>(Container)) { |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 4621 | if (AllowCategories) { |
| 4622 | // Look through categories. |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 4623 | for (auto *Cat : IFace->known_categories()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4624 | AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4625 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4626 | IsBaseExprStatement, IsClassProperty, |
| 4627 | InOriginalClass); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 4628 | } |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 4629 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4630 | // Look through protocols. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 4631 | for (auto *I : IFace->all_referenced_protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4632 | AddObjCProperties(CCContext, I, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4633 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4634 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4635 | /*InOriginalClass*/ false); |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4636 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4637 | // Look in the superclass. |
| 4638 | if (IFace->getSuperClass()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4639 | AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4640 | AllowNullaryMethods, CurContext, AddedProperties, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4641 | Results, IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4642 | /*InOriginalClass*/ false); |
| 4643 | } else if (const auto *Category = |
| 4644 | dyn_cast<ObjCCategoryDecl>(Container)) { |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4645 | // Look through protocols. |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 4646 | for (auto *P : Category->protocols()) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4647 | AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4648 | CurContext, AddedProperties, Results, |
Sam McCall | 8e9baa3 | 2018-11-20 22:06:54 +0000 | [diff] [blame] | 4649 | IsBaseExprStatement, IsClassProperty, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4650 | /*InOriginalClass*/ false); |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4651 | } |
| 4652 | } |
| 4653 | |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4654 | static void AddRecordMembersCompletionResults( |
| 4655 | Sema &SemaRef, ResultBuilder &Results, Scope *S, QualType BaseType, |
| 4656 | ExprValueKind BaseKind, RecordDecl *RD, Optional<FixItHint> AccessOpFixIt) { |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4657 | // Indicate that we are performing a member access, and the cv-qualifiers |
| 4658 | // for the base object type. |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4659 | Results.setObjectTypeQualifiers(BaseType.getQualifiers(), BaseKind); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4660 | |
| 4661 | // Access to a C/C++ class, struct, or union. |
| 4662 | Results.allowNestedNameSpecifiers(); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4663 | std::vector<FixItHint> FixIts; |
| 4664 | if (AccessOpFixIt) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4665 | FixIts.emplace_back(AccessOpFixIt.getValue()); |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4666 | CodeCompletionDeclConsumer Consumer(Results, RD, BaseType, std::move(FixIts)); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4667 | SemaRef.LookupVisibleDecls(RD, Sema::LookupMemberName, Consumer, |
Alex Lorenz | e6afa39 | 2017-05-11 13:48:57 +0000 | [diff] [blame] | 4668 | SemaRef.CodeCompleter->includeGlobals(), |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4669 | /*IncludeDependentBases=*/true, |
| 4670 | SemaRef.CodeCompleter->loadExternal()); |
Alex Lorenz | 0fe0d98 | 2017-05-11 13:41:00 +0000 | [diff] [blame] | 4671 | |
| 4672 | if (SemaRef.getLangOpts().CPlusPlus) { |
| 4673 | if (!Results.empty()) { |
| 4674 | // The "template" keyword can follow "->" or "." in the grammar. |
| 4675 | // However, we only want to suggest the template keyword if something |
| 4676 | // is dependent. |
| 4677 | bool IsDependent = BaseType->isDependentType(); |
| 4678 | if (!IsDependent) { |
| 4679 | for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent()) |
| 4680 | if (DeclContext *Ctx = DepScope->getEntity()) { |
| 4681 | IsDependent = Ctx->isDependentContext(); |
| 4682 | break; |
| 4683 | } |
| 4684 | } |
| 4685 | |
| 4686 | if (IsDependent) |
| 4687 | Results.AddResult(CodeCompletionResult("template")); |
| 4688 | } |
| 4689 | } |
| 4690 | } |
| 4691 | |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4692 | void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base, |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4693 | Expr *OtherOpBase, |
Alex Lorenz | f0b4e5d | 2016-10-18 10:55:01 +0000 | [diff] [blame] | 4694 | SourceLocation OpLoc, bool IsArrow, |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4695 | bool IsBaseExprStatement, |
| 4696 | QualType PreferredType) { |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4697 | if (!Base || !CodeCompleter) |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4698 | return; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4699 | |
Douglas Gregor | 1cc88a9 | 2012-01-23 15:59:30 +0000 | [diff] [blame] | 4700 | ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow); |
| 4701 | if (ConvertedBase.isInvalid()) |
| 4702 | return; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4703 | QualType ConvertedBaseType = ConvertedBase.get()->getType(); |
| 4704 | |
| 4705 | enum CodeCompletionContext::Kind contextKind; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4706 | |
| 4707 | if (IsArrow) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4708 | if (const auto *Ptr = ConvertedBaseType->getAs<PointerType>()) |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4709 | ConvertedBaseType = Ptr->getPointeeType(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4710 | } |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4711 | |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4712 | if (IsArrow) { |
| 4713 | contextKind = CodeCompletionContext::CCC_ArrowMemberAccess; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4714 | } else { |
| 4715 | if (ConvertedBaseType->isObjCObjectPointerType() || |
| 4716 | ConvertedBaseType->isObjCObjectOrInterfaceType()) { |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4717 | contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess; |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4718 | } else { |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 4719 | contextKind = CodeCompletionContext::CCC_DotMemberAccess; |
| 4720 | } |
| 4721 | } |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 4722 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4723 | CodeCompletionContext CCContext(contextKind, ConvertedBaseType); |
Ilya Biryukov | 4f9543b | 2019-01-31 20:20:32 +0000 | [diff] [blame] | 4724 | CCContext.setPreferredType(PreferredType); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4725 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4726 | CodeCompleter->getCodeCompletionTUInfo(), CCContext, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4727 | &ResultBuilder::IsMember); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4728 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4729 | auto DoCompletion = [&](Expr *Base, bool IsArrow, |
| 4730 | Optional<FixItHint> AccessOpFixIt) -> bool { |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4731 | if (!Base) |
| 4732 | return false; |
| 4733 | |
| 4734 | ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow); |
| 4735 | if (ConvertedBase.isInvalid()) |
| 4736 | return false; |
| 4737 | Base = ConvertedBase.get(); |
| 4738 | |
| 4739 | QualType BaseType = Base->getType(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4740 | ExprValueKind BaseKind = Base->getValueKind(); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4741 | |
| 4742 | if (IsArrow) { |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4743 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4744 | BaseType = Ptr->getPointeeType(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4745 | BaseKind = VK_LValue; |
| 4746 | } else if (BaseType->isObjCObjectPointerType()) |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4747 | /*Do nothing*/; |
| 4748 | else |
| 4749 | return false; |
| 4750 | } |
| 4751 | |
| 4752 | if (const RecordType *Record = BaseType->getAs<RecordType>()) { |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4753 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4754 | Record->getDecl(), |
| 4755 | std::move(AccessOpFixIt)); |
| 4756 | } else if (const auto *TST = |
| 4757 | BaseType->getAs<TemplateSpecializationType>()) { |
| 4758 | TemplateName TN = TST->getTemplateName(); |
| 4759 | if (const auto *TD = |
| 4760 | dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl())) { |
| 4761 | CXXRecordDecl *RD = TD->getTemplatedDecl(); |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4762 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
| 4763 | RD, std::move(AccessOpFixIt)); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4764 | } |
| 4765 | } else if (const auto *ICNT = BaseType->getAs<InjectedClassNameType>()) { |
| 4766 | if (auto *RD = ICNT->getDecl()) |
Sam McCall | 3dea527 | 2019-06-10 15:17:52 +0000 | [diff] [blame] | 4767 | AddRecordMembersCompletionResults(*this, Results, S, BaseType, BaseKind, |
| 4768 | RD, std::move(AccessOpFixIt)); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4769 | } else if (!IsArrow && BaseType->isObjCObjectPointerType()) { |
| 4770 | // Objective-C property reference. |
| 4771 | AddedPropertiesSet AddedProperties; |
| 4772 | |
| 4773 | if (const ObjCObjectPointerType *ObjCPtr = |
| 4774 | BaseType->getAsObjCInterfacePointerType()) { |
| 4775 | // Add property results based on our interface. |
| 4776 | assert(ObjCPtr && "Non-NULL pointer guaranteed above!"); |
| 4777 | AddObjCProperties(CCContext, ObjCPtr->getInterfaceDecl(), true, |
| 4778 | /*AllowNullaryMethods=*/true, CurContext, |
| 4779 | AddedProperties, Results, IsBaseExprStatement); |
| 4780 | } |
| 4781 | |
| 4782 | // Add properties from the protocols in a qualified interface. |
| 4783 | for (auto *I : BaseType->getAs<ObjCObjectPointerType>()->quals()) |
| 4784 | AddObjCProperties(CCContext, I, true, /*AllowNullaryMethods=*/true, |
| 4785 | CurContext, AddedProperties, Results, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4786 | IsBaseExprStatement, /*IsClassProperty*/ false, |
| 4787 | /*InOriginalClass*/ false); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4788 | } else if ((IsArrow && BaseType->isObjCObjectPointerType()) || |
| 4789 | (!IsArrow && BaseType->isObjCObjectType())) { |
| 4790 | // Objective-C instance variable access. |
| 4791 | ObjCInterfaceDecl *Class = nullptr; |
| 4792 | if (const ObjCObjectPointerType *ObjCPtr = |
| 4793 | BaseType->getAs<ObjCObjectPointerType>()) |
| 4794 | Class = ObjCPtr->getInterfaceDecl(); |
| 4795 | else |
| 4796 | Class = BaseType->getAs<ObjCObjectType>()->getInterface(); |
| 4797 | |
| 4798 | // Add all ivars from this class and its superclasses. |
| 4799 | if (Class) { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 4800 | CodeCompletionDeclConsumer Consumer(Results, Class, BaseType); |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4801 | Results.setFilter(&ResultBuilder::IsObjCIvar); |
| 4802 | LookupVisibleDecls( |
| 4803 | Class, LookupMemberName, Consumer, CodeCompleter->includeGlobals(), |
| 4804 | /*IncludeDependentBases=*/false, CodeCompleter->loadExternal()); |
| 4805 | } |
| 4806 | } |
| 4807 | |
| 4808 | // FIXME: How do we cope with isa? |
| 4809 | return true; |
| 4810 | }; |
| 4811 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4812 | Results.EnterNewScope(); |
Alex Lorenz | 06cfa99 | 2016-10-12 11:40:15 +0000 | [diff] [blame] | 4813 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4814 | bool CompletionSucceded = DoCompletion(Base, IsArrow, None); |
| 4815 | if (CodeCompleter->includeFixIts()) { |
| 4816 | const CharSourceRange OpRange = |
| 4817 | CharSourceRange::getTokenRange(OpLoc, OpLoc); |
| 4818 | CompletionSucceded |= DoCompletion( |
| 4819 | OtherOpBase, !IsArrow, |
| 4820 | FixItHint::CreateReplacement(OpRange, IsArrow ? "." : "->")); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4821 | } |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4822 | |
Douglas Gregor | 9291bad | 2009-11-18 01:29:26 +0000 | [diff] [blame] | 4823 | Results.ExitScope(); |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 4824 | |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4825 | if (!CompletionSucceded) |
| 4826 | return; |
| 4827 | |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 4828 | // Hand off the results found for code completion. |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 4829 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4830 | Results.data(), Results.size()); |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 4831 | } |
| 4832 | |
Alex Lorenz | feafdf6 | 2016-12-08 15:09:40 +0000 | [diff] [blame] | 4833 | void Sema::CodeCompleteObjCClassPropertyRefExpr(Scope *S, |
| 4834 | IdentifierInfo &ClassName, |
| 4835 | SourceLocation ClassNameLoc, |
| 4836 | bool IsBaseExprStatement) { |
| 4837 | IdentifierInfo *ClassNamePtr = &ClassName; |
| 4838 | ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(ClassNamePtr, ClassNameLoc); |
| 4839 | if (!IFace) |
| 4840 | return; |
| 4841 | CodeCompletionContext CCContext( |
| 4842 | CodeCompletionContext::CCC_ObjCPropertyAccess); |
| 4843 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4844 | CodeCompleter->getCodeCompletionTUInfo(), CCContext, |
| 4845 | &ResultBuilder::IsMember); |
| 4846 | Results.EnterNewScope(); |
| 4847 | AddedPropertiesSet AddedProperties; |
| 4848 | AddObjCProperties(CCContext, IFace, true, |
| 4849 | /*AllowNullaryMethods=*/true, CurContext, AddedProperties, |
| 4850 | Results, IsBaseExprStatement, |
| 4851 | /*IsClassProperty=*/true); |
| 4852 | Results.ExitScope(); |
| 4853 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4854 | Results.data(), Results.size()); |
| 4855 | } |
| 4856 | |
Faisal Vali | 090da2d | 2018-01-01 18:23:28 +0000 | [diff] [blame] | 4857 | void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) { |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4858 | if (!CodeCompleter) |
| 4859 | return; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4860 | |
| 4861 | ResultBuilder::LookupFilter Filter = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4862 | enum CodeCompletionContext::Kind ContextKind = |
| 4863 | CodeCompletionContext::CCC_Other; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4864 | switch ((DeclSpec::TST)TagSpec) { |
| 4865 | case DeclSpec::TST_enum: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4866 | Filter = &ResultBuilder::IsEnum; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4867 | ContextKind = CodeCompletionContext::CCC_EnumTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4868 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4869 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4870 | case DeclSpec::TST_union: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4871 | Filter = &ResultBuilder::IsUnion; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4872 | ContextKind = CodeCompletionContext::CCC_UnionTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4873 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4874 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4875 | case DeclSpec::TST_struct: |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4876 | case DeclSpec::TST_class: |
Joao Matos | dc86f94 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 4877 | case DeclSpec::TST_interface: |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 4878 | Filter = &ResultBuilder::IsClassOrStruct; |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 4879 | ContextKind = CodeCompletionContext::CCC_ClassOrStructTag; |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4880 | break; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4881 | |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4882 | default: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4883 | llvm_unreachable("Unknown type specifier kind in CodeCompleteTag"); |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4884 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4885 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4886 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4887 | CodeCompleter->getCodeCompletionTUInfo(), ContextKind); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 4888 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 4889 | |
| 4890 | // First pass: look for tags. |
| 4891 | Results.setFilter(Filter); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4892 | LookupVisibleDecls(S, LookupTagName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4893 | CodeCompleter->includeGlobals(), |
| 4894 | CodeCompleter->loadExternal()); |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 4895 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4896 | if (CodeCompleter->includeGlobals()) { |
| 4897 | // Second pass: look for nested name specifiers. |
| 4898 | Results.setFilter(&ResultBuilder::IsNestedNameSpecifier); |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 4899 | LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer, |
| 4900 | CodeCompleter->includeGlobals(), |
| 4901 | CodeCompleter->loadExternal()); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 4902 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4903 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 4904 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4905 | Results.data(), Results.size()); |
Douglas Gregor | f45b0cf | 2009-09-18 15:37:17 +0000 | [diff] [blame] | 4906 | } |
| 4907 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4908 | static void AddTypeQualifierResults(DeclSpec &DS, ResultBuilder &Results, |
| 4909 | const LangOptions &LangOpts) { |
| 4910 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const)) |
| 4911 | Results.AddResult("const"); |
| 4912 | if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile)) |
| 4913 | Results.AddResult("volatile"); |
| 4914 | if (LangOpts.C99 && !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict)) |
| 4915 | Results.AddResult("restrict"); |
| 4916 | if (LangOpts.C11 && !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic)) |
| 4917 | Results.AddResult("_Atomic"); |
| 4918 | if (LangOpts.MSVCCompat && !(DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)) |
| 4919 | Results.AddResult("__unaligned"); |
| 4920 | } |
| 4921 | |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4922 | void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4923 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 4924 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 4925 | CodeCompletionContext::CCC_TypeQualifiers); |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4926 | Results.EnterNewScope(); |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4927 | AddTypeQualifierResults(DS, Results, LangOpts); |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4928 | Results.ExitScope(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4929 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 28c7843 | 2010-08-27 17:35:51 +0000 | [diff] [blame] | 4930 | Results.data(), Results.size()); |
| 4931 | } |
| 4932 | |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4933 | void Sema::CodeCompleteFunctionQualifiers(DeclSpec &DS, Declarator &D, |
| 4934 | const VirtSpecifiers *VS) { |
| 4935 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 4936 | CodeCompleter->getCodeCompletionTUInfo(), |
| 4937 | CodeCompletionContext::CCC_TypeQualifiers); |
| 4938 | Results.EnterNewScope(); |
| 4939 | AddTypeQualifierResults(DS, Results, LangOpts); |
| 4940 | if (LangOpts.CPlusPlus11) { |
| 4941 | Results.AddResult("noexcept"); |
Faisal Vali | 421b2d1 | 2017-12-29 05:41:00 +0000 | [diff] [blame] | 4942 | if (D.getContext() == DeclaratorContext::MemberContext && |
| 4943 | !D.isCtorOrDtor() && !D.isStaticMember()) { |
Alex Lorenz | 8f4d399 | 2017-02-13 23:19:40 +0000 | [diff] [blame] | 4944 | if (!VS || !VS->isFinalSpecified()) |
| 4945 | Results.AddResult("final"); |
| 4946 | if (!VS || !VS->isOverrideSpecified()) |
| 4947 | Results.AddResult("override"); |
| 4948 | } |
| 4949 | } |
| 4950 | Results.ExitScope(); |
| 4951 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 4952 | Results.data(), Results.size()); |
| 4953 | } |
| 4954 | |
Benjamin Kramer | 72dae62 | 2016-02-18 15:30:24 +0000 | [diff] [blame] | 4955 | void Sema::CodeCompleteBracketDeclarator(Scope *S) { |
| 4956 | CodeCompleteExpression(S, QualType(getASTContext().getSizeType())); |
| 4957 | } |
| 4958 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4959 | void Sema::CodeCompleteCase(Scope *S) { |
John McCall | aab3e41 | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 4960 | if (getCurFunction()->SwitchStack.empty() || !CodeCompleter) |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4961 | return; |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 4962 | |
Richard Smith | ef6c43d | 2018-07-26 18:41:30 +0000 | [diff] [blame] | 4963 | SwitchStmt *Switch = getCurFunction()->SwitchStack.back().getPointer(); |
Kadir Cetinkaya | 6d57266 | 2018-10-23 13:49:37 +0000 | [diff] [blame] | 4964 | // Condition expression might be invalid, do not continue in this case. |
| 4965 | if (!Switch->getCond()) |
| 4966 | return; |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 4967 | QualType type = Switch->getCond()->IgnoreImplicit()->getType(); |
| 4968 | if (!type->isEnumeralType()) { |
| 4969 | CodeCompleteExpressionData Data(type); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 4970 | Data.IntegralConstantExpression = true; |
| 4971 | CodeCompleteExpression(S, Data); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4972 | return; |
Douglas Gregor | 85b5063 | 2010-07-28 21:50:18 +0000 | [diff] [blame] | 4973 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4974 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4975 | // Code-complete the cases of a switch statement over an enumeration type |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4976 | // by providing the list of |
John McCall | 5939b16 | 2011-08-06 07:30:58 +0000 | [diff] [blame] | 4977 | EnumDecl *Enum = type->castAs<EnumType>()->getDecl(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 4978 | if (EnumDecl *Def = Enum->getDefinition()) |
| 4979 | Enum = Def; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4980 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4981 | // Determine which enumerators we have already seen in the switch statement. |
| 4982 | // FIXME: Ideally, we would also be able to look *past* the code-completion |
| 4983 | // token, in case we are code-completing in the middle of the switch and not |
| 4984 | // 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] | 4985 | CoveredEnumerators Enumerators; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4986 | for (SwitchCase *SC = Switch->getSwitchCaseList(); SC; |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4987 | SC = SC->getNextSwitchCase()) { |
| 4988 | CaseStmt *Case = dyn_cast<CaseStmt>(SC); |
| 4989 | if (!Case) |
| 4990 | continue; |
| 4991 | |
| 4992 | Expr *CaseVal = Case->getLHS()->IgnoreParenCasts(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 4993 | if (auto *DRE = dyn_cast<DeclRefExpr>(CaseVal)) |
| 4994 | if (auto *Enumerator = |
| 4995 | dyn_cast<EnumConstantDecl>(DRE->getDecl())) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4996 | // We look into the AST of the case statement to determine which |
| 4997 | // enumerator was named. Alternatively, we could compute the value of |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 4998 | // the integral constant expression, then compare it against the |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 4999 | // values of each enumerator. However, value-based approach would not |
| 5000 | // work as well with C++ templates where enumerators declared within a |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5001 | // template are type- and value-dependent. |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5002 | Enumerators.Seen.insert(Enumerator); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5003 | |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 5004 | // If this is a qualified-id, keep track of the nested-name-specifier |
| 5005 | // 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] | 5006 | // |
| 5007 | // switch (TagD.getKind()) { |
| 5008 | // case TagDecl::TK_enum: |
| 5009 | // break; |
| 5010 | // case XXX |
| 5011 | // |
Douglas Gregor | f251067 | 2009-09-21 19:57:38 +0000 | [diff] [blame] | 5012 | // At the XXX, our completions are TagDecl::TK_union, |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5013 | // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union, |
| 5014 | // TK_struct, and TK_class. |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5015 | Enumerators.SuggestedQualifier = DRE->getQualifier(); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5016 | } |
| 5017 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5018 | |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5019 | // Add any enumerators that have not yet been mentioned. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5020 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5021 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5022 | CodeCompletionContext::CCC_Expression); |
Ilya Biryukov | 600ec01b | 2019-05-16 16:06:57 +0000 | [diff] [blame] | 5023 | AddEnumerators(Results, Context, Enum, CurContext, Enumerators); |
Douglas Gregor | 28556092 | 2010-04-06 20:02:15 +0000 | [diff] [blame] | 5024 | |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5025 | if (CodeCompleter->includeMacros()) { |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 5026 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 5027 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5028 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5029 | Results.data(), Results.size()); |
Douglas Gregor | d328d57 | 2009-09-21 18:10:23 +0000 | [diff] [blame] | 5030 | } |
| 5031 | |
Robert Wilhelm | 16e94b9 | 2013-08-09 18:02:13 +0000 | [diff] [blame] | 5032 | static bool anyNullArguments(ArrayRef<Expr *> Args) { |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5033 | if (Args.size() && !Args.data()) |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5034 | return true; |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5035 | |
| 5036 | for (unsigned I = 0; I != Args.size(); ++I) |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5037 | if (!Args[I]) |
| 5038 | return true; |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5039 | |
Douglas Gregor | 6ed3eb8 | 2010-05-30 06:10:08 +0000 | [diff] [blame] | 5040 | return false; |
| 5041 | } |
| 5042 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5043 | typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate; |
| 5044 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5045 | static void mergeCandidatesWithResults( |
| 5046 | Sema &SemaRef, SmallVectorImpl<ResultCandidate> &Results, |
| 5047 | OverloadCandidateSet &CandidateSet, SourceLocation Loc) { |
Fangrui Song | 899d139 | 2019-04-24 14:43:05 +0000 | [diff] [blame] | 5048 | // Sort the overload candidate set by placing the best overloads first. |
| 5049 | llvm::stable_sort(CandidateSet, [&](const OverloadCandidate &X, |
| 5050 | const OverloadCandidate &Y) { |
| 5051 | return isBetterOverloadCandidate(SemaRef, X, Y, Loc, |
| 5052 | CandidateSet.getKind()); |
| 5053 | }); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5054 | |
Fangrui Song | 899d139 | 2019-04-24 14:43:05 +0000 | [diff] [blame] | 5055 | // Add the remaining viable overload candidates as code-completion results. |
| 5056 | for (OverloadCandidate &Candidate : CandidateSet) { |
| 5057 | if (Candidate.Function && Candidate.Function->isDeleted()) |
| 5058 | continue; |
| 5059 | if (Candidate.Viable) |
| 5060 | Results.push_back(ResultCandidate(Candidate.Function)); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5061 | } |
| 5062 | } |
| 5063 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5064 | /// 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] | 5065 | /// candidates. |
Francisco Lopes da Silva | 8cafefa | 2015-01-29 05:54:59 +0000 | [diff] [blame] | 5066 | static QualType getParamType(Sema &SemaRef, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5067 | ArrayRef<ResultCandidate> Candidates, unsigned N) { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5068 | |
| 5069 | // Given the overloads 'Candidates' for a function call matching all arguments |
| 5070 | // up to N, return the type of the Nth parameter if it is the same for all |
| 5071 | // overload candidates. |
| 5072 | QualType ParamType; |
| 5073 | for (auto &Candidate : Candidates) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5074 | if (const auto *FType = Candidate.getFunctionType()) |
| 5075 | if (const auto *Proto = dyn_cast<FunctionProtoType>(FType)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5076 | if (N < Proto->getNumParams()) { |
| 5077 | if (ParamType.isNull()) |
| 5078 | ParamType = Proto->getParamType(N); |
| 5079 | else if (!SemaRef.Context.hasSameUnqualifiedType( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5080 | ParamType.getNonReferenceType(), |
| 5081 | Proto->getParamType(N).getNonReferenceType())) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5082 | // Otherwise return a default-constructed QualType. |
| 5083 | return QualType(); |
| 5084 | } |
| 5085 | } |
| 5086 | |
| 5087 | return ParamType; |
| 5088 | } |
| 5089 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5090 | static QualType |
| 5091 | ProduceSignatureHelp(Sema &SemaRef, Scope *S, |
| 5092 | MutableArrayRef<ResultCandidate> Candidates, |
| 5093 | unsigned CurrentArg, SourceLocation OpenParLoc) { |
| 5094 | if (Candidates.empty()) |
| 5095 | return QualType(); |
| 5096 | SemaRef.CodeCompleter->ProcessOverloadCandidates( |
| 5097 | SemaRef, CurrentArg, Candidates.data(), Candidates.size(), OpenParLoc); |
| 5098 | return getParamType(SemaRef, Candidates, CurrentArg); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5099 | } |
| 5100 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5101 | QualType Sema::ProduceCallSignatureHelp(Scope *S, Expr *Fn, |
| 5102 | ArrayRef<Expr *> Args, |
| 5103 | SourceLocation OpenParLoc) { |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5104 | if (!CodeCompleter) |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5105 | return QualType(); |
Douglas Gregor | 3ef5952 | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 5106 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5107 | // FIXME: Provide support for variadic template functions. |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5108 | // Ignore type-dependent call expressions entirely. |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5109 | if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) || |
| 5110 | Expr::hasAnyTypeDependentArguments(Args)) { |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5111 | return QualType(); |
Douglas Gregor | 3ef5952 | 2009-12-11 19:06:04 +0000 | [diff] [blame] | 5112 | } |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5113 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5114 | // Build an overload candidate set based on the functions we find. |
John McCall | bc077cf | 2010-02-08 23:07:23 +0000 | [diff] [blame] | 5115 | SourceLocation Loc = Fn->getExprLoc(); |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 5116 | OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal); |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5117 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5118 | SmallVector<ResultCandidate, 8> Results; |
Douglas Gregor | ff59f67 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 5119 | |
John McCall | 5750077 | 2009-12-16 12:17:52 +0000 | [diff] [blame] | 5120 | Expr *NakedFn = Fn->IgnoreParenCasts(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5121 | if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 5122 | AddOverloadedCallCandidates(ULE, Args, CandidateSet, |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5123 | /*PartialOverloading=*/true); |
| 5124 | else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) { |
| 5125 | TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = nullptr; |
| 5126 | if (UME->hasExplicitTemplateArgs()) { |
| 5127 | UME->copyTemplateArgumentsInto(TemplateArgsBuffer); |
| 5128 | TemplateArgs = &TemplateArgsBuffer; |
Douglas Gregor | ff59f67 | 2010-01-21 15:46:19 +0000 | [diff] [blame] | 5129 | } |
Erik Verbruggen | f1898cf | 2017-03-28 07:22:21 +0000 | [diff] [blame] | 5130 | |
| 5131 | // Add the base as first argument (use a nullptr if the base is implicit). |
| 5132 | SmallVector<Expr *, 12> ArgExprs( |
| 5133 | 1, UME->isImplicitAccess() ? nullptr : UME->getBase()); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5134 | ArgExprs.append(Args.begin(), Args.end()); |
| 5135 | UnresolvedSet<8> Decls; |
| 5136 | Decls.append(UME->decls_begin(), UME->decls_end()); |
Benjamin Kramer | e3962ae | 2017-10-26 08:41:28 +0000 | [diff] [blame] | 5137 | const bool FirstArgumentIsBase = !UME->isImplicitAccess() && UME->getBase(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5138 | AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5139 | /*SuppressUserConversions=*/false, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5140 | /*PartialOverloading=*/true, FirstArgumentIsBase); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5141 | } else { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5142 | FunctionDecl *FD = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5143 | if (auto *MCE = dyn_cast<MemberExpr>(NakedFn)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5144 | FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5145 | else if (auto *DRE = dyn_cast<DeclRefExpr>(NakedFn)) |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5146 | FD = dyn_cast<FunctionDecl>(DRE->getDecl()); |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5147 | 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] | 5148 | if (!getLangOpts().CPlusPlus || |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5149 | !FD->getType()->getAs<FunctionProtoType>()) |
| 5150 | Results.push_back(ResultCandidate(FD)); |
| 5151 | else |
| 5152 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()), |
| 5153 | Args, CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5154 | /*SuppressUserConversions=*/false, |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5155 | /*PartialOverloading=*/true); |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5156 | |
| 5157 | } else if (auto DC = NakedFn->getType()->getAsCXXRecordDecl()) { |
| 5158 | // If expression's type is CXXRecordDecl, it may overload the function |
| 5159 | // 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] | 5160 | // A complete type is needed to lookup for member function call operators. |
Richard Smith | db0ac55 | 2015-12-18 22:40:25 +0000 | [diff] [blame] | 5161 | if (isCompleteType(Loc, NakedFn->getType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5162 | DeclarationName OpName = |
| 5163 | Context.DeclarationNames.getCXXOperatorName(OO_Call); |
Francisco Lopes da Silva | a349a8a | 2015-01-25 08:47:59 +0000 | [diff] [blame] | 5164 | LookupResult R(*this, OpName, Loc, LookupOrdinaryName); |
| 5165 | LookupQualifiedName(R, DC); |
| 5166 | R.suppressDiagnostics(); |
| 5167 | SmallVector<Expr *, 12> ArgExprs(1, NakedFn); |
| 5168 | ArgExprs.append(Args.begin(), Args.end()); |
| 5169 | AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet, |
| 5170 | /*ExplicitArgs=*/nullptr, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5171 | /*SuppressUserConversions=*/false, |
Francisco Lopes da Silva | a349a8a | 2015-01-25 08:47:59 +0000 | [diff] [blame] | 5172 | /*PartialOverloading=*/true); |
| 5173 | } |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5174 | } else { |
| 5175 | // Lastly we check whether expression's type is function pointer or |
| 5176 | // function. |
| 5177 | QualType T = NakedFn->getType(); |
| 5178 | if (!T->getPointeeType().isNull()) |
| 5179 | T = T->getPointeeType(); |
| 5180 | |
| 5181 | if (auto FP = T->getAs<FunctionProtoType>()) { |
| 5182 | if (!TooManyArguments(FP->getNumParams(), Args.size(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5183 | /*PartialOverloading=*/true) || |
Francisco Lopes da Silva | 62a9a4f | 2015-01-23 13:17:51 +0000 | [diff] [blame] | 5184 | FP->isVariadic()) |
Francisco Lopes da Silva | c6ccc4f | 2015-01-22 21:14:08 +0000 | [diff] [blame] | 5185 | Results.push_back(ResultCandidate(FP)); |
| 5186 | } else if (auto FT = T->getAs<FunctionType>()) |
Francisco Lopes da Silva | 62a9a4f | 2015-01-23 13:17:51 +0000 | [diff] [blame] | 5187 | // 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] | 5188 | Results.push_back(ResultCandidate(FT)); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5189 | } |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5190 | } |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5191 | mergeCandidatesWithResults(*this, Results, CandidateSet, Loc); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5192 | QualType ParamType = |
| 5193 | ProduceSignatureHelp(*this, S, Results, Args.size(), OpenParLoc); |
| 5194 | return !CandidateSet.empty() ? ParamType : QualType(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5195 | } |
| 5196 | |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5197 | QualType Sema::ProduceConstructorSignatureHelp(Scope *S, QualType Type, |
| 5198 | SourceLocation Loc, |
| 5199 | ArrayRef<Expr *> Args, |
| 5200 | SourceLocation OpenParLoc) { |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5201 | if (!CodeCompleter) |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5202 | return QualType(); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5203 | |
| 5204 | // A complete type is needed to lookup for constructors. |
Ilya Biryukov | fb9dde7 | 2018-05-14 13:50:36 +0000 | [diff] [blame] | 5205 | CXXRecordDecl *RD = |
| 5206 | isCompleteType(Loc, Type) ? Type->getAsCXXRecordDecl() : nullptr; |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5207 | if (!RD) |
| 5208 | return Type; |
Argyrios Kyrtzidis | ee1d76f | 2015-03-13 07:39:30 +0000 | [diff] [blame] | 5209 | |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5210 | // FIXME: Provide support for member initializers. |
| 5211 | // FIXME: Provide support for variadic template constructors. |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5212 | |
| 5213 | OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal); |
| 5214 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5215 | for (NamedDecl *C : LookupConstructors(RD)) { |
| 5216 | if (auto *FD = dyn_cast<FunctionDecl>(C)) { |
| 5217 | AddOverloadCandidate(FD, DeclAccessPair::make(FD, C->getAccess()), Args, |
| 5218 | CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5219 | /*SuppressUserConversions=*/false, |
Richard Smith | 76b9027 | 2019-05-09 03:59:21 +0000 | [diff] [blame] | 5220 | /*PartialOverloading=*/true, |
| 5221 | /*AllowExplicit*/ true); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5222 | } else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(C)) { |
| 5223 | AddTemplateOverloadCandidate( |
| 5224 | FTD, DeclAccessPair::make(FTD, C->getAccess()), |
| 5225 | /*ExplicitTemplateArgs=*/nullptr, Args, CandidateSet, |
Rui Ueyama | 49a3ad2 | 2019-07-16 04:46:31 +0000 | [diff] [blame] | 5226 | /*SuppressUserConversions=*/false, |
Hans Wennborg | d2b9fc8 | 2019-05-06 09:51:10 +0000 | [diff] [blame] | 5227 | /*PartialOverloading=*/true); |
Francisco Lopes da Silva | 975a9f6 | 2015-01-21 16:24:11 +0000 | [diff] [blame] | 5228 | } |
| 5229 | } |
| 5230 | |
| 5231 | SmallVector<ResultCandidate, 8> Results; |
| 5232 | mergeCandidatesWithResults(*this, Results, CandidateSet, Loc); |
Ilya Biryukov | 832c4af | 2018-09-07 14:04:39 +0000 | [diff] [blame] | 5233 | return ProduceSignatureHelp(*this, S, Results, Args.size(), OpenParLoc); |
Douglas Gregor | cabea40 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 5234 | } |
| 5235 | |
Kadir Cetinkaya | 84774c3 | 2018-09-11 15:02:18 +0000 | [diff] [blame] | 5236 | QualType Sema::ProduceCtorInitMemberSignatureHelp( |
| 5237 | Scope *S, Decl *ConstructorDecl, CXXScopeSpec SS, ParsedType TemplateTypeTy, |
| 5238 | ArrayRef<Expr *> ArgExprs, IdentifierInfo *II, SourceLocation OpenParLoc) { |
| 5239 | if (!CodeCompleter) |
| 5240 | return QualType(); |
| 5241 | |
| 5242 | CXXConstructorDecl *Constructor = |
| 5243 | dyn_cast<CXXConstructorDecl>(ConstructorDecl); |
| 5244 | if (!Constructor) |
| 5245 | return QualType(); |
| 5246 | // FIXME: Add support for Base class constructors as well. |
| 5247 | if (ValueDecl *MemberDecl = tryLookupCtorInitMemberDecl( |
| 5248 | Constructor->getParent(), SS, TemplateTypeTy, II)) |
| 5249 | return ProduceConstructorSignatureHelp(getCurScope(), MemberDecl->getType(), |
| 5250 | MemberDecl->getLocation(), ArgExprs, |
| 5251 | OpenParLoc); |
| 5252 | return QualType(); |
| 5253 | } |
| 5254 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 5255 | void Sema::CodeCompleteInitializer(Scope *S, Decl *D) { |
| 5256 | ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5257 | if (!VD) { |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 5258 | CodeCompleteOrdinaryName(S, PCC_Expression); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5259 | return; |
| 5260 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5261 | |
Ilya Biryukov | ebf0a6d | 2018-11-07 10:02:31 +0000 | [diff] [blame] | 5262 | CodeCompleteExpressionData Data; |
| 5263 | Data.PreferredType = VD->getType(); |
| 5264 | // Ignore VD to avoid completing the variable itself, e.g. in 'int foo = ^'. |
| 5265 | Data.IgnoreDecls.push_back(VD); |
| 5266 | |
| 5267 | CodeCompleteExpression(S, Data); |
Douglas Gregor | 7aa6b22 | 2010-05-30 01:49:25 +0000 | [diff] [blame] | 5268 | } |
| 5269 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5270 | void Sema::CodeCompleteAfterIf(Scope *S) { |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5271 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5272 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5273 | mapCodeCompletionContext(*this, PCC_Statement)); |
| 5274 | Results.setFilter(&ResultBuilder::IsOrdinaryName); |
| 5275 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5276 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5277 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 5278 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5279 | CodeCompleter->includeGlobals(), |
| 5280 | CodeCompleter->loadExternal()); |
| 5281 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5282 | AddOrdinaryNameResults(PCC_Statement, S, *this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5283 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5284 | // "else" block |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5285 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5286 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5287 | Builder.AddTypedTextChunk("else"); |
Douglas Gregor | 3a5d6c2 | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 5288 | if (Results.includeCodePatterns()) { |
| 5289 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5290 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5291 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5292 | Builder.AddPlaceholderChunk("statements"); |
| 5293 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5294 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5295 | } |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5296 | Results.AddResult(Builder.TakeString()); |
| 5297 | |
| 5298 | // "else if" block |
Ilya Biryukov | 30977fc | 2019-06-04 09:26:08 +0000 | [diff] [blame] | 5299 | Builder.AddTypedTextChunk("else if"); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5300 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5301 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5302 | if (getLangOpts().CPlusPlus) |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5303 | Builder.AddPlaceholderChunk("condition"); |
| 5304 | else |
| 5305 | Builder.AddPlaceholderChunk("expression"); |
| 5306 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | 3a5d6c2 | 2012-02-16 17:49:04 +0000 | [diff] [blame] | 5307 | if (Results.includeCodePatterns()) { |
| 5308 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5309 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5310 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5311 | Builder.AddPlaceholderChunk("statements"); |
| 5312 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 5313 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5314 | } |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5315 | Results.AddResult(Builder.TakeString()); |
| 5316 | |
| 5317 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5318 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5319 | if (S->getFnParent()) |
Craig Topper | 1212626 | 2015-11-15 17:27:57 +0000 | [diff] [blame] | 5320 | AddPrettyFunctionResults(getLangOpts(), Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5321 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5322 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 5323 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5324 | |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5325 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5326 | Results.data(), Results.size()); |
Douglas Gregor | 4ecb720 | 2011-07-30 08:36:53 +0000 | [diff] [blame] | 5327 | } |
| 5328 | |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 5329 | void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS, |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5330 | bool EnteringContext, QualType BaseType, |
| 5331 | QualType PreferredType) { |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5332 | if (SS.isEmpty() || !CodeCompleter) |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 5333 | return; |
Alex Lorenz | 8a7a4cf | 2017-06-15 21:40:54 +0000 | [diff] [blame] | 5334 | |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5335 | // We want to keep the scope specifier even if it's invalid (e.g. the scope |
| 5336 | // "a::b::" is not corresponding to any context/namespace in the AST), since |
| 5337 | // it can be useful for global code completion which have information about |
| 5338 | // contexts/symbols that are not in the AST. |
| 5339 | if (SS.isInvalid()) { |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5340 | CodeCompletionContext CC(CodeCompletionContext::CCC_Symbol, PreferredType); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5341 | CC.setCXXScopeSpecifier(SS); |
Eric Liu | 206740e | 2019-02-21 11:22:58 +0000 | [diff] [blame] | 5342 | // As SS is invalid, we try to collect accessible contexts from the current |
| 5343 | // scope with a dummy lookup so that the completion consumer can try to |
| 5344 | // guess what the specified scope is. |
| 5345 | ResultBuilder DummyResults(*this, CodeCompleter->getAllocator(), |
| 5346 | CodeCompleter->getCodeCompletionTUInfo(), CC); |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5347 | if (!PreferredType.isNull()) |
| 5348 | DummyResults.setPreferredType(PreferredType); |
Eric Liu | 206740e | 2019-02-21 11:22:58 +0000 | [diff] [blame] | 5349 | if (S->getEntity()) { |
| 5350 | CodeCompletionDeclConsumer Consumer(DummyResults, S->getEntity(), |
| 5351 | BaseType); |
| 5352 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
| 5353 | /*IncludeGlobalScope=*/false, |
| 5354 | /*LoadExternal=*/false); |
| 5355 | } |
| 5356 | HandleCodeCompleteResults(this, CodeCompleter, |
| 5357 | DummyResults.getCompletionContext(), nullptr, 0); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5358 | return; |
| 5359 | } |
Alex Lorenz | 8a7a4cf | 2017-06-15 21:40:54 +0000 | [diff] [blame] | 5360 | // Always pretend to enter a context to ensure that a dependent type |
| 5361 | // resolves to a dependent record. |
| 5362 | DeclContext *Ctx = computeDeclContext(SS, /*EnteringContext=*/true); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5363 | if (!Ctx) |
| 5364 | return; |
Douglas Gregor | 800f2f0 | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 5365 | |
| 5366 | // Try to instantiate any non-dependent declaration contexts before |
| 5367 | // we look in them. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 5368 | if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx)) |
Douglas Gregor | 800f2f0 | 2009-12-11 18:28:39 +0000 | [diff] [blame] | 5369 | return; |
| 5370 | |
Ilya Biryukov | b1296fa | 2019-05-28 15:21:03 +0000 | [diff] [blame] | 5371 | ResultBuilder Results( |
| 5372 | *this, CodeCompleter->getAllocator(), |
| 5373 | CodeCompleter->getCodeCompletionTUInfo(), |
| 5374 | CodeCompletionContext(CodeCompletionContext::CCC_Symbol, PreferredType)); |
| 5375 | if (!PreferredType.isNull()) |
| 5376 | Results.setPreferredType(PreferredType); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5377 | Results.EnterNewScope(); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5378 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5379 | // The "template" keyword can follow "::" in the grammar, but only |
| 5380 | // put it into the grammar if the nested-name-specifier is dependent. |
Aaron Ballman | 4a97967 | 2014-01-03 13:56:08 +0000 | [diff] [blame] | 5381 | NestedNameSpecifier *NNS = SS.getScopeRep(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5382 | if (!Results.empty() && NNS->isDependent()) |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 5383 | Results.AddResult("template"); |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5384 | |
| 5385 | // Add calls to overridden virtual functions, if there are any. |
| 5386 | // |
| 5387 | // FIXME: This isn't wonderful, because we don't know whether we're actually |
| 5388 | // in a context that permits expressions. This is a general issue with |
| 5389 | // qualified-id completions. |
| 5390 | if (!EnteringContext) |
| 5391 | MaybeAddOverrideCalls(*this, Ctx, Results); |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5392 | Results.ExitScope(); |
| 5393 | |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5394 | if (CodeCompleter->includeNamespaceLevelDecls() || |
| 5395 | (!Ctx->isNamespace() && !Ctx->isTranslationUnit())) { |
Ilya Biryukov | f1822ec | 2018-12-03 13:29:17 +0000 | [diff] [blame] | 5396 | CodeCompletionDeclConsumer Consumer(Results, Ctx, BaseType); |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5397 | LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer, |
| 5398 | /*IncludeGlobalScope=*/true, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5399 | /*IncludeDependentBases=*/true, |
| 5400 | CodeCompleter->loadExternal()); |
Eric Liu | fead6ae | 2017-12-13 10:26:49 +0000 | [diff] [blame] | 5401 | } |
Douglas Gregor | ac322ec | 2010-08-27 21:18:54 +0000 | [diff] [blame] | 5402 | |
Eric Liu | 06d3402 | 2017-12-12 11:35:46 +0000 | [diff] [blame] | 5403 | auto CC = Results.getCompletionContext(); |
| 5404 | CC.setCXXScopeSpecifier(SS); |
| 5405 | |
| 5406 | HandleCodeCompleteResults(this, CodeCompleter, CC, Results.data(), |
| 5407 | Results.size()); |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 5408 | } |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5409 | |
| 5410 | void Sema::CodeCompleteUsing(Scope *S) { |
| 5411 | if (!CodeCompleter) |
| 5412 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5413 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5414 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5415 | CodeCompleter->getCodeCompletionTUInfo(), |
Kadir Cetinkaya | b006e09 | 2018-10-24 15:23:49 +0000 | [diff] [blame] | 5416 | // This can be both a using alias or using |
| 5417 | // declaration, in the former we expect a new name and a |
| 5418 | // symbol in the latter case. |
| 5419 | CodeCompletionContext::CCC_SymbolOrNewName, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5420 | &ResultBuilder::IsNestedNameSpecifier); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5421 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5422 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5423 | // If we aren't in class scope, we could see the "namespace" keyword. |
| 5424 | if (!S->isClassScope()) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5425 | Results.AddResult(CodeCompletionResult("namespace")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5426 | |
| 5427 | // After "using", we can see anything that would start a |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5428 | // nested-name-specifier. |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5429 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5430 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5431 | CodeCompleter->includeGlobals(), |
| 5432 | CodeCompleter->loadExternal()); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5433 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5434 | |
| 5435 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5436 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5437 | } |
| 5438 | |
| 5439 | void Sema::CodeCompleteUsingDirective(Scope *S) { |
| 5440 | if (!CodeCompleter) |
| 5441 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5442 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5443 | // After "using namespace", we expect to see a namespace name or namespace |
| 5444 | // alias. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5445 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5446 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5447 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5448 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5449 | Results.EnterNewScope(); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5450 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5451 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5452 | CodeCompleter->includeGlobals(), |
| 5453 | CodeCompleter->loadExternal()); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5454 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5455 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5456 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5457 | } |
| 5458 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5459 | void Sema::CodeCompleteNamespaceDecl(Scope *S) { |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5460 | if (!CodeCompleter) |
| 5461 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5462 | |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 5463 | DeclContext *Ctx = S->getEntity(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5464 | if (!S->getParent()) |
| 5465 | Ctx = Context.getTranslationUnitDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5466 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5467 | bool SuppressedGlobalResults = |
| 5468 | Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5469 | |
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 | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5472 | SuppressedGlobalResults |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5473 | ? CodeCompletionContext::CCC_Namespace |
| 5474 | : CodeCompletionContext::CCC_Other, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5475 | &ResultBuilder::IsNamespace); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5476 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5477 | if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) { |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5478 | // We only want to see those namespaces that have already been defined |
| 5479 | // within this scope, because its likely that the user is creating an |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5480 | // extended namespace declaration. Keep track of the most recent |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5481 | // definition of each namespace. |
| 5482 | std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5483 | for (DeclContext::specific_decl_iterator<NamespaceDecl> |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5484 | NS(Ctx->decls_begin()), |
| 5485 | NSEnd(Ctx->decls_end()); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5486 | NS != NSEnd; ++NS) |
David Blaikie | 40ed297 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 5487 | OrigToLatest[NS->getOriginalNamespace()] = *NS; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5488 | |
| 5489 | // Add the most recent definition (or extended definition) of each |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5490 | // namespace to the list of results. |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5491 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5492 | for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5493 | NS = OrigToLatest.begin(), |
| 5494 | NSEnd = OrigToLatest.end(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5495 | NS != NSEnd; ++NS) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5496 | Results.AddResult( |
| 5497 | CodeCompletionResult(NS->second, Results.getBasePriority(NS->second), |
| 5498 | nullptr), |
| 5499 | CurContext, nullptr, false); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5500 | Results.ExitScope(); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5501 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5502 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5503 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5504 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5505 | } |
| 5506 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5507 | void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) { |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5508 | if (!CodeCompleter) |
| 5509 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5510 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5511 | // After "namespace", we expect to see a namespace or alias. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5512 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5513 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5514 | CodeCompletionContext::CCC_Namespace, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5515 | &ResultBuilder::IsNamespaceOrAlias); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5516 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5517 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5518 | CodeCompleter->includeGlobals(), |
| 5519 | CodeCompleter->loadExternal()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5520 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5521 | Results.data(), Results.size()); |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5522 | } |
| 5523 | |
Douglas Gregor | c811ede | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 5524 | void Sema::CodeCompleteOperatorName(Scope *S) { |
| 5525 | if (!CodeCompleter) |
| 5526 | return; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5527 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5528 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5529 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5530 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5531 | CodeCompletionContext::CCC_Type, |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5532 | &ResultBuilder::IsType); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5533 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5534 | |
Richard Smith | 7fa2b74 | 2019-06-14 20:01:51 +0000 | [diff] [blame] | 5535 | // Add the names of overloadable operators. Note that OO_Conditional is not |
| 5536 | // actually overloadable. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5537 | #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ |
Richard Smith | 7fa2b74 | 2019-06-14 20:01:51 +0000 | [diff] [blame] | 5538 | if (OO_##Name != OO_Conditional) \ |
Douglas Gregor | 78a2101 | 2010-01-14 16:01:26 +0000 | [diff] [blame] | 5539 | Results.AddResult(Result(Spelling)); |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5540 | #include "clang/Basic/OperatorKinds.def" |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5541 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5542 | // Add any type names visible from the current scope |
Douglas Gregor | 6ae4c52 | 2010-01-14 03:21:49 +0000 | [diff] [blame] | 5543 | Results.allowNestedNameSpecifiers(); |
Douglas Gregor | a6e2edc | 2010-01-14 03:27:13 +0000 | [diff] [blame] | 5544 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 5545 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 5546 | CodeCompleter->includeGlobals(), |
| 5547 | CodeCompleter->loadExternal()); |
| 5548 | |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 5549 | // Add any type specifiers |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5550 | AddTypeSpecifierResults(getLangOpts(), Results); |
Douglas Gregor | 64b12b5 | 2009-09-22 23:31:26 +0000 | [diff] [blame] | 5551 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5552 | |
| 5553 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5554 | Results.data(), Results.size()); |
Douglas Gregor | c811ede | 2009-09-18 20:05:18 +0000 | [diff] [blame] | 5555 | } |
Douglas Gregor | 7e90c6d | 2009-09-18 19:03:04 +0000 | [diff] [blame] | 5556 | |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5557 | void Sema::CodeCompleteConstructorInitializer( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5558 | Decl *ConstructorD, ArrayRef<CXXCtorInitializer *> Initializers) { |
Benjamin Kramer | a4f8df0 | 2015-07-09 15:31:10 +0000 | [diff] [blame] | 5559 | if (!ConstructorD) |
| 5560 | return; |
| 5561 | |
| 5562 | AdjustDeclIfTemplate(ConstructorD); |
| 5563 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5564 | auto *Constructor = dyn_cast<CXXConstructorDecl>(ConstructorD); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5565 | if (!Constructor) |
| 5566 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5567 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5568 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5569 | CodeCompleter->getCodeCompletionTUInfo(), |
Kadir Cetinkaya | b006e09 | 2018-10-24 15:23:49 +0000 | [diff] [blame] | 5570 | CodeCompletionContext::CCC_Symbol); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5571 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5572 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5573 | // Fill in any already-initialized fields or base classes. |
| 5574 | llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields; |
| 5575 | llvm::SmallPtrSet<CanQualType, 4> InitializedBases; |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5576 | for (unsigned I = 0, E = Initializers.size(); I != E; ++I) { |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5577 | if (Initializers[I]->isBaseInitializer()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5578 | InitializedBases.insert(Context.getCanonicalType( |
| 5579 | QualType(Initializers[I]->getBaseClass(), 0))); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5580 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5581 | InitializedFields.insert( |
| 5582 | cast<FieldDecl>(Initializers[I]->getAnyMember())); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5583 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5584 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5585 | // Add completions for base classes. |
Benjamin Kramer | a4f8df0 | 2015-07-09 15:31:10 +0000 | [diff] [blame] | 5586 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Dmitri Gribenko | 27cb3dd0 | 2013-06-23 22:58:02 +0000 | [diff] [blame] | 5587 | bool SawLastInitializer = Initializers.empty(); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5588 | CXXRecordDecl *ClassDecl = Constructor->getParent(); |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5589 | |
| 5590 | auto GenerateCCS = [&](const NamedDecl *ND, const char *Name) { |
| 5591 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5592 | Results.getCodeCompletionTUInfo()); |
| 5593 | Builder.AddTypedTextChunk(Name); |
| 5594 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5595 | if (const auto *Function = dyn_cast<FunctionDecl>(ND)) |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5596 | AddFunctionParameterChunks(PP, Policy, Function, Builder); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5597 | else if (const auto *FunTemplDecl = dyn_cast<FunctionTemplateDecl>(ND)) |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5598 | AddFunctionParameterChunks(PP, Policy, FunTemplDecl->getTemplatedDecl(), |
| 5599 | Builder); |
| 5600 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5601 | return Builder.TakeString(); |
| 5602 | }; |
| 5603 | auto AddDefaultCtorInit = [&](const char *Name, const char *Type, |
| 5604 | const NamedDecl *ND) { |
| 5605 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5606 | Results.getCodeCompletionTUInfo()); |
| 5607 | Builder.AddTypedTextChunk(Name); |
| 5608 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5609 | Builder.AddPlaceholderChunk(Type); |
| 5610 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5611 | if (ND) { |
| 5612 | auto CCR = CodeCompletionResult( |
| 5613 | Builder.TakeString(), ND, |
| 5614 | SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration); |
| 5615 | if (isa<FieldDecl>(ND)) |
| 5616 | CCR.CursorKind = CXCursor_MemberRef; |
| 5617 | return Results.AddResult(CCR); |
| 5618 | } |
| 5619 | return Results.AddResult(CodeCompletionResult( |
| 5620 | Builder.TakeString(), |
| 5621 | SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration)); |
| 5622 | }; |
| 5623 | auto AddCtorsWithName = [&](const CXXRecordDecl *RD, unsigned int Priority, |
| 5624 | const char *Name, const FieldDecl *FD) { |
| 5625 | if (!RD) |
| 5626 | return AddDefaultCtorInit(Name, |
| 5627 | FD ? Results.getAllocator().CopyString( |
| 5628 | FD->getType().getAsString(Policy)) |
| 5629 | : Name, |
| 5630 | FD); |
| 5631 | auto Ctors = getConstructors(Context, RD); |
| 5632 | if (Ctors.begin() == Ctors.end()) |
| 5633 | return AddDefaultCtorInit(Name, Name, RD); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5634 | for (const NamedDecl *Ctor : Ctors) { |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5635 | auto CCR = CodeCompletionResult(GenerateCCS(Ctor, Name), RD, Priority); |
| 5636 | CCR.CursorKind = getCursorKindForDecl(Ctor); |
| 5637 | Results.AddResult(CCR); |
| 5638 | } |
| 5639 | }; |
| 5640 | auto AddBase = [&](const CXXBaseSpecifier &Base) { |
| 5641 | const char *BaseName = |
| 5642 | Results.getAllocator().CopyString(Base.getType().getAsString(Policy)); |
| 5643 | const auto *RD = Base.getType()->getAsCXXRecordDecl(); |
| 5644 | AddCtorsWithName( |
| 5645 | RD, SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration, |
| 5646 | BaseName, nullptr); |
| 5647 | }; |
| 5648 | auto AddField = [&](const FieldDecl *FD) { |
| 5649 | const char *FieldName = |
| 5650 | Results.getAllocator().CopyString(FD->getIdentifier()->getName()); |
| 5651 | const CXXRecordDecl *RD = FD->getType()->getAsCXXRecordDecl(); |
| 5652 | AddCtorsWithName( |
| 5653 | RD, SawLastInitializer ? CCP_NextInitializer : CCP_MemberDeclaration, |
| 5654 | FieldName, FD); |
| 5655 | }; |
| 5656 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 5657 | for (const auto &Base : ClassDecl->bases()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5658 | if (!InitializedBases.insert(Context.getCanonicalType(Base.getType())) |
| 5659 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5660 | SawLastInitializer = |
| 5661 | !Initializers.empty() && Initializers.back()->isBaseInitializer() && |
| 5662 | Context.hasSameUnqualifiedType( |
| 5663 | Base.getType(), QualType(Initializers.back()->getBaseClass(), 0)); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5664 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5665 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5666 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5667 | AddBase(Base); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5668 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5669 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5670 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5671 | // Add completions for virtual base classes. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 5672 | for (const auto &Base : ClassDecl->vbases()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5673 | if (!InitializedBases.insert(Context.getCanonicalType(Base.getType())) |
| 5674 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5675 | SawLastInitializer = |
| 5676 | !Initializers.empty() && Initializers.back()->isBaseInitializer() && |
| 5677 | Context.hasSameUnqualifiedType( |
| 5678 | Base.getType(), QualType(Initializers.back()->getBaseClass(), 0)); |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5679 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5680 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5681 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5682 | AddBase(Base); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5683 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5684 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5685 | |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5686 | // Add completions for members. |
Aaron Ballman | e8a8bae | 2014-03-08 20:12:42 +0000 | [diff] [blame] | 5687 | for (auto *Field : ClassDecl->fields()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5688 | if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl())) |
| 5689 | .second) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5690 | SawLastInitializer = !Initializers.empty() && |
| 5691 | Initializers.back()->isAnyMemberInitializer() && |
| 5692 | Initializers.back()->getAnyMember() == Field; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5693 | continue; |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +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 | if (!Field->getDeclName()) |
| 5697 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5698 | |
Kadir Cetinkaya | fabaaaa | 2018-11-01 15:54:18 +0000 | [diff] [blame] | 5699 | AddField(Field); |
Douglas Gregor | 99129ef | 2010-08-29 19:27:27 +0000 | [diff] [blame] | 5700 | SawLastInitializer = false; |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5701 | } |
| 5702 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5703 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 5704 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | eaeeca9 | 2010-08-28 00:00:50 +0000 | [diff] [blame] | 5705 | Results.data(), Results.size()); |
| 5706 | } |
| 5707 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 5708 | /// Determine whether this scope denotes a namespace. |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5709 | static bool isNamespaceScope(Scope *S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 5710 | DeclContext *DC = S->getEntity(); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5711 | if (!DC) |
| 5712 | return false; |
| 5713 | |
| 5714 | return DC->isFileContext(); |
| 5715 | } |
| 5716 | |
| 5717 | void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, |
| 5718 | bool AfterAmpersand) { |
| 5719 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5720 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5721 | CodeCompletionContext::CCC_Other); |
| 5722 | Results.EnterNewScope(); |
| 5723 | |
| 5724 | // Note what has already been captured. |
| 5725 | llvm::SmallPtrSet<IdentifierInfo *, 4> Known; |
| 5726 | bool IncludedThis = false; |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 5727 | for (const auto &C : Intro.Captures) { |
| 5728 | if (C.Kind == LCK_This) { |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5729 | IncludedThis = true; |
| 5730 | continue; |
| 5731 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5732 | |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 5733 | Known.insert(C.Id); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5734 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5735 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5736 | // Look for other capturable variables. |
| 5737 | for (; S && !isNamespaceScope(S); S = S->getParent()) { |
Aaron Ballman | 35c5495 | 2014-03-17 16:55:25 +0000 | [diff] [blame] | 5738 | for (const auto *D : S->decls()) { |
| 5739 | const auto *Var = dyn_cast<VarDecl>(D); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5740 | if (!Var || !Var->hasLocalStorage() || Var->hasAttr<BlocksAttr>()) |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5741 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5742 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 5743 | if (Known.insert(Var->getIdentifier()).second) |
Douglas Gregor | 0a0e2b3 | 2013-01-31 04:52:16 +0000 | [diff] [blame] | 5744 | Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 5745 | CurContext, nullptr, false); |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5746 | } |
| 5747 | } |
| 5748 | |
| 5749 | // Add 'this', if it would be valid. |
| 5750 | if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy) |
| 5751 | addThisCompletion(*this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5752 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5753 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5754 | |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 5755 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5756 | Results.data(), Results.size()); |
| 5757 | } |
| 5758 | |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 5759 | /// Macro that optionally prepends an "@" to the string literal passed in via |
| 5760 | /// Keyword, depending on whether NeedAt is true or false. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5761 | #define OBJC_AT_KEYWORD_NAME(NeedAt, Keyword) ((NeedAt) ? "@" Keyword : Keyword) |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 5762 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5763 | static void AddObjCImplementationResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5764 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5765 | typedef CodeCompletionResult Result; |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5766 | // Since we have an implementation, we can end it. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5767 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "end"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5768 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5769 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5770 | Results.getCodeCompletionTUInfo()); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 5771 | if (LangOpts.ObjC) { |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5772 | // @dynamic |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5773 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "dynamic")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5774 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5775 | Builder.AddPlaceholderChunk("property"); |
| 5776 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5777 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5778 | // @synthesize |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5779 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "synthesize")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5780 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5781 | Builder.AddPlaceholderChunk("property"); |
| 5782 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5783 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5784 | } |
| 5785 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5786 | static void AddObjCInterfaceResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5787 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5788 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5789 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5790 | // Since we have an interface or protocol, we can end it. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5791 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "end"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5792 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 5793 | if (LangOpts.ObjC) { |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5794 | // @property |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5795 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "property"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5796 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5797 | // @required |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5798 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "required"))); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5799 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5800 | // @optional |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5801 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "optional"))); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5802 | } |
| 5803 | } |
| 5804 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5805 | static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5806 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5807 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5808 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5809 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5810 | // @class name ; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5811 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "class")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5812 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5813 | Builder.AddPlaceholderChunk("name"); |
| 5814 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5815 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5816 | if (Results.includeCodePatterns()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5817 | // @interface name |
| 5818 | // FIXME: Could introduce the whole pattern, including superclasses and |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5819 | // such. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5820 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "interface")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5821 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5822 | Builder.AddPlaceholderChunk("class"); |
| 5823 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5824 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5825 | // @protocol name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5826 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "protocol")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5827 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5828 | Builder.AddPlaceholderChunk("protocol"); |
| 5829 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5830 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5831 | // @implementation name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5832 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "implementation")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5833 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5834 | Builder.AddPlaceholderChunk("class"); |
| 5835 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5836 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5837 | |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5838 | // @compatibility_alias name |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5839 | Builder.AddTypedTextChunk( |
| 5840 | OBJC_AT_KEYWORD_NAME(NeedAt, "compatibility_alias")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5841 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5842 | Builder.AddPlaceholderChunk("alias"); |
| 5843 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5844 | Builder.AddPlaceholderChunk("class"); |
| 5845 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | 61e3681 | 2013-03-07 23:26:24 +0000 | [diff] [blame] | 5846 | |
| 5847 | if (Results.getSema().getLangOpts().Modules) { |
| 5848 | // @import name |
| 5849 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import")); |
| 5850 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5851 | Builder.AddPlaceholderChunk("module"); |
| 5852 | Results.AddResult(Result(Builder.TakeString())); |
| 5853 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5854 | } |
| 5855 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5856 | void Sema::CodeCompleteObjCAtDirective(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5857 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5858 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5859 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5860 | Results.EnterNewScope(); |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5861 | if (isa<ObjCImplDecl>(CurContext)) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5862 | AddObjCImplementationResults(getLangOpts(), Results, false); |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 5863 | else if (CurContext->isObjCContainer()) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5864 | AddObjCInterfaceResults(getLangOpts(), Results, false); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5865 | else |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5866 | AddObjCTopLevelResults(Results, false); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5867 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 5868 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 5869 | Results.data(), Results.size()); |
Douglas Gregor | f48706c | 2009-12-07 09:27:33 +0000 | [diff] [blame] | 5870 | } |
| 5871 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5872 | static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5873 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5874 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5875 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5876 | |
| 5877 | // @encode ( type-name ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5878 | const char *EncodeType = "char[]"; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5879 | if (Results.getSema().getLangOpts().CPlusPlus || |
| 5880 | Results.getSema().getLangOpts().ConstStrings) |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5881 | EncodeType = "const char[]"; |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5882 | Builder.AddResultTypeChunk(EncodeType); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5883 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "encode")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5884 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5885 | Builder.AddPlaceholderChunk("type-name"); |
| 5886 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5887 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5888 | |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5889 | // @protocol ( protocol-name ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5890 | Builder.AddResultTypeChunk("Protocol *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5891 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "protocol")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5892 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5893 | Builder.AddPlaceholderChunk("protocol-name"); |
| 5894 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5895 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5896 | |
| 5897 | // @selector ( selector ) |
Douglas Gregor | e5c79d5 | 2011-10-18 21:20:17 +0000 | [diff] [blame] | 5898 | Builder.AddResultTypeChunk("SEL"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5899 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "selector")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5900 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5901 | Builder.AddPlaceholderChunk("selector"); |
| 5902 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5903 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5904 | |
| 5905 | // @"string" |
| 5906 | Builder.AddResultTypeChunk("NSString *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5907 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "\"")); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5908 | Builder.AddPlaceholderChunk("string"); |
| 5909 | Builder.AddTextChunk("\""); |
| 5910 | Results.AddResult(Result(Builder.TakeString())); |
| 5911 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5912 | // @[objects, ...] |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5913 | Builder.AddResultTypeChunk("NSArray *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5914 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "[")); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5915 | Builder.AddPlaceholderChunk("objects, ..."); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5916 | Builder.AddChunk(CodeCompletionString::CK_RightBracket); |
| 5917 | Results.AddResult(Result(Builder.TakeString())); |
| 5918 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5919 | // @{key : object, ...} |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5920 | Builder.AddResultTypeChunk("NSDictionary *"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5921 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "{")); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5922 | Builder.AddPlaceholderChunk("key"); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5923 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 5924 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5925 | Builder.AddPlaceholderChunk("object, ..."); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 5926 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5927 | Results.AddResult(Result(Builder.TakeString())); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5928 | |
Douglas Gregor | 951de30 | 2012-07-17 23:24:47 +0000 | [diff] [blame] | 5929 | // @(expression) |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5930 | Builder.AddResultTypeChunk("id"); |
| 5931 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "(")); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5932 | Builder.AddPlaceholderChunk("expression"); |
Jordan Rose | 9da0585 | 2012-06-15 18:19:56 +0000 | [diff] [blame] | 5933 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5934 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5935 | } |
| 5936 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5937 | static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5938 | typedef CodeCompletionResult Result; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5939 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 5940 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5941 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5942 | if (Results.includeCodePatterns()) { |
| 5943 | // @try { statements } @catch ( declaration ) { statements } @finally |
| 5944 | // { statements } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5945 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "try")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5946 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5947 | Builder.AddPlaceholderChunk("statements"); |
| 5948 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5949 | Builder.AddTextChunk("@catch"); |
| 5950 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5951 | Builder.AddPlaceholderChunk("parameter"); |
| 5952 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5953 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5954 | Builder.AddPlaceholderChunk("statements"); |
| 5955 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5956 | Builder.AddTextChunk("@finally"); |
| 5957 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5958 | Builder.AddPlaceholderChunk("statements"); |
| 5959 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5960 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5961 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5962 | |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5963 | // @throw |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5964 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "throw")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5965 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5966 | Builder.AddPlaceholderChunk("expression"); |
| 5967 | Results.AddResult(Result(Builder.TakeString())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 5968 | |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5969 | if (Results.includeCodePatterns()) { |
| 5970 | // @synchronized ( expression ) { statements } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5971 | Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "synchronized")); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5972 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 5973 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 5974 | Builder.AddPlaceholderChunk("expression"); |
| 5975 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 5976 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 5977 | Builder.AddPlaceholderChunk("statements"); |
| 5978 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
| 5979 | Results.AddResult(Result(Builder.TakeString())); |
Douglas Gregor | f4c3334 | 2010-05-28 00:22:41 +0000 | [diff] [blame] | 5980 | } |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 5981 | } |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 5982 | |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 5983 | static void AddObjCVisibilityResults(const LangOptions &LangOpts, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5984 | ResultBuilder &Results, bool NeedAt) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 5985 | typedef CodeCompletionResult Result; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5986 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "private"))); |
| 5987 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "protected"))); |
| 5988 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "public"))); |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 5989 | if (LangOpts.ObjC) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 5990 | Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt, "package"))); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 5991 | } |
| 5992 | |
| 5993 | void Sema::CodeCompleteObjCAtVisibility(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5994 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 5995 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 5996 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 5997 | Results.EnterNewScope(); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5998 | AddObjCVisibilityResults(getLangOpts(), Results, false); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 5999 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6000 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6001 | Results.data(), Results.size()); |
Douglas Gregor | 48d4625 | 2010-01-13 21:54:15 +0000 | [diff] [blame] | 6002 | } |
| 6003 | |
| 6004 | void Sema::CodeCompleteObjCAtStatement(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6005 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6006 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6007 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | f193416 | 2010-01-13 21:24:21 +0000 | [diff] [blame] | 6008 | Results.EnterNewScope(); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 6009 | AddObjCStatementResults(Results, false); |
| 6010 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6011 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6012 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6013 | Results.data(), Results.size()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6014 | } |
| 6015 | |
| 6016 | void Sema::CodeCompleteObjCAtExpression(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6017 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6018 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6019 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6020 | Results.EnterNewScope(); |
Douglas Gregor | f98e6a2 | 2010-01-13 23:51:12 +0000 | [diff] [blame] | 6021 | AddObjCExpressionResults(Results, false); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6022 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6023 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6024 | Results.data(), Results.size()); |
Douglas Gregor | bc7c5e4 | 2009-12-07 09:51:25 +0000 | [diff] [blame] | 6025 | } |
| 6026 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6027 | /// Determine whether the addition of the given flag to an Objective-C |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6028 | /// property's attributes will cause a conflict. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6029 | static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6030 | // Check if we've already added this flag. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6031 | if (Attributes & NewFlag) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6032 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6033 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6034 | Attributes |= NewFlag; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6035 | |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6036 | // Check for collisions with "readonly". |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6037 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 6038 | (Attributes & ObjCDeclSpec::DQ_PR_readwrite)) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6039 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6040 | |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6041 | // Check for more than one of { assign, copy, retain, strong, weak }. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6042 | unsigned AssignCopyRetMask = |
| 6043 | Attributes & |
| 6044 | (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_unsafe_unretained | |
| 6045 | ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain | |
| 6046 | ObjCDeclSpec::DQ_PR_strong | ObjCDeclSpec::DQ_PR_weak); |
| 6047 | if (AssignCopyRetMask && AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6048 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained && |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6049 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy && |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6050 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain && |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6051 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong && |
| 6052 | AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak) |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6053 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6054 | |
Douglas Gregor | e6078da | 2009-11-19 00:14:45 +0000 | [diff] [blame] | 6055 | return false; |
| 6056 | } |
| 6057 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6058 | void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) { |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6059 | if (!CodeCompleter) |
| 6060 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6061 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6062 | unsigned Attributes = ODS.getPropertyAttributes(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6063 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6064 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6065 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6066 | CodeCompletionContext::CCC_Other); |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6067 | Results.EnterNewScope(); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6068 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6069 | Results.AddResult(CodeCompletionResult("readonly")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6070 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6071 | Results.AddResult(CodeCompletionResult("assign")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6072 | if (!ObjCPropertyFlagConflicts(Attributes, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6073 | ObjCDeclSpec::DQ_PR_unsafe_unretained)) |
| 6074 | Results.AddResult(CodeCompletionResult("unsafe_unretained")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6075 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6076 | Results.AddResult(CodeCompletionResult("readwrite")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6077 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6078 | Results.AddResult(CodeCompletionResult("retain")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6079 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong)) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6080 | Results.AddResult(CodeCompletionResult("strong")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6081 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6082 | Results.AddResult(CodeCompletionResult("copy")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6083 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic)) |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6084 | Results.AddResult(CodeCompletionResult("nonatomic")); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6085 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic)) |
Fariborz Jahanian | 1c2d29e | 2011-06-11 17:14:27 +0000 | [diff] [blame] | 6086 | Results.AddResult(CodeCompletionResult("atomic")); |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6087 | |
| 6088 | // 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] | 6089 | if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC) |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6090 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak)) |
Jordan Rose | 53cb2f3 | 2012-08-20 20:01:13 +0000 | [diff] [blame] | 6091 | Results.AddResult(CodeCompletionResult("weak")); |
| 6092 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6093 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6094 | CodeCompletionBuilder Setter(Results.getAllocator(), |
| 6095 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6096 | Setter.AddTypedTextChunk("setter"); |
Argyrios Kyrtzidis | 7bbb881 | 2014-02-20 07:55:15 +0000 | [diff] [blame] | 6097 | Setter.AddTextChunk("="); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6098 | Setter.AddPlaceholderChunk("method"); |
| 6099 | Results.AddResult(CodeCompletionResult(Setter.TakeString())); |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 6100 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 6101 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6102 | CodeCompletionBuilder Getter(Results.getAllocator(), |
| 6103 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6104 | Getter.AddTypedTextChunk("getter"); |
Argyrios Kyrtzidis | 7bbb881 | 2014-02-20 07:55:15 +0000 | [diff] [blame] | 6105 | Getter.AddTextChunk("="); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6106 | Getter.AddPlaceholderChunk("method"); |
| 6107 | Results.AddResult(CodeCompletionResult(Getter.TakeString())); |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 6108 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 6109 | if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nullability)) { |
| 6110 | Results.AddResult(CodeCompletionResult("nonnull")); |
| 6111 | Results.AddResult(CodeCompletionResult("nullable")); |
| 6112 | Results.AddResult(CodeCompletionResult("null_unspecified")); |
| 6113 | Results.AddResult(CodeCompletionResult("null_resettable")); |
| 6114 | } |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6115 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6116 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6117 | Results.data(), Results.size()); |
Steve Naroff | 936354c | 2009-10-08 21:55:05 +0000 | [diff] [blame] | 6118 | } |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6119 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6120 | /// Describes the kind of Objective-C method that we want to find |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6121 | /// via code completion. |
| 6122 | enum ObjCMethodKind { |
Dmitri Gribenko | 4280e5c | 2012-06-08 23:13:42 +0000 | [diff] [blame] | 6123 | MK_Any, ///< Any kind of method, provided it means other specified criteria. |
| 6124 | MK_ZeroArgSelector, ///< Zero-argument (unary) selector. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6125 | MK_OneArgSelector ///< One-argument selector. |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6126 | }; |
| 6127 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6128 | static bool isAcceptableObjCSelector(Selector Sel, ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6129 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6130 | bool AllowSameLength = true) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6131 | unsigned NumSelIdents = SelIdents.size(); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6132 | if (NumSelIdents > Sel.getNumArgs()) |
| 6133 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6134 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6135 | switch (WantKind) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6136 | case MK_Any: |
| 6137 | break; |
| 6138 | case MK_ZeroArgSelector: |
| 6139 | return Sel.isUnarySelector(); |
| 6140 | case MK_OneArgSelector: |
| 6141 | return Sel.getNumArgs() == 1; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6142 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6143 | |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6144 | if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs()) |
| 6145 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6146 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6147 | for (unsigned I = 0; I != NumSelIdents; ++I) |
| 6148 | if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I)) |
| 6149 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6150 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6151 | return true; |
| 6152 | } |
| 6153 | |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6154 | static bool isAcceptableObjCMethod(ObjCMethodDecl *Method, |
| 6155 | ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6156 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6157 | bool AllowSameLength = true) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 6158 | return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6159 | AllowSameLength); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6160 | } |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6161 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6162 | /// A set of selectors, which is used to avoid introducing multiple |
| 6163 | /// completions with the same selector into the result set. |
| 6164 | typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet; |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6165 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6166 | /// Add all of the Objective-C methods in the given Objective-C |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6167 | /// container to the set of results. |
| 6168 | /// |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6169 | /// The container will be a class, protocol, category, or implementation of |
| 6170 | /// any of the above. This mether will recurse to include methods from |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6171 | /// the superclasses of classes along with their categories, protocols, and |
| 6172 | /// implementations. |
| 6173 | /// |
| 6174 | /// \param Container the container in which we'll look to find methods. |
| 6175 | /// |
James Dennett | 596e475 | 2012-06-14 03:11:41 +0000 | [diff] [blame] | 6176 | /// \param WantInstanceMethods Whether to add instance methods (only); if |
| 6177 | /// false, this routine will add factory methods (only). |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6178 | /// |
| 6179 | /// \param CurContext the context in which we're performing the lookup that |
| 6180 | /// finds methods. |
| 6181 | /// |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6182 | /// \param AllowSameLength Whether we allow a method to be added to the list |
| 6183 | /// when it has the same number of parameters as we have selector identifiers. |
| 6184 | /// |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6185 | /// \param Results the structure into which we'll add results. |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6186 | static void AddObjCMethods(ObjCContainerDecl *Container, |
| 6187 | bool WantInstanceMethods, ObjCMethodKind WantKind, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6188 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6189 | DeclContext *CurContext, |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6190 | VisitedSelectorSet &Selectors, bool AllowSameLength, |
| 6191 | ResultBuilder &Results, bool InOriginalClass = true, |
| 6192 | bool IsRootClass = false) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6193 | typedef CodeCompletionResult Result; |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 6194 | Container = getContainerDef(Container); |
Douglas Gregor | 41778c3 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 6195 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container); |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6196 | IsRootClass = IsRootClass || (IFace && !IFace->getSuperClass()); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6197 | for (ObjCMethodDecl *M : Container->methods()) { |
Douglas Gregor | 41778c3 | 2013-01-30 06:58:39 +0000 | [diff] [blame] | 6198 | // The instance methods on the root class can be messaged via the |
| 6199 | // metaclass. |
| 6200 | if (M->isInstanceMethod() == WantInstanceMethods || |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6201 | (IsRootClass && !WantInstanceMethods)) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6202 | // Check whether the selector identifiers we've been given are a |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6203 | // subset of the identifiers for this particular method. |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 6204 | if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength)) |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6205 | continue; |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6206 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 6207 | if (!Selectors.insert(M->getSelector()).second) |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6208 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6209 | |
| 6210 | Result R = Result(M, Results.getBasePriority(M), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6211 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6212 | R.AllParametersAreInformative = (WantKind != MK_Any); |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 6213 | if (!InOriginalClass) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 6214 | setInBaseClass(R); |
Douglas Gregor | 1b605f7 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 6215 | Results.MaybeAddResult(R, CurContext); |
| 6216 | } |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6217 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6218 | |
Douglas Gregor | f37c949 | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 6219 | // Visit the protocols of protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6220 | if (const auto *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6221 | if (Protocol->hasDefinition()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6222 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 6223 | Protocol->getReferencedProtocols(); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6224 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6225 | E = Protocols.end(); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6226 | I != E; ++I) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6227 | AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6228 | Selectors, AllowSameLength, Results, false, IsRootClass); |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 6229 | } |
Douglas Gregor | f37c949 | 2010-09-16 15:34:59 +0000 | [diff] [blame] | 6230 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6231 | |
Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 6232 | if (!IFace || !IFace->hasDefinition()) |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6233 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6234 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6235 | // Add methods in protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6236 | for (ObjCProtocolDecl *I : IFace->protocols()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6237 | AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6238 | Selectors, AllowSameLength, Results, false, IsRootClass); |
| 6239 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6240 | // Add methods in categories. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6241 | for (ObjCCategoryDecl *CatDecl : IFace->known_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6242 | AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents, |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6243 | CurContext, Selectors, AllowSameLength, Results, |
| 6244 | InOriginalClass, IsRootClass); |
| 6245 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6246 | // Add a categories protocol methods. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6247 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 6248 | CatDecl->getReferencedProtocols(); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6249 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 6250 | E = Protocols.end(); |
| 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); |
| 6254 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6255 | // Add methods in category implementations. |
| 6256 | if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6257 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6258 | Selectors, AllowSameLength, Results, InOriginalClass, |
| 6259 | IsRootClass); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6260 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6261 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6262 | // Add methods in superclass. |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6263 | // Avoid passing in IsRootClass since root classes won't have super classes. |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6264 | if (IFace->getSuperClass()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6265 | AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind, |
| 6266 | SelIdents, CurContext, Selectors, AllowSameLength, Results, |
| 6267 | /*IsRootClass=*/false); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6268 | |
| 6269 | // Add methods in our implementation, if any. |
| 6270 | if (ObjCImplementationDecl *Impl = IFace->getImplementation()) |
Alex Lorenz | 638dbc3 | 2017-01-24 14:15:08 +0000 | [diff] [blame] | 6271 | AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext, |
| 6272 | Selectors, AllowSameLength, Results, InOriginalClass, |
| 6273 | IsRootClass); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6274 | } |
| 6275 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6276 | void Sema::CodeCompleteObjCPropertyGetter(Scope *S) { |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6277 | // Try to find the interface where getters might live. |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6278 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6279 | if (!Class) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6280 | if (ObjCCategoryDecl *Category = |
| 6281 | dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6282 | Class = Category->getClassInterface(); |
| 6283 | |
| 6284 | if (!Class) |
| 6285 | return; |
| 6286 | } |
| 6287 | |
| 6288 | // Find all of the potential getters. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6289 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6290 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6291 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6292 | Results.EnterNewScope(); |
| 6293 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6294 | VisitedSelectorSet Selectors; |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6295 | AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors, |
Douglas Gregor | b4a7c03 | 2010-11-17 21:36:08 +0000 | [diff] [blame] | 6296 | /*AllowSameLength=*/true, Results); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6297 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6298 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6299 | Results.data(), Results.size()); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6300 | } |
| 6301 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 6302 | void Sema::CodeCompleteObjCPropertySetter(Scope *S) { |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6303 | // Try to find the interface where setters might live. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6304 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6305 | if (!Class) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6306 | if (ObjCCategoryDecl *Category = |
| 6307 | dyn_cast_or_null<ObjCCategoryDecl>(CurContext)) |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6308 | Class = Category->getClassInterface(); |
| 6309 | |
| 6310 | if (!Class) |
| 6311 | return; |
| 6312 | } |
| 6313 | |
| 6314 | // Find all of the potential getters. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6315 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6316 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6317 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6318 | Results.EnterNewScope(); |
| 6319 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6320 | VisitedSelectorSet Selectors; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6321 | AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext, Selectors, |
| 6322 | /*AllowSameLength=*/true, Results); |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6323 | |
| 6324 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6325 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6326 | Results.data(), Results.size()); |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6327 | } |
| 6328 | |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6329 | void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS, |
| 6330 | bool IsParameter) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6331 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6332 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6333 | CodeCompletionContext::CCC_Type); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6334 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6335 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6336 | // Add context-sensitive, Objective-C parameter-passing keywords. |
| 6337 | bool AddedInOut = false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6338 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6339 | (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 6340 | Results.AddResult("in"); |
| 6341 | Results.AddResult("inout"); |
| 6342 | AddedInOut = true; |
| 6343 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6344 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6345 | (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) { |
| 6346 | Results.AddResult("out"); |
| 6347 | if (!AddedInOut) |
| 6348 | Results.AddResult("inout"); |
| 6349 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6350 | if ((DS.getObjCDeclQualifier() & |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6351 | (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref | |
| 6352 | ObjCDeclSpec::DQ_Oneway)) == 0) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6353 | Results.AddResult("bycopy"); |
| 6354 | Results.AddResult("byref"); |
| 6355 | Results.AddResult("oneway"); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6356 | } |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 6357 | if ((DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) == 0) { |
| 6358 | Results.AddResult("nonnull"); |
| 6359 | Results.AddResult("nullable"); |
| 6360 | Results.AddResult("null_unspecified"); |
| 6361 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6362 | |
| 6363 | // 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] | 6364 | // identifier IBAction refers to a macro, provide a completion item for |
| 6365 | // an action, e.g., |
| 6366 | // IBAction)<#selector#>:(id)sender |
| 6367 | if (DS.getObjCDeclQualifier() == 0 && !IsParameter && |
Richard Smith | 20e883e | 2015-04-29 23:20:19 +0000 | [diff] [blame] | 6368 | PP.isMacroDefined("IBAction")) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6369 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 6370 | Results.getCodeCompletionTUInfo(), |
| 6371 | CCP_CodePattern, CXAvailability_Available); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6372 | Builder.AddTypedTextChunk("IBAction"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6373 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6374 | Builder.AddPlaceholderChunk("selector"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6375 | Builder.AddChunk(CodeCompletionString::CK_Colon); |
| 6376 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6377 | Builder.AddTextChunk("id"); |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 6378 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
Douglas Gregor | f34a6f0 | 2011-02-15 22:19:42 +0000 | [diff] [blame] | 6379 | Builder.AddTextChunk("sender"); |
| 6380 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 6381 | } |
Douglas Gregor | ed1f597 | 2013-01-30 07:11:43 +0000 | [diff] [blame] | 6382 | |
| 6383 | // If we're completing the return type, provide 'instancetype'. |
| 6384 | if (!IsParameter) { |
| 6385 | Results.AddResult(CodeCompletionResult("instancetype")); |
| 6386 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6387 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6388 | // Add various builtin type names and specifiers. |
| 6389 | AddOrdinaryNameResults(PCC_Type, S, *this, Results); |
| 6390 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6391 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6392 | // Add the various type names |
| 6393 | Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName); |
| 6394 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 6395 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 6396 | CodeCompleter->includeGlobals(), |
| 6397 | CodeCompleter->loadExternal()); |
| 6398 | |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6399 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 6400 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6401 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 6402 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 99fa264 | 2010-08-24 01:06:58 +0000 | [diff] [blame] | 6403 | Results.data(), Results.size()); |
| 6404 | } |
| 6405 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6406 | /// When we have an expression with type "id", we may assume |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6407 | /// that it has some more-specific class type based on knowledge of |
| 6408 | /// common uses of Objective-C. This routine returns that class type, |
| 6409 | /// or NULL if no better result could be determined. |
| 6410 | static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6411 | auto *Msg = dyn_cast_or_null<ObjCMessageExpr>(E); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6412 | if (!Msg) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6413 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6414 | |
| 6415 | Selector Sel = Msg->getSelector(); |
| 6416 | if (Sel.isNull()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6417 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6418 | |
| 6419 | IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0); |
| 6420 | if (!Id) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6421 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6422 | |
| 6423 | ObjCMethodDecl *Method = Msg->getMethodDecl(); |
| 6424 | if (!Method) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6425 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6426 | |
| 6427 | // Determine the class that we're sending the message to. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6428 | ObjCInterfaceDecl *IFace = nullptr; |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 6429 | switch (Msg->getReceiverKind()) { |
| 6430 | case ObjCMessageExpr::Class: |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6431 | if (const ObjCObjectType *ObjType = |
| 6432 | Msg->getClassReceiver()->getAs<ObjCObjectType>()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6433 | IFace = ObjType->getInterface(); |
Douglas Gregor | 9a12919 | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 6434 | break; |
| 6435 | |
| 6436 | case ObjCMessageExpr::Instance: { |
| 6437 | QualType T = Msg->getInstanceReceiver()->getType(); |
| 6438 | if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>()) |
| 6439 | IFace = Ptr->getInterfaceDecl(); |
| 6440 | break; |
| 6441 | } |
| 6442 | |
| 6443 | case ObjCMessageExpr::SuperInstance: |
| 6444 | case ObjCMessageExpr::SuperClass: |
| 6445 | break; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6446 | } |
| 6447 | |
| 6448 | if (!IFace) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6449 | return nullptr; |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6450 | |
| 6451 | ObjCInterfaceDecl *Super = IFace->getSuperClass(); |
| 6452 | if (Method->isInstanceMethod()) |
| 6453 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6454 | .Case("retain", IFace) |
| 6455 | .Case("strong", IFace) |
| 6456 | .Case("autorelease", IFace) |
| 6457 | .Case("copy", IFace) |
| 6458 | .Case("copyWithZone", IFace) |
| 6459 | .Case("mutableCopy", IFace) |
| 6460 | .Case("mutableCopyWithZone", IFace) |
| 6461 | .Case("awakeFromCoder", IFace) |
| 6462 | .Case("replacementObjectFromCoder", IFace) |
| 6463 | .Case("class", IFace) |
| 6464 | .Case("classForCoder", IFace) |
| 6465 | .Case("superclass", Super) |
| 6466 | .Default(nullptr); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6467 | |
| 6468 | return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6469 | .Case("new", IFace) |
| 6470 | .Case("alloc", IFace) |
| 6471 | .Case("allocWithZone", IFace) |
| 6472 | .Case("class", IFace) |
| 6473 | .Case("superclass", Super) |
| 6474 | .Default(nullptr); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6475 | } |
| 6476 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6477 | // 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] | 6478 | // most likely case of forwarding all of our arguments to the superclass |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6479 | // function. |
| 6480 | /// |
| 6481 | /// \param S The semantic analysis object. |
| 6482 | /// |
Dmitri Gribenko | adba9be | 2012-08-23 17:58:28 +0000 | [diff] [blame] | 6483 | /// \param NeedSuperKeyword Whether we need to prefix this completion with |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6484 | /// the "super" keyword. Otherwise, we just need to provide the arguments. |
| 6485 | /// |
| 6486 | /// \param SelIdents The identifiers in the selector that have already been |
| 6487 | /// provided as arguments for a send to "super". |
| 6488 | /// |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6489 | /// \param Results The set of results to augment. |
| 6490 | /// |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6491 | /// \returns the Objective-C method declaration that would be invoked by |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6492 | /// this "super" completion. If NULL, no completion was added. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6493 | static ObjCMethodDecl * |
| 6494 | AddSuperSendCompletion(Sema &S, bool NeedSuperKeyword, |
| 6495 | ArrayRef<IdentifierInfo *> SelIdents, |
| 6496 | ResultBuilder &Results) { |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6497 | ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); |
| 6498 | if (!CurMethod) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6499 | return nullptr; |
| 6500 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6501 | ObjCInterfaceDecl *Class = CurMethod->getClassInterface(); |
| 6502 | if (!Class) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6503 | return nullptr; |
| 6504 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6505 | // Try to find a superclass method with the same selector. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6506 | ObjCMethodDecl *SuperMethod = nullptr; |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6507 | while ((Class = Class->getSuperClass()) && !SuperMethod) { |
| 6508 | // Check in the class |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6509 | SuperMethod = Class->getMethod(CurMethod->getSelector(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6510 | CurMethod->isInstanceMethod()); |
| 6511 | |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6512 | // Check in categories or class extensions. |
| 6513 | if (!SuperMethod) { |
Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 6514 | for (const auto *Cat : Class->known_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6515 | if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6516 | CurMethod->isInstanceMethod()))) |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6517 | break; |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 6518 | } |
Douglas Gregor | b5f1e46 | 2011-02-16 00:51:18 +0000 | [diff] [blame] | 6519 | } |
| 6520 | } |
| 6521 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6522 | if (!SuperMethod) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6523 | return nullptr; |
| 6524 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6525 | // Check whether the superclass method has the same signature. |
| 6526 | if (CurMethod->param_size() != SuperMethod->param_size() || |
| 6527 | CurMethod->isVariadic() != SuperMethod->isVariadic()) |
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 | for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6531 | CurPEnd = CurMethod->param_end(), |
| 6532 | SuperP = SuperMethod->param_begin(); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6533 | CurP != CurPEnd; ++CurP, ++SuperP) { |
| 6534 | // Make sure the parameter types are compatible. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6535 | if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6536 | (*SuperP)->getType())) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6537 | return nullptr; |
| 6538 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6539 | // Make sure we have a parameter name to forward! |
| 6540 | if (!(*CurP)->getIdentifier()) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6541 | return nullptr; |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6542 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6543 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6544 | // We have a superclass method. Now, form the send-to-super completion. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 6545 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 6546 | Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6547 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6548 | // Give this completion a return type. |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 6549 | AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6550 | Results.getCompletionContext().getBaseType(), Builder); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6551 | |
| 6552 | // If we need the "super" keyword, add it (plus some spacing). |
| 6553 | if (NeedSuperKeyword) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6554 | Builder.AddTypedTextChunk("super"); |
| 6555 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6556 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6557 | |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6558 | Selector Sel = CurMethod->getSelector(); |
| 6559 | if (Sel.isUnarySelector()) { |
| 6560 | if (NeedSuperKeyword) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6561 | Builder.AddTextChunk( |
| 6562 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6563 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6564 | Builder.AddTypedTextChunk( |
| 6565 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6566 | } else { |
| 6567 | ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(); |
| 6568 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6569 | if (I > SelIdents.size()) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6570 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6571 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6572 | if (I < SelIdents.size()) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6573 | Builder.AddInformativeChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6574 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6575 | else if (NeedSuperKeyword || I > SelIdents.size()) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6576 | Builder.AddTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6577 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6578 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6579 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6580 | } else { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 6581 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6582 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 6583 | Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6584 | (*CurP)->getIdentifier()->getName())); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6585 | } |
| 6586 | } |
| 6587 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6588 | |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 6589 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, |
| 6590 | CCP_SuperCompletion)); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6591 | return SuperMethod; |
| 6592 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6593 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6594 | void Sema::CodeCompleteObjCMessageReceiver(Scope *S) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6595 | typedef CodeCompletionResult Result; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6596 | ResultBuilder Results( |
| 6597 | *this, CodeCompleter->getAllocator(), |
| 6598 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6599 | CodeCompletionContext::CCC_ObjCMessageReceiver, |
| 6600 | getLangOpts().CPlusPlus11 |
| 6601 | ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture |
| 6602 | : &ResultBuilder::IsObjCMessageReceiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6603 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6604 | CodeCompletionDeclConsumer Consumer(Results, CurContext); |
| 6605 | Results.EnterNewScope(); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 6606 | LookupVisibleDecls(S, LookupOrdinaryName, Consumer, |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 6607 | CodeCompleter->includeGlobals(), |
| 6608 | CodeCompleter->loadExternal()); |
| 6609 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6610 | // If we are in an Objective-C method inside a class that has a superclass, |
| 6611 | // add "super" as an option. |
| 6612 | if (ObjCMethodDecl *Method = getCurMethodDecl()) |
| 6613 | if (ObjCInterfaceDecl *Iface = Method->getClassInterface()) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6614 | if (Iface->getSuperClass()) { |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6615 | Results.AddResult(Result("super")); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6616 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6617 | AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results); |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6618 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6619 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 6620 | if (getLangOpts().CPlusPlus11) |
Douglas Gregor | d8c6178 | 2012-02-15 15:34:24 +0000 | [diff] [blame] | 6621 | addThisCompletion(*this, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6622 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6623 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6624 | |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6625 | if (CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 6626 | AddMacroResults(PP, Results, CodeCompleter->loadExternal(), false); |
Douglas Gregor | 50832e0 | 2010-09-20 22:39:41 +0000 | [diff] [blame] | 6627 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 6628 | Results.data(), Results.size()); |
Douglas Gregor | a817a19 | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 6629 | } |
| 6630 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6631 | void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6632 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6633 | bool AtArgumentExpression) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6634 | ObjCInterfaceDecl *CDecl = nullptr; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6635 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 6636 | // Figure out which interface we're in. |
| 6637 | CDecl = CurMethod->getClassInterface(); |
| 6638 | if (!CDecl) |
| 6639 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6640 | |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6641 | // Find the superclass of this class. |
| 6642 | CDecl = CDecl->getSuperClass(); |
| 6643 | if (!CDecl) |
| 6644 | return; |
| 6645 | |
| 6646 | if (CurMethod->isInstanceMethod()) { |
| 6647 | // We are inside an instance method, which means that the message |
| 6648 | // send [super ...] is actually calling an instance method on the |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6649 | // current object. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6650 | return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6651 | AtArgumentExpression, CDecl); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6652 | } |
| 6653 | |
| 6654 | // Fall through to send to the superclass in CDecl. |
| 6655 | } else { |
| 6656 | // "super" may be the name of a type or variable. Figure out which |
| 6657 | // it is. |
Argyrios Kyrtzidis | 3e56dd4 | 2013-03-14 22:56:43 +0000 | [diff] [blame] | 6658 | IdentifierInfo *Super = getSuperIdentifier(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6659 | NamedDecl *ND = LookupSingleName(S, Super, SuperLoc, LookupOrdinaryName); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6660 | if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) { |
| 6661 | // "super" names an interface. Use it. |
| 6662 | } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6663 | if (const ObjCObjectType *Iface = |
| 6664 | Context.getTypeDeclType(TD)->getAs<ObjCObjectType>()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6665 | CDecl = Iface->getInterface(); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6666 | } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) { |
| 6667 | // "super" names an unresolved type; we can't be more specific. |
| 6668 | } else { |
| 6669 | // Assume that "super" names some kind of value and parse that way. |
| 6670 | CXXScopeSpec SS; |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 6671 | SourceLocation TemplateKWLoc; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6672 | UnqualifiedId id; |
| 6673 | id.setIdentifier(Super, SuperLoc); |
Bruno Ricci | 70ad396 | 2019-03-25 17:08:51 +0000 | [diff] [blame] | 6674 | ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id, |
| 6675 | /*HasTrailingLParen=*/false, |
| 6676 | /*IsAddressOfOperand=*/false); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6677 | return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6678 | SelIdents, AtArgumentExpression); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6679 | } |
| 6680 | |
| 6681 | // Fall through |
| 6682 | } |
| 6683 | |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 6684 | ParsedType Receiver; |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6685 | if (CDecl) |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 6686 | Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6687 | return CodeCompleteObjCClassMessage(S, Receiver, SelIdents, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6688 | AtArgumentExpression, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6689 | /*IsSuper=*/true); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6690 | } |
| 6691 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 6692 | /// 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] | 6693 | /// send, determine the preferred type (if any) for that argument expression. |
| 6694 | static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results, |
| 6695 | unsigned NumSelIdents) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6696 | typedef CodeCompletionResult Result; |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6697 | ASTContext &Context = Results.getSema().Context; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6698 | |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6699 | QualType PreferredType; |
| 6700 | unsigned BestPriority = CCP_Unlikely * 2; |
| 6701 | Result *ResultsData = Results.data(); |
| 6702 | for (unsigned I = 0, N = Results.size(); I != N; ++I) { |
| 6703 | Result &R = ResultsData[I]; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6704 | if (R.Kind == Result::RK_Declaration && |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6705 | isa<ObjCMethodDecl>(R.Declaration)) { |
| 6706 | if (R.Priority <= BestPriority) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 6707 | const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6708 | if (NumSelIdents <= Method->param_size()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6709 | QualType MyPreferredType = |
| 6710 | Method->parameters()[NumSelIdents - 1]->getType(); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6711 | if (R.Priority < BestPriority || PreferredType.isNull()) { |
| 6712 | BestPriority = R.Priority; |
| 6713 | PreferredType = MyPreferredType; |
| 6714 | } else if (!Context.hasSameUnqualifiedType(PreferredType, |
| 6715 | MyPreferredType)) { |
| 6716 | PreferredType = QualType(); |
| 6717 | } |
| 6718 | } |
| 6719 | } |
| 6720 | } |
| 6721 | } |
| 6722 | |
| 6723 | return PreferredType; |
| 6724 | } |
| 6725 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6726 | static void AddClassMessageCompletions(Sema &SemaRef, Scope *S, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6727 | ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6728 | ArrayRef<IdentifierInfo *> SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6729 | bool AtArgumentExpression, bool IsSuper, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6730 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6731 | typedef CodeCompletionResult Result; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6732 | ObjCInterfaceDecl *CDecl = nullptr; |
| 6733 | |
Douglas Gregor | 8ce3321 | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 6734 | // If the given name refers to an interface type, retrieve the |
| 6735 | // corresponding declaration. |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6736 | if (Receiver) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6737 | QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6738 | if (!T.isNull()) |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 6739 | if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>()) |
| 6740 | CDecl = Interface->getInterface(); |
Douglas Gregor | 8ce3321 | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 6741 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6742 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6743 | // Add all of the factory methods in this Objective-C class, its protocols, |
| 6744 | // superclasses, categories, implementation, etc. |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6745 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6746 | |
| 6747 | // 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] | 6748 | // completion. |
| 6749 | if (IsSuper) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6750 | if (ObjCMethodDecl *SuperMethod = |
| 6751 | AddSuperSendCompletion(SemaRef, false, SelIdents, Results)) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6752 | Results.Ignore(SuperMethod); |
| 6753 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6754 | |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6755 | // If we're inside an Objective-C method definition, prefer its selector to |
| 6756 | // others. |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6757 | if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl()) |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6758 | Results.setPreferredSelector(CurMethod->getSelector()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6759 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6760 | VisitedSelectorSet Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6761 | if (CDecl) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6762 | AddObjCMethods(CDecl, false, MK_Any, SelIdents, SemaRef.CurContext, |
| 6763 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | 0c78ad9 | 2010-04-21 19:57:20 +0000 | [diff] [blame] | 6764 | else { |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6765 | // We're messaging "id" as a type; provide all class/factory methods. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6766 | |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6767 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 6768 | // pool from the AST file. |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6769 | if (SemaRef.getExternalSource()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6770 | for (uint32_t I = 0, |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6771 | N = SemaRef.getExternalSource()->GetNumExternalSelectors(); |
John McCall | 75b960e | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 6772 | I != N; ++I) { |
Axel Naumann | dd433f0 | 2012-10-18 19:05:02 +0000 | [diff] [blame] | 6773 | Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6774 | if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6775 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6776 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6777 | SemaRef.ReadMethodPool(Sel); |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6778 | } |
| 6779 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6780 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6781 | for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6782 | MEnd = SemaRef.MethodPool.end(); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6783 | M != MEnd; ++M) { |
| 6784 | for (ObjCMethodList *MethList = &M->second.second; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6785 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6786 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6787 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6788 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6789 | Result R(MethList->getMethod(), |
| 6790 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6791 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6792 | R.AllParametersAreInformative = false; |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6793 | Results.MaybeAddResult(R, SemaRef.CurContext); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6794 | } |
| 6795 | } |
| 6796 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6797 | |
| 6798 | Results.ExitScope(); |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6799 | } |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6800 | |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6801 | void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6802 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6803 | bool AtArgumentExpression, |
Douglas Gregor | bfcea8b | 2010-09-16 15:14:18 +0000 | [diff] [blame] | 6804 | bool IsSuper) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6805 | |
Douglas Gregor | 63745d5 | 2011-07-21 01:05:26 +0000 | [diff] [blame] | 6806 | QualType T = this->GetTypeFromParser(Receiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6807 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6808 | ResultBuilder Results( |
| 6809 | *this, CodeCompleter->getAllocator(), |
| 6810 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6811 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage, T, |
| 6812 | SelIdents)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6813 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6814 | AddClassMessageCompletions(*this, S, Receiver, SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6815 | AtArgumentExpression, IsSuper, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6816 | |
| 6817 | // 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] | 6818 | // selector), we're actually performing code completion for an expression. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6819 | // Determine whether we have a single, best method. If so, we can |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6820 | // code-complete the expression using the corresponding parameter type as |
| 6821 | // our preferred type, improving completion results. |
| 6822 | if (AtArgumentExpression) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6823 | QualType PreferredType = |
| 6824 | getPreferredArgumentTypeForMessageSend(Results, SelIdents.size()); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6825 | if (PreferredType.isNull()) |
| 6826 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 6827 | else |
| 6828 | CodeCompleteExpression(S, PreferredType); |
| 6829 | return; |
| 6830 | } |
| 6831 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6832 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6833 | Results.data(), Results.size()); |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6834 | } |
| 6835 | |
Richard Trieu | 2bd0401 | 2011-09-09 02:00:50 +0000 | [diff] [blame] | 6836 | void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver, |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6837 | ArrayRef<IdentifierInfo *> SelIdents, |
Douglas Gregor | f86e4da | 2010-09-20 23:34:21 +0000 | [diff] [blame] | 6838 | bool AtArgumentExpression, |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6839 | ObjCInterfaceDecl *Super) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 6840 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6841 | |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6842 | Expr *RecExpr = static_cast<Expr *>(Receiver); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6843 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6844 | // If necessary, apply function/array conversion to the receiver. |
| 6845 | // C99 6.7.5.3p[7,8]. |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6846 | if (RecExpr) { |
| 6847 | ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr); |
| 6848 | if (Conv.isInvalid()) // conversion failed. bail. |
| 6849 | return; |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6850 | RecExpr = Conv.get(); |
John Wiegley | 0129629 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 6851 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6852 | QualType ReceiverType = RecExpr |
| 6853 | ? RecExpr->getType() |
| 6854 | : Super ? Context.getObjCObjectPointerType( |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6855 | Context.getObjCInterfaceType(Super)) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6856 | : Context.getObjCIdType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6857 | |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6858 | // If we're messaging an expression with type "id" or "Class", check |
| 6859 | // whether we know something special about the receiver that allows |
| 6860 | // us to assume a more-specific receiver type. |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6861 | if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) { |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6862 | if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) { |
| 6863 | if (ReceiverType->isObjCClassType()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6864 | return CodeCompleteObjCClassMessage( |
| 6865 | S, ParsedType::make(Context.getObjCInterfaceType(IFace)), SelIdents, |
| 6866 | AtArgumentExpression, Super); |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6867 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6868 | ReceiverType = |
| 6869 | Context.getObjCObjectPointerType(Context.getObjCInterfaceType(IFace)); |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6870 | } |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6871 | } else if (RecExpr && getLangOpts().CPlusPlus) { |
| 6872 | ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr); |
| 6873 | if (Conv.isUsable()) { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 6874 | RecExpr = Conv.get(); |
Anders Carlsson | 382ba41 | 2014-02-28 19:07:22 +0000 | [diff] [blame] | 6875 | ReceiverType = RecExpr->getType(); |
| 6876 | } |
| 6877 | } |
Douglas Gregor | dc520b0 | 2010-11-08 21:12:30 +0000 | [diff] [blame] | 6878 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6879 | // Build the set of methods we can see. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6880 | ResultBuilder Results( |
| 6881 | *this, CodeCompleter->getAllocator(), |
| 6882 | CodeCompleter->getCodeCompletionTUInfo(), |
| 6883 | CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage, |
| 6884 | ReceiverType, SelIdents)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6885 | |
Douglas Gregor | bab2b3c | 2009-11-17 23:22:23 +0000 | [diff] [blame] | 6886 | Results.EnterNewScope(); |
Douglas Gregor | 9d2ddb2 | 2010-04-06 19:22:33 +0000 | [diff] [blame] | 6887 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6888 | // 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] | 6889 | // completion. |
Douglas Gregor | 392a84b | 2010-10-13 21:24:53 +0000 | [diff] [blame] | 6890 | if (Super) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6891 | if (ObjCMethodDecl *SuperMethod = |
| 6892 | AddSuperSendCompletion(*this, false, SelIdents, Results)) |
Douglas Gregor | 6fc0413 | 2010-08-27 15:10:57 +0000 | [diff] [blame] | 6893 | Results.Ignore(SuperMethod); |
| 6894 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6895 | |
Douglas Gregor | c2cb2e2 | 2010-08-27 15:29:55 +0000 | [diff] [blame] | 6896 | // If we're inside an Objective-C method definition, prefer its selector to |
| 6897 | // others. |
| 6898 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) |
| 6899 | Results.setPreferredSelector(CurMethod->getSelector()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6900 | |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6901 | // Keep track of the selectors we've already added. |
| 6902 | VisitedSelectorSet Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6903 | |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6904 | // Handle messages to Class. This really isn't a message to an instance |
| 6905 | // method, so we treat it the same way we would treat a message send to a |
| 6906 | // class method. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6907 | if (ReceiverType->isObjCClassType() || |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6908 | ReceiverType->isObjCQualifiedClassType()) { |
| 6909 | if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) { |
| 6910 | if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6911 | AddObjCMethods(ClassDecl, false, MK_Any, SelIdents, CurContext, |
| 6912 | Selectors, AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6913 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6914 | } |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6915 | // Handle messages to a qualified ID ("id<foo>"). |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6916 | else if (const ObjCObjectPointerType *QualID = |
| 6917 | ReceiverType->getAsObjCQualifiedIdType()) { |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6918 | // Search protocols for instance methods. |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 6919 | for (auto *I : QualID->quals()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6920 | AddObjCMethods(I, true, MK_Any, SelIdents, CurContext, Selectors, |
| 6921 | AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6922 | } |
| 6923 | // Handle messages to a pointer to interface type. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6924 | else if (const ObjCObjectPointerType *IFacePtr = |
| 6925 | ReceiverType->getAsObjCInterfacePointerType()) { |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6926 | // Search the class, its superclasses, etc., for instance methods. |
Douglas Gregor | c8537c5 | 2009-11-19 07:41:15 +0000 | [diff] [blame] | 6927 | AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6928 | CurContext, Selectors, AtArgumentExpression, Results); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6929 | |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6930 | // Search protocols for instance methods. |
Aaron Ballman | 8373146 | 2014-03-17 16:14:00 +0000 | [diff] [blame] | 6931 | for (auto *I : IFacePtr->quals()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6932 | AddObjCMethods(I, true, MK_Any, SelIdents, CurContext, Selectors, |
| 6933 | AtArgumentExpression, Results); |
Douglas Gregor | a3329fa | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 6934 | } |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6935 | // Handle messages to "id". |
| 6936 | else if (ReceiverType->isObjCIdType()) { |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6937 | // We're messaging "id", so provide all instance methods we know |
| 6938 | // about as code-completion results. |
| 6939 | |
| 6940 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 6941 | // pool from the AST file. |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6942 | if (ExternalSource) { |
John McCall | 75b960e | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 6943 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); |
| 6944 | I != N; ++I) { |
| 6945 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6946 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6947 | continue; |
| 6948 | |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6949 | ReadMethodPool(Sel); |
Douglas Gregor | d720daf | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 6950 | } |
| 6951 | } |
| 6952 | |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 6953 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 6954 | MEnd = MethodPool.end(); |
| 6955 | M != MEnd; ++M) { |
| 6956 | for (ObjCMethodList *MethList = &M->second.first; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6957 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6958 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6959 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6960 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6961 | if (!Selectors.insert(MethList->getMethod()->getSelector()).second) |
Douglas Gregor | 1154e27 | 2010-09-16 16:06:31 +0000 | [diff] [blame] | 6962 | continue; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 6963 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 6964 | Result R(MethList->getMethod(), |
| 6965 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 6966 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 6285f75 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 6967 | R.AllParametersAreInformative = false; |
| 6968 | Results.MaybeAddResult(R, CurContext); |
| 6969 | } |
| 6970 | } |
| 6971 | } |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6972 | Results.ExitScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6973 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6974 | // 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] | 6975 | // selector), we're actually performing code completion for an expression. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6976 | // Determine whether we have a single, best method. If so, we can |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6977 | // code-complete the expression using the corresponding parameter type as |
| 6978 | // our preferred type, improving completion results. |
| 6979 | if (AtArgumentExpression) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6980 | QualType PreferredType = |
| 6981 | getPreferredArgumentTypeForMessageSend(Results, SelIdents.size()); |
Douglas Gregor | 7466127 | 2010-09-21 00:03:25 +0000 | [diff] [blame] | 6982 | if (PreferredType.isNull()) |
| 6983 | CodeCompleteOrdinaryName(S, PCC_Expression); |
| 6984 | else |
| 6985 | CodeCompleteExpression(S, PreferredType); |
| 6986 | return; |
| 6987 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6988 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 6989 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 6990 | Results.data(), Results.size()); |
Steve Naroff | eae6503 | 2009-11-07 02:08:14 +0000 | [diff] [blame] | 6991 | } |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 6992 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6993 | void Sema::CodeCompleteObjCForCollection(Scope *S, |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 6994 | DeclGroupPtrTy IterationVar) { |
| 6995 | CodeCompleteExpressionData Data; |
| 6996 | Data.ObjCCollection = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 6997 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 6998 | if (IterationVar.getAsOpaquePtr()) { |
Serge Pavlov | 9ddb76e | 2013-08-27 13:15:56 +0000 | [diff] [blame] | 6999 | DeclGroupRef DG = IterationVar.get(); |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7000 | for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) { |
| 7001 | if (*I) |
| 7002 | Data.IgnoreDecls.push_back(*I); |
| 7003 | } |
| 7004 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7005 | |
Douglas Gregor | 68762e7 | 2010-08-23 21:17:50 +0000 | [diff] [blame] | 7006 | CodeCompleteExpression(S, Data); |
| 7007 | } |
| 7008 | |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7009 | void Sema::CodeCompleteObjCSelector(Scope *S, |
| 7010 | ArrayRef<IdentifierInfo *> SelIdents) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7011 | // If we have an external source, load the entire class method |
| 7012 | // pool from the AST file. |
| 7013 | if (ExternalSource) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7014 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); I != N; |
| 7015 | ++I) { |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7016 | Selector Sel = ExternalSource->GetExternalSelector(I); |
| 7017 | if (Sel.isNull() || MethodPool.count(Sel)) |
| 7018 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7019 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7020 | ReadMethodPool(Sel); |
| 7021 | } |
| 7022 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7023 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7024 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7025 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7026 | CodeCompletionContext::CCC_SelectorName); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7027 | Results.EnterNewScope(); |
| 7028 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7029 | MEnd = MethodPool.end(); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7030 | M != MEnd; ++M) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7031 | |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7032 | Selector Sel = M->first; |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7033 | if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents)) |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7034 | continue; |
| 7035 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7036 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 7037 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7038 | if (Sel.isUnarySelector()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7039 | Builder.AddTypedTextChunk( |
| 7040 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7041 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7042 | continue; |
| 7043 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7044 | |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7045 | std::string Accumulator; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7046 | for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) { |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 7047 | if (I == SelIdents.size()) { |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7048 | if (!Accumulator.empty()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7049 | Builder.AddInformativeChunk( |
| 7050 | Builder.getAllocator().CopyString(Accumulator)); |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7051 | Accumulator.clear(); |
| 7052 | } |
| 7053 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7054 | |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 7055 | Accumulator += Sel.getNameForSlot(I); |
Douglas Gregor | 9ac1ad1 | 2010-08-26 16:46:39 +0000 | [diff] [blame] | 7056 | Accumulator += ':'; |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7057 | } |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7058 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(Accumulator)); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7059 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7060 | } |
| 7061 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7062 | |
| 7063 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 67c692c | 2010-08-26 15:07:07 +0000 | [diff] [blame] | 7064 | Results.data(), Results.size()); |
| 7065 | } |
| 7066 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7067 | /// Add all of the protocol declarations that we find in the given |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7068 | /// (translation unit) context. |
| 7069 | static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext, |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7070 | bool OnlyForwardDeclarations, |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7071 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7072 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7073 | |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7074 | for (const auto *D : Ctx->decls()) { |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7075 | // Record any protocols we find. |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7076 | if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D)) |
Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 7077 | if (!OnlyForwardDeclarations || !Proto->hasDefinition()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7078 | Results.AddResult( |
| 7079 | Result(Proto, Results.getBasePriority(Proto), nullptr), CurContext, |
| 7080 | nullptr, false); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7081 | } |
| 7082 | } |
| 7083 | |
Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 7084 | void Sema::CodeCompleteObjCProtocolReferences( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7085 | ArrayRef<IdentifierLocPair> Protocols) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7086 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7087 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7088 | CodeCompletionContext::CCC_ObjCProtocolName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7089 | |
Chandler Carruth | ede1163 | 2016-11-04 06:06:50 +0000 | [diff] [blame] | 7090 | if (CodeCompleter->includeGlobals()) { |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7091 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7092 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7093 | // Tell the result set to ignore all of the protocols we have |
| 7094 | // already seen. |
| 7095 | // FIXME: This doesn't work when caching code-completion results. |
Craig Topper | 883dd33 | 2015-12-24 23:58:11 +0000 | [diff] [blame] | 7096 | for (const IdentifierLocPair &Pair : Protocols) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7097 | if (ObjCProtocolDecl *Protocol = LookupProtocol(Pair.first, Pair.second)) |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7098 | Results.Ignore(Protocol); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7099 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7100 | // Add all protocols. |
| 7101 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7102 | Results); |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7103 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7104 | Results.ExitScope(); |
| 7105 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7106 | |
| 7107 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7108 | Results.data(), Results.size()); |
Douglas Gregor | 5b4671c | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 7109 | } |
| 7110 | |
| 7111 | void Sema::CodeCompleteObjCProtocolDecl(Scope *) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7112 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7113 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7114 | CodeCompletionContext::CCC_ObjCProtocolName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7115 | |
Chandler Carruth | ede1163 | 2016-11-04 06:06:50 +0000 | [diff] [blame] | 7116 | if (CodeCompleter->includeGlobals()) { |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7117 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7118 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7119 | // Add all protocols. |
| 7120 | AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true, |
| 7121 | Results); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7122 | |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 7123 | Results.ExitScope(); |
| 7124 | } |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7125 | |
| 7126 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7127 | Results.data(), Results.size()); |
Douglas Gregor | baf6961 | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 7128 | } |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7129 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7130 | /// Add all of the Objective-C interface declarations that we find in |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7131 | /// the given (translation unit) context. |
| 7132 | static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext, |
| 7133 | bool OnlyForwardDeclarations, |
| 7134 | bool OnlyUnimplemented, |
| 7135 | ResultBuilder &Results) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7136 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7137 | |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7138 | for (const auto *D : Ctx->decls()) { |
Douglas Gregor | 1c28331 | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 7139 | // Record any interfaces we find. |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7140 | if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D)) |
Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 7141 | if ((!OnlyForwardDeclarations || !Class->hasDefinition()) && |
Douglas Gregor | 1c28331 | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 7142 | (!OnlyUnimplemented || !Class->getImplementation())) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7143 | Results.AddResult( |
| 7144 | Result(Class, Results.getBasePriority(Class), nullptr), CurContext, |
| 7145 | nullptr, false); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7146 | } |
| 7147 | } |
| 7148 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7149 | void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7150 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7151 | CodeCompleter->getCodeCompletionTUInfo(), |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7152 | CodeCompletionContext::CCC_ObjCInterfaceName); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7153 | Results.EnterNewScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7154 | |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7155 | if (CodeCompleter->includeGlobals()) { |
| 7156 | // Add all classes. |
| 7157 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7158 | false, Results); |
| 7159 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7160 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7161 | Results.ExitScope(); |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7162 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7163 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7164 | Results.data(), Results.size()); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7165 | } |
| 7166 | |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7167 | void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7168 | SourceLocation ClassNameLoc) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7169 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7170 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7171 | CodeCompletionContext::CCC_ObjCInterfaceName); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7172 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7173 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7174 | // Make sure that we ignore the class we're currently defining. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7175 | NamedDecl *CurClass = |
| 7176 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7177 | if (CurClass && isa<ObjCInterfaceDecl>(CurClass)) |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7178 | Results.Ignore(CurClass); |
| 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 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7192 | void Sema::CodeCompleteObjCImplementationDecl(Scope *S) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7193 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7194 | CodeCompleter->getCodeCompletionTUInfo(), |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7195 | CodeCompletionContext::CCC_ObjCImplementation); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7196 | Results.EnterNewScope(); |
| 7197 | |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7198 | if (CodeCompleter->includeGlobals()) { |
| 7199 | // Add all unimplemented classes. |
| 7200 | AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false, |
| 7201 | true, Results); |
| 7202 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7203 | |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7204 | Results.ExitScope(); |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 7205 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7206 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7207 | Results.data(), Results.size()); |
Douglas Gregor | 49c22a7 | 2009-11-18 16:26:39 +0000 | [diff] [blame] | 7208 | } |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7209 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7210 | void Sema::CodeCompleteObjCInterfaceCategory(Scope *S, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7211 | IdentifierInfo *ClassName, |
| 7212 | SourceLocation ClassNameLoc) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7213 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7214 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7215 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7216 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 7217 | CodeCompletionContext::CCC_ObjCCategoryName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7218 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7219 | // Ignore any categories we find that have already been implemented by this |
| 7220 | // interface. |
| 7221 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7222 | NamedDecl *CurClass = |
| 7223 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
| 7224 | if (ObjCInterfaceDecl *Class = |
| 7225 | dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)) { |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7226 | for (const auto *Cat : Class->visible_categories()) |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7227 | CategoryNames.insert(Cat->getIdentifier()); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7228 | } |
| 7229 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7230 | // Add all of the categories we know about. |
| 7231 | Results.EnterNewScope(); |
| 7232 | TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7233 | for (const auto *D : TU->decls()) |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7234 | if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D)) |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7235 | if (CategoryNames.insert(Category->getIdentifier()).second) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7236 | Results.AddResult( |
| 7237 | Result(Category, Results.getBasePriority(Category), nullptr), |
| 7238 | CurContext, nullptr, false); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7239 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7240 | |
| 7241 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7242 | Results.data(), Results.size()); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7243 | } |
| 7244 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7245 | void Sema::CodeCompleteObjCImplementationCategory(Scope *S, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7246 | IdentifierInfo *ClassName, |
| 7247 | SourceLocation ClassNameLoc) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7248 | typedef CodeCompletionResult Result; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7249 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7250 | // Find the corresponding interface. If we couldn't find the interface, the |
| 7251 | // program itself is ill-formed. However, we'll try to be helpful still by |
| 7252 | // providing the list of all of the categories we know about. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7253 | NamedDecl *CurClass = |
| 7254 | LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7255 | ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass); |
| 7256 | if (!Class) |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 7257 | return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7258 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7259 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7260 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 7261 | CodeCompletionContext::CCC_ObjCCategoryName); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7262 | |
| 7263 | // Add all of the categories that have have corresponding interface |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7264 | // declarations in this class and any of its superclasses, except for |
| 7265 | // already-implemented categories in the class itself. |
| 7266 | llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames; |
| 7267 | Results.EnterNewScope(); |
| 7268 | bool IgnoreImplemented = true; |
| 7269 | while (Class) { |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7270 | for (const auto *Cat : Class->visible_categories()) { |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7271 | if ((!IgnoreImplemented || !Cat->getImplementation()) && |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7272 | CategoryNames.insert(Cat->getIdentifier()).second) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7273 | Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), |
| 7274 | CurContext, nullptr, false); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7275 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7276 | |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7277 | Class = Class->getSuperClass(); |
| 7278 | IgnoreImplemented = false; |
| 7279 | } |
| 7280 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7281 | |
| 7282 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7283 | Results.data(), Results.size()); |
Douglas Gregor | 5d34fd3 | 2009-11-18 19:08:43 +0000 | [diff] [blame] | 7284 | } |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7285 | |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 7286 | void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) { |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7287 | CodeCompletionContext CCContext(CodeCompletionContext::CCC_Other); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7288 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7289 | CodeCompleter->getCodeCompletionTUInfo(), CCContext); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7290 | |
| 7291 | // Figure out where this @synthesize lives. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7292 | ObjCContainerDecl *Container = |
| 7293 | dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
| 7294 | if (!Container || (!isa<ObjCImplementationDecl>(Container) && |
| 7295 | !isa<ObjCCategoryImplDecl>(Container))) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7296 | return; |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7297 | |
| 7298 | // Ignore any properties that have already been implemented. |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7299 | Container = getContainerDef(Container); |
Aaron Ballman | 629afae | 2014-03-07 19:56:05 +0000 | [diff] [blame] | 7300 | for (const auto *D : Container->decls()) |
| 7301 | if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D)) |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7302 | Results.Ignore(PropertyImpl->getPropertyDecl()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7303 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7304 | // Add any properties that we find. |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 7305 | AddedPropertiesSet AddedProperties; |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7306 | Results.EnterNewScope(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7307 | if (ObjCImplementationDecl *ClassImpl = |
| 7308 | dyn_cast<ObjCImplementationDecl>(Container)) |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7309 | AddObjCProperties(CCContext, ClassImpl->getClassInterface(), false, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7310 | /*AllowNullaryMethods=*/false, CurContext, |
Douglas Gregor | b888acf | 2010-12-09 23:01:55 +0000 | [diff] [blame] | 7311 | AddedProperties, Results); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7312 | else |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 7313 | AddObjCProperties(CCContext, |
| 7314 | cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7315 | false, /*AllowNullaryMethods=*/false, CurContext, |
Douglas Gregor | 9514714 | 2011-05-05 15:50:42 +0000 | [diff] [blame] | 7316 | AddedProperties, Results); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7317 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7318 | |
| 7319 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7320 | Results.data(), Results.size()); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7321 | } |
| 7322 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7323 | void Sema::CodeCompleteObjCPropertySynthesizeIvar( |
| 7324 | Scope *S, IdentifierInfo *PropertyName) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 7325 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7326 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7327 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 7328 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7329 | |
| 7330 | // Figure out where this @synthesize lives. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7331 | ObjCContainerDecl *Container = |
| 7332 | dyn_cast_or_null<ObjCContainerDecl>(CurContext); |
| 7333 | if (!Container || (!isa<ObjCImplementationDecl>(Container) && |
| 7334 | !isa<ObjCCategoryImplDecl>(Container))) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7335 | return; |
| 7336 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7337 | // Figure out which interface we're looking into. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7338 | ObjCInterfaceDecl *Class = nullptr; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7339 | if (ObjCImplementationDecl *ClassImpl = |
| 7340 | dyn_cast<ObjCImplementationDecl>(Container)) |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7341 | Class = ClassImpl->getClassInterface(); |
| 7342 | else |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7343 | Class = cast<ObjCCategoryImplDecl>(Container) |
| 7344 | ->getCategoryDecl() |
| 7345 | ->getClassInterface(); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7346 | |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7347 | // Determine the type of the property we're synthesizing. |
| 7348 | QualType PropertyType = Context.getObjCIdType(); |
| 7349 | if (Class) { |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 7350 | if (ObjCPropertyDecl *Property = Class->FindPropertyDeclaration( |
| 7351 | PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7352 | PropertyType = |
| 7353 | Property->getType().getNonReferenceType().getUnqualifiedType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7354 | |
| 7355 | // Give preference to ivars |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7356 | Results.setPreferredType(PropertyType); |
| 7357 | } |
| 7358 | } |
| 7359 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7360 | // Add all of the instance variables in this class and its superclasses. |
| 7361 | Results.EnterNewScope(); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7362 | bool SawSimilarlyNamedIvar = false; |
| 7363 | std::string NameWithPrefix; |
| 7364 | NameWithPrefix += '_'; |
Benjamin Kramer | 632500c | 2011-07-26 16:59:25 +0000 | [diff] [blame] | 7365 | NameWithPrefix += PropertyName->getName(); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7366 | std::string NameWithSuffix = PropertyName->getName().str(); |
| 7367 | NameWithSuffix += '_'; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7368 | for (; Class; Class = Class->getSuperClass()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7369 | for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar; |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7370 | Ivar = Ivar->getNextIvar()) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7371 | Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr), |
| 7372 | CurContext, nullptr, false); |
| 7373 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7374 | // 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] | 7375 | // property. |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7376 | if ((PropertyName == Ivar->getIdentifier() || |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7377 | NameWithPrefix == Ivar->getName() || |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7378 | NameWithSuffix == Ivar->getName())) { |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7379 | SawSimilarlyNamedIvar = true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7380 | |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7381 | // Reduce the priority of this result by one, to give it a slight |
| 7382 | // advantage over other results whose names don't match so closely. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7383 | if (Results.size() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7384 | Results.data()[Results.size() - 1].Kind == |
| 7385 | CodeCompletionResult::RK_Declaration && |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7386 | Results.data()[Results.size() - 1].Declaration == Ivar) |
| 7387 | Results.data()[Results.size() - 1].Priority--; |
| 7388 | } |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7389 | } |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7390 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7391 | |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7392 | if (!SawSimilarlyNamedIvar) { |
| 7393 | // Create ivar result _propName, that the user can use to synthesize |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7394 | // an ivar of the appropriate type. |
Douglas Gregor | 6c7a9ee | 2011-04-18 14:40:46 +0000 | [diff] [blame] | 7395 | unsigned Priority = CCP_MemberDeclaration + 1; |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7396 | typedef CodeCompletionResult Result; |
| 7397 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7398 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7399 | Priority, CXAvailability_Available); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7400 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7401 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7402 | Builder.AddResultTypeChunk( |
| 7403 | GetCompletionTypeString(PropertyType, Context, Policy, Allocator)); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7404 | Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7405 | Results.AddResult( |
| 7406 | Result(Builder.TakeString(), Priority, CXCursor_ObjCIvarDecl)); |
Douglas Gregor | 331faa0 | 2011-04-18 14:13:53 +0000 | [diff] [blame] | 7407 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7408 | |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7409 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 7410 | |
| 7411 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 7412 | Results.data(), Results.size()); |
Douglas Gregor | 5d64988 | 2009-11-18 22:32:06 +0000 | [diff] [blame] | 7413 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7414 | |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 7415 | // Mapping from selectors to the methods that implement that selector, along |
| 7416 | // with the "in original class" flag. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7417 | typedef llvm::DenseMap<Selector, |
| 7418 | llvm::PointerIntPair<ObjCMethodDecl *, 1, bool>> |
| 7419 | KnownMethodsMap; |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7420 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7421 | /// Find all of the methods that reside in the given container |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7422 | /// (and its superclasses, protocols, etc.) that meet the given |
| 7423 | /// criteria. Insert those methods into the map of known methods, |
| 7424 | /// indexed by selector so they can be easily found. |
| 7425 | static void FindImplementableMethods(ASTContext &Context, |
| 7426 | ObjCContainerDecl *Container, |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 7427 | Optional<bool> WantInstanceMethods, |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7428 | QualType ReturnType, |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 7429 | KnownMethodsMap &KnownMethods, |
| 7430 | bool InOriginalClass = true) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7431 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) { |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7432 | // Make sure we have a definition; that's what we'll walk. |
Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 7433 | if (!IFace->hasDefinition()) |
| 7434 | return; |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7435 | |
| 7436 | IFace = IFace->getDefinition(); |
| 7437 | Container = IFace; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7438 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7439 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7440 | IFace->getReferencedProtocols(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7441 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7442 | E = Protocols.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7443 | I != E; ++I) |
| 7444 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7445 | KnownMethods, InOriginalClass); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7446 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7447 | // Add methods from any class extensions and categories. |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 7448 | for (auto *Cat : IFace->visible_categories()) { |
| 7449 | FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType, |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7450 | KnownMethods, false); |
Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 7451 | } |
| 7452 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7453 | // Visit the superclass. |
| 7454 | if (IFace->getSuperClass()) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7455 | FindImplementableMethods(Context, IFace->getSuperClass(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7456 | WantInstanceMethods, ReturnType, KnownMethods, |
| 7457 | false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7458 | } |
| 7459 | |
| 7460 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) { |
| 7461 | // Recurse into protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7462 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7463 | Category->getReferencedProtocols(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7464 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7465 | E = Protocols.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7466 | I != E; ++I) |
| 7467 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7468 | KnownMethods, InOriginalClass); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7469 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7470 | // If this category is the original class, jump to the interface. |
| 7471 | if (InOriginalClass && Category->getClassInterface()) |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7472 | FindImplementableMethods(Context, Category->getClassInterface(), |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 7473 | WantInstanceMethods, ReturnType, KnownMethods, |
| 7474 | false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7475 | } |
| 7476 | |
| 7477 | if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) { |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7478 | // Make sure we have a definition; that's what we'll walk. |
| 7479 | if (!Protocol->hasDefinition()) |
| 7480 | return; |
| 7481 | Protocol = Protocol->getDefinition(); |
| 7482 | Container = Protocol; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7483 | |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7484 | // Recurse into protocols. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7485 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 7486 | Protocol->getReferencedProtocols(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7487 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7488 | E = Protocols.end(); |
Douglas Gregor | 9b4f370 | 2012-06-12 13:44:08 +0000 | [diff] [blame] | 7489 | I != E; ++I) |
| 7490 | FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType, |
| 7491 | KnownMethods, false); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7492 | } |
| 7493 | |
| 7494 | // Add methods in this container. This operation occurs last because |
| 7495 | // we want the methods from this container to override any methods |
| 7496 | // we've previously seen with the same selector. |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 7497 | for (auto *M : Container->methods()) { |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 7498 | if (!WantInstanceMethods || M->isInstanceMethod() == *WantInstanceMethods) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7499 | if (!ReturnType.isNull() && |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 7500 | !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType())) |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7501 | continue; |
| 7502 | |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 7503 | KnownMethods[M->getSelector()] = |
Aaron Ballman | aff18c0 | 2014-03-13 19:03:34 +0000 | [diff] [blame] | 7504 | KnownMethodsMap::mapped_type(M, InOriginalClass); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 7505 | } |
| 7506 | } |
| 7507 | } |
| 7508 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7509 | /// Add the parenthesized return or parameter type chunk to a code |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7510 | /// completion string. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7511 | static void AddObjCPassingTypeChunk(QualType Type, unsigned ObjCDeclQuals, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7512 | ASTContext &Context, |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7513 | const PrintingPolicy &Policy, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7514 | CodeCompletionBuilder &Builder) { |
| 7515 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 7516 | std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals, Type); |
Douglas Gregor | 2997914 | 2012-04-10 18:35:07 +0000 | [diff] [blame] | 7517 | if (!Quals.empty()) |
| 7518 | Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals)); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7519 | Builder.AddTextChunk( |
| 7520 | GetCompletionTypeString(Type, Context, Policy, Builder.getAllocator())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7521 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7522 | } |
| 7523 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7524 | /// Determine whether the given class is or inherits from a class by |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7525 | /// the given name. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7526 | static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class, StringRef Name) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7527 | if (!Class) |
| 7528 | return false; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7529 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7530 | if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name) |
| 7531 | return true; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7532 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7533 | return InheritsFromClassNamed(Class->getSuperClass(), Name); |
| 7534 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7535 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 7536 | /// Add code completions for Objective-C Key-Value Coding (KVC) and |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7537 | /// Key-Value Observing (KVO). |
| 7538 | static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, |
| 7539 | bool IsInstanceMethod, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7540 | QualType ReturnType, ASTContext &Context, |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 7541 | VisitedSelectorSet &KnownSelectors, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7542 | ResultBuilder &Results) { |
| 7543 | IdentifierInfo *PropName = Property->getIdentifier(); |
| 7544 | if (!PropName || PropName->getLength() == 0) |
| 7545 | return; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7546 | |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 7547 | PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema()); |
| 7548 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7549 | // Builder that will create each code completion. |
| 7550 | typedef CodeCompletionResult Result; |
| 7551 | CodeCompletionAllocator &Allocator = Results.getAllocator(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 7552 | CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7553 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7554 | // The selector table. |
| 7555 | SelectorTable &Selectors = Context.Selectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7556 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7557 | // The property name, copied into the code completion allocation region |
| 7558 | // on demand. |
| 7559 | struct KeyHolder { |
| 7560 | CodeCompletionAllocator &Allocator; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7561 | StringRef Key; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7562 | const char *CopiedKey; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7563 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7564 | KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7565 | : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {} |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 7566 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7567 | operator const char *() { |
| 7568 | if (CopiedKey) |
| 7569 | return CopiedKey; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7570 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7571 | return CopiedKey = Allocator.CopyString(Key); |
| 7572 | } |
| 7573 | } Key(Allocator, PropName->getName()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7574 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7575 | // The uppercased name of the property name. |
| 7576 | std::string UpperKey = PropName->getName(); |
| 7577 | if (!UpperKey.empty()) |
Jordan Rose | 4938f27 | 2013-02-09 10:09:43 +0000 | [diff] [blame] | 7578 | UpperKey[0] = toUppercase(UpperKey[0]); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7579 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7580 | bool ReturnTypeMatchesProperty = |
| 7581 | ReturnType.isNull() || |
| 7582 | Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(), |
| 7583 | Property->getType()); |
| 7584 | bool ReturnTypeMatchesVoid = ReturnType.isNull() || ReturnType->isVoidType(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7585 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7586 | // Add the normal accessor -(type)key. |
| 7587 | if (IsInstanceMethod && |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7588 | KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7589 | ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) { |
| 7590 | if (ReturnType.isNull()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7591 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, Context, Policy, |
| 7592 | Builder); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7593 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7594 | Builder.AddTypedTextChunk(Key); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7595 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7596 | CXCursor_ObjCInstanceMethodDecl)); |
| 7597 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7598 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7599 | // If we have an integral or boolean property (or the user has provided |
| 7600 | // an integral or boolean return type), add the accessor -(type)isKey. |
| 7601 | if (IsInstanceMethod && |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7602 | ((!ReturnType.isNull() && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7603 | (ReturnType->isIntegerType() || ReturnType->isBooleanType())) || |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7604 | (ReturnType.isNull() && (Property->getType()->isIntegerType() || |
| 7605 | Property->getType()->isBooleanType())))) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7606 | std::string SelectorName = (Twine("is") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7607 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7608 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7609 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7610 | if (ReturnType.isNull()) { |
| 7611 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7612 | Builder.AddTextChunk("BOOL"); |
| 7613 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7614 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7615 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7616 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7617 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7618 | CXCursor_ObjCInstanceMethodDecl)); |
| 7619 | } |
| 7620 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7621 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7622 | // Add the normal mutator. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7623 | if (IsInstanceMethod && ReturnTypeMatchesVoid && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7624 | !Property->getSetterMethodDecl()) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7625 | std::string SelectorName = (Twine("set") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7626 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7627 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7628 | if (ReturnType.isNull()) { |
| 7629 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7630 | Builder.AddTextChunk("void"); |
| 7631 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7632 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7633 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7634 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7635 | Builder.AddTypedTextChunk(":"); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7636 | AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0, Context, Policy, |
| 7637 | Builder); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7638 | Builder.AddTextChunk(Key); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7639 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7640 | CXCursor_ObjCInstanceMethodDecl)); |
| 7641 | } |
| 7642 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7643 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7644 | // Indexed and unordered accessors |
| 7645 | unsigned IndexedGetterPriority = CCP_CodePattern; |
| 7646 | unsigned IndexedSetterPriority = CCP_CodePattern; |
| 7647 | unsigned UnorderedGetterPriority = CCP_CodePattern; |
| 7648 | unsigned UnorderedSetterPriority = CCP_CodePattern; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7649 | if (const auto *ObjCPointer = |
| 7650 | Property->getType()->getAs<ObjCObjectPointerType>()) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7651 | if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) { |
| 7652 | // If this interface type is not provably derived from a known |
| 7653 | // collection, penalize the corresponding completions. |
| 7654 | if (!InheritsFromClassNamed(IFace, "NSMutableArray")) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7655 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7656 | if (!InheritsFromClassNamed(IFace, "NSArray")) |
| 7657 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7658 | } |
| 7659 | |
| 7660 | if (!InheritsFromClassNamed(IFace, "NSMutableSet")) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7661 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7662 | if (!InheritsFromClassNamed(IFace, "NSSet")) |
| 7663 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7664 | } |
| 7665 | } |
| 7666 | } else { |
| 7667 | IndexedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7668 | IndexedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 7669 | UnorderedGetterPriority += CCD_ProbablyNotObjCCollection; |
| 7670 | UnorderedSetterPriority += CCD_ProbablyNotObjCCollection; |
| 7671 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7672 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7673 | // Add -(NSUInteger)countOf<key> |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7674 | if (IsInstanceMethod && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7675 | (ReturnType.isNull() || ReturnType->isIntegerType())) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7676 | std::string SelectorName = (Twine("countOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7677 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7678 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7679 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7680 | if (ReturnType.isNull()) { |
| 7681 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7682 | Builder.AddTextChunk("NSUInteger"); |
| 7683 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7684 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7685 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7686 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorId->getName())); |
| 7687 | Results.AddResult( |
| 7688 | Result(Builder.TakeString(), |
| 7689 | std::min(IndexedGetterPriority, UnorderedGetterPriority), |
| 7690 | CXCursor_ObjCInstanceMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7691 | } |
| 7692 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7693 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7694 | // Indexed getters |
| 7695 | // Add -(id)objectInKeyAtIndex:(NSUInteger)index |
| 7696 | if (IsInstanceMethod && |
| 7697 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7698 | std::string SelectorName = (Twine("objectIn") + UpperKey + "AtIndex").str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7699 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7700 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7701 | if (ReturnType.isNull()) { |
| 7702 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7703 | Builder.AddTextChunk("id"); |
| 7704 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7705 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7706 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7707 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7708 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7709 | Builder.AddTextChunk("NSUInteger"); |
| 7710 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7711 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7712 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7713 | CXCursor_ObjCInstanceMethodDecl)); |
| 7714 | } |
| 7715 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7716 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7717 | // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes |
| 7718 | if (IsInstanceMethod && |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7719 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7720 | (ReturnType->isObjCObjectPointerType() && |
| 7721 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7722 | ReturnType->getAs<ObjCObjectPointerType>() |
| 7723 | ->getInterfaceDecl() |
| 7724 | ->getName() == "NSArray"))) { |
| 7725 | std::string SelectorName = (Twine(Property->getName()) + "AtIndexes").str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7726 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7727 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7728 | if (ReturnType.isNull()) { |
| 7729 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7730 | Builder.AddTextChunk("NSArray *"); |
| 7731 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7732 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7733 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7734 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7735 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7736 | Builder.AddTextChunk("NSIndexSet *"); |
| 7737 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7738 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7739 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7740 | CXCursor_ObjCInstanceMethodDecl)); |
| 7741 | } |
| 7742 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7743 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7744 | // Add -(void)getKey:(type **)buffer range:(NSRange)inRange |
| 7745 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7746 | std::string SelectorName = (Twine("get") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7747 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7748 | &Context.Idents.get("range")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7749 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7750 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7751 | if (ReturnType.isNull()) { |
| 7752 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7753 | Builder.AddTextChunk("void"); |
| 7754 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7755 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7756 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7757 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7758 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7759 | Builder.AddPlaceholderChunk("object-type"); |
| 7760 | Builder.AddTextChunk(" **"); |
| 7761 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7762 | Builder.AddTextChunk("buffer"); |
| 7763 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7764 | Builder.AddTypedTextChunk("range:"); |
| 7765 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7766 | Builder.AddTextChunk("NSRange"); |
| 7767 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7768 | Builder.AddTextChunk("inRange"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7769 | Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7770 | CXCursor_ObjCInstanceMethodDecl)); |
| 7771 | } |
| 7772 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7773 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7774 | // Mutable indexed accessors |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7775 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7776 | // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index |
| 7777 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7778 | std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7779 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get("insertObject"), |
| 7780 | &Context.Idents.get(SelectorName)}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7781 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7782 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7783 | if (ReturnType.isNull()) { |
| 7784 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7785 | Builder.AddTextChunk("void"); |
| 7786 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7787 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7788 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7789 | Builder.AddTypedTextChunk("insertObject:"); |
| 7790 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7791 | Builder.AddPlaceholderChunk("object-type"); |
| 7792 | Builder.AddTextChunk(" *"); |
| 7793 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7794 | Builder.AddTextChunk("object"); |
| 7795 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7796 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7797 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7798 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 7799 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7800 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7801 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7802 | CXCursor_ObjCInstanceMethodDecl)); |
| 7803 | } |
| 7804 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7805 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7806 | // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes |
| 7807 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7808 | std::string SelectorName = (Twine("insert") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7809 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7810 | &Context.Idents.get("atIndexes")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7811 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7812 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7813 | if (ReturnType.isNull()) { |
| 7814 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7815 | Builder.AddTextChunk("void"); |
| 7816 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7817 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7818 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7819 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7820 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7821 | Builder.AddTextChunk("NSArray *"); |
| 7822 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7823 | Builder.AddTextChunk("array"); |
| 7824 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7825 | Builder.AddTypedTextChunk("atIndexes:"); |
| 7826 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7827 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 7828 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7829 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7830 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7831 | CXCursor_ObjCInstanceMethodDecl)); |
| 7832 | } |
| 7833 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7834 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7835 | // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index |
| 7836 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7837 | std::string SelectorName = |
| 7838 | (Twine("removeObjectFrom") + UpperKey + "AtIndex").str(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7839 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7840 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7841 | if (ReturnType.isNull()) { |
| 7842 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7843 | Builder.AddTextChunk("void"); |
| 7844 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7845 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7846 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7847 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7848 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7849 | Builder.AddTextChunk("NSUInteger"); |
| 7850 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7851 | Builder.AddTextChunk("index"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7852 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7853 | CXCursor_ObjCInstanceMethodDecl)); |
| 7854 | } |
| 7855 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7856 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7857 | // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes |
| 7858 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7859 | std::string SelectorName = (Twine("remove") + UpperKey + "AtIndexes").str(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7860 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7861 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7862 | if (ReturnType.isNull()) { |
| 7863 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7864 | Builder.AddTextChunk("void"); |
| 7865 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7866 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7867 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7868 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7869 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7870 | Builder.AddTextChunk("NSIndexSet *"); |
| 7871 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7872 | Builder.AddTextChunk("indexes"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7873 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7874 | CXCursor_ObjCInstanceMethodDecl)); |
| 7875 | } |
| 7876 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7877 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7878 | // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object |
| 7879 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7880 | std::string SelectorName = |
| 7881 | (Twine("replaceObjectIn") + UpperKey + "AtIndex").str(); |
| 7882 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName), |
| 7883 | &Context.Idents.get("withObject")}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7884 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7885 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7886 | if (ReturnType.isNull()) { |
| 7887 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7888 | Builder.AddTextChunk("void"); |
| 7889 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7890 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7891 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7892 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7893 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7894 | Builder.AddPlaceholderChunk("NSUInteger"); |
| 7895 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7896 | Builder.AddTextChunk("index"); |
| 7897 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7898 | Builder.AddTypedTextChunk("withObject:"); |
| 7899 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7900 | Builder.AddTextChunk("id"); |
| 7901 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7902 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7903 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7904 | CXCursor_ObjCInstanceMethodDecl)); |
| 7905 | } |
| 7906 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7907 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7908 | // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array |
| 7909 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7910 | std::string SelectorName1 = |
| 7911 | (Twine("replace") + UpperKey + "AtIndexes").str(); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7912 | std::string SelectorName2 = (Twine("with") + UpperKey).str(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7913 | IdentifierInfo *SelectorIds[2] = {&Context.Idents.get(SelectorName1), |
| 7914 | &Context.Idents.get(SelectorName2)}; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7915 | |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7916 | if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7917 | if (ReturnType.isNull()) { |
| 7918 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7919 | Builder.AddTextChunk("void"); |
| 7920 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7921 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7922 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7923 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":")); |
| 7924 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7925 | Builder.AddPlaceholderChunk("NSIndexSet *"); |
| 7926 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7927 | Builder.AddTextChunk("indexes"); |
| 7928 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 7929 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":")); |
| 7930 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7931 | Builder.AddTextChunk("NSArray *"); |
| 7932 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7933 | Builder.AddTextChunk("array"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7934 | Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7935 | CXCursor_ObjCInstanceMethodDecl)); |
| 7936 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7937 | } |
| 7938 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7939 | // Unordered getters |
| 7940 | // - (NSEnumerator *)enumeratorOfKey |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7941 | if (IsInstanceMethod && |
| 7942 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7943 | (ReturnType->isObjCObjectPointerType() && |
| 7944 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7945 | ReturnType->getAs<ObjCObjectPointerType>() |
| 7946 | ->getInterfaceDecl() |
| 7947 | ->getName() == "NSEnumerator"))) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7948 | std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7949 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7950 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 7951 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7952 | if (ReturnType.isNull()) { |
| 7953 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7954 | Builder.AddTextChunk("NSEnumerator *"); |
| 7955 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7956 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7957 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7958 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7959 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7960 | CXCursor_ObjCInstanceMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7961 | } |
| 7962 | } |
| 7963 | |
| 7964 | // - (type *)memberOfKey:(type *)object |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7965 | if (IsInstanceMethod && |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7966 | (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 7967 | std::string SelectorName = (Twine("memberOf") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7968 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7969 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7970 | if (ReturnType.isNull()) { |
| 7971 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7972 | Builder.AddPlaceholderChunk("object-type"); |
| 7973 | Builder.AddTextChunk(" *"); |
| 7974 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7975 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7976 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7977 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 7978 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 7979 | if (ReturnType.isNull()) { |
| 7980 | Builder.AddPlaceholderChunk("object-type"); |
| 7981 | Builder.AddTextChunk(" *"); |
| 7982 | } else { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7983 | Builder.AddTextChunk(GetCompletionTypeString( |
| 7984 | ReturnType, Context, Policy, Builder.getAllocator())); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7985 | } |
| 7986 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 7987 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7988 | Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7989 | CXCursor_ObjCInstanceMethodDecl)); |
| 7990 | } |
| 7991 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 7992 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 7993 | // Mutable unordered accessors |
| 7994 | // - (void)addKeyObject:(type *)object |
| 7995 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 7996 | std::string SelectorName = |
| 7997 | (Twine("add") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 7998 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 7999 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8000 | if (ReturnType.isNull()) { |
| 8001 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8002 | Builder.AddTextChunk("void"); |
| 8003 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8004 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8005 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8006 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8007 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8008 | Builder.AddPlaceholderChunk("object-type"); |
| 8009 | Builder.AddTextChunk(" *"); |
| 8010 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8011 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8012 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8013 | CXCursor_ObjCInstanceMethodDecl)); |
| 8014 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8015 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8016 | |
| 8017 | // - (void)addKey:(NSSet *)objects |
| 8018 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8019 | std::string SelectorName = (Twine("add") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8020 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8021 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8022 | if (ReturnType.isNull()) { |
| 8023 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8024 | Builder.AddTextChunk("void"); |
| 8025 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8026 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8027 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8028 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8029 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8030 | Builder.AddTextChunk("NSSet *"); |
| 8031 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8032 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8033 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8034 | CXCursor_ObjCInstanceMethodDecl)); |
| 8035 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8036 | } |
| 8037 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8038 | // - (void)removeKeyObject:(type *)object |
| 8039 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8040 | std::string SelectorName = |
| 8041 | (Twine("remove") + UpperKey + Twine("Object")).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8042 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8043 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8044 | if (ReturnType.isNull()) { |
| 8045 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8046 | Builder.AddTextChunk("void"); |
| 8047 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8048 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8049 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8050 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8051 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8052 | Builder.AddPlaceholderChunk("object-type"); |
| 8053 | Builder.AddTextChunk(" *"); |
| 8054 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8055 | Builder.AddTextChunk("object"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8056 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8057 | CXCursor_ObjCInstanceMethodDecl)); |
| 8058 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8059 | } |
| 8060 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8061 | // - (void)removeKey:(NSSet *)objects |
| 8062 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8063 | std::string SelectorName = (Twine("remove") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8064 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8065 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8066 | if (ReturnType.isNull()) { |
| 8067 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8068 | Builder.AddTextChunk("void"); |
| 8069 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8070 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8071 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8072 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8073 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8074 | Builder.AddTextChunk("NSSet *"); |
| 8075 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8076 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8077 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8078 | CXCursor_ObjCInstanceMethodDecl)); |
| 8079 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8080 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8081 | |
| 8082 | // - (void)intersectKey:(NSSet *)objects |
| 8083 | if (IsInstanceMethod && ReturnTypeMatchesVoid) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8084 | std::string SelectorName = (Twine("intersect") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8085 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8086 | if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8087 | if (ReturnType.isNull()) { |
| 8088 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8089 | Builder.AddTextChunk("void"); |
| 8090 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8091 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8092 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8093 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":")); |
| 8094 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8095 | Builder.AddTextChunk("NSSet *"); |
| 8096 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8097 | Builder.AddTextChunk("objects"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8098 | Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority, |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8099 | CXCursor_ObjCInstanceMethodDecl)); |
| 8100 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8101 | } |
| 8102 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8103 | // Key-Value Observing |
| 8104 | // + (NSSet *)keyPathsForValuesAffectingKey |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8105 | if (!IsInstanceMethod && |
| 8106 | (ReturnType.isNull() || |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8107 | (ReturnType->isObjCObjectPointerType() && |
| 8108 | ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8109 | ReturnType->getAs<ObjCObjectPointerType>() |
| 8110 | ->getInterfaceDecl() |
| 8111 | ->getName() == "NSSet"))) { |
| 8112 | std::string SelectorName = |
| 8113 | (Twine("keyPathsForValuesAffecting") + UpperKey).str(); |
Douglas Gregor | 0e5d72f | 2011-02-17 03:19:26 +0000 | [diff] [blame] | 8114 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8115 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 8116 | .second) { |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8117 | if (ReturnType.isNull()) { |
| 8118 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
Alex Lorenz | 71ecb07 | 2016-12-08 16:49:05 +0000 | [diff] [blame] | 8119 | Builder.AddTextChunk("NSSet<NSString *> *"); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8120 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8121 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8122 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8123 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8124 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8125 | CXCursor_ObjCClassMethodDecl)); |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8126 | } |
| 8127 | } |
| 8128 | |
| 8129 | // + (BOOL)automaticallyNotifiesObserversForKey |
| 8130 | if (!IsInstanceMethod && |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8131 | (ReturnType.isNull() || ReturnType->isIntegerType() || |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8132 | ReturnType->isBooleanType())) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8133 | std::string SelectorName = |
| 8134 | (Twine("automaticallyNotifiesObserversOf") + UpperKey).str(); |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8135 | IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 8136 | if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId)) |
| 8137 | .second) { |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8138 | if (ReturnType.isNull()) { |
| 8139 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8140 | Builder.AddTextChunk("BOOL"); |
| 8141 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8142 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8143 | |
Douglas Gregor | 857bcda | 2011-06-02 04:02:27 +0000 | [diff] [blame] | 8144 | Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName)); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8145 | Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8146 | CXCursor_ObjCClassMethodDecl)); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8147 | } |
| 8148 | } |
| 8149 | } |
| 8150 | |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8151 | void Sema::CodeCompleteObjCMethodDecl(Scope *S, Optional<bool> IsInstanceMethod, |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8152 | ParsedType ReturnTy) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8153 | // Determine the return type of the method we're declaring, if |
| 8154 | // provided. |
| 8155 | QualType ReturnType = GetTypeFromParser(ReturnTy); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8156 | Decl *IDecl = nullptr; |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8157 | if (CurContext->isObjCContainer()) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8158 | ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); |
| 8159 | IDecl = OCD; |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 8160 | } |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8161 | // Determine where we should start searching for methods. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8162 | ObjCContainerDecl *SearchDecl = nullptr; |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8163 | bool IsInImplementation = false; |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 8164 | if (Decl *D = IDecl) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8165 | if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) { |
| 8166 | SearchDecl = Impl->getClassInterface(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8167 | IsInImplementation = true; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8168 | } else if (ObjCCategoryImplDecl *CatImpl = |
| 8169 | dyn_cast<ObjCCategoryImplDecl>(D)) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8170 | SearchDecl = CatImpl->getCategoryDecl(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8171 | IsInImplementation = true; |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8172 | } else |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8173 | SearchDecl = dyn_cast<ObjCContainerDecl>(D); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8174 | } |
| 8175 | |
| 8176 | if (!SearchDecl && S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 8177 | if (DeclContext *DC = S->getEntity()) |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8178 | SearchDecl = dyn_cast<ObjCContainerDecl>(DC); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8179 | } |
| 8180 | |
Douglas Gregor | 1b035bb | 2010-10-18 18:21:28 +0000 | [diff] [blame] | 8181 | if (!SearchDecl) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8182 | HandleCodeCompleteResults(this, CodeCompleter, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8183 | CodeCompletionContext::CCC_Other, nullptr, 0); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8184 | return; |
| 8185 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8186 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8187 | // Find all of the methods that we could declare/implement here. |
| 8188 | KnownMethodsMap KnownMethods; |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8189 | FindImplementableMethods(Context, SearchDecl, IsInstanceMethod, ReturnType, |
| 8190 | KnownMethods); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8191 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8192 | // Add declarations or definitions for each of the known methods. |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 8193 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8194 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8195 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8196 | CodeCompletionContext::CCC_Other); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8197 | Results.EnterNewScope(); |
Douglas Gregor | 75acd92 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 8198 | PrintingPolicy Policy = getCompletionPrintingPolicy(*this); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8199 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8200 | MEnd = KnownMethods.end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8201 | M != MEnd; ++M) { |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 8202 | ObjCMethodDecl *Method = M->second.getPointer(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8203 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8204 | Results.getCodeCompletionTUInfo()); |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8205 | |
| 8206 | // Add the '-'/'+' prefix if it wasn't provided yet. |
| 8207 | if (!IsInstanceMethod) { |
| 8208 | Builder.AddTextChunk(Method->isInstanceMethod() ? "-" : "+"); |
| 8209 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8210 | } |
| 8211 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8212 | // If the result type was not already provided, add it to the |
| 8213 | // pattern as (type). |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8214 | if (ReturnType.isNull()) { |
| 8215 | QualType ResTy = Method->getSendResultType().stripObjCKindOfType(Context); |
| 8216 | AttributedType::stripOuterNullability(ResTy); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8217 | AddObjCPassingTypeChunk(ResTy, Method->getObjCDeclQualifier(), Context, |
| 8218 | Policy, Builder); |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8219 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8220 | |
| 8221 | Selector Sel = Method->getSelector(); |
| 8222 | |
| 8223 | // Add the first part of the selector to the pattern. |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8224 | Builder.AddTypedTextChunk( |
| 8225 | Builder.getAllocator().CopyString(Sel.getNameForSlot(0))); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8226 | |
| 8227 | // Add parameters to the pattern. |
| 8228 | unsigned I = 0; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8229 | for (ObjCMethodDecl::param_iterator P = Method->param_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8230 | PEnd = Method->param_end(); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8231 | P != PEnd; (void)++P, ++I) { |
| 8232 | // Add the part of the selector name. |
| 8233 | if (I == 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8234 | Builder.AddTypedTextChunk(":"); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8235 | else if (I < Sel.getNumArgs()) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8236 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8237 | Builder.AddTypedTextChunk( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8238 | Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":")); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8239 | } else |
| 8240 | break; |
| 8241 | |
| 8242 | // Add the parameter type. |
Douglas Gregor | 86b4268 | 2015-06-19 18:27:52 +0000 | [diff] [blame] | 8243 | QualType ParamType; |
| 8244 | if ((*P)->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) |
| 8245 | ParamType = (*P)->getType(); |
| 8246 | else |
| 8247 | ParamType = (*P)->getOriginalType(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8248 | ParamType = ParamType.substObjCTypeArgs( |
| 8249 | Context, {}, ObjCSubstitutionContext::Parameter); |
Argyrios Kyrtzidis | f0917ab | 2015-07-24 17:00:19 +0000 | [diff] [blame] | 8250 | AttributedType::stripOuterNullability(ParamType); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8251 | AddObjCPassingTypeChunk(ParamType, (*P)->getObjCDeclQualifier(), Context, |
| 8252 | Policy, Builder); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8253 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8254 | if (IdentifierInfo *Id = (*P)->getIdentifier()) |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8255 | Builder.AddTextChunk(Builder.getAllocator().CopyString(Id->getName())); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8256 | } |
| 8257 | |
| 8258 | if (Method->isVariadic()) { |
| 8259 | if (Method->param_size() > 0) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8260 | Builder.AddChunk(CodeCompletionString::CK_Comma); |
| 8261 | Builder.AddTextChunk("..."); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8262 | } |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8263 | |
Douglas Gregor | d37c59d | 2010-05-28 00:57:46 +0000 | [diff] [blame] | 8264 | if (IsInImplementation && Results.includeCodePatterns()) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8265 | // We will be defining the method here, so add a compound statement. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8266 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8267 | Builder.AddChunk(CodeCompletionString::CK_LeftBrace); |
| 8268 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 8269 | if (!Method->getReturnType()->isVoidType()) { |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8270 | // If the result type is not void, add a return clause. |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8271 | Builder.AddTextChunk("return"); |
| 8272 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8273 | Builder.AddPlaceholderChunk("expression"); |
| 8274 | Builder.AddChunk(CodeCompletionString::CK_SemiColon); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8275 | } else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8276 | Builder.AddPlaceholderChunk("statements"); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8277 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8278 | Builder.AddChunk(CodeCompletionString::CK_VerticalSpace); |
| 8279 | Builder.AddChunk(CodeCompletionString::CK_RightBrace); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8280 | } |
| 8281 | |
Douglas Gregor | 416b575 | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 8282 | unsigned Priority = CCP_CodePattern; |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 8283 | auto R = Result(Builder.TakeString(), Method, Priority); |
Benjamin Kramer | eb8c446 | 2013-06-29 17:52:13 +0000 | [diff] [blame] | 8284 | if (!M->second.getInt()) |
Eric Liu | 4a7cd63 | 2018-10-24 12:57:27 +0000 | [diff] [blame] | 8285 | setInBaseClass(R); |
| 8286 | Results.AddResult(std::move(R)); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8287 | } |
| 8288 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8289 | // 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] | 8290 | // the properties in this class and its categories. |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 8291 | if (Context.getLangOpts().ObjC) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 8292 | SmallVector<ObjCContainerDecl *, 4> Containers; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8293 | Containers.push_back(SearchDecl); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8294 | |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 8295 | VisitedSelectorSet KnownSelectors; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8296 | for (KnownMethodsMap::iterator M = KnownMethods.begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8297 | MEnd = KnownMethods.end(); |
Douglas Gregor | d4a8ced | 2011-05-04 23:50:46 +0000 | [diff] [blame] | 8298 | M != MEnd; ++M) |
| 8299 | KnownSelectors.insert(M->first); |
| 8300 | |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8301 | ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl); |
| 8302 | if (!IFace) |
| 8303 | if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl)) |
| 8304 | IFace = Category->getClassInterface(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8305 | |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 8306 | if (IFace) |
| 8307 | for (auto *Cat : IFace->visible_categories()) |
| 8308 | Containers.push_back(Cat); |
Alex Lorenz | b874042 | 2017-10-24 16:39:37 +0000 | [diff] [blame] | 8309 | |
| 8310 | if (IsInstanceMethod) { |
| 8311 | for (unsigned I = 0, N = Containers.size(); I != N; ++I) |
| 8312 | for (auto *P : Containers[I]->instance_properties()) |
| 8313 | AddObjCKeyValueCompletions(P, *IsInstanceMethod, ReturnType, Context, |
| 8314 | KnownSelectors, Results); |
| 8315 | } |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 8316 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8317 | |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8318 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8319 | |
| 8320 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8321 | Results.data(), Results.size()); |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 8322 | } |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8323 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8324 | void Sema::CodeCompleteObjCMethodDeclSelector( |
| 8325 | Scope *S, bool IsInstanceMethod, bool AtParameterName, ParsedType ReturnTy, |
| 8326 | ArrayRef<IdentifierInfo *> SelIdents) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8327 | // If we have an external source, load the entire class method |
Sebastian Redl | d44cd6a | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 8328 | // pool from the AST file. |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8329 | if (ExternalSource) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8330 | for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors(); I != N; |
| 8331 | ++I) { |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8332 | Selector Sel = ExternalSource->GetExternalSelector(I); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8333 | if (Sel.isNull() || MethodPool.count(Sel)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8334 | continue; |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8335 | |
| 8336 | ReadMethodPool(Sel); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8337 | } |
| 8338 | } |
| 8339 | |
| 8340 | // Build the set of methods we can see. |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 8341 | typedef CodeCompletionResult Result; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8342 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8343 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8344 | CodeCompletionContext::CCC_Other); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8345 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8346 | if (ReturnTy) |
| 8347 | Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType()); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8348 | |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8349 | Results.EnterNewScope(); |
Sebastian Redl | 75d8a32 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 8350 | for (GlobalMethodPool::iterator M = MethodPool.begin(), |
| 8351 | MEnd = MethodPool.end(); |
| 8352 | M != MEnd; ++M) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8353 | for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first |
| 8354 | : &M->second.second; |
| 8355 | MethList && MethList->getMethod(); MethList = MethList->getNext()) { |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8356 | if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents)) |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8357 | continue; |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8358 | |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8359 | if (AtParameterName) { |
| 8360 | // Suggest parameter names we've seen before. |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 8361 | unsigned NumSelIdents = SelIdents.size(); |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8362 | if (NumSelIdents && |
| 8363 | NumSelIdents <= MethList->getMethod()->param_size()) { |
| 8364 | ParmVarDecl *Param = |
| 8365 | MethList->getMethod()->parameters()[NumSelIdents - 1]; |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8366 | if (Param->getIdentifier()) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8367 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8368 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | bcbf46c | 2011-02-01 22:57:45 +0000 | [diff] [blame] | 8369 | Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8370 | Param->getIdentifier()->getName())); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8371 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8372 | } |
| 8373 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8374 | |
Douglas Gregor | 4587969 | 2010-07-08 23:37:41 +0000 | [diff] [blame] | 8375 | continue; |
| 8376 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 8377 | |
Nico Weber | 2e0c8f7 | 2014-12-27 03:58:08 +0000 | [diff] [blame] | 8378 | Result R(MethList->getMethod(), |
| 8379 | Results.getBasePriority(MethList->getMethod()), nullptr); |
Dmitri Gribenko | 070a10e | 2013-06-16 03:47:57 +0000 | [diff] [blame] | 8380 | R.StartParameter = SelIdents.size(); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8381 | R.AllParametersAreInformative = false; |
| 8382 | R.DeclaringEntity = true; |
| 8383 | Results.MaybeAddResult(R, CurContext); |
| 8384 | } |
| 8385 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8386 | |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8387 | Results.ExitScope(); |
Alex Lorenz | 847fda1 | 2017-01-03 11:56:40 +0000 | [diff] [blame] | 8388 | |
| 8389 | if (!AtParameterName && !SelIdents.empty() && |
| 8390 | SelIdents.front()->getName().startswith("init")) { |
| 8391 | for (const auto &M : PP.macros()) { |
| 8392 | if (M.first->getName() != "NS_DESIGNATED_INITIALIZER") |
| 8393 | continue; |
| 8394 | Results.EnterNewScope(); |
| 8395 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8396 | Results.getCodeCompletionTUInfo()); |
| 8397 | Builder.AddTypedTextChunk( |
| 8398 | Builder.getAllocator().CopyString(M.first->getName())); |
| 8399 | Results.AddResult(CodeCompletionResult(Builder.TakeString(), CCP_Macro, |
| 8400 | CXCursor_MacroDefinition)); |
| 8401 | Results.ExitScope(); |
| 8402 | } |
| 8403 | } |
| 8404 | |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8405 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8406 | Results.data(), Results.size()); |
Douglas Gregor | 95887f9 | 2010-07-08 23:20:03 +0000 | [diff] [blame] | 8407 | } |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8408 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8409 | void Sema::CodeCompletePreprocessorDirective(bool InConditional) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8410 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8411 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8412 | CodeCompletionContext::CCC_PreprocessorDirective); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8413 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8414 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8415 | // #if <condition> |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8416 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8417 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8418 | Builder.AddTypedTextChunk("if"); |
| 8419 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8420 | Builder.AddPlaceholderChunk("condition"); |
| 8421 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8422 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8423 | // #ifdef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8424 | Builder.AddTypedTextChunk("ifdef"); |
| 8425 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8426 | Builder.AddPlaceholderChunk("macro"); |
| 8427 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8428 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8429 | // #ifndef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8430 | Builder.AddTypedTextChunk("ifndef"); |
| 8431 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8432 | Builder.AddPlaceholderChunk("macro"); |
| 8433 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8434 | |
| 8435 | if (InConditional) { |
| 8436 | // #elif <condition> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8437 | Builder.AddTypedTextChunk("elif"); |
| 8438 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8439 | Builder.AddPlaceholderChunk("condition"); |
| 8440 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8441 | |
| 8442 | // #else |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8443 | Builder.AddTypedTextChunk("else"); |
| 8444 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8445 | |
| 8446 | // #endif |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8447 | Builder.AddTypedTextChunk("endif"); |
| 8448 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8449 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8450 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8451 | // #include "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8452 | Builder.AddTypedTextChunk("include"); |
| 8453 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8454 | Builder.AddTextChunk("\""); |
| 8455 | Builder.AddPlaceholderChunk("header"); |
| 8456 | Builder.AddTextChunk("\""); |
| 8457 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8458 | |
| 8459 | // #include <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8460 | Builder.AddTypedTextChunk("include"); |
| 8461 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8462 | Builder.AddTextChunk("<"); |
| 8463 | Builder.AddPlaceholderChunk("header"); |
| 8464 | Builder.AddTextChunk(">"); |
| 8465 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8466 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8467 | // #define <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8468 | Builder.AddTypedTextChunk("define"); |
| 8469 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8470 | Builder.AddPlaceholderChunk("macro"); |
| 8471 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8472 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8473 | // #define <macro>(<args>) |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8474 | Builder.AddTypedTextChunk("define"); |
| 8475 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8476 | Builder.AddPlaceholderChunk("macro"); |
| 8477 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8478 | Builder.AddPlaceholderChunk("args"); |
| 8479 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8480 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8481 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8482 | // #undef <macro> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8483 | Builder.AddTypedTextChunk("undef"); |
| 8484 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8485 | Builder.AddPlaceholderChunk("macro"); |
| 8486 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8487 | |
| 8488 | // #line <number> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8489 | Builder.AddTypedTextChunk("line"); |
| 8490 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8491 | Builder.AddPlaceholderChunk("number"); |
| 8492 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8493 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8494 | // #line <number> "filename" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8495 | Builder.AddTypedTextChunk("line"); |
| 8496 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8497 | Builder.AddPlaceholderChunk("number"); |
| 8498 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8499 | Builder.AddTextChunk("\""); |
| 8500 | Builder.AddPlaceholderChunk("filename"); |
| 8501 | Builder.AddTextChunk("\""); |
| 8502 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8503 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8504 | // #error <message> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8505 | Builder.AddTypedTextChunk("error"); |
| 8506 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8507 | Builder.AddPlaceholderChunk("message"); |
| 8508 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8509 | |
| 8510 | // #pragma <arguments> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8511 | Builder.AddTypedTextChunk("pragma"); |
| 8512 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8513 | Builder.AddPlaceholderChunk("arguments"); |
| 8514 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8515 | |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 8516 | if (getLangOpts().ObjC) { |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8517 | // #import "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8518 | Builder.AddTypedTextChunk("import"); |
| 8519 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8520 | Builder.AddTextChunk("\""); |
| 8521 | Builder.AddPlaceholderChunk("header"); |
| 8522 | Builder.AddTextChunk("\""); |
| 8523 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8524 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8525 | // #import <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8526 | Builder.AddTypedTextChunk("import"); |
| 8527 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8528 | Builder.AddTextChunk("<"); |
| 8529 | Builder.AddPlaceholderChunk("header"); |
| 8530 | Builder.AddTextChunk(">"); |
| 8531 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8532 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8533 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8534 | // #include_next "header" |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8535 | Builder.AddTypedTextChunk("include_next"); |
| 8536 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8537 | Builder.AddTextChunk("\""); |
| 8538 | Builder.AddPlaceholderChunk("header"); |
| 8539 | Builder.AddTextChunk("\""); |
| 8540 | Results.AddResult(Builder.TakeString()); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8541 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8542 | // #include_next <header> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8543 | Builder.AddTypedTextChunk("include_next"); |
| 8544 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8545 | Builder.AddTextChunk("<"); |
| 8546 | Builder.AddPlaceholderChunk("header"); |
| 8547 | Builder.AddTextChunk(">"); |
| 8548 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8549 | |
| 8550 | // #warning <message> |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8551 | Builder.AddTypedTextChunk("warning"); |
| 8552 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8553 | Builder.AddPlaceholderChunk("message"); |
| 8554 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8555 | |
| 8556 | // Note: #ident and #sccs are such crazy anachronisms that we don't provide |
| 8557 | // completions for them. And __include_macros is a Clang-internal extension |
| 8558 | // that we don't want to encourage anyone to use. |
| 8559 | |
| 8560 | // FIXME: we don't support #assert or #unassert, so don't suggest them. |
| 8561 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8562 | |
| 8563 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8564 | Results.data(), Results.size()); |
| 8565 | } |
| 8566 | |
| 8567 | void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8568 | CodeCompleteOrdinaryName(S, S->getFnParent() ? Sema::PCC_RecoveryInFunction |
| 8569 | : Sema::PCC_Namespace); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 8570 | } |
| 8571 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8572 | void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8573 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8574 | CodeCompleter->getCodeCompletionTUInfo(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8575 | IsDefinition ? CodeCompletionContext::CCC_MacroName |
| 8576 | : CodeCompletionContext::CCC_MacroNameUse); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8577 | if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8578 | // Add just the names of macros, not their arguments. |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8579 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8580 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8581 | Results.EnterNewScope(); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8582 | for (Preprocessor::macro_iterator M = PP.macro_begin(), |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8583 | MEnd = PP.macro_end(); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8584 | M != MEnd; ++M) { |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8585 | Builder.AddTypedTextChunk( |
| 8586 | Builder.getAllocator().CopyString(M->first->getName())); |
| 8587 | Results.AddResult(CodeCompletionResult( |
| 8588 | Builder.TakeString(), CCP_CodePattern, CXCursor_MacroDefinition)); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8589 | } |
| 8590 | Results.ExitScope(); |
| 8591 | } else if (IsDefinition) { |
| 8592 | // FIXME: Can we detect when the user just wrote an include guard above? |
| 8593 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8594 | |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8595 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8596 | Results.data(), Results.size()); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 8597 | } |
| 8598 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8599 | void Sema::CodeCompletePreprocessorExpression() { |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8600 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8601 | CodeCompleter->getCodeCompletionTUInfo(), |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 8602 | CodeCompletionContext::CCC_PreprocessorExpression); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8603 | |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8604 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 8605 | AddMacroResults(PP, Results, |
Sam McCall | 36082e3 | 2019-07-18 07:17:49 +0000 | [diff] [blame] | 8606 | !CodeCompleter || CodeCompleter->loadExternal(), true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8607 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8608 | // defined (<macro>) |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8609 | Results.EnterNewScope(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8610 | CodeCompletionBuilder Builder(Results.getAllocator(), |
| 8611 | Results.getCodeCompletionTUInfo()); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 8612 | Builder.AddTypedTextChunk("defined"); |
| 8613 | Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace); |
| 8614 | Builder.AddChunk(CodeCompletionString::CK_LeftParen); |
| 8615 | Builder.AddPlaceholderChunk("macro"); |
| 8616 | Builder.AddChunk(CodeCompletionString::CK_RightParen); |
| 8617 | Results.AddResult(Builder.TakeString()); |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8618 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8619 | |
| 8620 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8621 | Results.data(), Results.size()); |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8622 | } |
| 8623 | |
| 8624 | void Sema::CodeCompletePreprocessorMacroArgument(Scope *S, |
| 8625 | IdentifierInfo *Macro, |
| 8626 | MacroInfo *MacroInfo, |
| 8627 | unsigned Argument) { |
| 8628 | // FIXME: In the future, we could provide "overload" results, much like we |
| 8629 | // do for function calls. |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8630 | |
Argyrios Kyrtzidis | 75f6cd2 | 2011-08-18 19:41:28 +0000 | [diff] [blame] | 8631 | // Now just ignore this. There will be another code-completion callback |
| 8632 | // for the expanded tokens. |
Douglas Gregor | ec00a26 | 2010-08-24 22:20:20 +0000 | [diff] [blame] | 8633 | } |
| 8634 | |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8635 | // This handles completion inside an #include filename, e.g. #include <foo/ba |
| 8636 | // We look for the directory "foo" under each directory on the include path, |
| 8637 | // list its files, and reassemble the appropriate #include. |
| 8638 | void Sema::CodeCompleteIncludedFile(llvm::StringRef Dir, bool Angled) { |
| 8639 | // RelDir should use /, but unescaped \ is possible on windows! |
| 8640 | // Our completions will normalize to / for simplicity, this case is rare. |
| 8641 | std::string RelDir = llvm::sys::path::convert_to_slash(Dir); |
| 8642 | // We need the native slashes for the actual file system interactions. |
| 8643 | SmallString<128> NativeRelDir = StringRef(RelDir); |
| 8644 | llvm::sys::path::native(NativeRelDir); |
Duncan P. N. Exon Smith | db8a742 | 2019-03-26 22:32:06 +0000 | [diff] [blame] | 8645 | llvm::vfs::FileSystem &FS = |
| 8646 | getSourceManager().getFileManager().getVirtualFileSystem(); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8647 | |
| 8648 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 8649 | CodeCompleter->getCodeCompletionTUInfo(), |
| 8650 | CodeCompletionContext::CCC_IncludedFile); |
| 8651 | llvm::DenseSet<StringRef> SeenResults; // To deduplicate results. |
| 8652 | |
| 8653 | // Helper: adds one file or directory completion result. |
| 8654 | auto AddCompletion = [&](StringRef Filename, bool IsDirectory) { |
| 8655 | SmallString<64> TypedChunk = Filename; |
| 8656 | // Directory completion is up to the slash, e.g. <sys/ |
| 8657 | TypedChunk.push_back(IsDirectory ? '/' : Angled ? '>' : '"'); |
| 8658 | auto R = SeenResults.insert(TypedChunk); |
| 8659 | if (R.second) { // New completion |
| 8660 | const char *InternedTyped = Results.getAllocator().CopyString(TypedChunk); |
| 8661 | *R.first = InternedTyped; // Avoid dangling StringRef. |
| 8662 | CodeCompletionBuilder Builder(CodeCompleter->getAllocator(), |
| 8663 | CodeCompleter->getCodeCompletionTUInfo()); |
| 8664 | Builder.AddTypedTextChunk(InternedTyped); |
| 8665 | // The result is a "Pattern", which is pretty opaque. |
| 8666 | // We may want to include the real filename to allow smart ranking. |
| 8667 | Results.AddResult(CodeCompletionResult(Builder.TakeString())); |
| 8668 | } |
| 8669 | }; |
| 8670 | |
| 8671 | // Helper: scans IncludeDir for nice files, and adds results for each. |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8672 | auto AddFilesFromIncludeDir = [&](StringRef IncludeDir, |
| 8673 | bool IsSystem, |
| 8674 | DirectoryLookup::LookupType_t LookupType) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8675 | llvm::SmallString<128> Dir = IncludeDir; |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8676 | if (!NativeRelDir.empty()) { |
| 8677 | if (LookupType == DirectoryLookup::LT_Framework) { |
| 8678 | // For a framework dir, #include <Foo/Bar/> actually maps to |
| 8679 | // a path of Foo.framework/Headers/Bar/. |
| 8680 | auto Begin = llvm::sys::path::begin(NativeRelDir); |
| 8681 | auto End = llvm::sys::path::end(NativeRelDir); |
| 8682 | |
| 8683 | llvm::sys::path::append(Dir, *Begin + ".framework", "Headers"); |
| 8684 | llvm::sys::path::append(Dir, ++Begin, End); |
| 8685 | } else { |
| 8686 | llvm::sys::path::append(Dir, NativeRelDir); |
| 8687 | } |
| 8688 | } |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8689 | |
| 8690 | std::error_code EC; |
| 8691 | unsigned Count = 0; |
Duncan P. N. Exon Smith | db8a742 | 2019-03-26 22:32:06 +0000 | [diff] [blame] | 8692 | for (auto It = FS.dir_begin(Dir, EC); |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 8693 | !EC && It != llvm::vfs::directory_iterator(); It.increment(EC)) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8694 | if (++Count == 2500) // If we happen to hit a huge directory, |
| 8695 | break; // bail out early so we're not too slow. |
| 8696 | StringRef Filename = llvm::sys::path::filename(It->path()); |
| 8697 | switch (It->type()) { |
| 8698 | case llvm::sys::fs::file_type::directory_file: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8699 | // All entries in a framework directory must have a ".framework" suffix, |
| 8700 | // but the suffix does not appear in the source code's include/import. |
| 8701 | if (LookupType == DirectoryLookup::LT_Framework && |
| 8702 | NativeRelDir.empty() && !Filename.consume_back(".framework")) |
| 8703 | break; |
| 8704 | |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8705 | AddCompletion(Filename, /*IsDirectory=*/true); |
| 8706 | break; |
| 8707 | case llvm::sys::fs::file_type::regular_file: |
| 8708 | // Only files that really look like headers. (Except in system dirs). |
| 8709 | if (!IsSystem) { |
| 8710 | // Header extensions from Types.def, which we can't depend on here. |
| 8711 | if (!(Filename.endswith_lower(".h") || |
| 8712 | Filename.endswith_lower(".hh") || |
| 8713 | Filename.endswith_lower(".hpp") || |
| 8714 | Filename.endswith_lower(".inc"))) |
| 8715 | break; |
| 8716 | } |
| 8717 | AddCompletion(Filename, /*IsDirectory=*/false); |
| 8718 | break; |
| 8719 | default: |
| 8720 | break; |
| 8721 | } |
| 8722 | } |
| 8723 | }; |
| 8724 | |
| 8725 | // Helper: adds results relative to IncludeDir, if possible. |
| 8726 | auto AddFilesFromDirLookup = [&](const DirectoryLookup &IncludeDir, |
| 8727 | bool IsSystem) { |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8728 | switch (IncludeDir.getLookupType()) { |
| 8729 | case DirectoryLookup::LT_HeaderMap: |
| 8730 | // header maps are not (currently) enumerable. |
| 8731 | break; |
| 8732 | case DirectoryLookup::LT_NormalDir: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8733 | AddFilesFromIncludeDir(IncludeDir.getDir()->getName(), IsSystem, |
| 8734 | DirectoryLookup::LT_NormalDir); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8735 | break; |
| 8736 | case DirectoryLookup::LT_Framework: |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8737 | AddFilesFromIncludeDir(IncludeDir.getFrameworkDir()->getName(), IsSystem, |
| 8738 | DirectoryLookup::LT_Framework); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8739 | break; |
| 8740 | } |
| 8741 | }; |
| 8742 | |
| 8743 | // Finally with all our helpers, we can scan the include path. |
| 8744 | // Do this in standard order so deduplication keeps the right file. |
| 8745 | // (In case we decide to add more details to the results later). |
| 8746 | const auto &S = PP.getHeaderSearchInfo(); |
| 8747 | using llvm::make_range; |
| 8748 | if (!Angled) { |
| 8749 | // The current directory is on the include path for "quoted" includes. |
| 8750 | auto *CurFile = PP.getCurrentFileLexer()->getFileEntry(); |
| 8751 | if (CurFile && CurFile->getDir()) |
David Goldman | 3e804d2 | 2019-02-27 17:40:33 +0000 | [diff] [blame] | 8752 | AddFilesFromIncludeDir(CurFile->getDir()->getName(), false, |
| 8753 | DirectoryLookup::LT_NormalDir); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8754 | for (const auto &D : make_range(S.quoted_dir_begin(), S.quoted_dir_end())) |
| 8755 | AddFilesFromDirLookup(D, false); |
| 8756 | } |
| 8757 | 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] | 8758 | AddFilesFromDirLookup(D, false); |
Sam McCall | 3d8051a | 2018-09-18 08:40:41 +0000 | [diff] [blame] | 8759 | for (const auto &D : make_range(S.system_dir_begin(), S.system_dir_end())) |
| 8760 | AddFilesFromDirLookup(D, true); |
| 8761 | |
| 8762 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8763 | Results.data(), Results.size()); |
| 8764 | } |
| 8765 | |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8766 | void Sema::CodeCompleteNaturalLanguage() { |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8767 | HandleCodeCompleteResults(this, CodeCompleter, |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8768 | CodeCompletionContext::CCC_NaturalLanguage, nullptr, |
| 8769 | 0); |
Douglas Gregor | 1158370 | 2010-08-25 17:04:25 +0000 | [diff] [blame] | 8770 | } |
| 8771 | |
Alex Lorenz | f7f6f82 | 2017-05-09 16:05:04 +0000 | [diff] [blame] | 8772 | void Sema::CodeCompleteAvailabilityPlatformName() { |
| 8773 | ResultBuilder Results(*this, CodeCompleter->getAllocator(), |
| 8774 | CodeCompleter->getCodeCompletionTUInfo(), |
| 8775 | CodeCompletionContext::CCC_Other); |
| 8776 | Results.EnterNewScope(); |
| 8777 | static const char *Platforms[] = {"macOS", "iOS", "watchOS", "tvOS"}; |
| 8778 | for (const char *Platform : llvm::makeArrayRef(Platforms)) { |
| 8779 | Results.AddResult(CodeCompletionResult(Platform)); |
| 8780 | Results.AddResult(CodeCompletionResult(Results.getAllocator().CopyString( |
| 8781 | Twine(Platform) + "ApplicationExtension"))); |
| 8782 | } |
| 8783 | Results.ExitScope(); |
Eric Liu | f5ba09f | 2018-07-04 10:01:18 +0000 | [diff] [blame] | 8784 | HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(), |
| 8785 | Results.data(), Results.size()); |
Alex Lorenz | f7f6f82 | 2017-05-09 16:05:04 +0000 | [diff] [blame] | 8786 | } |
| 8787 | |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8788 | void Sema::GatherGlobalCodeCompletions( |
| 8789 | CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, |
| 8790 | SmallVectorImpl<CodeCompletionResult> &Results) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 8791 | ResultBuilder Builder(*this, Allocator, CCTUInfo, |
| 8792 | CodeCompletionContext::CCC_Recovery); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8793 | if (!CodeCompleter || CodeCompleter->includeGlobals()) { |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8794 | CodeCompletionDeclConsumer Consumer(Builder, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8795 | Context.getTranslationUnitDecl()); |
Sam McCall | bb2cf63 | 2018-01-12 14:51:47 +0000 | [diff] [blame] | 8796 | LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName, |
| 8797 | Consumer, |
| 8798 | !CodeCompleter || CodeCompleter->loadExternal()); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 8799 | } |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8800 | |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8801 | if (!CodeCompleter || CodeCompleter->includeMacros()) |
Eric Liu | 88de9f6 | 2018-09-19 09:34:55 +0000 | [diff] [blame] | 8802 | AddMacroResults(PP, Builder, |
Sam McCall | 36082e3 | 2019-07-18 07:17:49 +0000 | [diff] [blame] | 8803 | !CodeCompleter || CodeCompleter->loadExternal(), true); |
Kirill Bobyrev | 7cf29bc | 2018-07-05 09:37:26 +0000 | [diff] [blame] | 8804 | |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8805 | Results.clear(); |
Fangrui Song | 050229d | 2018-11-24 00:14:31 +0000 | [diff] [blame] | 8806 | Results.insert(Results.end(), Builder.data(), |
| 8807 | Builder.data() + Builder.size()); |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 8808 | } |