blob: 83c3bd27596c58eed974e61008f1fbd139435b4c [file] [log] [blame]
Douglas Gregor2436e712009-09-17 21:32:03 +00001//===---------------- SemaCodeComplete.cpp - Code Completion ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the code-completion semantic actions.
11//
12//===----------------------------------------------------------------------===//
John McCall83024632010-08-25 22:03:47 +000013#include "clang/Sema/SemaInternal.h"
John McCallde6836a2010-08-24 07:21:54 +000014#include "clang/AST/DeclObjC.h"
Douglas Gregorf2510672009-09-21 19:57:38 +000015#include "clang/AST/ExprCXX.h"
Douglas Gregor8ce33212009-11-17 17:59:40 +000016#include "clang/AST/ExprObjC.h"
Jordan Rose4938f272013-02-09 10:09:43 +000017#include "clang/Basic/CharInfo.h"
Douglas Gregor07f43572012-01-29 18:15:03 +000018#include "clang/Lex/HeaderSearch.h"
Douglas Gregorf329c7c2009-10-30 16:50:04 +000019#include "clang/Lex/MacroInfo.h"
20#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Sema/CodeCompleteConsumer.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Lookup.h"
23#include "clang/Sema/Overload.h"
24#include "clang/Sema/Scope.h"
25#include "clang/Sema/ScopeInfo.h"
Douglas Gregor1154e272010-09-16 16:06:31 +000026#include "llvm/ADT/DenseSet.h"
Benjamin Kramere0513cb2012-01-30 16:17:39 +000027#include "llvm/ADT/SmallBitVector.h"
Douglas Gregor3545ff42009-09-21 16:56:56 +000028#include "llvm/ADT/SmallPtrSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000029#include "llvm/ADT/SmallString.h"
Douglas Gregore6688e62009-09-28 03:51:44 +000030#include "llvm/ADT/StringExtras.h"
Douglas Gregor9d2ddb22010-04-06 19:22:33 +000031#include "llvm/ADT/StringSwitch.h"
Douglas Gregor67c692c2010-08-26 15:07:07 +000032#include "llvm/ADT/Twine.h"
Douglas Gregor3545ff42009-09-21 16:56:56 +000033#include <list>
34#include <map>
35#include <vector>
Douglas Gregor2436e712009-09-17 21:32:03 +000036
37using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000038using namespace sema;
Douglas Gregor2436e712009-09-17 21:32:03 +000039
Douglas Gregor3545ff42009-09-21 16:56:56 +000040namespace {
41 /// \brief A container of code-completion results.
42 class ResultBuilder {
43 public:
44 /// \brief The type of a name-lookup filter, which can be provided to the
45 /// name-lookup routines to specify which declarations should be included in
46 /// the result set (when it returns true) and which declarations should be
47 /// filtered out (returns false).
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000048 typedef bool (ResultBuilder::*LookupFilter)(const NamedDecl *) const;
Douglas Gregor3545ff42009-09-21 16:56:56 +000049
John McCall276321a2010-08-25 06:19:51 +000050 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +000051
52 private:
53 /// \brief The actual results we have found.
54 std::vector<Result> Results;
55
56 /// \brief A record of all of the declarations we have found and placed
57 /// into the result set, used to ensure that no declaration ever gets into
58 /// the result set twice.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000059 llvm::SmallPtrSet<const Decl*, 16> AllDeclsFound;
Douglas Gregor3545ff42009-09-21 16:56:56 +000060
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000061 typedef std::pair<const NamedDecl *, unsigned> DeclIndexPair;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000062
63 /// \brief An entry in the shadow map, which is optimized to store
64 /// a single (declaration, index) mapping (the common case) but
65 /// can also store a list of (declaration, index) mappings.
66 class ShadowMapEntry {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000067 typedef SmallVector<DeclIndexPair, 4> DeclIndexPairVector;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000068
69 /// \brief Contains either the solitary NamedDecl * or a vector
70 /// of (declaration, index) pairs.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000071 llvm::PointerUnion<const NamedDecl *, DeclIndexPairVector*> DeclOrVector;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000072
73 /// \brief When the entry contains a single declaration, this is
74 /// the index associated with that entry.
75 unsigned SingleDeclIndex;
76
77 public:
78 ShadowMapEntry() : DeclOrVector(), SingleDeclIndex(0) { }
79
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000080 void Add(const NamedDecl *ND, unsigned Index) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +000081 if (DeclOrVector.isNull()) {
82 // 0 - > 1 elements: just set the single element information.
83 DeclOrVector = ND;
84 SingleDeclIndex = Index;
85 return;
86 }
87
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000088 if (const NamedDecl *PrevND =
89 DeclOrVector.dyn_cast<const NamedDecl *>()) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +000090 // 1 -> 2 elements: create the vector of results and push in the
91 // existing declaration.
92 DeclIndexPairVector *Vec = new DeclIndexPairVector;
93 Vec->push_back(DeclIndexPair(PrevND, SingleDeclIndex));
94 DeclOrVector = Vec;
95 }
96
97 // Add the new element to the end of the vector.
98 DeclOrVector.get<DeclIndexPairVector*>()->push_back(
99 DeclIndexPair(ND, Index));
100 }
101
102 void Destroy() {
103 if (DeclIndexPairVector *Vec
104 = DeclOrVector.dyn_cast<DeclIndexPairVector *>()) {
105 delete Vec;
Craig Topperc3ec1492014-05-26 06:22:03 +0000106 DeclOrVector = ((NamedDecl *)nullptr);
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000107 }
108 }
109
110 // Iteration.
111 class iterator;
112 iterator begin() const;
113 iterator end() const;
114 };
115
Douglas Gregor3545ff42009-09-21 16:56:56 +0000116 /// \brief A mapping from declaration names to the declarations that have
117 /// this name within a particular scope and their index within the list of
118 /// results.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000119 typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000120
121 /// \brief The semantic analysis object for which results are being
122 /// produced.
123 Sema &SemaRef;
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000124
125 /// \brief The allocator used to allocate new code-completion strings.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000126 CodeCompletionAllocator &Allocator;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000127
128 CodeCompletionTUInfo &CCTUInfo;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000129
130 /// \brief If non-NULL, a filter function used to remove any code-completion
131 /// results that are not desirable.
132 LookupFilter Filter;
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000133
134 /// \brief Whether we should allow declarations as
135 /// nested-name-specifiers that would otherwise be filtered out.
136 bool AllowNestedNameSpecifiers;
137
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000138 /// \brief If set, the type that we would prefer our resulting value
139 /// declarations to have.
140 ///
141 /// Closely matching the preferred type gives a boost to a result's
142 /// priority.
143 CanQualType PreferredType;
144
Douglas Gregor3545ff42009-09-21 16:56:56 +0000145 /// \brief A list of shadow maps, which is used to model name hiding at
146 /// different levels of, e.g., the inheritance hierarchy.
147 std::list<ShadowMap> ShadowMaps;
148
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000149 /// \brief If we're potentially referring to a C++ member function, the set
150 /// of qualifiers applied to the object type.
151 Qualifiers ObjectTypeQualifiers;
152
153 /// \brief Whether the \p ObjectTypeQualifiers field is active.
154 bool HasObjectTypeQualifiers;
155
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000156 /// \brief The selector that we prefer.
157 Selector PreferredSelector;
158
Douglas Gregor05fcf842010-11-02 20:36:02 +0000159 /// \brief The completion context in which we are gathering results.
Douglas Gregor50832e02010-09-20 22:39:41 +0000160 CodeCompletionContext CompletionContext;
161
James Dennett596e4752012-06-14 03:11:41 +0000162 /// \brief If we are in an instance method definition, the \@implementation
Douglas Gregor05fcf842010-11-02 20:36:02 +0000163 /// object.
164 ObjCImplementationDecl *ObjCImplementation;
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000165
Douglas Gregor50832e02010-09-20 22:39:41 +0000166 void AdjustResultPriorityForDecl(Result &R);
Douglas Gregor95887f92010-07-08 23:20:03 +0000167
Douglas Gregor0212fd72010-09-21 16:06:22 +0000168 void MaybeAddConstructorResults(Result R);
169
Douglas Gregor3545ff42009-09-21 16:56:56 +0000170 public:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000171 explicit ResultBuilder(Sema &SemaRef, CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000172 CodeCompletionTUInfo &CCTUInfo,
Douglas Gregor0ac41382010-09-23 23:01:17 +0000173 const CodeCompletionContext &CompletionContext,
Craig Topperc3ec1492014-05-26 06:22:03 +0000174 LookupFilter Filter = nullptr)
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000175 : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo),
176 Filter(Filter),
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000177 AllowNestedNameSpecifiers(false), HasObjectTypeQualifiers(false),
Douglas Gregor05fcf842010-11-02 20:36:02 +0000178 CompletionContext(CompletionContext),
Craig Topperc3ec1492014-05-26 06:22:03 +0000179 ObjCImplementation(nullptr)
Douglas Gregor05fcf842010-11-02 20:36:02 +0000180 {
181 // If this is an Objective-C instance method definition, dig out the
182 // corresponding implementation.
183 switch (CompletionContext.getKind()) {
184 case CodeCompletionContext::CCC_Expression:
185 case CodeCompletionContext::CCC_ObjCMessageReceiver:
186 case CodeCompletionContext::CCC_ParenthesizedExpression:
187 case CodeCompletionContext::CCC_Statement:
188 case CodeCompletionContext::CCC_Recovery:
189 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
190 if (Method->isInstanceMethod())
191 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
192 ObjCImplementation = Interface->getImplementation();
193 break;
194
195 default:
196 break;
197 }
198 }
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000199
200 /// \brief Determine the priority for a reference to the given declaration.
201 unsigned getBasePriority(const NamedDecl *D);
202
Douglas Gregorf64acca2010-05-25 21:41:55 +0000203 /// \brief Whether we should include code patterns in the completion
204 /// results.
205 bool includeCodePatterns() const {
206 return SemaRef.CodeCompleter &&
Douglas Gregorac322ec2010-08-27 21:18:54 +0000207 SemaRef.CodeCompleter->includeCodePatterns();
Douglas Gregorf64acca2010-05-25 21:41:55 +0000208 }
209
Douglas Gregor3545ff42009-09-21 16:56:56 +0000210 /// \brief Set the filter used for code-completion results.
211 void setFilter(LookupFilter Filter) {
212 this->Filter = Filter;
213 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000214
215 Result *data() { return Results.empty()? nullptr : &Results.front(); }
Douglas Gregor3545ff42009-09-21 16:56:56 +0000216 unsigned size() const { return Results.size(); }
217 bool empty() const { return Results.empty(); }
218
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000219 /// \brief Specify the preferred type.
220 void setPreferredType(QualType T) {
221 PreferredType = SemaRef.Context.getCanonicalType(T);
222 }
223
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000224 /// \brief Set the cv-qualifiers on the object type, for us in filtering
225 /// calls to member functions.
226 ///
227 /// When there are qualifiers in this set, they will be used to filter
228 /// out member functions that aren't available (because there will be a
229 /// cv-qualifier mismatch) or prefer functions with an exact qualifier
230 /// match.
231 void setObjectTypeQualifiers(Qualifiers Quals) {
232 ObjectTypeQualifiers = Quals;
233 HasObjectTypeQualifiers = true;
234 }
235
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000236 /// \brief Set the preferred selector.
237 ///
238 /// When an Objective-C method declaration result is added, and that
239 /// method's selector matches this preferred selector, we give that method
240 /// a slight priority boost.
241 void setPreferredSelector(Selector Sel) {
242 PreferredSelector = Sel;
243 }
Douglas Gregor05fcf842010-11-02 20:36:02 +0000244
Douglas Gregor50832e02010-09-20 22:39:41 +0000245 /// \brief Retrieve the code-completion context for which results are
246 /// being collected.
247 const CodeCompletionContext &getCompletionContext() const {
248 return CompletionContext;
249 }
250
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000251 /// \brief Specify whether nested-name-specifiers are allowed.
252 void allowNestedNameSpecifiers(bool Allow = true) {
253 AllowNestedNameSpecifiers = Allow;
254 }
255
Douglas Gregor74661272010-09-21 00:03:25 +0000256 /// \brief Return the semantic analysis object for which we are collecting
257 /// code completion results.
258 Sema &getSema() const { return SemaRef; }
259
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000260 /// \brief Retrieve the allocator used to allocate code completion strings.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000261 CodeCompletionAllocator &getAllocator() const { return Allocator; }
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000262
263 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; }
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000264
Douglas Gregor7c208612010-01-14 00:20:49 +0000265 /// \brief Determine whether the given declaration is at all interesting
266 /// as a code-completion result.
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000267 ///
268 /// \param ND the declaration that we are inspecting.
269 ///
270 /// \param AsNestedNameSpecifier will be set true if this declaration is
271 /// only interesting when it is a nested-name-specifier.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000272 bool isInterestingDecl(const NamedDecl *ND,
273 bool &AsNestedNameSpecifier) const;
Douglas Gregore0717ab2010-01-14 00:41:07 +0000274
275 /// \brief Check whether the result is hidden by the Hiding declaration.
276 ///
277 /// \returns true if the result is hidden and cannot be found, false if
278 /// the hidden result could still be found. When false, \p R may be
279 /// modified to describe how the result can be found (e.g., via extra
280 /// qualification).
281 bool CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000282 const NamedDecl *Hiding);
Douglas Gregore0717ab2010-01-14 00:41:07 +0000283
Douglas Gregor3545ff42009-09-21 16:56:56 +0000284 /// \brief Add a new result to this result set (if it isn't already in one
285 /// of the shadow maps), or replace an existing result (for, e.g., a
286 /// redeclaration).
Douglas Gregor2af2f672009-09-21 20:12:40 +0000287 ///
Douglas Gregord8c61782012-02-15 15:34:24 +0000288 /// \param R the result to add (if it is unique).
Douglas Gregor2af2f672009-09-21 20:12:40 +0000289 ///
Douglas Gregord8c61782012-02-15 15:34:24 +0000290 /// \param CurContext the context in which this result will be named.
Craig Topperc3ec1492014-05-26 06:22:03 +0000291 void MaybeAddResult(Result R, DeclContext *CurContext = nullptr);
292
Douglas Gregorc580c522010-01-14 01:09:38 +0000293 /// \brief Add a new result to this result set, where we already know
Yaron Keren8fbe43982014-11-14 18:33:42 +0000294 /// the hiding declaration (if any).
Douglas Gregorc580c522010-01-14 01:09:38 +0000295 ///
296 /// \param R the result to add (if it is unique).
297 ///
298 /// \param CurContext the context in which this result will be named.
299 ///
300 /// \param Hiding the declaration that hides the result.
Douglas Gregor09bbc652010-01-14 15:47:35 +0000301 ///
302 /// \param InBaseClass whether the result was found in a base
303 /// class of the searched context.
304 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding,
305 bool InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +0000306
Douglas Gregor78a21012010-01-14 16:01:26 +0000307 /// \brief Add a new non-declaration result to this result set.
308 void AddResult(Result R);
309
Douglas Gregor3545ff42009-09-21 16:56:56 +0000310 /// \brief Enter into a new scope.
311 void EnterNewScope();
312
313 /// \brief Exit from the current scope.
314 void ExitScope();
315
Douglas Gregorbaf69612009-11-18 04:19:12 +0000316 /// \brief Ignore this declaration, if it is seen again.
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +0000317 void Ignore(const Decl *D) { AllDeclsFound.insert(D->getCanonicalDecl()); }
Douglas Gregorbaf69612009-11-18 04:19:12 +0000318
Douglas Gregor3545ff42009-09-21 16:56:56 +0000319 /// \name Name lookup predicates
320 ///
321 /// These predicates can be passed to the name lookup functions to filter the
322 /// results of name lookup. All of the predicates have the same type, so that
323 ///
324 //@{
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000325 bool IsOrdinaryName(const NamedDecl *ND) const;
326 bool IsOrdinaryNonTypeName(const NamedDecl *ND) const;
327 bool IsIntegralConstantValue(const NamedDecl *ND) const;
328 bool IsOrdinaryNonValueName(const NamedDecl *ND) const;
329 bool IsNestedNameSpecifier(const NamedDecl *ND) const;
330 bool IsEnum(const NamedDecl *ND) const;
331 bool IsClassOrStruct(const NamedDecl *ND) const;
332 bool IsUnion(const NamedDecl *ND) const;
333 bool IsNamespace(const NamedDecl *ND) const;
334 bool IsNamespaceOrAlias(const NamedDecl *ND) const;
335 bool IsType(const NamedDecl *ND) const;
336 bool IsMember(const NamedDecl *ND) const;
337 bool IsObjCIvar(const NamedDecl *ND) const;
338 bool IsObjCMessageReceiver(const NamedDecl *ND) const;
339 bool IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const;
340 bool IsObjCCollection(const NamedDecl *ND) const;
341 bool IsImpossibleToSatisfy(const NamedDecl *ND) const;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000342 //@}
343 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000344}
Douglas Gregor3545ff42009-09-21 16:56:56 +0000345
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000346class ResultBuilder::ShadowMapEntry::iterator {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000347 llvm::PointerUnion<const NamedDecl *, const DeclIndexPair *> DeclOrIterator;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000348 unsigned SingleDeclIndex;
349
350public:
351 typedef DeclIndexPair value_type;
352 typedef value_type reference;
353 typedef std::ptrdiff_t difference_type;
354 typedef std::input_iterator_tag iterator_category;
355
356 class pointer {
357 DeclIndexPair Value;
358
359 public:
360 pointer(const DeclIndexPair &Value) : Value(Value) { }
361
362 const DeclIndexPair *operator->() const {
363 return &Value;
364 }
365 };
Craig Topperc3ec1492014-05-26 06:22:03 +0000366
367 iterator() : DeclOrIterator((NamedDecl *)nullptr), SingleDeclIndex(0) {}
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000368
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000369 iterator(const NamedDecl *SingleDecl, unsigned Index)
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000370 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { }
371
372 iterator(const DeclIndexPair *Iterator)
373 : DeclOrIterator(Iterator), SingleDeclIndex(0) { }
374
375 iterator &operator++() {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000376 if (DeclOrIterator.is<const NamedDecl *>()) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000377 DeclOrIterator = (NamedDecl *)nullptr;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000378 SingleDeclIndex = 0;
379 return *this;
380 }
381
382 const DeclIndexPair *I = DeclOrIterator.get<const DeclIndexPair*>();
383 ++I;
384 DeclOrIterator = I;
385 return *this;
386 }
387
Chris Lattner9795b392010-09-04 18:12:20 +0000388 /*iterator operator++(int) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000389 iterator tmp(*this);
390 ++(*this);
391 return tmp;
Chris Lattner9795b392010-09-04 18:12:20 +0000392 }*/
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000393
394 reference operator*() const {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000395 if (const NamedDecl *ND = DeclOrIterator.dyn_cast<const NamedDecl *>())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000396 return reference(ND, SingleDeclIndex);
397
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000398 return *DeclOrIterator.get<const DeclIndexPair*>();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000399 }
400
401 pointer operator->() const {
402 return pointer(**this);
403 }
404
405 friend bool operator==(const iterator &X, const iterator &Y) {
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000406 return X.DeclOrIterator.getOpaqueValue()
407 == Y.DeclOrIterator.getOpaqueValue() &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000408 X.SingleDeclIndex == Y.SingleDeclIndex;
409 }
410
411 friend bool operator!=(const iterator &X, const iterator &Y) {
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000412 return !(X == Y);
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000413 }
414};
415
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000416ResultBuilder::ShadowMapEntry::iterator
417ResultBuilder::ShadowMapEntry::begin() const {
418 if (DeclOrVector.isNull())
419 return iterator();
420
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000421 if (const NamedDecl *ND = DeclOrVector.dyn_cast<const NamedDecl *>())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000422 return iterator(ND, SingleDeclIndex);
423
424 return iterator(DeclOrVector.get<DeclIndexPairVector *>()->begin());
425}
426
427ResultBuilder::ShadowMapEntry::iterator
428ResultBuilder::ShadowMapEntry::end() const {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000429 if (DeclOrVector.is<const NamedDecl *>() || DeclOrVector.isNull())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000430 return iterator();
431
432 return iterator(DeclOrVector.get<DeclIndexPairVector *>()->end());
433}
434
Douglas Gregor2af2f672009-09-21 20:12:40 +0000435/// \brief Compute the qualification required to get from the current context
436/// (\p CurContext) to the target context (\p TargetContext).
437///
438/// \param Context the AST context in which the qualification will be used.
439///
440/// \param CurContext the context where an entity is being named, which is
441/// typically based on the current scope.
442///
443/// \param TargetContext the context in which the named entity actually
444/// resides.
445///
446/// \returns a nested name specifier that refers into the target context, or
447/// NULL if no qualification is needed.
448static NestedNameSpecifier *
449getRequiredQualification(ASTContext &Context,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000450 const DeclContext *CurContext,
451 const DeclContext *TargetContext) {
452 SmallVector<const DeclContext *, 4> TargetParents;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000453
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000454 for (const DeclContext *CommonAncestor = TargetContext;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000455 CommonAncestor && !CommonAncestor->Encloses(CurContext);
456 CommonAncestor = CommonAncestor->getLookupParent()) {
457 if (CommonAncestor->isTransparentContext() ||
458 CommonAncestor->isFunctionOrMethod())
459 continue;
460
461 TargetParents.push_back(CommonAncestor);
462 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000463
464 NestedNameSpecifier *Result = nullptr;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000465 while (!TargetParents.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +0000466 const DeclContext *Parent = TargetParents.pop_back_val();
467
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000468 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Parent)) {
Douglas Gregor68762e72010-08-23 21:17:50 +0000469 if (!Namespace->getIdentifier())
470 continue;
471
Douglas Gregor2af2f672009-09-21 20:12:40 +0000472 Result = NestedNameSpecifier::Create(Context, Result, Namespace);
Douglas Gregor68762e72010-08-23 21:17:50 +0000473 }
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000474 else if (const TagDecl *TD = dyn_cast<TagDecl>(Parent))
Douglas Gregor2af2f672009-09-21 20:12:40 +0000475 Result = NestedNameSpecifier::Create(Context, Result,
476 false,
477 Context.getTypeDeclType(TD).getTypePtr());
Douglas Gregor9eb77012009-11-07 00:00:49 +0000478 }
Douglas Gregor2af2f672009-09-21 20:12:40 +0000479 return Result;
480}
481
Alp Toker034bbd52014-06-30 01:33:53 +0000482/// Determine whether \p Id is a name reserved for the implementation (C99
483/// 7.1.3, C++ [lib.global.names]).
Argyrios Kyrtzidis5d8006d2016-07-01 01:17:02 +0000484static bool isReservedName(const IdentifierInfo *Id,
485 bool doubleUnderscoreOnly = false) {
Alp Toker034bbd52014-06-30 01:33:53 +0000486 if (Id->getLength() < 2)
487 return false;
488 const char *Name = Id->getNameStart();
489 return Name[0] == '_' &&
Argyrios Kyrtzidis5d8006d2016-07-01 01:17:02 +0000490 (Name[1] == '_' || (Name[1] >= 'A' && Name[1] <= 'Z' &&
491 !doubleUnderscoreOnly));
492}
493
494// Some declarations have reserved names that we don't want to ever show.
495// Filter out names reserved for the implementation if they come from a
496// system header.
497static bool shouldIgnoreDueToReservedName(const NamedDecl *ND, Sema &SemaRef) {
498 const IdentifierInfo *Id = ND->getIdentifier();
499 if (!Id)
500 return false;
501
502 // Ignore reserved names for compiler provided decls.
503 if (isReservedName(Id) && ND->getLocation().isInvalid())
504 return true;
505
506 // For system headers ignore only double-underscore names.
507 // This allows for system headers providing private symbols with a single
508 // underscore.
509 if (isReservedName(Id, /*doubleUnderscoreOnly=*/true) &&
510 SemaRef.SourceMgr.isInSystemHeader(
511 SemaRef.SourceMgr.getSpellingLoc(ND->getLocation())))
512 return true;
513
514 return false;
Alp Toker034bbd52014-06-30 01:33:53 +0000515}
516
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000517bool ResultBuilder::isInterestingDecl(const NamedDecl *ND,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000518 bool &AsNestedNameSpecifier) const {
519 AsNestedNameSpecifier = false;
520
Richard Smithf2005d32015-12-29 23:34:32 +0000521 auto *Named = ND;
Douglas Gregor7c208612010-01-14 00:20:49 +0000522 ND = ND->getUnderlyingDecl();
Douglas Gregor58acf322009-10-09 22:16:47 +0000523
524 // Skip unnamed entities.
Douglas Gregor7c208612010-01-14 00:20:49 +0000525 if (!ND->getDeclName())
526 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000527
528 // Friend declarations and declarations introduced due to friends are never
529 // added as results.
Richard Smith6eece292015-01-15 02:27:20 +0000530 if (ND->getFriendObjectKind() == Decl::FOK_Undeclared)
Douglas Gregor7c208612010-01-14 00:20:49 +0000531 return false;
532
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000533 // Class template (partial) specializations are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000534 if (isa<ClassTemplateSpecializationDecl>(ND) ||
535 isa<ClassTemplatePartialSpecializationDecl>(ND))
536 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000537
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000538 // Using declarations themselves are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000539 if (isa<UsingDecl>(ND))
540 return false;
Argyrios Kyrtzidis5d8006d2016-07-01 01:17:02 +0000541
542 if (shouldIgnoreDueToReservedName(ND, SemaRef))
543 return false;
Douglas Gregor2927c0c2010-11-09 03:59:40 +0000544
Douglas Gregor59cab552010-08-16 23:05:20 +0000545 if (Filter == &ResultBuilder::IsNestedNameSpecifier ||
Richard Smithf2005d32015-12-29 23:34:32 +0000546 (isa<NamespaceDecl>(ND) &&
Douglas Gregor59cab552010-08-16 23:05:20 +0000547 Filter != &ResultBuilder::IsNamespace &&
Douglas Gregor0ac41382010-09-23 23:01:17 +0000548 Filter != &ResultBuilder::IsNamespaceOrAlias &&
Craig Topperc3ec1492014-05-26 06:22:03 +0000549 Filter != nullptr))
Douglas Gregor59cab552010-08-16 23:05:20 +0000550 AsNestedNameSpecifier = true;
551
Douglas Gregor3545ff42009-09-21 16:56:56 +0000552 // Filter out any unwanted results.
Richard Smithf2005d32015-12-29 23:34:32 +0000553 if (Filter && !(this->*Filter)(Named)) {
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000554 // Check whether it is interesting as a nested-name-specifier.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000555 if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus &&
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000556 IsNestedNameSpecifier(ND) &&
557 (Filter != &ResultBuilder::IsMember ||
558 (isa<CXXRecordDecl>(ND) &&
559 cast<CXXRecordDecl>(ND)->isInjectedClassName()))) {
560 AsNestedNameSpecifier = true;
561 return true;
562 }
563
Douglas Gregor7c208612010-01-14 00:20:49 +0000564 return false;
Douglas Gregor59cab552010-08-16 23:05:20 +0000565 }
Douglas Gregor7c208612010-01-14 00:20:49 +0000566 // ... then it must be interesting!
567 return true;
568}
569
Douglas Gregore0717ab2010-01-14 00:41:07 +0000570bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000571 const NamedDecl *Hiding) {
Douglas Gregore0717ab2010-01-14 00:41:07 +0000572 // In C, there is no way to refer to a hidden name.
573 // FIXME: This isn't true; we can find a tag name hidden by an ordinary
574 // name if we introduce the tag type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000575 if (!SemaRef.getLangOpts().CPlusPlus)
Douglas Gregore0717ab2010-01-14 00:41:07 +0000576 return true;
577
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000578 const DeclContext *HiddenCtx =
579 R.Declaration->getDeclContext()->getRedeclContext();
Douglas Gregore0717ab2010-01-14 00:41:07 +0000580
581 // There is no way to qualify a name declared in a function or method.
582 if (HiddenCtx->isFunctionOrMethod())
583 return true;
584
Sebastian Redl50c68252010-08-31 00:36:30 +0000585 if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext())
Douglas Gregore0717ab2010-01-14 00:41:07 +0000586 return true;
587
588 // We can refer to the result with the appropriate qualification. Do it.
589 R.Hidden = true;
590 R.QualifierIsInformative = false;
591
592 if (!R.Qualifier)
593 R.Qualifier = getRequiredQualification(SemaRef.Context,
594 CurContext,
595 R.Declaration->getDeclContext());
596 return false;
597}
598
Douglas Gregor95887f92010-07-08 23:20:03 +0000599/// \brief A simplified classification of types used to determine whether two
600/// types are "similar enough" when adjusting priorities.
Douglas Gregor6e240332010-08-16 16:18:59 +0000601SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000602 switch (T->getTypeClass()) {
603 case Type::Builtin:
604 switch (cast<BuiltinType>(T)->getKind()) {
605 case BuiltinType::Void:
606 return STC_Void;
607
608 case BuiltinType::NullPtr:
609 return STC_Pointer;
610
611 case BuiltinType::Overload:
612 case BuiltinType::Dependent:
Douglas Gregor95887f92010-07-08 23:20:03 +0000613 return STC_Other;
614
615 case BuiltinType::ObjCId:
616 case BuiltinType::ObjCClass:
617 case BuiltinType::ObjCSel:
618 return STC_ObjectiveC;
619
620 default:
621 return STC_Arithmetic;
622 }
David Blaikie8a40f702012-01-17 06:56:22 +0000623
Douglas Gregor95887f92010-07-08 23:20:03 +0000624 case Type::Complex:
625 return STC_Arithmetic;
626
627 case Type::Pointer:
628 return STC_Pointer;
629
630 case Type::BlockPointer:
631 return STC_Block;
632
633 case Type::LValueReference:
634 case Type::RValueReference:
635 return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType());
636
637 case Type::ConstantArray:
638 case Type::IncompleteArray:
639 case Type::VariableArray:
640 case Type::DependentSizedArray:
641 return STC_Array;
642
643 case Type::DependentSizedExtVector:
644 case Type::Vector:
645 case Type::ExtVector:
646 return STC_Arithmetic;
647
648 case Type::FunctionProto:
649 case Type::FunctionNoProto:
650 return STC_Function;
651
652 case Type::Record:
653 return STC_Record;
654
655 case Type::Enum:
656 return STC_Arithmetic;
657
658 case Type::ObjCObject:
659 case Type::ObjCInterface:
660 case Type::ObjCObjectPointer:
661 return STC_ObjectiveC;
662
663 default:
664 return STC_Other;
665 }
666}
667
668/// \brief Get the type that a given expression will have if this declaration
669/// is used as an expression in its "typical" code-completion form.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000670QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000671 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
672
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000673 if (const TypeDecl *Type = dyn_cast<TypeDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000674 return C.getTypeDeclType(Type);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000675 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000676 return C.getObjCInterfaceType(Iface);
677
678 QualType T;
Alp Tokera2794f92014-01-22 07:29:52 +0000679 if (const FunctionDecl *Function = ND->getAsFunction())
Douglas Gregor603d81b2010-07-13 08:18:22 +0000680 T = Function->getCallResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000681 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Douglas Gregor603d81b2010-07-13 08:18:22 +0000682 T = Method->getSendResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000683 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000684 T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext()));
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000685 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000686 T = Property->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000687 else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000688 T = Value->getType();
689 else
690 return QualType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000691
692 // Dig through references, function pointers, and block pointers to
693 // get down to the likely type of an expression when the entity is
694 // used.
695 do {
696 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) {
697 T = Ref->getPointeeType();
698 continue;
699 }
700
701 if (const PointerType *Pointer = T->getAs<PointerType>()) {
702 if (Pointer->getPointeeType()->isFunctionType()) {
703 T = Pointer->getPointeeType();
704 continue;
705 }
706
707 break;
708 }
709
710 if (const BlockPointerType *Block = T->getAs<BlockPointerType>()) {
711 T = Block->getPointeeType();
712 continue;
713 }
714
715 if (const FunctionType *Function = T->getAs<FunctionType>()) {
Alp Toker314cc812014-01-25 16:55:45 +0000716 T = Function->getReturnType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000717 continue;
718 }
719
720 break;
721 } while (true);
722
723 return T;
Douglas Gregor95887f92010-07-08 23:20:03 +0000724}
725
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000726unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) {
727 if (!ND)
728 return CCP_Unlikely;
729
730 // Context-based decisions.
Richard Smith541b38b2013-09-20 01:15:31 +0000731 const DeclContext *LexicalDC = ND->getLexicalDeclContext();
732 if (LexicalDC->isFunctionOrMethod()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000733 // _cmd is relatively rare
734 if (const ImplicitParamDecl *ImplicitParam =
735 dyn_cast<ImplicitParamDecl>(ND))
736 if (ImplicitParam->getIdentifier() &&
737 ImplicitParam->getIdentifier()->isStr("_cmd"))
738 return CCP_ObjC_cmd;
739
740 return CCP_LocalDeclaration;
741 }
Richard Smith541b38b2013-09-20 01:15:31 +0000742
743 const DeclContext *DC = ND->getDeclContext()->getRedeclContext();
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000744 if (DC->isRecord() || isa<ObjCContainerDecl>(DC))
745 return CCP_MemberDeclaration;
746
747 // Content-based decisions.
748 if (isa<EnumConstantDecl>(ND))
749 return CCP_Constant;
750
Douglas Gregor52e0de42013-01-31 05:03:46 +0000751 // Use CCP_Type for type declarations unless we're in a statement, Objective-C
752 // message receiver, or parenthesized expression context. There, it's as
753 // likely that the user will want to write a type as other declarations.
754 if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
755 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
756 CompletionContext.getKind()
757 == CodeCompletionContext::CCC_ObjCMessageReceiver ||
758 CompletionContext.getKind()
759 == CodeCompletionContext::CCC_ParenthesizedExpression))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000760 return CCP_Type;
761
762 return CCP_Declaration;
763}
764
Douglas Gregor50832e02010-09-20 22:39:41 +0000765void ResultBuilder::AdjustResultPriorityForDecl(Result &R) {
766 // If this is an Objective-C method declaration whose selector matches our
767 // preferred selector, give it a priority boost.
768 if (!PreferredSelector.isNull())
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000769 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration))
Douglas Gregor50832e02010-09-20 22:39:41 +0000770 if (PreferredSelector == Method->getSelector())
771 R.Priority += CCD_SelectorMatch;
Douglas Gregor5fb901d2010-09-20 23:11:55 +0000772
Douglas Gregor50832e02010-09-20 22:39:41 +0000773 // If we have a preferred type, adjust the priority for results with exactly-
774 // matching or nearly-matching types.
775 if (!PreferredType.isNull()) {
776 QualType T = getDeclUsageType(SemaRef.Context, R.Declaration);
777 if (!T.isNull()) {
778 CanQualType TC = SemaRef.Context.getCanonicalType(T);
779 // Check for exactly-matching types (modulo qualifiers).
780 if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
781 R.Priority /= CCF_ExactTypeMatch;
782 // Check for nearly-matching types, based on classification of each.
783 else if ((getSimplifiedTypeClass(PreferredType)
Douglas Gregor95887f92010-07-08 23:20:03 +0000784 == getSimplifiedTypeClass(TC)) &&
Douglas Gregor50832e02010-09-20 22:39:41 +0000785 !(PreferredType->isEnumeralType() && TC->isEnumeralType()))
786 R.Priority /= CCF_SimilarTypeMatch;
787 }
788 }
Douglas Gregor95887f92010-07-08 23:20:03 +0000789}
790
Douglas Gregor0212fd72010-09-21 16:06:22 +0000791void ResultBuilder::MaybeAddConstructorResults(Result R) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000792 if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration ||
Douglas Gregor0212fd72010-09-21 16:06:22 +0000793 !CompletionContext.wantConstructorResults())
794 return;
795
796 ASTContext &Context = SemaRef.Context;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000797 const NamedDecl *D = R.Declaration;
Craig Topperc3ec1492014-05-26 06:22:03 +0000798 const CXXRecordDecl *Record = nullptr;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000799 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D))
Douglas Gregor0212fd72010-09-21 16:06:22 +0000800 Record = ClassTemplate->getTemplatedDecl();
801 else if ((Record = dyn_cast<CXXRecordDecl>(D))) {
802 // Skip specializations and partial specializations.
803 if (isa<ClassTemplateSpecializationDecl>(Record))
804 return;
805 } else {
806 // There are no constructors here.
807 return;
808 }
809
810 Record = Record->getDefinition();
811 if (!Record)
812 return;
813
814
815 QualType RecordTy = Context.getTypeDeclType(Record);
816 DeclarationName ConstructorName
817 = Context.DeclarationNames.getCXXConstructorName(
818 Context.getCanonicalType(RecordTy));
Richard Smithcf4bdde2015-02-21 02:45:19 +0000819 DeclContext::lookup_result Ctors = Record->lookup(ConstructorName);
820 for (DeclContext::lookup_iterator I = Ctors.begin(),
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000821 E = Ctors.end();
822 I != E; ++I) {
David Blaikieff7d47a2012-12-19 00:45:41 +0000823 R.Declaration = *I;
Douglas Gregor0212fd72010-09-21 16:06:22 +0000824 R.CursorKind = getCursorKindForDecl(R.Declaration);
825 Results.push_back(R);
826 }
827}
828
Douglas Gregor7c208612010-01-14 00:20:49 +0000829void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) {
830 assert(!ShadowMaps.empty() && "Must enter into a results scope");
831
832 if (R.Kind != Result::RK_Declaration) {
833 // For non-declaration results, just add the result.
834 Results.push_back(R);
835 return;
836 }
837
838 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000839 if (const UsingShadowDecl *Using =
840 dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000841 MaybeAddResult(Result(Using->getTargetDecl(),
842 getBasePriority(Using->getTargetDecl()),
843 R.Qualifier),
844 CurContext);
Douglas Gregor7c208612010-01-14 00:20:49 +0000845 return;
846 }
847
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000848 const Decl *CanonDecl = R.Declaration->getCanonicalDecl();
Douglas Gregor7c208612010-01-14 00:20:49 +0000849 unsigned IDNS = CanonDecl->getIdentifierNamespace();
850
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000851 bool AsNestedNameSpecifier = false;
852 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregor7c208612010-01-14 00:20:49 +0000853 return;
854
Douglas Gregor0212fd72010-09-21 16:06:22 +0000855 // C++ constructors are never found by name lookup.
856 if (isa<CXXConstructorDecl>(R.Declaration))
857 return;
858
Douglas Gregor3545ff42009-09-21 16:56:56 +0000859 ShadowMap &SMap = ShadowMaps.back();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000860 ShadowMapEntry::iterator I, IEnd;
861 ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
862 if (NamePos != SMap.end()) {
863 I = NamePos->second.begin();
864 IEnd = NamePos->second.end();
865 }
866
867 for (; I != IEnd; ++I) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000868 const NamedDecl *ND = I->first;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000869 unsigned Index = I->second;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000870 if (ND->getCanonicalDecl() == CanonDecl) {
871 // This is a redeclaration. Always pick the newer declaration.
Douglas Gregor3545ff42009-09-21 16:56:56 +0000872 Results[Index].Declaration = R.Declaration;
873
Douglas Gregor3545ff42009-09-21 16:56:56 +0000874 // We're done.
875 return;
876 }
877 }
878
879 // This is a new declaration in this scope. However, check whether this
880 // declaration name is hidden by a similarly-named declaration in an outer
881 // scope.
882 std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end();
883 --SMEnd;
884 for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000885 ShadowMapEntry::iterator I, IEnd;
886 ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName());
887 if (NamePos != SM->end()) {
888 I = NamePos->second.begin();
889 IEnd = NamePos->second.end();
890 }
891 for (; I != IEnd; ++I) {
Douglas Gregor3545ff42009-09-21 16:56:56 +0000892 // A tag declaration does not hide a non-tag declaration.
John McCalle87beb22010-04-23 18:46:30 +0000893 if (I->first->hasTagIdentifierNamespace() &&
Richard Smith541b38b2013-09-20 01:15:31 +0000894 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
895 Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol)))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000896 continue;
897
898 // Protocols are in distinct namespaces from everything else.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000899 if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000900 || (IDNS & Decl::IDNS_ObjCProtocol)) &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000901 I->first->getIdentifierNamespace() != IDNS)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000902 continue;
903
904 // The newly-added result is hidden by an entry in the shadow map.
Douglas Gregore0717ab2010-01-14 00:41:07 +0000905 if (CheckHiddenResult(R, CurContext, I->first))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000906 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000907
908 break;
909 }
910 }
911
912 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000913 if (!AllDeclsFound.insert(CanonDecl).second)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000914 return;
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000915
Douglas Gregore412a5a2009-09-23 22:26:46 +0000916 // If the filter is for nested-name-specifiers, then this result starts a
917 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000918 if (AsNestedNameSpecifier) {
Douglas Gregore412a5a2009-09-23 22:26:46 +0000919 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000920 R.Priority = CCP_NestedNameSpecifier;
Douglas Gregor50832e02010-09-20 22:39:41 +0000921 } else
922 AdjustResultPriorityForDecl(R);
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000923
Douglas Gregor5bf52692009-09-22 23:15:58 +0000924 // If this result is supposed to have an informative qualifier, add one.
Douglas Gregore412a5a2009-09-23 22:26:46 +0000925 if (R.QualifierIsInformative && !R.Qualifier &&
926 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000927 const DeclContext *Ctx = R.Declaration->getDeclContext();
928 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000929 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
930 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000931 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000932 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
933 false, SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregor5bf52692009-09-22 23:15:58 +0000934 else
935 R.QualifierIsInformative = false;
936 }
Douglas Gregore412a5a2009-09-23 22:26:46 +0000937
Douglas Gregor3545ff42009-09-21 16:56:56 +0000938 // Insert this result into the set of results and into the current shadow
939 // map.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000940 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
Douglas Gregor3545ff42009-09-21 16:56:56 +0000941 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +0000942
943 if (!AsNestedNameSpecifier)
944 MaybeAddConstructorResults(R);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000945}
946
Douglas Gregorc580c522010-01-14 01:09:38 +0000947void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
Douglas Gregor09bbc652010-01-14 15:47:35 +0000948 NamedDecl *Hiding, bool InBaseClass = false) {
Douglas Gregor78a21012010-01-14 16:01:26 +0000949 if (R.Kind != Result::RK_Declaration) {
950 // For non-declaration results, just add the result.
951 Results.push_back(R);
952 return;
953 }
954
Douglas Gregorc580c522010-01-14 01:09:38 +0000955 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000956 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000957 AddResult(Result(Using->getTargetDecl(),
958 getBasePriority(Using->getTargetDecl()),
959 R.Qualifier),
960 CurContext, Hiding);
Douglas Gregorc580c522010-01-14 01:09:38 +0000961 return;
962 }
963
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000964 bool AsNestedNameSpecifier = false;
965 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregorc580c522010-01-14 01:09:38 +0000966 return;
967
Douglas Gregor0212fd72010-09-21 16:06:22 +0000968 // C++ constructors are never found by name lookup.
969 if (isa<CXXConstructorDecl>(R.Declaration))
970 return;
971
Douglas Gregorc580c522010-01-14 01:09:38 +0000972 if (Hiding && CheckHiddenResult(R, CurContext, Hiding))
973 return;
Nick Lewyckyc3921482012-04-03 21:44:08 +0000974
Douglas Gregorc580c522010-01-14 01:09:38 +0000975 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000976 if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second)
Douglas Gregorc580c522010-01-14 01:09:38 +0000977 return;
978
979 // If the filter is for nested-name-specifiers, then this result starts a
980 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000981 if (AsNestedNameSpecifier) {
Douglas Gregorc580c522010-01-14 01:09:38 +0000982 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000983 R.Priority = CCP_NestedNameSpecifier;
984 }
Douglas Gregor09bbc652010-01-14 15:47:35 +0000985 else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass &&
986 isa<CXXRecordDecl>(R.Declaration->getDeclContext()
Sebastian Redl50c68252010-08-31 00:36:30 +0000987 ->getRedeclContext()))
Douglas Gregor09bbc652010-01-14 15:47:35 +0000988 R.QualifierIsInformative = true;
989
Douglas Gregorc580c522010-01-14 01:09:38 +0000990 // If this result is supposed to have an informative qualifier, add one.
991 if (R.QualifierIsInformative && !R.Qualifier &&
992 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000993 const DeclContext *Ctx = R.Declaration->getDeclContext();
994 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000995 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
996 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000997 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000998 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr, false,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000999 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregorc580c522010-01-14 01:09:38 +00001000 else
1001 R.QualifierIsInformative = false;
1002 }
1003
Douglas Gregora2db7932010-05-26 22:00:08 +00001004 // Adjust the priority if this result comes from a base class.
1005 if (InBaseClass)
1006 R.Priority += CCD_InBaseClass;
1007
Douglas Gregor50832e02010-09-20 22:39:41 +00001008 AdjustResultPriorityForDecl(R);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00001009
Douglas Gregor9be0ed42010-08-26 16:36:48 +00001010 if (HasObjectTypeQualifiers)
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001011 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration))
Douglas Gregor9be0ed42010-08-26 16:36:48 +00001012 if (Method->isInstance()) {
1013 Qualifiers MethodQuals
1014 = Qualifiers::fromCVRMask(Method->getTypeQualifiers());
1015 if (ObjectTypeQualifiers == MethodQuals)
1016 R.Priority += CCD_ObjectQualifierMatch;
1017 else if (ObjectTypeQualifiers - MethodQuals) {
1018 // The method cannot be invoked, because doing so would drop
1019 // qualifiers.
1020 return;
1021 }
1022 }
1023
Douglas Gregorc580c522010-01-14 01:09:38 +00001024 // Insert this result into the set of results.
1025 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +00001026
1027 if (!AsNestedNameSpecifier)
1028 MaybeAddConstructorResults(R);
Douglas Gregorc580c522010-01-14 01:09:38 +00001029}
1030
Douglas Gregor78a21012010-01-14 16:01:26 +00001031void ResultBuilder::AddResult(Result R) {
1032 assert(R.Kind != Result::RK_Declaration &&
1033 "Declaration results need more context");
1034 Results.push_back(R);
1035}
1036
Douglas Gregor3545ff42009-09-21 16:56:56 +00001037/// \brief Enter into a new scope.
Benjamin Kramer3204b152015-05-29 19:42:19 +00001038void ResultBuilder::EnterNewScope() { ShadowMaps.emplace_back(); }
Douglas Gregor3545ff42009-09-21 16:56:56 +00001039
1040/// \brief Exit from the current scope.
1041void ResultBuilder::ExitScope() {
Douglas Gregor05e7ca32009-12-06 20:23:50 +00001042 for (ShadowMap::iterator E = ShadowMaps.back().begin(),
1043 EEnd = ShadowMaps.back().end();
1044 E != EEnd;
1045 ++E)
1046 E->second.Destroy();
1047
Douglas Gregor3545ff42009-09-21 16:56:56 +00001048 ShadowMaps.pop_back();
1049}
1050
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001051/// \brief Determines whether this given declaration will be found by
1052/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001053bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001054 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1055
Richard Smith541b38b2013-09-20 01:15:31 +00001056 // If name lookup finds a local extern declaration, then we are in a
1057 // context where it behaves like an ordinary name.
1058 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001059 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001060 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001061 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001062 if (isa<ObjCIvarDecl>(ND))
1063 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001064 }
1065
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001066 return ND->getIdentifierNamespace() & IDNS;
1067}
1068
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001069/// \brief Determines whether this given declaration will be found by
Douglas Gregor70febae2010-05-28 00:49:12 +00001070/// ordinary name lookup but is not a type name.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001071bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001072 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1073 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
1074 return false;
1075
Richard Smith541b38b2013-09-20 01:15:31 +00001076 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001077 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001078 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001079 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001080 if (isa<ObjCIvarDecl>(ND))
1081 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001082 }
1083
Douglas Gregor70febae2010-05-28 00:49:12 +00001084 return ND->getIdentifierNamespace() & IDNS;
1085}
1086
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001087bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const {
Douglas Gregor85b50632010-07-28 21:50:18 +00001088 if (!IsOrdinaryNonTypeName(ND))
1089 return 0;
1090
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001091 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
Douglas Gregor85b50632010-07-28 21:50:18 +00001092 if (VD->getType()->isIntegralOrEnumerationType())
1093 return true;
1094
1095 return false;
1096}
1097
Douglas Gregor70febae2010-05-28 00:49:12 +00001098/// \brief Determines whether this given declaration will be found by
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001099/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001100bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001101 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1102
Richard Smith541b38b2013-09-20 01:15:31 +00001103 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001104 if (SemaRef.getLangOpts().CPlusPlus)
John McCalle87beb22010-04-23 18:46:30 +00001105 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001106
1107 return (ND->getIdentifierNamespace() & IDNS) &&
Douglas Gregor70febae2010-05-28 00:49:12 +00001108 !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) &&
1109 !isa<ObjCPropertyDecl>(ND);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001110}
1111
Douglas Gregor3545ff42009-09-21 16:56:56 +00001112/// \brief Determines whether the given declaration is suitable as the
1113/// start of a C++ nested-name-specifier, e.g., a class or namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001114bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001115 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001116 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001117 ND = ClassTemplate->getTemplatedDecl();
1118
1119 return SemaRef.isAcceptableNestedNameSpecifier(ND);
1120}
1121
1122/// \brief Determines whether the given declaration is an enumeration.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001123bool ResultBuilder::IsEnum(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001124 return isa<EnumDecl>(ND);
1125}
1126
1127/// \brief Determines whether the given declaration is a class or struct.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001128bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001129 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001130 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001131 ND = ClassTemplate->getTemplatedDecl();
Joao Matosdc86f942012-08-31 18:45:21 +00001132
1133 // For purposes of this check, interfaces match too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001134 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001135 return RD->getTagKind() == TTK_Class ||
Joao Matosdc86f942012-08-31 18:45:21 +00001136 RD->getTagKind() == TTK_Struct ||
1137 RD->getTagKind() == TTK_Interface;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001138
1139 return false;
1140}
1141
1142/// \brief Determines whether the given declaration is a union.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001143bool ResultBuilder::IsUnion(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001144 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001145 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001146 ND = ClassTemplate->getTemplatedDecl();
1147
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001148 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001149 return RD->getTagKind() == TTK_Union;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001150
1151 return false;
1152}
1153
1154/// \brief Determines whether the given declaration is a namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001155bool ResultBuilder::IsNamespace(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001156 return isa<NamespaceDecl>(ND);
1157}
1158
1159/// \brief Determines whether the given declaration is a namespace or
1160/// namespace alias.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001161bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001162 return isa<NamespaceDecl>(ND->getUnderlyingDecl());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001163}
1164
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001165/// \brief Determines whether the given declaration is a type.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001166bool ResultBuilder::IsType(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001167 ND = ND->getUnderlyingDecl();
Douglas Gregor99fa2642010-08-24 01:06:58 +00001168 return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor3545ff42009-09-21 16:56:56 +00001169}
1170
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001171/// \brief Determines which members of a class should be visible via
1172/// "." or "->". Only value declarations, nested name specifiers, and
1173/// using declarations thereof should show up.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001174bool ResultBuilder::IsMember(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001175 ND = ND->getUnderlyingDecl();
Douglas Gregor70788392009-12-11 18:14:22 +00001176 return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) ||
Richard Smithf2005d32015-12-29 23:34:32 +00001177 isa<ObjCPropertyDecl>(ND);
Douglas Gregore412a5a2009-09-23 22:26:46 +00001178}
1179
Douglas Gregora817a192010-05-27 23:06:34 +00001180static bool isObjCReceiverType(ASTContext &C, QualType T) {
1181 T = C.getCanonicalType(T);
1182 switch (T->getTypeClass()) {
1183 case Type::ObjCObject:
1184 case Type::ObjCInterface:
1185 case Type::ObjCObjectPointer:
1186 return true;
1187
1188 case Type::Builtin:
1189 switch (cast<BuiltinType>(T)->getKind()) {
1190 case BuiltinType::ObjCId:
1191 case BuiltinType::ObjCClass:
1192 case BuiltinType::ObjCSel:
1193 return true;
1194
1195 default:
1196 break;
1197 }
1198 return false;
1199
1200 default:
1201 break;
1202 }
1203
David Blaikiebbafb8a2012-03-11 07:00:24 +00001204 if (!C.getLangOpts().CPlusPlus)
Douglas Gregora817a192010-05-27 23:06:34 +00001205 return false;
1206
1207 // FIXME: We could perform more analysis here to determine whether a
1208 // particular class type has any conversions to Objective-C types. For now,
1209 // just accept all class types.
1210 return T->isDependentType() || T->isRecordType();
1211}
1212
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001213bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const {
Douglas Gregora817a192010-05-27 23:06:34 +00001214 QualType T = getDeclUsageType(SemaRef.Context, ND);
1215 if (T.isNull())
1216 return false;
1217
1218 T = SemaRef.Context.getBaseElementType(T);
1219 return isObjCReceiverType(SemaRef.Context, T);
1220}
1221
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001222bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const {
Douglas Gregord8c61782012-02-15 15:34:24 +00001223 if (IsObjCMessageReceiver(ND))
1224 return true;
1225
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001226 const VarDecl *Var = dyn_cast<VarDecl>(ND);
Douglas Gregord8c61782012-02-15 15:34:24 +00001227 if (!Var)
1228 return false;
1229
1230 return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>();
1231}
1232
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001233bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001234 if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) ||
1235 (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND)))
Douglas Gregor68762e72010-08-23 21:17:50 +00001236 return false;
1237
1238 QualType T = getDeclUsageType(SemaRef.Context, ND);
1239 if (T.isNull())
1240 return false;
1241
1242 T = SemaRef.Context.getBaseElementType(T);
1243 return T->isObjCObjectType() || T->isObjCObjectPointerType() ||
1244 T->isObjCIdType() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001245 (SemaRef.getLangOpts().CPlusPlus && T->isRecordType());
Douglas Gregor68762e72010-08-23 21:17:50 +00001246}
Douglas Gregora817a192010-05-27 23:06:34 +00001247
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001248bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001249 return false;
1250}
1251
James Dennettf1243872012-06-17 05:33:25 +00001252/// \brief Determines whether the given declaration is an Objective-C
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001253/// instance variable.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001254bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const {
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001255 return isa<ObjCIvarDecl>(ND);
1256}
1257
Douglas Gregorc580c522010-01-14 01:09:38 +00001258namespace {
1259 /// \brief Visible declaration consumer that adds a code-completion result
1260 /// for each visible declaration.
1261 class CodeCompletionDeclConsumer : public VisibleDeclConsumer {
1262 ResultBuilder &Results;
1263 DeclContext *CurContext;
1264
1265 public:
1266 CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext)
1267 : Results(Results), CurContext(CurContext) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00001268
1269 void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1270 bool InBaseClass) override {
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001271 bool Accessible = true;
Douglas Gregor03ba1882011-11-03 16:51:37 +00001272 if (Ctx)
1273 Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx);
Craig Topperc3ec1492014-05-26 06:22:03 +00001274
1275 ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr,
1276 false, Accessible);
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001277 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +00001278 }
1279 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001280}
Douglas Gregorc580c522010-01-14 01:09:38 +00001281
Douglas Gregor3545ff42009-09-21 16:56:56 +00001282/// \brief Add type specifiers for the current language as keyword results.
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001283static void AddTypeSpecifierResults(const LangOptions &LangOpts,
Douglas Gregor3545ff42009-09-21 16:56:56 +00001284 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001285 typedef CodeCompletionResult Result;
Douglas Gregora2db7932010-05-26 22:00:08 +00001286 Results.AddResult(Result("short", CCP_Type));
1287 Results.AddResult(Result("long", CCP_Type));
1288 Results.AddResult(Result("signed", CCP_Type));
1289 Results.AddResult(Result("unsigned", CCP_Type));
1290 Results.AddResult(Result("void", CCP_Type));
1291 Results.AddResult(Result("char", CCP_Type));
1292 Results.AddResult(Result("int", CCP_Type));
1293 Results.AddResult(Result("float", CCP_Type));
1294 Results.AddResult(Result("double", CCP_Type));
1295 Results.AddResult(Result("enum", CCP_Type));
1296 Results.AddResult(Result("struct", CCP_Type));
1297 Results.AddResult(Result("union", CCP_Type));
1298 Results.AddResult(Result("const", CCP_Type));
1299 Results.AddResult(Result("volatile", CCP_Type));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001300
Douglas Gregor3545ff42009-09-21 16:56:56 +00001301 if (LangOpts.C99) {
1302 // C99-specific
Douglas Gregora2db7932010-05-26 22:00:08 +00001303 Results.AddResult(Result("_Complex", CCP_Type));
1304 Results.AddResult(Result("_Imaginary", CCP_Type));
1305 Results.AddResult(Result("_Bool", CCP_Type));
1306 Results.AddResult(Result("restrict", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001307 }
1308
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001309 CodeCompletionBuilder Builder(Results.getAllocator(),
1310 Results.getCodeCompletionTUInfo());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001311 if (LangOpts.CPlusPlus) {
1312 // C++-specific
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00001313 Results.AddResult(Result("bool", CCP_Type +
1314 (LangOpts.ObjC1? CCD_bool_in_ObjC : 0)));
Douglas Gregora2db7932010-05-26 22:00:08 +00001315 Results.AddResult(Result("class", CCP_Type));
1316 Results.AddResult(Result("wchar_t", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001317
Douglas Gregorf4c33342010-05-28 00:22:41 +00001318 // typename qualified-id
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001319 Builder.AddTypedTextChunk("typename");
1320 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1321 Builder.AddPlaceholderChunk("qualifier");
1322 Builder.AddTextChunk("::");
1323 Builder.AddPlaceholderChunk("name");
1324 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001325
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001326 if (LangOpts.CPlusPlus11) {
Douglas Gregora2db7932010-05-26 22:00:08 +00001327 Results.AddResult(Result("auto", CCP_Type));
1328 Results.AddResult(Result("char16_t", CCP_Type));
1329 Results.AddResult(Result("char32_t", CCP_Type));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001330
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001331 Builder.AddTypedTextChunk("decltype");
1332 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1333 Builder.AddPlaceholderChunk("expression");
1334 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1335 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001336 }
Alex Lorenz46eed9d2017-02-13 23:35:59 +00001337 } else
1338 Results.AddResult(Result("__auto_type", CCP_Type));
1339
Douglas Gregor3545ff42009-09-21 16:56:56 +00001340 // GNU extensions
1341 if (LangOpts.GNUMode) {
1342 // FIXME: Enable when we actually support decimal floating point.
Douglas Gregor78a21012010-01-14 16:01:26 +00001343 // Results.AddResult(Result("_Decimal32"));
1344 // Results.AddResult(Result("_Decimal64"));
1345 // Results.AddResult(Result("_Decimal128"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001346
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001347 Builder.AddTypedTextChunk("typeof");
1348 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1349 Builder.AddPlaceholderChunk("expression");
1350 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001351
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001352 Builder.AddTypedTextChunk("typeof");
1353 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1354 Builder.AddPlaceholderChunk("type");
1355 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1356 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001357 }
Douglas Gregor86b42682015-06-19 18:27:52 +00001358
1359 // Nullability
Douglas Gregoraea7afd2015-06-24 22:02:08 +00001360 Results.AddResult(Result("_Nonnull", CCP_Type));
1361 Results.AddResult(Result("_Null_unspecified", CCP_Type));
1362 Results.AddResult(Result("_Nullable", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001363}
1364
John McCallfaf5fb42010-08-26 23:41:50 +00001365static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001366 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001367 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001368 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001369 // Note: we don't suggest either "auto" or "register", because both
1370 // are pointless as storage specifiers. Elsewhere, we suggest "auto"
1371 // in C++0x as a type specifier.
Douglas Gregor78a21012010-01-14 16:01:26 +00001372 Results.AddResult(Result("extern"));
1373 Results.AddResult(Result("static"));
Alex Lorenz8f4d3992017-02-13 23:19:40 +00001374
1375 if (LangOpts.CPlusPlus11) {
1376 CodeCompletionAllocator &Allocator = Results.getAllocator();
1377 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
1378
1379 // alignas
1380 Builder.AddTypedTextChunk("alignas");
1381 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1382 Builder.AddPlaceholderChunk("expression");
1383 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1384 Results.AddResult(Result(Builder.TakeString()));
1385
1386 Results.AddResult(Result("constexpr"));
1387 Results.AddResult(Result("thread_local"));
1388 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001389}
1390
John McCallfaf5fb42010-08-26 23:41:50 +00001391static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001392 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001393 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001394 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001395 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001396 case Sema::PCC_Class:
1397 case Sema::PCC_MemberTemplate:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001398 if (LangOpts.CPlusPlus) {
Douglas Gregor78a21012010-01-14 16:01:26 +00001399 Results.AddResult(Result("explicit"));
1400 Results.AddResult(Result("friend"));
1401 Results.AddResult(Result("mutable"));
1402 Results.AddResult(Result("virtual"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001403 }
1404 // Fall through
1405
John McCallfaf5fb42010-08-26 23:41:50 +00001406 case Sema::PCC_ObjCInterface:
1407 case Sema::PCC_ObjCImplementation:
1408 case Sema::PCC_Namespace:
1409 case Sema::PCC_Template:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001410 if (LangOpts.CPlusPlus || LangOpts.C99)
Douglas Gregor78a21012010-01-14 16:01:26 +00001411 Results.AddResult(Result("inline"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001412 break;
1413
John McCallfaf5fb42010-08-26 23:41:50 +00001414 case Sema::PCC_ObjCInstanceVariableList:
1415 case Sema::PCC_Expression:
1416 case Sema::PCC_Statement:
1417 case Sema::PCC_ForInit:
1418 case Sema::PCC_Condition:
1419 case Sema::PCC_RecoveryInFunction:
1420 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001421 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001422 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001423 break;
1424 }
1425}
1426
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001427static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt);
1428static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt);
1429static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00001430 ResultBuilder &Results,
1431 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001432static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001433 ResultBuilder &Results,
1434 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001435static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001436 ResultBuilder &Results,
1437 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001438static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt);
Douglas Gregorf1934162010-01-13 21:24:21 +00001439
Douglas Gregorf4c33342010-05-28 00:22:41 +00001440static void AddTypedefResult(ResultBuilder &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001441 CodeCompletionBuilder Builder(Results.getAllocator(),
1442 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001443 Builder.AddTypedTextChunk("typedef");
1444 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1445 Builder.AddPlaceholderChunk("type");
1446 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1447 Builder.AddPlaceholderChunk("name");
1448 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001449}
1450
John McCallfaf5fb42010-08-26 23:41:50 +00001451static bool WantTypesInContext(Sema::ParserCompletionContext CCC,
Douglas Gregor70febae2010-05-28 00:49:12 +00001452 const LangOptions &LangOpts) {
Douglas Gregor70febae2010-05-28 00:49:12 +00001453 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001454 case Sema::PCC_Namespace:
1455 case Sema::PCC_Class:
1456 case Sema::PCC_ObjCInstanceVariableList:
1457 case Sema::PCC_Template:
1458 case Sema::PCC_MemberTemplate:
1459 case Sema::PCC_Statement:
1460 case Sema::PCC_RecoveryInFunction:
1461 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001462 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001463 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor70febae2010-05-28 00:49:12 +00001464 return true;
1465
John McCallfaf5fb42010-08-26 23:41:50 +00001466 case Sema::PCC_Expression:
1467 case Sema::PCC_Condition:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001468 return LangOpts.CPlusPlus;
1469
1470 case Sema::PCC_ObjCInterface:
1471 case Sema::PCC_ObjCImplementation:
Douglas Gregor70febae2010-05-28 00:49:12 +00001472 return false;
1473
John McCallfaf5fb42010-08-26 23:41:50 +00001474 case Sema::PCC_ForInit:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001475 return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99;
Douglas Gregor70febae2010-05-28 00:49:12 +00001476 }
David Blaikie8a40f702012-01-17 06:56:22 +00001477
1478 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor70febae2010-05-28 00:49:12 +00001479}
1480
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001481static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context,
1482 const Preprocessor &PP) {
1483 PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001484 Policy.AnonymousTagLocations = false;
1485 Policy.SuppressStrongLifetime = true;
Douglas Gregor2e10cf92011-11-03 00:16:13 +00001486 Policy.SuppressUnwrittenScope = true;
Douglas Gregore5c79d52011-10-18 21:20:17 +00001487 return Policy;
1488}
1489
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001490/// \brief Retrieve a printing policy suitable for code completion.
1491static PrintingPolicy getCompletionPrintingPolicy(Sema &S) {
1492 return getCompletionPrintingPolicy(S.Context, S.PP);
1493}
1494
Douglas Gregore5c79d52011-10-18 21:20:17 +00001495/// \brief Retrieve the string representation of the given type as a string
1496/// that has the appropriate lifetime for code completion.
1497///
1498/// This routine provides a fast path where we provide constant strings for
1499/// common type names.
1500static const char *GetCompletionTypeString(QualType T,
1501 ASTContext &Context,
1502 const PrintingPolicy &Policy,
1503 CodeCompletionAllocator &Allocator) {
1504 if (!T.getLocalQualifiers()) {
1505 // Built-in type names are constant strings.
1506 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T))
Argyrios Kyrtzidisbbff3da2012-05-05 04:20:28 +00001507 return BT->getNameAsCString(Policy);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001508
1509 // Anonymous tag types are constant strings.
1510 if (const TagType *TagT = dyn_cast<TagType>(T))
1511 if (TagDecl *Tag = TagT->getDecl())
John McCall5ea95772013-03-09 00:54:27 +00001512 if (!Tag->hasNameForLinkage()) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001513 switch (Tag->getTagKind()) {
1514 case TTK_Struct: return "struct <anonymous>";
Joao Matosdc86f942012-08-31 18:45:21 +00001515 case TTK_Interface: return "__interface <anonymous>";
1516 case TTK_Class: return "class <anonymous>";
Douglas Gregore5c79d52011-10-18 21:20:17 +00001517 case TTK_Union: return "union <anonymous>";
1518 case TTK_Enum: return "enum <anonymous>";
1519 }
1520 }
1521 }
1522
1523 // Slow path: format the type as a string.
1524 std::string Result;
1525 T.getAsStringInternal(Result, Policy);
1526 return Allocator.CopyString(Result);
1527}
1528
Douglas Gregord8c61782012-02-15 15:34:24 +00001529/// \brief Add a completion for "this", if we're in a member function.
1530static void addThisCompletion(Sema &S, ResultBuilder &Results) {
1531 QualType ThisTy = S.getCurrentThisType();
1532 if (ThisTy.isNull())
1533 return;
1534
1535 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001536 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregord8c61782012-02-15 15:34:24 +00001537 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
1538 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
1539 S.Context,
1540 Policy,
1541 Allocator));
1542 Builder.AddTypedTextChunk("this");
Joao Matosdc86f942012-08-31 18:45:21 +00001543 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregord8c61782012-02-15 15:34:24 +00001544}
1545
Alex Lorenz8f4d3992017-02-13 23:19:40 +00001546static void AddStaticAssertResult(CodeCompletionBuilder &Builder,
1547 ResultBuilder &Results,
1548 const LangOptions &LangOpts) {
1549 if (!LangOpts.CPlusPlus11)
1550 return;
1551
1552 Builder.AddTypedTextChunk("static_assert");
1553 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1554 Builder.AddPlaceholderChunk("expression");
1555 Builder.AddChunk(CodeCompletionString::CK_Comma);
1556 Builder.AddPlaceholderChunk("message");
1557 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1558 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
1559}
1560
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001561/// \brief Add language constructs that show up for "ordinary" names.
John McCallfaf5fb42010-08-26 23:41:50 +00001562static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001563 Scope *S,
1564 Sema &SemaRef,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001565 ResultBuilder &Results) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001566 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001567 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001568
John McCall276321a2010-08-25 06:19:51 +00001569 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001570 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001571 case Sema::PCC_Namespace:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001572 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001573 if (Results.includeCodePatterns()) {
1574 // namespace <identifier> { declarations }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001575 Builder.AddTypedTextChunk("namespace");
1576 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1577 Builder.AddPlaceholderChunk("identifier");
1578 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1579 Builder.AddPlaceholderChunk("declarations");
1580 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1581 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1582 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001583 }
1584
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001585 // namespace identifier = identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001586 Builder.AddTypedTextChunk("namespace");
1587 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1588 Builder.AddPlaceholderChunk("name");
1589 Builder.AddChunk(CodeCompletionString::CK_Equal);
1590 Builder.AddPlaceholderChunk("namespace");
1591 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001592
1593 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001594 Builder.AddTypedTextChunk("using");
1595 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1596 Builder.AddTextChunk("namespace");
1597 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1598 Builder.AddPlaceholderChunk("identifier");
1599 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001600
1601 // asm(string-literal)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001602 Builder.AddTypedTextChunk("asm");
1603 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1604 Builder.AddPlaceholderChunk("string-literal");
1605 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1606 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001607
Douglas Gregorf4c33342010-05-28 00:22:41 +00001608 if (Results.includeCodePatterns()) {
1609 // Explicit template instantiation
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001610 Builder.AddTypedTextChunk("template");
1611 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1612 Builder.AddPlaceholderChunk("declaration");
1613 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001614 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001615 }
Douglas Gregorf1934162010-01-13 21:24:21 +00001616
David Blaikiebbafb8a2012-03-11 07:00:24 +00001617 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001618 AddObjCTopLevelResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001619
Douglas Gregorf4c33342010-05-28 00:22:41 +00001620 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001621 // Fall through
1622
John McCallfaf5fb42010-08-26 23:41:50 +00001623 case Sema::PCC_Class:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001624 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001625 // Using declaration
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001626 Builder.AddTypedTextChunk("using");
1627 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1628 Builder.AddPlaceholderChunk("qualifier");
1629 Builder.AddTextChunk("::");
1630 Builder.AddPlaceholderChunk("name");
1631 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001632
Douglas Gregorf4c33342010-05-28 00:22:41 +00001633 // using typename qualifier::name (only in a dependent context)
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001634 if (SemaRef.CurContext->isDependentContext()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001635 Builder.AddTypedTextChunk("using");
1636 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1637 Builder.AddTextChunk("typename");
1638 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1639 Builder.AddPlaceholderChunk("qualifier");
1640 Builder.AddTextChunk("::");
1641 Builder.AddPlaceholderChunk("name");
1642 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001643 }
1644
Alex Lorenz8f4d3992017-02-13 23:19:40 +00001645 AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts());
1646
John McCallfaf5fb42010-08-26 23:41:50 +00001647 if (CCC == Sema::PCC_Class) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001648 AddTypedefResult(Results);
1649
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001650 // public:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001651 Builder.AddTypedTextChunk("public");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001652 if (Results.includeCodePatterns())
1653 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001654 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001655
1656 // protected:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001657 Builder.AddTypedTextChunk("protected");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001658 if (Results.includeCodePatterns())
1659 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001660 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001661
1662 // private:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001663 Builder.AddTypedTextChunk("private");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001664 if (Results.includeCodePatterns())
1665 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001666 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001667 }
1668 }
1669 // Fall through
1670
John McCallfaf5fb42010-08-26 23:41:50 +00001671 case Sema::PCC_Template:
1672 case Sema::PCC_MemberTemplate:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001673 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001674 // template < parameters >
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001675 Builder.AddTypedTextChunk("template");
1676 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1677 Builder.AddPlaceholderChunk("parameters");
1678 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1679 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001680 }
1681
David Blaikiebbafb8a2012-03-11 07:00:24 +00001682 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1683 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001684 break;
1685
John McCallfaf5fb42010-08-26 23:41:50 +00001686 case Sema::PCC_ObjCInterface:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001687 AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true);
1688 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1689 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001690 break;
1691
John McCallfaf5fb42010-08-26 23:41:50 +00001692 case Sema::PCC_ObjCImplementation:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001693 AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true);
1694 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1695 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001696 break;
1697
John McCallfaf5fb42010-08-26 23:41:50 +00001698 case Sema::PCC_ObjCInstanceVariableList:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001699 AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true);
Douglas Gregor48d46252010-01-13 21:54:15 +00001700 break;
1701
John McCallfaf5fb42010-08-26 23:41:50 +00001702 case Sema::PCC_RecoveryInFunction:
1703 case Sema::PCC_Statement: {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001704 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001705
David Blaikiebbafb8a2012-03-11 07:00:24 +00001706 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() &&
1707 SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001708 Builder.AddTypedTextChunk("try");
1709 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1710 Builder.AddPlaceholderChunk("statements");
1711 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1712 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1713 Builder.AddTextChunk("catch");
1714 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1715 Builder.AddPlaceholderChunk("declaration");
1716 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1717 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1718 Builder.AddPlaceholderChunk("statements");
1719 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1720 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1721 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001722 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001723 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001724 AddObjCStatementResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001725
Douglas Gregorf64acca2010-05-25 21:41:55 +00001726 if (Results.includeCodePatterns()) {
1727 // if (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001728 Builder.AddTypedTextChunk("if");
1729 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001730 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001731 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001732 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001733 Builder.AddPlaceholderChunk("expression");
1734 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1735 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1736 Builder.AddPlaceholderChunk("statements");
1737 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1738 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1739 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001740
Douglas Gregorf64acca2010-05-25 21:41:55 +00001741 // switch (condition) { }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001742 Builder.AddTypedTextChunk("switch");
1743 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001744 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001745 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001746 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001747 Builder.AddPlaceholderChunk("expression");
1748 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1749 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1750 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1751 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1752 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001753 }
1754
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001755 // Switch-specific statements.
John McCallaab3e412010-08-25 08:40:02 +00001756 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001757 // case expression:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001758 Builder.AddTypedTextChunk("case");
1759 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1760 Builder.AddPlaceholderChunk("expression");
1761 Builder.AddChunk(CodeCompletionString::CK_Colon);
1762 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001763
1764 // default:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001765 Builder.AddTypedTextChunk("default");
1766 Builder.AddChunk(CodeCompletionString::CK_Colon);
1767 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001768 }
1769
Douglas Gregorf64acca2010-05-25 21:41:55 +00001770 if (Results.includeCodePatterns()) {
1771 /// while (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001772 Builder.AddTypedTextChunk("while");
1773 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001774 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001775 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001776 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001777 Builder.AddPlaceholderChunk("expression");
1778 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1779 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1780 Builder.AddPlaceholderChunk("statements");
1781 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1782 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1783 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001784
1785 // do { statements } while ( expression );
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001786 Builder.AddTypedTextChunk("do");
1787 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1788 Builder.AddPlaceholderChunk("statements");
1789 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1790 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1791 Builder.AddTextChunk("while");
1792 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1793 Builder.AddPlaceholderChunk("expression");
1794 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1795 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001796
Douglas Gregorf64acca2010-05-25 21:41:55 +00001797 // for ( for-init-statement ; condition ; expression ) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001798 Builder.AddTypedTextChunk("for");
1799 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001800 if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001801 Builder.AddPlaceholderChunk("init-statement");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001802 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001803 Builder.AddPlaceholderChunk("init-expression");
1804 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1805 Builder.AddPlaceholderChunk("condition");
1806 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1807 Builder.AddPlaceholderChunk("inc-expression");
1808 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1809 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1810 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1811 Builder.AddPlaceholderChunk("statements");
1812 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1813 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1814 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001815 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001816
1817 if (S->getContinueParent()) {
1818 // continue ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001819 Builder.AddTypedTextChunk("continue");
1820 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001821 }
1822
1823 if (S->getBreakParent()) {
1824 // break ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001825 Builder.AddTypedTextChunk("break");
1826 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001827 }
1828
1829 // "return expression ;" or "return ;", depending on whether we
1830 // know the function is void or not.
1831 bool isVoid = false;
1832 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001833 isVoid = Function->getReturnType()->isVoidType();
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001834 else if (ObjCMethodDecl *Method
1835 = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001836 isVoid = Method->getReturnType()->isVoidType();
Douglas Gregor9a28e842010-03-01 23:15:13 +00001837 else if (SemaRef.getCurBlock() &&
1838 !SemaRef.getCurBlock()->ReturnType.isNull())
1839 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001840 Builder.AddTypedTextChunk("return");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001841 if (!isVoid) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001842 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1843 Builder.AddPlaceholderChunk("expression");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001844 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001845 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001846
Douglas Gregorf4c33342010-05-28 00:22:41 +00001847 // goto identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001848 Builder.AddTypedTextChunk("goto");
1849 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1850 Builder.AddPlaceholderChunk("label");
1851 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001852
Douglas Gregorf4c33342010-05-28 00:22:41 +00001853 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001854 Builder.AddTypedTextChunk("using");
1855 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1856 Builder.AddTextChunk("namespace");
1857 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1858 Builder.AddPlaceholderChunk("identifier");
1859 Results.AddResult(Result(Builder.TakeString()));
Alex Lorenz8f4d3992017-02-13 23:19:40 +00001860
1861 AddStaticAssertResult(Builder, Results, SemaRef.getLangOpts());
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001862 }
Galina Kistanovabe3ba9da2017-06-07 06:31:55 +00001863 LLVM_FALLTHROUGH;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001864
1865 // Fall through (for statement expressions).
John McCallfaf5fb42010-08-26 23:41:50 +00001866 case Sema::PCC_ForInit:
1867 case Sema::PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001868 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001869 // Fall through: conditions and statements can have expressions.
Galina Kistanova33399112017-06-03 06:35:06 +00001870 LLVM_FALLTHROUGH;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001871
Douglas Gregor5e35d592010-09-14 23:59:36 +00001872 case Sema::PCC_ParenthesizedExpression:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001873 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001874 CCC == Sema::PCC_ParenthesizedExpression) {
1875 // (__bridge <type>)<expression>
1876 Builder.AddTypedTextChunk("__bridge");
1877 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1878 Builder.AddPlaceholderChunk("type");
1879 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1880 Builder.AddPlaceholderChunk("expression");
1881 Results.AddResult(Result(Builder.TakeString()));
1882
1883 // (__bridge_transfer <Objective-C type>)<expression>
1884 Builder.AddTypedTextChunk("__bridge_transfer");
1885 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1886 Builder.AddPlaceholderChunk("Objective-C type");
1887 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1888 Builder.AddPlaceholderChunk("expression");
1889 Results.AddResult(Result(Builder.TakeString()));
1890
1891 // (__bridge_retained <CF type>)<expression>
1892 Builder.AddTypedTextChunk("__bridge_retained");
1893 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1894 Builder.AddPlaceholderChunk("CF type");
1895 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1896 Builder.AddPlaceholderChunk("expression");
1897 Results.AddResult(Result(Builder.TakeString()));
1898 }
1899 // Fall through
Galina Kistanova33399112017-06-03 06:35:06 +00001900 LLVM_FALLTHROUGH;
John McCall31168b02011-06-15 23:02:42 +00001901
John McCallfaf5fb42010-08-26 23:41:50 +00001902 case Sema::PCC_Expression: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001903 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001904 // 'this', if we're in a non-static member function.
Douglas Gregord8c61782012-02-15 15:34:24 +00001905 addThisCompletion(SemaRef, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001906
Douglas Gregore5c79d52011-10-18 21:20:17 +00001907 // true
1908 Builder.AddResultTypeChunk("bool");
1909 Builder.AddTypedTextChunk("true");
1910 Results.AddResult(Result(Builder.TakeString()));
1911
1912 // false
1913 Builder.AddResultTypeChunk("bool");
1914 Builder.AddTypedTextChunk("false");
1915 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001916
David Blaikiebbafb8a2012-03-11 07:00:24 +00001917 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001918 // dynamic_cast < type-id > ( expression )
1919 Builder.AddTypedTextChunk("dynamic_cast");
1920 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1921 Builder.AddPlaceholderChunk("type");
1922 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1923 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1924 Builder.AddPlaceholderChunk("expression");
1925 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1926 Results.AddResult(Result(Builder.TakeString()));
1927 }
Douglas Gregorf4c33342010-05-28 00:22:41 +00001928
1929 // static_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001930 Builder.AddTypedTextChunk("static_cast");
1931 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1932 Builder.AddPlaceholderChunk("type");
1933 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1934 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1935 Builder.AddPlaceholderChunk("expression");
1936 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1937 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001938
Douglas Gregorf4c33342010-05-28 00:22:41 +00001939 // reinterpret_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001940 Builder.AddTypedTextChunk("reinterpret_cast");
1941 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1942 Builder.AddPlaceholderChunk("type");
1943 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1944 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1945 Builder.AddPlaceholderChunk("expression");
1946 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1947 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001948
Douglas Gregorf4c33342010-05-28 00:22:41 +00001949 // const_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001950 Builder.AddTypedTextChunk("const_cast");
1951 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1952 Builder.AddPlaceholderChunk("type");
1953 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1954 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1955 Builder.AddPlaceholderChunk("expression");
1956 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1957 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001958
David Blaikiebbafb8a2012-03-11 07:00:24 +00001959 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001960 // typeid ( expression-or-type )
Douglas Gregore5c79d52011-10-18 21:20:17 +00001961 Builder.AddResultTypeChunk("std::type_info");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001962 Builder.AddTypedTextChunk("typeid");
1963 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1964 Builder.AddPlaceholderChunk("expression-or-type");
1965 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1966 Results.AddResult(Result(Builder.TakeString()));
1967 }
1968
Douglas Gregorf4c33342010-05-28 00:22:41 +00001969 // new T ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001970 Builder.AddTypedTextChunk("new");
1971 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1972 Builder.AddPlaceholderChunk("type");
1973 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1974 Builder.AddPlaceholderChunk("expressions");
1975 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1976 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001977
Douglas Gregorf4c33342010-05-28 00:22:41 +00001978 // new T [ ] ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001979 Builder.AddTypedTextChunk("new");
1980 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1981 Builder.AddPlaceholderChunk("type");
1982 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1983 Builder.AddPlaceholderChunk("size");
1984 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1985 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1986 Builder.AddPlaceholderChunk("expressions");
1987 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1988 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001989
Douglas Gregorf4c33342010-05-28 00:22:41 +00001990 // delete expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001991 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001992 Builder.AddTypedTextChunk("delete");
1993 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1994 Builder.AddPlaceholderChunk("expression");
1995 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001996
Douglas Gregorf4c33342010-05-28 00:22:41 +00001997 // delete [] expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001998 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001999 Builder.AddTypedTextChunk("delete");
2000 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
2001 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
2002 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
2003 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
2004 Builder.AddPlaceholderChunk("expression");
2005 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002006
David Blaikiebbafb8a2012-03-11 07:00:24 +00002007 if (SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00002008 // throw expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002009 Builder.AddResultTypeChunk("void");
Douglas Gregorc05f6572011-04-12 02:47:21 +00002010 Builder.AddTypedTextChunk("throw");
2011 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
2012 Builder.AddPlaceholderChunk("expression");
2013 Results.AddResult(Result(Builder.TakeString()));
2014 }
Douglas Gregor4205fef2011-10-18 16:29:03 +00002015
Douglas Gregora2db7932010-05-26 22:00:08 +00002016 // FIXME: Rethrow?
Douglas Gregor4205fef2011-10-18 16:29:03 +00002017
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002018 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregor4205fef2011-10-18 16:29:03 +00002019 // nullptr
Douglas Gregore5c79d52011-10-18 21:20:17 +00002020 Builder.AddResultTypeChunk("std::nullptr_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00002021 Builder.AddTypedTextChunk("nullptr");
2022 Results.AddResult(Result(Builder.TakeString()));
2023
2024 // alignof
Douglas Gregore5c79d52011-10-18 21:20:17 +00002025 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00002026 Builder.AddTypedTextChunk("alignof");
2027 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2028 Builder.AddPlaceholderChunk("type");
2029 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2030 Results.AddResult(Result(Builder.TakeString()));
2031
2032 // noexcept
Douglas Gregore5c79d52011-10-18 21:20:17 +00002033 Builder.AddResultTypeChunk("bool");
Douglas Gregor4205fef2011-10-18 16:29:03 +00002034 Builder.AddTypedTextChunk("noexcept");
2035 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2036 Builder.AddPlaceholderChunk("expression");
2037 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2038 Results.AddResult(Result(Builder.TakeString()));
2039
2040 // sizeof... expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002041 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00002042 Builder.AddTypedTextChunk("sizeof...");
2043 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2044 Builder.AddPlaceholderChunk("parameter-pack");
2045 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2046 Results.AddResult(Result(Builder.TakeString()));
2047 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002048 }
2049
David Blaikiebbafb8a2012-03-11 07:00:24 +00002050 if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002051 // Add "super", if we're in an Objective-C class with a superclass.
Ted Kremenek305a0a72010-05-31 21:43:10 +00002052 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
2053 // The interface can be NULL.
2054 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
Douglas Gregore5c79d52011-10-18 21:20:17 +00002055 if (ID->getSuperClass()) {
2056 std::string SuperType;
2057 SuperType = ID->getSuperClass()->getNameAsString();
2058 if (Method->isInstanceMethod())
2059 SuperType += " *";
2060
2061 Builder.AddResultTypeChunk(Allocator.CopyString(SuperType));
2062 Builder.AddTypedTextChunk("super");
2063 Results.AddResult(Result(Builder.TakeString()));
2064 }
Ted Kremenek305a0a72010-05-31 21:43:10 +00002065 }
2066
Douglas Gregorf98e6a22010-01-13 23:51:12 +00002067 AddObjCExpressionResults(Results, true);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002068 }
2069
Jordan Rose58d54722012-06-30 21:33:57 +00002070 if (SemaRef.getLangOpts().C11) {
2071 // _Alignof
2072 Builder.AddResultTypeChunk("size_t");
Richard Smith20e883e2015-04-29 23:20:19 +00002073 if (SemaRef.PP.isMacroDefined("alignof"))
Jordan Rose58d54722012-06-30 21:33:57 +00002074 Builder.AddTypedTextChunk("alignof");
2075 else
2076 Builder.AddTypedTextChunk("_Alignof");
2077 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2078 Builder.AddPlaceholderChunk("type");
2079 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2080 Results.AddResult(Result(Builder.TakeString()));
2081 }
2082
Douglas Gregorf4c33342010-05-28 00:22:41 +00002083 // sizeof expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002084 Builder.AddResultTypeChunk("size_t");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002085 Builder.AddTypedTextChunk("sizeof");
2086 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2087 Builder.AddPlaceholderChunk("expression-or-type");
2088 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2089 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002090 break;
2091 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00002092
John McCallfaf5fb42010-08-26 23:41:50 +00002093 case Sema::PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00002094 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor99fa2642010-08-24 01:06:58 +00002095 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002096 }
2097
David Blaikiebbafb8a2012-03-11 07:00:24 +00002098 if (WantTypesInContext(CCC, SemaRef.getLangOpts()))
2099 AddTypeSpecifierResults(SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002100
David Blaikiebbafb8a2012-03-11 07:00:24 +00002101 if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type)
Douglas Gregor78a21012010-01-14 16:01:26 +00002102 Results.AddResult(Result("operator"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002103}
2104
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002105/// \brief If the given declaration has an associated type, add it as a result
2106/// type chunk.
2107static void AddResultTypeChunk(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002108 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002109 const NamedDecl *ND,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002110 QualType BaseType,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002111 CodeCompletionBuilder &Result) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002112 if (!ND)
2113 return;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002114
2115 // Skip constructors and conversion functions, which have their return types
2116 // built into their names.
2117 if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND))
2118 return;
2119
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002120 // Determine the type of the declaration (if it has a type).
Alp Tokera2794f92014-01-22 07:29:52 +00002121 QualType T;
2122 if (const FunctionDecl *Function = ND->getAsFunction())
Alp Toker314cc812014-01-25 16:55:45 +00002123 T = Function->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002124 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
2125 if (!BaseType.isNull())
2126 T = Method->getSendResultType(BaseType);
2127 else
2128 T = Method->getReturnType();
2129 } else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002130 T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext()));
2131 else if (isa<UnresolvedUsingValueDecl>(ND)) {
2132 /* Do nothing: ignore unresolved using declarations*/
Douglas Gregorc3425b12015-07-07 06:20:19 +00002133 } else if (const ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
2134 if (!BaseType.isNull())
2135 T = Ivar->getUsageType(BaseType);
2136 else
2137 T = Ivar->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002138 } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002139 T = Value->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002140 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) {
2141 if (!BaseType.isNull())
2142 T = Property->getUsageType(BaseType);
2143 else
2144 T = Property->getType();
2145 }
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002146
2147 if (T.isNull() || Context.hasSameType(T, Context.DependentTy))
2148 return;
2149
Douglas Gregor75acd922011-09-27 23:30:47 +00002150 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
Douglas Gregor304f9b02011-02-01 21:15:40 +00002151 Result.getAllocator()));
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002152}
2153
Richard Smith20e883e2015-04-29 23:20:19 +00002154static void MaybeAddSentinel(Preprocessor &PP,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002155 const NamedDecl *FunctionOrMethod,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002156 CodeCompletionBuilder &Result) {
Douglas Gregordbb71db2010-08-23 23:51:41 +00002157 if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>())
2158 if (Sentinel->getSentinel() == 0) {
Richard Smith20e883e2015-04-29 23:20:19 +00002159 if (PP.getLangOpts().ObjC1 && PP.isMacroDefined("nil"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002160 Result.AddTextChunk(", nil");
Richard Smith20e883e2015-04-29 23:20:19 +00002161 else if (PP.isMacroDefined("NULL"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002162 Result.AddTextChunk(", NULL");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002163 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002164 Result.AddTextChunk(", (void*)0");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002165 }
2166}
2167
Douglas Gregor86b42682015-06-19 18:27:52 +00002168static std::string formatObjCParamQualifiers(unsigned ObjCQuals,
2169 QualType &Type) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002170 std::string Result;
2171 if (ObjCQuals & Decl::OBJC_TQ_In)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002172 Result += "in ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002173 else if (ObjCQuals & Decl::OBJC_TQ_Inout)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002174 Result += "inout ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002175 else if (ObjCQuals & Decl::OBJC_TQ_Out)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002176 Result += "out ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002177 if (ObjCQuals & Decl::OBJC_TQ_Bycopy)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002178 Result += "bycopy ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002179 else if (ObjCQuals & Decl::OBJC_TQ_Byref)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002180 Result += "byref ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002181 if (ObjCQuals & Decl::OBJC_TQ_Oneway)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002182 Result += "oneway ";
Douglas Gregor86b42682015-06-19 18:27:52 +00002183 if (ObjCQuals & Decl::OBJC_TQ_CSNullability) {
2184 if (auto nullability = AttributedType::stripOuterNullability(Type)) {
2185 switch (*nullability) {
2186 case NullabilityKind::NonNull:
2187 Result += "nonnull ";
2188 break;
2189
2190 case NullabilityKind::Nullable:
2191 Result += "nullable ";
2192 break;
2193
2194 case NullabilityKind::Unspecified:
2195 Result += "null_unspecified ";
2196 break;
2197 }
2198 }
2199 }
Douglas Gregor8f08d742011-07-30 07:55:26 +00002200 return Result;
2201}
2202
Alex Lorenza1951202016-10-18 10:35:27 +00002203/// \brief Tries to find the most appropriate type location for an Objective-C
2204/// block placeholder.
2205///
2206/// This function ignores things like typedefs and qualifiers in order to
2207/// present the most relevant and accurate block placeholders in code completion
2208/// results.
2209static void findTypeLocationForBlockDecl(const TypeSourceInfo *TSInfo,
2210 FunctionTypeLoc &Block,
2211 FunctionProtoTypeLoc &BlockProto,
2212 bool SuppressBlock = false) {
2213 if (!TSInfo)
2214 return;
2215 TypeLoc TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2216 while (true) {
2217 // Look through typedefs.
2218 if (!SuppressBlock) {
2219 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2220 if (TypeSourceInfo *InnerTSInfo =
2221 TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) {
2222 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2223 continue;
2224 }
2225 }
2226
2227 // Look through qualified types
2228 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2229 TL = QualifiedTL.getUnqualifiedLoc();
2230 continue;
2231 }
2232
2233 if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) {
2234 TL = AttrTL.getModifiedLoc();
2235 continue;
2236 }
2237 }
2238
2239 // Try to get the function prototype behind the block pointer type,
2240 // then we're done.
2241 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2242 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2243 Block = TL.getAs<FunctionTypeLoc>();
2244 BlockProto = TL.getAs<FunctionProtoTypeLoc>();
2245 }
2246 break;
2247 }
2248}
2249
Alex Lorenz920ae142016-10-18 10:38:58 +00002250static std::string
2251formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl,
2252 FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00002253 bool SuppressBlockName = false,
Alex Lorenz920ae142016-10-18 10:38:58 +00002254 bool SuppressBlock = false,
2255 Optional<ArrayRef<QualType>> ObjCSubsts = None);
2256
Richard Smith20e883e2015-04-29 23:20:19 +00002257static std::string FormatFunctionParameter(const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002258 const ParmVarDecl *Param,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002259 bool SuppressName = false,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002260 bool SuppressBlock = false,
2261 Optional<ArrayRef<QualType>> ObjCSubsts = None) {
Douglas Gregore90dd002010-08-24 16:15:59 +00002262 bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext());
2263 if (Param->getType()->isDependentType() ||
2264 !Param->getType()->isBlockPointerType()) {
2265 // The argument for a dependent or non-block parameter is a placeholder
2266 // containing that parameter's type.
2267 std::string Result;
2268
Douglas Gregor981a0c42010-08-29 19:47:46 +00002269 if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002270 Result = Param->getIdentifier()->getName();
2271
Douglas Gregor86b42682015-06-19 18:27:52 +00002272 QualType Type = Param->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002273 if (ObjCSubsts)
2274 Type = Type.substObjCTypeArgs(Param->getASTContext(), *ObjCSubsts,
2275 ObjCSubstitutionContext::Parameter);
Douglas Gregore90dd002010-08-24 16:15:59 +00002276 if (ObjCMethodParam) {
Douglas Gregor86b42682015-06-19 18:27:52 +00002277 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(),
2278 Type);
2279 Result += Type.getAsString(Policy) + ")";
Douglas Gregor981a0c42010-08-29 19:47:46 +00002280 if (Param->getIdentifier() && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002281 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002282 } else {
2283 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002284 }
2285 return Result;
2286 }
Alex Lorenza1951202016-10-18 10:35:27 +00002287
Douglas Gregore90dd002010-08-24 16:15:59 +00002288 // The argument for a block pointer parameter is a block literal with
2289 // the appropriate type.
David Blaikie6adc78e2013-02-18 22:06:02 +00002290 FunctionTypeLoc Block;
2291 FunctionProtoTypeLoc BlockProto;
Alex Lorenza1951202016-10-18 10:35:27 +00002292 findTypeLocationForBlockDecl(Param->getTypeSourceInfo(), Block, BlockProto,
2293 SuppressBlock);
Alex Lorenz6bf4a582017-03-13 15:43:42 +00002294 // Try to retrieve the block type information from the property if this is a
2295 // parameter in a setter.
2296 if (!Block && ObjCMethodParam &&
2297 cast<ObjCMethodDecl>(Param->getDeclContext())->isPropertyAccessor()) {
2298 if (const auto *PD = cast<ObjCMethodDecl>(Param->getDeclContext())
2299 ->findPropertyDecl(/*CheckOverrides=*/false))
2300 findTypeLocationForBlockDecl(PD->getTypeSourceInfo(), Block, BlockProto,
2301 SuppressBlock);
2302 }
Douglas Gregore90dd002010-08-24 16:15:59 +00002303
2304 if (!Block) {
2305 // We were unable to find a FunctionProtoTypeLoc with parameter names
2306 // for the block; just use the parameter type as a placeholder.
2307 std::string Result;
Douglas Gregord793e7c2011-10-18 04:23:19 +00002308 if (!ObjCMethodParam && Param->getIdentifier())
2309 Result = Param->getIdentifier()->getName();
2310
Douglas Gregor86b42682015-06-19 18:27:52 +00002311 QualType Type = Param->getType().getUnqualifiedType();
Douglas Gregore90dd002010-08-24 16:15:59 +00002312
2313 if (ObjCMethodParam) {
Alex Lorenz01bcfc12016-11-23 16:28:34 +00002314 Result = Type.getAsString(Policy);
2315 std::string Quals =
2316 formatObjCParamQualifiers(Param->getObjCDeclQualifier(), Type);
2317 if (!Quals.empty())
2318 Result = "(" + Quals + " " + Result + ")";
2319 if (Result.back() != ')')
2320 Result += " ";
Douglas Gregore90dd002010-08-24 16:15:59 +00002321 if (Param->getIdentifier())
2322 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002323 } else {
2324 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002325 }
2326
2327 return Result;
2328 }
Alex Lorenz01bcfc12016-11-23 16:28:34 +00002329
Douglas Gregore90dd002010-08-24 16:15:59 +00002330 // We have the function prototype behind the block pointer type, as it was
2331 // written in the source.
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00002332 return formatBlockPlaceholder(Policy, Param, Block, BlockProto,
2333 /*SuppressBlockName=*/false, SuppressBlock,
Alex Lorenz920ae142016-10-18 10:38:58 +00002334 ObjCSubsts);
2335}
2336
2337/// \brief Returns a placeholder string that corresponds to an Objective-C block
2338/// declaration.
2339///
2340/// \param BlockDecl A declaration with an Objective-C block type.
2341///
2342/// \param Block The most relevant type location for that block type.
2343///
2344/// \param SuppressBlockName Determines wether or not the name of the block
2345/// declaration is included in the resulting string.
2346static std::string
2347formatBlockPlaceholder(const PrintingPolicy &Policy, const NamedDecl *BlockDecl,
2348 FunctionTypeLoc &Block, FunctionProtoTypeLoc &BlockProto,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00002349 bool SuppressBlockName, bool SuppressBlock,
Alex Lorenz920ae142016-10-18 10:38:58 +00002350 Optional<ArrayRef<QualType>> ObjCSubsts) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002351 std::string Result;
Alp Toker314cc812014-01-25 16:55:45 +00002352 QualType ResultType = Block.getTypePtr()->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002353 if (ObjCSubsts)
Alex Lorenz920ae142016-10-18 10:38:58 +00002354 ResultType =
2355 ResultType.substObjCTypeArgs(BlockDecl->getASTContext(), *ObjCSubsts,
2356 ObjCSubstitutionContext::Result);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002357 if (!ResultType->isVoidType() || SuppressBlock)
John McCall31168b02011-06-15 23:02:42 +00002358 ResultType.getAsStringInternal(Result, Policy);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002359
2360 // Format the parameter list.
2361 std::string Params;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002362 if (!BlockProto || Block.getNumParams() == 0) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002363 if (BlockProto && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002364 Params = "(...)";
Douglas Gregoraf25cfa2010-10-02 23:49:58 +00002365 else
Douglas Gregord793e7c2011-10-18 04:23:19 +00002366 Params = "(void)";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002367 } else {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002368 Params += "(";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002369 for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002370 if (I)
Douglas Gregord793e7c2011-10-18 04:23:19 +00002371 Params += ", ";
Richard Smith20e883e2015-04-29 23:20:19 +00002372 Params += FormatFunctionParameter(Policy, Block.getParam(I),
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002373 /*SuppressName=*/false,
Alex Lorenz920ae142016-10-18 10:38:58 +00002374 /*SuppressBlock=*/true, ObjCSubsts);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002375
David Blaikie6adc78e2013-02-18 22:06:02 +00002376 if (I == N - 1 && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002377 Params += ", ...";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002378 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002379 Params += ")";
Douglas Gregor400f5972010-08-31 05:13:43 +00002380 }
Alex Lorenz920ae142016-10-18 10:38:58 +00002381
Douglas Gregord793e7c2011-10-18 04:23:19 +00002382 if (SuppressBlock) {
2383 // Format as a parameter.
2384 Result = Result + " (^";
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00002385 if (!SuppressBlockName && BlockDecl->getIdentifier())
Alex Lorenz920ae142016-10-18 10:38:58 +00002386 Result += BlockDecl->getIdentifier()->getName();
Douglas Gregord793e7c2011-10-18 04:23:19 +00002387 Result += ")";
2388 Result += Params;
2389 } else {
2390 // Format as a block literal argument.
2391 Result = '^' + Result;
2392 Result += Params;
Alex Lorenz920ae142016-10-18 10:38:58 +00002393
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00002394 if (!SuppressBlockName && BlockDecl->getIdentifier())
Alex Lorenz920ae142016-10-18 10:38:58 +00002395 Result += BlockDecl->getIdentifier()->getName();
Douglas Gregord793e7c2011-10-18 04:23:19 +00002396 }
Alex Lorenz920ae142016-10-18 10:38:58 +00002397
Douglas Gregore90dd002010-08-24 16:15:59 +00002398 return Result;
2399}
2400
Douglas Gregor3545ff42009-09-21 16:56:56 +00002401/// \brief Add function parameter chunks to the given code completion string.
Richard Smith20e883e2015-04-29 23:20:19 +00002402static void AddFunctionParameterChunks(Preprocessor &PP,
Douglas Gregor75acd922011-09-27 23:30:47 +00002403 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002404 const FunctionDecl *Function,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002405 CodeCompletionBuilder &Result,
2406 unsigned Start = 0,
2407 bool InOptional = false) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002408 bool FirstParameter = true;
Douglas Gregor9eb77012009-11-07 00:00:49 +00002409
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002410 for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002411 const ParmVarDecl *Param = Function->getParamDecl(P);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002412
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002413 if (Param->hasDefaultArg() && !InOptional) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002414 // When we see an optional default argument, put that argument and
2415 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002416 CodeCompletionBuilder Opt(Result.getAllocator(),
2417 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002418 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002419 Opt.AddChunk(CodeCompletionString::CK_Comma);
Richard Smith20e883e2015-04-29 23:20:19 +00002420 AddFunctionParameterChunks(PP, Policy, Function, Opt, P, true);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002421 Result.AddOptionalChunk(Opt.TakeString());
2422 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002423 }
2424
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002425 if (FirstParameter)
2426 FirstParameter = false;
2427 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002428 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002429
2430 InOptional = false;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002431
2432 // Format the placeholder string.
Richard Smith20e883e2015-04-29 23:20:19 +00002433 std::string PlaceholderStr = FormatFunctionParameter(Policy, Param);
2434
Douglas Gregor400f5972010-08-31 05:13:43 +00002435 if (Function->isVariadic() && P == N - 1)
2436 PlaceholderStr += ", ...";
2437
Douglas Gregor3545ff42009-09-21 16:56:56 +00002438 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002439 Result.AddPlaceholderChunk(
2440 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002441 }
Douglas Gregorba449032009-09-22 21:42:17 +00002442
2443 if (const FunctionProtoType *Proto
2444 = Function->getType()->getAs<FunctionProtoType>())
Douglas Gregordbb71db2010-08-23 23:51:41 +00002445 if (Proto->isVariadic()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00002446 if (Proto->getNumParams() == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002447 Result.AddPlaceholderChunk("...");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002448
Richard Smith20e883e2015-04-29 23:20:19 +00002449 MaybeAddSentinel(PP, Function, Result);
Douglas Gregordbb71db2010-08-23 23:51:41 +00002450 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002451}
2452
2453/// \brief Add template parameter chunks to the given code completion string.
2454static void AddTemplateParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002455 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002456 const TemplateDecl *Template,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002457 CodeCompletionBuilder &Result,
2458 unsigned MaxParameters = 0,
2459 unsigned Start = 0,
2460 bool InDefaultArg = false) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002461 bool FirstParameter = true;
Richard Smith6eece292015-01-15 02:27:20 +00002462
2463 // Prefer to take the template parameter names from the first declaration of
2464 // the template.
2465 Template = cast<TemplateDecl>(Template->getCanonicalDecl());
2466
Douglas Gregor3545ff42009-09-21 16:56:56 +00002467 TemplateParameterList *Params = Template->getTemplateParameters();
2468 TemplateParameterList::iterator PEnd = Params->end();
2469 if (MaxParameters)
2470 PEnd = Params->begin() + MaxParameters;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002471 for (TemplateParameterList::iterator P = Params->begin() + Start;
2472 P != PEnd; ++P) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002473 bool HasDefaultArg = false;
2474 std::string PlaceholderStr;
2475 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
2476 if (TTP->wasDeclaredWithTypename())
2477 PlaceholderStr = "typename";
2478 else
2479 PlaceholderStr = "class";
2480
2481 if (TTP->getIdentifier()) {
2482 PlaceholderStr += ' ';
2483 PlaceholderStr += TTP->getIdentifier()->getName();
2484 }
2485
2486 HasDefaultArg = TTP->hasDefaultArgument();
2487 } else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002488 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002489 if (NTTP->getIdentifier())
2490 PlaceholderStr = NTTP->getIdentifier()->getName();
John McCall31168b02011-06-15 23:02:42 +00002491 NTTP->getType().getAsStringInternal(PlaceholderStr, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002492 HasDefaultArg = NTTP->hasDefaultArgument();
2493 } else {
2494 assert(isa<TemplateTemplateParmDecl>(*P));
2495 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
2496
2497 // Since putting the template argument list into the placeholder would
2498 // be very, very long, we just use an abbreviation.
2499 PlaceholderStr = "template<...> class";
2500 if (TTP->getIdentifier()) {
2501 PlaceholderStr += ' ';
2502 PlaceholderStr += TTP->getIdentifier()->getName();
2503 }
2504
2505 HasDefaultArg = TTP->hasDefaultArgument();
2506 }
2507
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002508 if (HasDefaultArg && !InDefaultArg) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002509 // When we see an optional default argument, put that argument and
2510 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002511 CodeCompletionBuilder Opt(Result.getAllocator(),
2512 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002513 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002514 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002515 AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002516 P - Params->begin(), true);
2517 Result.AddOptionalChunk(Opt.TakeString());
2518 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002519 }
2520
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002521 InDefaultArg = false;
2522
Douglas Gregor3545ff42009-09-21 16:56:56 +00002523 if (FirstParameter)
2524 FirstParameter = false;
2525 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002526 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002527
2528 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002529 Result.AddPlaceholderChunk(
2530 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002531 }
2532}
2533
Douglas Gregorf2510672009-09-21 19:57:38 +00002534/// \brief Add a qualifier to the given code-completion string, if the
2535/// provided nested-name-specifier is non-NULL.
Douglas Gregor0f622362009-12-11 18:44:16 +00002536static void
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002537AddQualifierToCompletionString(CodeCompletionBuilder &Result,
Douglas Gregor0f622362009-12-11 18:44:16 +00002538 NestedNameSpecifier *Qualifier,
2539 bool QualifierIsInformative,
Douglas Gregor75acd922011-09-27 23:30:47 +00002540 ASTContext &Context,
2541 const PrintingPolicy &Policy) {
Douglas Gregorf2510672009-09-21 19:57:38 +00002542 if (!Qualifier)
2543 return;
2544
2545 std::string PrintedNNS;
2546 {
2547 llvm::raw_string_ostream OS(PrintedNNS);
Douglas Gregor75acd922011-09-27 23:30:47 +00002548 Qualifier->print(OS, Policy);
Douglas Gregorf2510672009-09-21 19:57:38 +00002549 }
Douglas Gregor5bf52692009-09-22 23:15:58 +00002550 if (QualifierIsInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002551 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregor5bf52692009-09-22 23:15:58 +00002552 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002553 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregorf2510672009-09-21 19:57:38 +00002554}
2555
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002556static void
2557AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002558 const FunctionDecl *Function) {
Douglas Gregor0f622362009-12-11 18:44:16 +00002559 const FunctionProtoType *Proto
2560 = Function->getType()->getAs<FunctionProtoType>();
2561 if (!Proto || !Proto->getTypeQuals())
2562 return;
2563
Douglas Gregor304f9b02011-02-01 21:15:40 +00002564 // FIXME: Add ref-qualifier!
2565
2566 // Handle single qualifiers without copying
2567 if (Proto->getTypeQuals() == Qualifiers::Const) {
2568 Result.AddInformativeChunk(" const");
2569 return;
2570 }
2571
2572 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2573 Result.AddInformativeChunk(" volatile");
2574 return;
2575 }
2576
2577 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2578 Result.AddInformativeChunk(" restrict");
2579 return;
2580 }
2581
2582 // Handle multiple qualifiers.
Douglas Gregor0f622362009-12-11 18:44:16 +00002583 std::string QualsStr;
David Blaikief5697e52012-08-10 00:55:35 +00002584 if (Proto->isConst())
Douglas Gregor0f622362009-12-11 18:44:16 +00002585 QualsStr += " const";
David Blaikief5697e52012-08-10 00:55:35 +00002586 if (Proto->isVolatile())
Douglas Gregor0f622362009-12-11 18:44:16 +00002587 QualsStr += " volatile";
David Blaikief5697e52012-08-10 00:55:35 +00002588 if (Proto->isRestrict())
Douglas Gregor0f622362009-12-11 18:44:16 +00002589 QualsStr += " restrict";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002590 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
Douglas Gregor0f622362009-12-11 18:44:16 +00002591}
2592
Douglas Gregor0212fd72010-09-21 16:06:22 +00002593/// \brief Add the name of the given declaration
Douglas Gregor75acd922011-09-27 23:30:47 +00002594static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002595 const NamedDecl *ND,
2596 CodeCompletionBuilder &Result) {
Douglas Gregor0212fd72010-09-21 16:06:22 +00002597 DeclarationName Name = ND->getDeclName();
2598 if (!Name)
2599 return;
2600
2601 switch (Name.getNameKind()) {
Douglas Gregor304f9b02011-02-01 21:15:40 +00002602 case DeclarationName::CXXOperatorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002603 const char *OperatorName = nullptr;
Douglas Gregor304f9b02011-02-01 21:15:40 +00002604 switch (Name.getCXXOverloadedOperator()) {
2605 case OO_None:
2606 case OO_Conditional:
2607 case NUM_OVERLOADED_OPERATORS:
2608 OperatorName = "operator";
2609 break;
2610
2611#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2612 case OO_##Name: OperatorName = "operator" Spelling; break;
2613#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2614#include "clang/Basic/OperatorKinds.def"
2615
2616 case OO_New: OperatorName = "operator new"; break;
2617 case OO_Delete: OperatorName = "operator delete"; break;
2618 case OO_Array_New: OperatorName = "operator new[]"; break;
2619 case OO_Array_Delete: OperatorName = "operator delete[]"; break;
2620 case OO_Call: OperatorName = "operator()"; break;
2621 case OO_Subscript: OperatorName = "operator[]"; break;
2622 }
2623 Result.AddTypedTextChunk(OperatorName);
2624 break;
2625 }
2626
Douglas Gregor0212fd72010-09-21 16:06:22 +00002627 case DeclarationName::Identifier:
2628 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002629 case DeclarationName::CXXDestructorName:
2630 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002631 Result.AddTypedTextChunk(
2632 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002633 break;
2634
Richard Smith35845152017-02-07 01:37:30 +00002635 case DeclarationName::CXXDeductionGuideName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002636 case DeclarationName::CXXUsingDirective:
2637 case DeclarationName::ObjCZeroArgSelector:
2638 case DeclarationName::ObjCOneArgSelector:
2639 case DeclarationName::ObjCMultiArgSelector:
2640 break;
2641
2642 case DeclarationName::CXXConstructorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002643 CXXRecordDecl *Record = nullptr;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002644 QualType Ty = Name.getCXXNameType();
2645 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2646 Record = cast<CXXRecordDecl>(RecordTy->getDecl());
2647 else if (const InjectedClassNameType *InjectedTy
2648 = Ty->getAs<InjectedClassNameType>())
2649 Record = InjectedTy->getDecl();
2650 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002651 Result.AddTypedTextChunk(
2652 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002653 break;
2654 }
2655
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002656 Result.AddTypedTextChunk(
2657 Result.getAllocator().CopyString(Record->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002658 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002659 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Douglas Gregor75acd922011-09-27 23:30:47 +00002660 AddTemplateParameterChunks(Context, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002661 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002662 }
2663 break;
2664 }
2665 }
2666}
2667
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002668CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002669 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002670 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002671 CodeCompletionTUInfo &CCTUInfo,
2672 bool IncludeBriefComments) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002673 return CreateCodeCompletionString(S.Context, S.PP, CCContext, Allocator,
2674 CCTUInfo, IncludeBriefComments);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002675}
2676
Douglas Gregor3545ff42009-09-21 16:56:56 +00002677/// \brief If possible, create a new code completion string for the given
2678/// result.
2679///
2680/// \returns Either a new, heap-allocated code completion string describing
2681/// how to use this result, or NULL to indicate that the string or name of the
2682/// result is all that is needed.
2683CodeCompletionString *
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002684CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx,
2685 Preprocessor &PP,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002686 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002687 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002688 CodeCompletionTUInfo &CCTUInfo,
2689 bool IncludeBriefComments) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002690 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
Douglas Gregor9eb77012009-11-07 00:00:49 +00002691
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002692 PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002693 if (Kind == RK_Pattern) {
2694 Pattern->Priority = Priority;
2695 Pattern->Availability = Availability;
Douglas Gregor78254c82012-03-27 23:34:16 +00002696
2697 if (Declaration) {
2698 Result.addParentContext(Declaration->getDeclContext());
Douglas Gregor78254c82012-03-27 23:34:16 +00002699 Pattern->ParentName = Result.getParentName();
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002700 // Provide code completion comment for self.GetterName where
2701 // GetterName is the getter method for a property with name
2702 // different from the property name (declared via a property
2703 // getter attribute.
2704 const NamedDecl *ND = Declaration;
2705 if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND))
2706 if (M->isPropertyAccessor())
2707 if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl())
2708 if (PDecl->getGetterName() == M->getSelector() &&
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002709 PDecl->getIdentifier() != M->getIdentifier()) {
2710 if (const RawComment *RC =
2711 Ctx.getRawCommentForAnyRedecl(M)) {
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002712 Result.addBriefComment(RC->getBriefText(Ctx));
2713 Pattern->BriefComment = Result.getBriefComment();
2714 }
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002715 else if (const RawComment *RC =
2716 Ctx.getRawCommentForAnyRedecl(PDecl)) {
2717 Result.addBriefComment(RC->getBriefText(Ctx));
2718 Pattern->BriefComment = Result.getBriefComment();
2719 }
2720 }
Douglas Gregor78254c82012-03-27 23:34:16 +00002721 }
2722
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002723 return Pattern;
2724 }
Douglas Gregorf09935f2009-12-01 05:55:20 +00002725
Douglas Gregorf09935f2009-12-01 05:55:20 +00002726 if (Kind == RK_Keyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002727 Result.AddTypedTextChunk(Keyword);
2728 return Result.TakeString();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002729 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002730
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002731 if (Kind == RK_Macro) {
Richard Smith20e883e2015-04-29 23:20:19 +00002732 const MacroInfo *MI = PP.getMacroInfo(Macro);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002733 Result.AddTypedTextChunk(
2734 Result.getAllocator().CopyString(Macro->getName()));
Douglas Gregorf09935f2009-12-01 05:55:20 +00002735
Ben Langmuirc28ce3a2014-09-30 20:00:18 +00002736 if (!MI || !MI->isFunctionLike())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002737 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002738
2739 // Format a function-like macro with placeholders for the arguments.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002740 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor0c505312011-07-30 08:17:44 +00002741 MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002742
2743 // C99 variadic macros add __VA_ARGS__ at the end. Skip it.
2744 if (MI->isC99Varargs()) {
2745 --AEnd;
2746
2747 if (A == AEnd) {
2748 Result.AddPlaceholderChunk("...");
2749 }
Douglas Gregor0c505312011-07-30 08:17:44 +00002750 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002751
Douglas Gregor0c505312011-07-30 08:17:44 +00002752 for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) {
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002753 if (A != MI->arg_begin())
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002754 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3aa55262012-01-21 00:43:38 +00002755
2756 if (MI->isVariadic() && (A+1) == AEnd) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002757 SmallString<32> Arg = (*A)->getName();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002758 if (MI->isC99Varargs())
2759 Arg += ", ...";
2760 else
2761 Arg += "...";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002762 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor3aa55262012-01-21 00:43:38 +00002763 break;
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002764 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002765
2766 // Non-variadic macros are simple.
2767 Result.AddPlaceholderChunk(
2768 Result.getAllocator().CopyString((*A)->getName()));
Douglas Gregor0c505312011-07-30 08:17:44 +00002769 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002770 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002771 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002772 }
2773
Douglas Gregorf64acca2010-05-25 21:41:55 +00002774 assert(Kind == RK_Declaration && "Missed a result kind?");
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002775 const NamedDecl *ND = Declaration;
Douglas Gregor78254c82012-03-27 23:34:16 +00002776 Result.addParentContext(ND->getDeclContext());
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002777
2778 if (IncludeBriefComments) {
2779 // Add documentation comment, if it exists.
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +00002780 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) {
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002781 Result.addBriefComment(RC->getBriefText(Ctx));
Fariborz Jahanian15a0b552013-02-28 17:47:14 +00002782 }
2783 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
2784 if (OMD->isPropertyAccessor())
2785 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
2786 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl))
2787 Result.addBriefComment(RC->getBriefText(Ctx));
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002788 }
2789
Douglas Gregor9eb77012009-11-07 00:00:49 +00002790 if (StartsNestedNameSpecifier) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002791 Result.AddTypedTextChunk(
2792 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002793 Result.AddTextChunk("::");
2794 return Result.TakeString();
Douglas Gregor9eb77012009-11-07 00:00:49 +00002795 }
Erik Verbruggen98ea7f62011-10-14 15:31:08 +00002796
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00002797 for (const auto *I : ND->specific_attrs<AnnotateAttr>())
2798 Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation()));
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002799
Douglas Gregorc3425b12015-07-07 06:20:19 +00002800 AddResultTypeChunk(Ctx, Policy, ND, CCContext.getBaseType(), Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002801
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002802 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002803 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002804 Ctx, Policy);
2805 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002806 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002807 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002808 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002809 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002810 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002811 }
2812
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002813 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002814 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002815 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002816 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002817 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002818
Douglas Gregor3545ff42009-09-21 16:56:56 +00002819 // Figure out which template parameters are deduced (or have default
2820 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002821 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002822 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002823 unsigned LastDeducibleArgument;
2824 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2825 --LastDeducibleArgument) {
2826 if (!Deduced[LastDeducibleArgument - 1]) {
2827 // C++0x: Figure out if the template argument has a default. If so,
2828 // the user doesn't need to type this argument.
2829 // FIXME: We need to abstract template parameters better!
2830 bool HasDefaultArg = false;
2831 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002832 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002833 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2834 HasDefaultArg = TTP->hasDefaultArgument();
2835 else if (NonTypeTemplateParmDecl *NTTP
2836 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2837 HasDefaultArg = NTTP->hasDefaultArgument();
2838 else {
2839 assert(isa<TemplateTemplateParmDecl>(Param));
2840 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002841 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002842 }
2843
2844 if (!HasDefaultArg)
2845 break;
2846 }
2847 }
2848
2849 if (LastDeducibleArgument) {
2850 // Some of the function template arguments cannot be deduced from a
2851 // function call, so we introduce an explicit template argument list
2852 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002853 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002854 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002855 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002856 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002857 }
2858
2859 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002860 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002861 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002862 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002863 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002864 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002865 }
2866
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002867 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002868 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002869 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002870 Result.AddTypedTextChunk(
2871 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002872 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002873 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002874 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002875 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002876 }
2877
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002878 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002879 Selector Sel = Method->getSelector();
2880 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002881 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002882 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002883 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002884 }
2885
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002886 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002887 SelName += ':';
2888 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002889 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002890 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002891 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002892
2893 // If there is only one parameter, and we're past it, add an empty
2894 // typed-text chunk since there is nothing to type.
2895 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002896 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002897 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002898 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002899 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2900 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002901 P != PEnd; (void)++P, ++Idx) {
2902 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002903 std::string Keyword;
2904 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002905 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002906 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002907 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002908 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002909 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002910 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002911 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002912 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002913 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002914
2915 // If we're before the starting parameter, skip the placeholder.
2916 if (Idx < StartParameter)
2917 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002918
2919 std::string Arg;
Douglas Gregorc3425b12015-07-07 06:20:19 +00002920 QualType ParamType = (*P)->getType();
2921 Optional<ArrayRef<QualType>> ObjCSubsts;
2922 if (!CCContext.getBaseType().isNull())
2923 ObjCSubsts = CCContext.getBaseType()->getObjCSubstitutions(Method);
2924
2925 if (ParamType->isBlockPointerType() && !DeclaringEntity)
2926 Arg = FormatFunctionParameter(Policy, *P, true,
2927 /*SuppressBlock=*/false,
2928 ObjCSubsts);
Douglas Gregore90dd002010-08-24 16:15:59 +00002929 else {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002930 if (ObjCSubsts)
2931 ParamType = ParamType.substObjCTypeArgs(Ctx, *ObjCSubsts,
2932 ObjCSubstitutionContext::Parameter);
Douglas Gregor86b42682015-06-19 18:27:52 +00002933 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00002934 ParamType);
2935 Arg += ParamType.getAsString(Policy) + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002936 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002937 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002938 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002939 }
2940
Douglas Gregor400f5972010-08-31 05:13:43 +00002941 if (Method->isVariadic() && (P + 1) == PEnd)
2942 Arg += ", ...";
2943
Douglas Gregor95887f92010-07-08 23:20:03 +00002944 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002945 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002946 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002947 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002948 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002949 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002950 }
2951
Douglas Gregor04c5f972009-12-23 00:21:46 +00002952 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002953 if (Method->param_size() == 0) {
2954 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002955 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002956 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002957 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002958 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002959 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002960 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002961
Richard Smith20e883e2015-04-29 23:20:19 +00002962 MaybeAddSentinel(PP, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002963 }
2964
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002965 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002966 }
2967
Douglas Gregorf09935f2009-12-01 05:55:20 +00002968 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002969 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002970 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002971
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002972 Result.AddTypedTextChunk(
2973 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002974 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002975}
2976
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002977/// \brief Add function overload parameter chunks to the given code completion
2978/// string.
2979static void AddOverloadParameterChunks(ASTContext &Context,
2980 const PrintingPolicy &Policy,
2981 const FunctionDecl *Function,
2982 const FunctionProtoType *Prototype,
2983 CodeCompletionBuilder &Result,
2984 unsigned CurrentArg,
2985 unsigned Start = 0,
2986 bool InOptional = false) {
2987 bool FirstParameter = true;
2988 unsigned NumParams = Function ? Function->getNumParams()
2989 : Prototype->getNumParams();
2990
2991 for (unsigned P = Start; P != NumParams; ++P) {
2992 if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) {
2993 // When we see an optional default argument, put that argument and
2994 // the remaining default arguments into a new, optional string.
2995 CodeCompletionBuilder Opt(Result.getAllocator(),
2996 Result.getCodeCompletionTUInfo());
2997 if (!FirstParameter)
2998 Opt.AddChunk(CodeCompletionString::CK_Comma);
2999 // Optional sections are nested.
3000 AddOverloadParameterChunks(Context, Policy, Function, Prototype, Opt,
3001 CurrentArg, P, /*InOptional=*/true);
3002 Result.AddOptionalChunk(Opt.TakeString());
3003 return;
3004 }
3005
3006 if (FirstParameter)
3007 FirstParameter = false;
3008 else
3009 Result.AddChunk(CodeCompletionString::CK_Comma);
3010
3011 InOptional = false;
3012
3013 // Format the placeholder string.
3014 std::string Placeholder;
3015 if (Function)
Richard Smith20e883e2015-04-29 23:20:19 +00003016 Placeholder = FormatFunctionParameter(Policy, Function->getParamDecl(P));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003017 else
3018 Placeholder = Prototype->getParamType(P).getAsString(Policy);
3019
3020 if (P == CurrentArg)
3021 Result.AddCurrentParameterChunk(
3022 Result.getAllocator().CopyString(Placeholder));
3023 else
3024 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder));
3025 }
3026
3027 if (Prototype && Prototype->isVariadic()) {
3028 CodeCompletionBuilder Opt(Result.getAllocator(),
3029 Result.getCodeCompletionTUInfo());
3030 if (!FirstParameter)
3031 Opt.AddChunk(CodeCompletionString::CK_Comma);
3032
3033 if (CurrentArg < NumParams)
3034 Opt.AddPlaceholderChunk("...");
3035 else
3036 Opt.AddCurrentParameterChunk("...");
3037
3038 Result.AddOptionalChunk(Opt.TakeString());
3039 }
3040}
3041
Douglas Gregorf0f51982009-09-23 00:34:09 +00003042CodeCompletionString *
3043CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003044 unsigned CurrentArg, Sema &S,
3045 CodeCompletionAllocator &Allocator,
3046 CodeCompletionTUInfo &CCTUInfo,
3047 bool IncludeBriefComments) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00003048 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00003049
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003050 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003051 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00003052 FunctionDecl *FDecl = getFunction();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003053 const FunctionProtoType *Proto
Douglas Gregorf0f51982009-09-23 00:34:09 +00003054 = dyn_cast<FunctionProtoType>(getFunctionType());
3055 if (!FDecl && !Proto) {
3056 // Function without a prototype. Just give the return type and a
3057 // highlighted ellipsis.
3058 const FunctionType *FT = getFunctionType();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003059 Result.AddResultTypeChunk(Result.getAllocator().CopyString(
3060 FT->getReturnType().getAsString(Policy)));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00003061 Result.AddChunk(CodeCompletionString::CK_LeftParen);
3062 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
3063 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003064 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00003065 }
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003066
3067 if (FDecl) {
3068 if (IncludeBriefComments && CurrentArg < FDecl->getNumParams())
3069 if (auto RC = S.getASTContext().getRawCommentForAnyRedecl(
3070 FDecl->getParamDecl(CurrentArg)))
3071 Result.addBriefComment(RC->getBriefText(S.getASTContext()));
Douglas Gregorc3425b12015-07-07 06:20:19 +00003072 AddResultTypeChunk(S.Context, Policy, FDecl, QualType(), Result);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003073 Result.AddTextChunk(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003074 Result.getAllocator().CopyString(FDecl->getNameAsString()));
3075 } else {
3076 Result.AddResultTypeChunk(
3077 Result.getAllocator().CopyString(
Alp Toker314cc812014-01-25 16:55:45 +00003078 Proto->getReturnType().getAsString(Policy)));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003079 }
Alp Toker314cc812014-01-25 16:55:45 +00003080
Benjamin Kramerdb534a42012-03-26 16:57:36 +00003081 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003082 AddOverloadParameterChunks(S.getASTContext(), Policy, FDecl, Proto, Result,
3083 CurrentArg);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00003084 Result.AddChunk(CodeCompletionString::CK_RightParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00003085
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003086 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00003087}
3088
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003089unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00003090 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00003091 bool PreferredTypeIsPointer) {
3092 unsigned Priority = CCP_Macro;
3093
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00003094 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
3095 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
3096 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00003097 Priority = CCP_Constant;
3098 if (PreferredTypeIsPointer)
3099 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00003100 }
3101 // Treat "YES", "NO", "true", and "false" as constants.
3102 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
3103 MacroName.equals("true") || MacroName.equals("false"))
3104 Priority = CCP_Constant;
3105 // Treat "bool" as a type.
3106 else if (MacroName.equals("bool"))
3107 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
3108
Douglas Gregor6e240332010-08-16 16:18:59 +00003109
3110 return Priority;
3111}
3112
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003113CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003114 if (!D)
3115 return CXCursor_UnexposedDecl;
3116
3117 switch (D->getKind()) {
3118 case Decl::Enum: return CXCursor_EnumDecl;
3119 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
3120 case Decl::Field: return CXCursor_FieldDecl;
3121 case Decl::Function:
3122 return CXCursor_FunctionDecl;
3123 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
3124 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003125 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00003126
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003127 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003128 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
3129 case Decl::ObjCMethod:
3130 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
3131 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
3132 case Decl::CXXMethod: return CXCursor_CXXMethod;
3133 case Decl::CXXConstructor: return CXCursor_Constructor;
3134 case Decl::CXXDestructor: return CXCursor_Destructor;
3135 case Decl::CXXConversion: return CXCursor_ConversionFunction;
3136 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003137 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003138 case Decl::ParmVar: return CXCursor_ParmDecl;
3139 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00003140 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Sergey Kalinichev8f3b1872015-11-15 13:48:32 +00003141 case Decl::TypeAliasTemplate: return CXCursor_TypeAliasTemplateDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003142 case Decl::Var: return CXCursor_VarDecl;
3143 case Decl::Namespace: return CXCursor_Namespace;
3144 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
3145 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
3146 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
3147 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
3148 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
3149 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00003150 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003151 case Decl::ClassTemplatePartialSpecialization:
3152 return CXCursor_ClassTemplatePartialSpecialization;
3153 case Decl::UsingDirective: return CXCursor_UsingDirective;
Olivier Goffart81978012016-06-09 16:15:55 +00003154 case Decl::StaticAssert: return CXCursor_StaticAssert;
Olivier Goffartd211c642016-11-04 06:29:27 +00003155 case Decl::Friend: return CXCursor_FriendDecl;
Douglas Gregor3e653b32012-04-30 23:41:16 +00003156 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003157
3158 case Decl::Using:
3159 case Decl::UnresolvedUsingValue:
3160 case Decl::UnresolvedUsingTypename:
3161 return CXCursor_UsingDeclaration;
3162
Douglas Gregor4cd65962011-06-03 23:08:58 +00003163 case Decl::ObjCPropertyImpl:
3164 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
3165 case ObjCPropertyImplDecl::Dynamic:
3166 return CXCursor_ObjCDynamicDecl;
3167
3168 case ObjCPropertyImplDecl::Synthesize:
3169 return CXCursor_ObjCSynthesizeDecl;
3170 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00003171
3172 case Decl::Import:
3173 return CXCursor_ModuleImportDecl;
Douglas Gregor85f3f952015-07-07 03:57:15 +00003174
3175 case Decl::ObjCTypeParam: return CXCursor_TemplateTypeParameter;
3176
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003177 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003178 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003179 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00003180 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003181 case TTK_Struct: return CXCursor_StructDecl;
3182 case TTK_Class: return CXCursor_ClassDecl;
3183 case TTK_Union: return CXCursor_UnionDecl;
3184 case TTK_Enum: return CXCursor_EnumDecl;
3185 }
3186 }
3187 }
3188
3189 return CXCursor_UnexposedDecl;
3190}
3191
Douglas Gregor55b037b2010-07-08 20:55:51 +00003192static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00003193 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00003194 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00003195 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00003196
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003197 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003198
Douglas Gregor9eb77012009-11-07 00:00:49 +00003199 for (Preprocessor::macro_iterator M = PP.macro_begin(),
3200 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003201 M != MEnd; ++M) {
Richard Smith20e883e2015-04-29 23:20:19 +00003202 auto MD = PP.getMacroDefinition(M->first);
3203 if (IncludeUndefined || MD) {
3204 if (MacroInfo *MI = MD.getMacroInfo())
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003205 if (MI->isUsedForHeaderGuard())
3206 continue;
3207
Douglas Gregor8cb17462012-10-09 16:01:50 +00003208 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00003209 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00003210 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00003211 TargetTypeIsPointer)));
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003212 }
Douglas Gregor55b037b2010-07-08 20:55:51 +00003213 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003214
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003215 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003216
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003217}
3218
Douglas Gregorce0e8562010-08-23 21:54:33 +00003219static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3220 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003221 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003222
3223 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003224
Douglas Gregorce0e8562010-08-23 21:54:33 +00003225 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3226 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003227 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003228 Results.AddResult(Result("__func__", CCP_Constant));
3229 Results.ExitScope();
3230}
3231
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003232static void HandleCodeCompleteResults(Sema *S,
3233 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003234 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003235 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003236 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003237 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003238 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003239}
3240
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003241static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3242 Sema::ParserCompletionContext PCC) {
3243 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003244 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003245 return CodeCompletionContext::CCC_TopLevel;
3246
John McCallfaf5fb42010-08-26 23:41:50 +00003247 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003248 return CodeCompletionContext::CCC_ClassStructUnion;
3249
John McCallfaf5fb42010-08-26 23:41:50 +00003250 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003251 return CodeCompletionContext::CCC_ObjCInterface;
3252
John McCallfaf5fb42010-08-26 23:41:50 +00003253 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003254 return CodeCompletionContext::CCC_ObjCImplementation;
3255
John McCallfaf5fb42010-08-26 23:41:50 +00003256 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003257 return CodeCompletionContext::CCC_ObjCIvarList;
3258
John McCallfaf5fb42010-08-26 23:41:50 +00003259 case Sema::PCC_Template:
3260 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003261 if (S.CurContext->isFileContext())
3262 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003263 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003264 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003265 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003266
John McCallfaf5fb42010-08-26 23:41:50 +00003267 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003268 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003269
John McCallfaf5fb42010-08-26 23:41:50 +00003270 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003271 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3272 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003273 return CodeCompletionContext::CCC_ParenthesizedExpression;
3274 else
3275 return CodeCompletionContext::CCC_Expression;
3276
3277 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003278 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003279 return CodeCompletionContext::CCC_Expression;
3280
John McCallfaf5fb42010-08-26 23:41:50 +00003281 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003282 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003283
John McCallfaf5fb42010-08-26 23:41:50 +00003284 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003285 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003286
3287 case Sema::PCC_ParenthesizedExpression:
3288 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003289
3290 case Sema::PCC_LocalDeclarationSpecifiers:
3291 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003292 }
David Blaikie8a40f702012-01-17 06:56:22 +00003293
3294 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003295}
3296
Douglas Gregorac322ec2010-08-27 21:18:54 +00003297/// \brief If we're in a C++ virtual member function, add completion results
3298/// that invoke the functions we override, since it's common to invoke the
3299/// overridden function as well as adding new functionality.
3300///
3301/// \param S The semantic analysis object for which we are generating results.
3302///
3303/// \param InContext This context in which the nested-name-specifier preceding
3304/// the code-completion point
3305static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3306 ResultBuilder &Results) {
3307 // Look through blocks.
3308 DeclContext *CurContext = S.CurContext;
3309 while (isa<BlockDecl>(CurContext))
3310 CurContext = CurContext->getParent();
3311
3312
3313 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3314 if (!Method || !Method->isVirtual())
3315 return;
3316
3317 // We need to have names for all of the parameters, if we're going to
3318 // generate a forwarding call.
David Majnemer59f77922016-06-24 04:05:48 +00003319 for (auto P : Method->parameters())
Aaron Ballman43b68be2014-03-07 17:50:17 +00003320 if (!P->getDeclName())
Douglas Gregorac322ec2010-08-27 21:18:54 +00003321 return;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003322
Douglas Gregor75acd922011-09-27 23:30:47 +00003323 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003324 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3325 MEnd = Method->end_overridden_methods();
3326 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003327 CodeCompletionBuilder Builder(Results.getAllocator(),
3328 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003329 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003330 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3331 continue;
3332
3333 // If we need a nested-name-specifier, add one now.
3334 if (!InContext) {
3335 NestedNameSpecifier *NNS
3336 = getRequiredQualification(S.Context, CurContext,
3337 Overridden->getDeclContext());
3338 if (NNS) {
3339 std::string Str;
3340 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003341 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003342 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003343 }
3344 } else if (!InContext->Equals(Overridden->getDeclContext()))
3345 continue;
3346
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003347 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003348 Overridden->getNameAsString()));
3349 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003350 bool FirstParam = true;
David Majnemer59f77922016-06-24 04:05:48 +00003351 for (auto P : Method->parameters()) {
Douglas Gregorac322ec2010-08-27 21:18:54 +00003352 if (FirstParam)
3353 FirstParam = false;
3354 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003355 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003356
Aaron Ballman43b68be2014-03-07 17:50:17 +00003357 Builder.AddPlaceholderChunk(
3358 Results.getAllocator().CopyString(P->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003359 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003360 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3361 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003362 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003363 CXCursor_CXXMethod,
3364 CXAvailability_Available,
3365 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003366 Results.Ignore(Overridden);
3367 }
3368}
3369
Douglas Gregor07f43572012-01-29 18:15:03 +00003370void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3371 ModuleIdPath Path) {
3372 typedef CodeCompletionResult Result;
3373 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003374 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003375 CodeCompletionContext::CCC_Other);
3376 Results.EnterNewScope();
3377
3378 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003379 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003380 typedef CodeCompletionResult Result;
3381 if (Path.empty()) {
3382 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003383 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003384 PP.getHeaderSearchInfo().collectAllModules(Modules);
3385 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3386 Builder.AddTypedTextChunk(
3387 Builder.getAllocator().CopyString(Modules[I]->Name));
3388 Results.AddResult(Result(Builder.TakeString(),
3389 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003390 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003391 Modules[I]->isAvailable()
3392 ? CXAvailability_Available
3393 : CXAvailability_NotAvailable));
3394 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003395 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003396 // Load the named module.
3397 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3398 Module::AllVisible,
3399 /*IsInclusionDirective=*/false);
3400 // Enumerate submodules.
3401 if (Mod) {
3402 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3403 SubEnd = Mod->submodule_end();
3404 Sub != SubEnd; ++Sub) {
3405
3406 Builder.AddTypedTextChunk(
3407 Builder.getAllocator().CopyString((*Sub)->Name));
3408 Results.AddResult(Result(Builder.TakeString(),
3409 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003410 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003411 (*Sub)->isAvailable()
3412 ? CXAvailability_Available
3413 : CXAvailability_NotAvailable));
3414 }
3415 }
3416 }
3417 Results.ExitScope();
3418 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3419 Results.data(),Results.size());
3420}
3421
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003422void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003423 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003424 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003425 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003426 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003427 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003428
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003429 // Determine how to filter results, e.g., so that the names of
3430 // values (functions, enumerators, function templates, etc.) are
3431 // only allowed where we can have an expression.
3432 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003433 case PCC_Namespace:
3434 case PCC_Class:
3435 case PCC_ObjCInterface:
3436 case PCC_ObjCImplementation:
3437 case PCC_ObjCInstanceVariableList:
3438 case PCC_Template:
3439 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003440 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003441 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003442 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3443 break;
3444
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003445 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003446 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003447 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003448 case PCC_ForInit:
3449 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003450 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003451 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3452 else
3453 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003454
David Blaikiebbafb8a2012-03-11 07:00:24 +00003455 if (getLangOpts().CPlusPlus)
Craig Topperc3ec1492014-05-26 06:22:03 +00003456 MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003457 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003458
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003459 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003460 // Unfiltered
3461 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003462 }
3463
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003464 // If we are in a C++ non-static member function, check the qualifiers on
3465 // the member function to filter/prioritize the results list.
3466 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3467 if (CurMethod->isInstance())
3468 Results.setObjectTypeQualifiers(
3469 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3470
Douglas Gregorc580c522010-01-14 01:09:38 +00003471 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003472 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3473 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003474
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003475 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003476 Results.ExitScope();
3477
Douglas Gregorce0e8562010-08-23 21:54:33 +00003478 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003479 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003480 case PCC_Expression:
3481 case PCC_Statement:
3482 case PCC_RecoveryInFunction:
3483 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00003484 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003485 break;
3486
3487 case PCC_Namespace:
3488 case PCC_Class:
3489 case PCC_ObjCInterface:
3490 case PCC_ObjCImplementation:
3491 case PCC_ObjCInstanceVariableList:
3492 case PCC_Template:
3493 case PCC_MemberTemplate:
3494 case PCC_ForInit:
3495 case PCC_Condition:
3496 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003497 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003498 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003499 }
3500
Douglas Gregor9eb77012009-11-07 00:00:49 +00003501 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003502 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003503
Douglas Gregor50832e02010-09-20 22:39:41 +00003504 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003505 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003506}
3507
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003508static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3509 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003510 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003511 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003512 bool IsSuper,
3513 ResultBuilder &Results);
3514
3515void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3516 bool AllowNonIdentifiers,
3517 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003518 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003519 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003520 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003521 AllowNestedNameSpecifiers
3522 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3523 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003524 Results.EnterNewScope();
3525
3526 // Type qualifiers can come after names.
3527 Results.AddResult(Result("const"));
3528 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003529 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003530 Results.AddResult(Result("restrict"));
3531
David Blaikiebbafb8a2012-03-11 07:00:24 +00003532 if (getLangOpts().CPlusPlus) {
Alex Lorenz8f4d3992017-02-13 23:19:40 +00003533 if (getLangOpts().CPlusPlus11 &&
3534 (DS.getTypeSpecType() == DeclSpec::TST_class ||
3535 DS.getTypeSpecType() == DeclSpec::TST_struct))
3536 Results.AddResult("final");
3537
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003538 if (AllowNonIdentifiers) {
3539 Results.AddResult(Result("operator"));
3540 }
3541
3542 // Add nested-name-specifiers.
3543 if (AllowNestedNameSpecifiers) {
3544 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003545 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003546 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3547 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3548 CodeCompleter->includeGlobals());
Craig Topperc3ec1492014-05-26 06:22:03 +00003549 Results.setFilter(nullptr);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003550 }
3551 }
3552 Results.ExitScope();
3553
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003554 // If we're in a context where we might have an expression (rather than a
3555 // declaration), and what we've seen so far is an Objective-C type that could
3556 // be a receiver of a class message, this may be a class message send with
3557 // the initial opening bracket '[' missing. Add appropriate completions.
3558 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003559 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003560 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003561 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3562 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003563 !DS.isTypeAltiVecVector() &&
3564 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003565 (S->getFlags() & Scope::DeclScope) != 0 &&
3566 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3567 Scope::FunctionPrototypeScope |
3568 Scope::AtCatchScope)) == 0) {
3569 ParsedType T = DS.getRepAsType();
3570 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003571 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003572 }
3573
Douglas Gregor56ccce02010-08-24 04:59:56 +00003574 // Note that we intentionally suppress macro results here, since we do not
3575 // encourage using macros to produce the names of entities.
3576
Douglas Gregor0ac41382010-09-23 23:01:17 +00003577 HandleCodeCompleteResults(this, CodeCompleter,
3578 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003579 Results.data(), Results.size());
3580}
3581
Douglas Gregor68762e72010-08-23 21:17:50 +00003582struct Sema::CodeCompleteExpressionData {
3583 CodeCompleteExpressionData(QualType PreferredType = QualType())
3584 : PreferredType(PreferredType), IntegralConstantExpression(false),
3585 ObjCCollection(false) { }
3586
3587 QualType PreferredType;
3588 bool IntegralConstantExpression;
3589 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003590 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003591};
3592
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003593/// \brief Perform code-completion in an expression context when we know what
3594/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003595void Sema::CodeCompleteExpression(Scope *S,
3596 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003597 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003598 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003599 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003600 if (Data.ObjCCollection)
3601 Results.setFilter(&ResultBuilder::IsObjCCollection);
3602 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003603 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003604 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003605 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3606 else
3607 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003608
3609 if (!Data.PreferredType.isNull())
3610 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3611
3612 // Ignore any declarations that we were told that we don't care about.
3613 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3614 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003615
3616 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003617 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3618 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003619
3620 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003621 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003622 Results.ExitScope();
3623
Douglas Gregor55b037b2010-07-08 20:55:51 +00003624 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003625 if (!Data.PreferredType.isNull())
3626 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3627 || Data.PreferredType->isMemberPointerType()
3628 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003629
Douglas Gregorce0e8562010-08-23 21:54:33 +00003630 if (S->getFnParent() &&
3631 !Data.ObjCCollection &&
3632 !Data.IntegralConstantExpression)
Craig Topper12126262015-11-15 17:27:57 +00003633 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003634
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003635 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003636 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003637 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003638 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3639 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003640 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003641}
3642
Douglas Gregoreda7e542010-09-18 01:28:11 +00003643void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3644 if (E.isInvalid())
3645 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003646 else if (getLangOpts().ObjC1)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003647 CodeCompleteObjCInstanceMessage(S, E.get(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003648}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003649
Douglas Gregorb888acf2010-12-09 23:01:55 +00003650/// \brief The set of properties that have already been added, referenced by
3651/// property name.
3652typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3653
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003654/// \brief Retrieve the container definition, if any?
3655static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3656 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3657 if (Interface->hasDefinition())
3658 return Interface->getDefinition();
3659
3660 return Interface;
3661 }
3662
3663 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3664 if (Protocol->hasDefinition())
3665 return Protocol->getDefinition();
3666
3667 return Protocol;
3668 }
3669 return Container;
3670}
3671
Alex Lorenzbaef8022016-11-09 13:43:18 +00003672/// \brief Adds a block invocation code completion result for the given block
3673/// declaration \p BD.
3674static void AddObjCBlockCall(ASTContext &Context, const PrintingPolicy &Policy,
3675 CodeCompletionBuilder &Builder,
3676 const NamedDecl *BD,
3677 const FunctionTypeLoc &BlockLoc,
3678 const FunctionProtoTypeLoc &BlockProtoLoc) {
3679 Builder.AddResultTypeChunk(
3680 GetCompletionTypeString(BlockLoc.getReturnLoc().getType(), Context,
3681 Policy, Builder.getAllocator()));
3682
3683 AddTypedNameChunk(Context, Policy, BD, Builder);
3684 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
3685
3686 if (BlockProtoLoc && BlockProtoLoc.getTypePtr()->isVariadic()) {
3687 Builder.AddPlaceholderChunk("...");
3688 } else {
3689 for (unsigned I = 0, N = BlockLoc.getNumParams(); I != N; ++I) {
3690 if (I)
3691 Builder.AddChunk(CodeCompletionString::CK_Comma);
3692
3693 // Format the placeholder string.
3694 std::string PlaceholderStr =
3695 FormatFunctionParameter(Policy, BlockLoc.getParam(I));
3696
3697 if (I == N - 1 && BlockProtoLoc &&
3698 BlockProtoLoc.getTypePtr()->isVariadic())
3699 PlaceholderStr += ", ...";
3700
3701 // Add the placeholder string.
3702 Builder.AddPlaceholderChunk(
3703 Builder.getAllocator().CopyString(PlaceholderStr));
3704 }
3705 }
3706
3707 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3708}
3709
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003710static void AddObjCProperties(
3711 const CodeCompletionContext &CCContext, ObjCContainerDecl *Container,
3712 bool AllowCategories, bool AllowNullaryMethods, DeclContext *CurContext,
3713 AddedPropertiesSet &AddedProperties, ResultBuilder &Results,
3714 bool IsBaseExprStatement = false, bool IsClassProperty = false) {
John McCall276321a2010-08-25 06:19:51 +00003715 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003716
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003717 // Retrieve the definition.
3718 Container = getContainerDef(Container);
3719
Douglas Gregor9291bad2009-11-18 01:29:26 +00003720 // Add properties in this container.
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003721 const auto AddProperty = [&](const ObjCPropertyDecl *P) {
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003722 if (!AddedProperties.insert(P->getIdentifier()).second)
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003723 return;
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003724
Alex Lorenzbaef8022016-11-09 13:43:18 +00003725 // FIXME: Provide block invocation completion for non-statement
3726 // expressions.
3727 if (!P->getType().getTypePtr()->isBlockPointerType() ||
3728 !IsBaseExprStatement) {
3729 Results.MaybeAddResult(Result(P, Results.getBasePriority(P), nullptr),
3730 CurContext);
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003731 return;
Alex Lorenzbaef8022016-11-09 13:43:18 +00003732 }
3733
3734 // Block setter and invocation completion is provided only when we are able
3735 // to find the FunctionProtoTypeLoc with parameter names for the block.
3736 FunctionTypeLoc BlockLoc;
3737 FunctionProtoTypeLoc BlockProtoLoc;
3738 findTypeLocationForBlockDecl(P->getTypeSourceInfo(), BlockLoc,
3739 BlockProtoLoc);
3740 if (!BlockLoc) {
3741 Results.MaybeAddResult(Result(P, Results.getBasePriority(P), nullptr),
3742 CurContext);
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003743 return;
Alex Lorenzbaef8022016-11-09 13:43:18 +00003744 }
3745
3746 // The default completion result for block properties should be the block
3747 // invocation completion when the base expression is a statement.
3748 CodeCompletionBuilder Builder(Results.getAllocator(),
3749 Results.getCodeCompletionTUInfo());
3750 AddObjCBlockCall(Container->getASTContext(),
3751 getCompletionPrintingPolicy(Results.getSema()), Builder, P,
3752 BlockLoc, BlockProtoLoc);
3753 Results.MaybeAddResult(
3754 Result(Builder.TakeString(), P, Results.getBasePriority(P)),
3755 CurContext);
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003756
3757 // Provide additional block setter completion iff the base expression is a
Alex Lorenzbaef8022016-11-09 13:43:18 +00003758 // statement and the block property is mutable.
3759 if (!P->isReadOnly()) {
3760 CodeCompletionBuilder Builder(Results.getAllocator(),
3761 Results.getCodeCompletionTUInfo());
3762 AddResultTypeChunk(Container->getASTContext(),
3763 getCompletionPrintingPolicy(Results.getSema()), P,
3764 CCContext.getBaseType(), Builder);
3765 Builder.AddTypedTextChunk(
3766 Results.getAllocator().CopyString(P->getName()));
3767 Builder.AddChunk(CodeCompletionString::CK_Equal);
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003768
Alex Lorenzbaef8022016-11-09 13:43:18 +00003769 std::string PlaceholderStr = formatBlockPlaceholder(
3770 getCompletionPrintingPolicy(Results.getSema()), P, BlockLoc,
3771 BlockProtoLoc, /*SuppressBlockName=*/true);
3772 // Add the placeholder string.
3773 Builder.AddPlaceholderChunk(
3774 Builder.getAllocator().CopyString(PlaceholderStr));
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003775
Alex Lorenz6e0f3932017-01-06 12:00:44 +00003776 // When completing blocks properties that return void the default
3777 // property completion result should show up before the setter,
3778 // otherwise the setter completion should show up before the default
3779 // property completion, as we normally want to use the result of the
3780 // call.
Alex Lorenzbaef8022016-11-09 13:43:18 +00003781 Results.MaybeAddResult(
3782 Result(Builder.TakeString(), P,
Alex Lorenz6e0f3932017-01-06 12:00:44 +00003783 Results.getBasePriority(P) +
3784 (BlockLoc.getTypePtr()->getReturnType()->isVoidType()
3785 ? CCD_BlockPropertySetter
3786 : -CCD_BlockPropertySetter)),
Alex Lorenzbaef8022016-11-09 13:43:18 +00003787 CurContext);
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003788 }
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003789 };
3790
3791 if (IsClassProperty) {
3792 for (const auto *P : Container->class_properties())
3793 AddProperty(P);
3794 } else {
3795 for (const auto *P : Container->instance_properties())
3796 AddProperty(P);
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003797 }
Craig Topperc3ec1492014-05-26 06:22:03 +00003798
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003799 // Add nullary methods or implicit class properties
Douglas Gregor95147142011-05-05 15:50:42 +00003800 if (AllowNullaryMethods) {
3801 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003802 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003803 // Adds a method result
3804 const auto AddMethod = [&](const ObjCMethodDecl *M) {
3805 IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0);
3806 if (!Name)
3807 return;
3808 if (!AddedProperties.insert(Name).second)
3809 return;
3810 CodeCompletionBuilder Builder(Results.getAllocator(),
3811 Results.getCodeCompletionTUInfo());
3812 AddResultTypeChunk(Context, Policy, M, CCContext.getBaseType(), Builder);
3813 Builder.AddTypedTextChunk(
3814 Results.getAllocator().CopyString(Name->getName()));
3815 Results.MaybeAddResult(
3816 Result(Builder.TakeString(), M,
3817 CCP_MemberDeclaration + CCD_MethodAsProperty),
3818 CurContext);
3819 };
3820
3821 if (IsClassProperty) {
3822 for (const auto *M : Container->methods()) {
3823 // Gather the class method that can be used as implicit property
3824 // getters. Methods with arguments or methods that return void aren't
3825 // added to the results as they can't be used as a getter.
3826 if (!M->getSelector().isUnarySelector() ||
3827 M->getReturnType()->isVoidType() || M->isInstanceMethod())
3828 continue;
3829 AddMethod(M);
3830 }
3831 } else {
3832 for (auto *M : Container->methods()) {
3833 if (M->getSelector().isUnarySelector())
3834 AddMethod(M);
3835 }
Douglas Gregor95147142011-05-05 15:50:42 +00003836 }
3837 }
Douglas Gregor95147142011-05-05 15:50:42 +00003838
Douglas Gregor9291bad2009-11-18 01:29:26 +00003839 // Add properties in referenced protocols.
3840 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003841 for (auto *P : Protocol->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003842 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003843 CurContext, AddedProperties, Results,
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003844 IsBaseExprStatement, IsClassProperty);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003845 } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){
Douglas Gregor5d649882009-11-18 22:32:06 +00003846 if (AllowCategories) {
3847 // Look through categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00003848 for (auto *Cat : IFace->known_categories())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003849 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003850 CurContext, AddedProperties, Results,
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003851 IsBaseExprStatement, IsClassProperty);
Douglas Gregor5d649882009-11-18 22:32:06 +00003852 }
Aaron Ballman15063e12014-03-13 21:35:02 +00003853
Douglas Gregor9291bad2009-11-18 01:29:26 +00003854 // Look through protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003855 for (auto *I : IFace->all_referenced_protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003856 AddObjCProperties(CCContext, I, AllowCategories, AllowNullaryMethods,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003857 CurContext, AddedProperties, Results,
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003858 IsBaseExprStatement, IsClassProperty);
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003859
Douglas Gregor9291bad2009-11-18 01:29:26 +00003860 // Look in the superclass.
3861 if (IFace->getSuperClass())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003862 AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003863 AllowNullaryMethods, CurContext, AddedProperties,
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003864 Results, IsBaseExprStatement, IsClassProperty);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003865 } else if (const ObjCCategoryDecl *Category
3866 = dyn_cast<ObjCCategoryDecl>(Container)) {
3867 // Look through protocols.
Aaron Ballman19a41762014-03-14 12:55:57 +00003868 for (auto *P : Category->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003869 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003870 CurContext, AddedProperties, Results,
Alex Lorenzfeafdf62016-12-08 15:09:40 +00003871 IsBaseExprStatement, IsClassProperty);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003872 }
3873}
3874
Alex Lorenz0fe0d982017-05-11 13:41:00 +00003875static void AddRecordMembersCompletionResults(Sema &SemaRef,
3876 ResultBuilder &Results, Scope *S,
3877 QualType BaseType,
3878 RecordDecl *RD) {
3879 // Indicate that we are performing a member access, and the cv-qualifiers
3880 // for the base object type.
3881 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3882
3883 // Access to a C/C++ class, struct, or union.
3884 Results.allowNestedNameSpecifiers();
3885 CodeCompletionDeclConsumer Consumer(Results, SemaRef.CurContext);
3886 SemaRef.LookupVisibleDecls(RD, Sema::LookupMemberName, Consumer,
Alex Lorenze6afa392017-05-11 13:48:57 +00003887 SemaRef.CodeCompleter->includeGlobals(),
3888 /*IncludeDependentBases=*/true);
Alex Lorenz0fe0d982017-05-11 13:41:00 +00003889
3890 if (SemaRef.getLangOpts().CPlusPlus) {
3891 if (!Results.empty()) {
3892 // The "template" keyword can follow "->" or "." in the grammar.
3893 // However, we only want to suggest the template keyword if something
3894 // is dependent.
3895 bool IsDependent = BaseType->isDependentType();
3896 if (!IsDependent) {
3897 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
3898 if (DeclContext *Ctx = DepScope->getEntity()) {
3899 IsDependent = Ctx->isDependentContext();
3900 break;
3901 }
3902 }
3903
3904 if (IsDependent)
3905 Results.AddResult(CodeCompletionResult("template"));
3906 }
3907 }
3908}
3909
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003910void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003911 SourceLocation OpLoc, bool IsArrow,
3912 bool IsBaseExprStatement) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003913 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003914 return;
3915
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003916 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3917 if (ConvertedBase.isInvalid())
3918 return;
3919 Base = ConvertedBase.get();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003920
Douglas Gregor2436e712009-09-17 21:32:03 +00003921 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003922
3923 if (IsArrow) {
3924 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3925 BaseType = Ptr->getPointeeType();
3926 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003927 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003928 else
3929 return;
3930 }
3931
Douglas Gregor21325842011-07-07 16:03:39 +00003932 enum CodeCompletionContext::Kind contextKind;
3933
3934 if (IsArrow) {
3935 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3936 }
3937 else {
3938 if (BaseType->isObjCObjectPointerType() ||
3939 BaseType->isObjCObjectOrInterfaceType()) {
3940 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3941 }
3942 else {
3943 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3944 }
3945 }
Douglas Gregorc3425b12015-07-07 06:20:19 +00003946
3947 CodeCompletionContext CCContext(contextKind, BaseType);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003948 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003949 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00003950 CCContext,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003951 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003952 Results.EnterNewScope();
3953 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Alex Lorenz0fe0d982017-05-11 13:41:00 +00003954 AddRecordMembersCompletionResults(*this, Results, S, BaseType,
3955 Record->getDecl());
Alex Lorenze6afa392017-05-11 13:48:57 +00003956 } else if (const auto *TST = BaseType->getAs<TemplateSpecializationType>()) {
3957 TemplateName TN = TST->getTemplateName();
3958 if (const auto *TD =
3959 dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl())) {
3960 CXXRecordDecl *RD = TD->getTemplatedDecl();
3961 AddRecordMembersCompletionResults(*this, Results, S, BaseType, RD);
3962 }
3963 } else if (const auto *ICNT = BaseType->getAs<InjectedClassNameType>()) {
3964 if (auto *RD = ICNT->getDecl())
3965 AddRecordMembersCompletionResults(*this, Results, S, BaseType, RD);
Alex Lorenz06cfa992016-10-12 11:40:15 +00003966 } else if (!IsArrow && BaseType->isObjCObjectPointerType()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003967 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003968 AddedPropertiesSet AddedProperties;
Alex Lorenz06cfa992016-10-12 11:40:15 +00003969
3970 if (const ObjCObjectPointerType *ObjCPtr =
3971 BaseType->getAsObjCInterfacePointerType()) {
3972 // Add property results based on our interface.
3973 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
3974 AddObjCProperties(CCContext, ObjCPtr->getInterfaceDecl(), true,
3975 /*AllowNullaryMethods=*/true, CurContext,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003976 AddedProperties, Results, IsBaseExprStatement);
Alex Lorenz06cfa992016-10-12 11:40:15 +00003977 }
3978
Douglas Gregor9291bad2009-11-18 01:29:26 +00003979 // Add properties from the protocols in a qualified interface.
Alex Lorenz06cfa992016-10-12 11:40:15 +00003980 for (auto *I : BaseType->getAs<ObjCObjectPointerType>()->quals())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003981 AddObjCProperties(CCContext, I, true, /*AllowNullaryMethods=*/true,
Alex Lorenzf0b4e5d2016-10-18 10:55:01 +00003982 CurContext, AddedProperties, Results,
3983 IsBaseExprStatement);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003984 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003985 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003986 // Objective-C instance variable access.
Craig Topperc3ec1492014-05-26 06:22:03 +00003987 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003988 if (const ObjCObjectPointerType *ObjCPtr
3989 = BaseType->getAs<ObjCObjectPointerType>())
3990 Class = ObjCPtr->getInterfaceDecl();
3991 else
John McCall8b07ec22010-05-15 11:32:37 +00003992 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003993
3994 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003995 if (Class) {
3996 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3997 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003998 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3999 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00004000 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00004001 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00004002
4003 // FIXME: How do we cope with isa?
4004
4005 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00004006
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00004007 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004008 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004009 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004010 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004011}
4012
Alex Lorenzfeafdf62016-12-08 15:09:40 +00004013void Sema::CodeCompleteObjCClassPropertyRefExpr(Scope *S,
4014 IdentifierInfo &ClassName,
4015 SourceLocation ClassNameLoc,
4016 bool IsBaseExprStatement) {
4017 IdentifierInfo *ClassNamePtr = &ClassName;
4018 ObjCInterfaceDecl *IFace = getObjCInterfaceDecl(ClassNamePtr, ClassNameLoc);
4019 if (!IFace)
4020 return;
4021 CodeCompletionContext CCContext(
4022 CodeCompletionContext::CCC_ObjCPropertyAccess);
4023 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
4024 CodeCompleter->getCodeCompletionTUInfo(), CCContext,
4025 &ResultBuilder::IsMember);
4026 Results.EnterNewScope();
4027 AddedPropertiesSet AddedProperties;
4028 AddObjCProperties(CCContext, IFace, true,
4029 /*AllowNullaryMethods=*/true, CurContext, AddedProperties,
4030 Results, IsBaseExprStatement,
4031 /*IsClassProperty=*/true);
4032 Results.ExitScope();
4033 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4034 Results.data(), Results.size());
4035}
4036
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004037void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
4038 if (!CodeCompleter)
4039 return;
Craig Topperc3ec1492014-05-26 06:22:03 +00004040
4041 ResultBuilder::LookupFilter Filter = nullptr;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004042 enum CodeCompletionContext::Kind ContextKind
4043 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004044 switch ((DeclSpec::TST)TagSpec) {
4045 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00004046 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004047 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004048 break;
4049
4050 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00004051 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004052 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004053 break;
4054
4055 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004056 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00004057 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00004058 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004059 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004060 break;
4061
4062 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004063 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004064 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00004065
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004066 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
4067 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004068 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00004069
4070 // First pass: look for tags.
4071 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00004072 LookupVisibleDecls(S, LookupTagName, Consumer,
4073 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00004074
Douglas Gregor39982192010-08-15 06:18:01 +00004075 if (CodeCompleter->includeGlobals()) {
4076 // Second pass: look for nested name specifiers.
4077 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
4078 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
4079 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00004080
Douglas Gregor0ac41382010-09-23 23:01:17 +00004081 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004082 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00004083}
4084
Alex Lorenz8f4d3992017-02-13 23:19:40 +00004085static void AddTypeQualifierResults(DeclSpec &DS, ResultBuilder &Results,
4086 const LangOptions &LangOpts) {
4087 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
4088 Results.AddResult("const");
4089 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
4090 Results.AddResult("volatile");
4091 if (LangOpts.C99 && !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
4092 Results.AddResult("restrict");
4093 if (LangOpts.C11 && !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
4094 Results.AddResult("_Atomic");
4095 if (LangOpts.MSVCCompat && !(DS.getTypeQualifiers() & DeclSpec::TQ_unaligned))
4096 Results.AddResult("__unaligned");
4097}
4098
Douglas Gregor28c78432010-08-27 17:35:51 +00004099void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004100 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004101 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004102 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00004103 Results.EnterNewScope();
Alex Lorenz8f4d3992017-02-13 23:19:40 +00004104 AddTypeQualifierResults(DS, Results, LangOpts);
Douglas Gregor28c78432010-08-27 17:35:51 +00004105 Results.ExitScope();
4106 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004107 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00004108 Results.data(), Results.size());
4109}
4110
Alex Lorenz8f4d3992017-02-13 23:19:40 +00004111void Sema::CodeCompleteFunctionQualifiers(DeclSpec &DS, Declarator &D,
4112 const VirtSpecifiers *VS) {
4113 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
4114 CodeCompleter->getCodeCompletionTUInfo(),
4115 CodeCompletionContext::CCC_TypeQualifiers);
4116 Results.EnterNewScope();
4117 AddTypeQualifierResults(DS, Results, LangOpts);
4118 if (LangOpts.CPlusPlus11) {
4119 Results.AddResult("noexcept");
4120 if (D.getContext() == Declarator::MemberContext && !D.isCtorOrDtor() &&
4121 !D.isStaticMember()) {
4122 if (!VS || !VS->isFinalSpecified())
4123 Results.AddResult("final");
4124 if (!VS || !VS->isOverrideSpecified())
4125 Results.AddResult("override");
4126 }
4127 }
4128 Results.ExitScope();
4129 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4130 Results.data(), Results.size());
4131}
4132
Benjamin Kramer72dae622016-02-18 15:30:24 +00004133void Sema::CodeCompleteBracketDeclarator(Scope *S) {
4134 CodeCompleteExpression(S, QualType(getASTContext().getSizeType()));
4135}
4136
Douglas Gregord328d572009-09-21 18:10:23 +00004137void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00004138 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00004139 return;
John McCall5939b162011-08-06 07:30:58 +00004140
John McCallaab3e412010-08-25 08:40:02 +00004141 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00004142 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
4143 if (!type->isEnumeralType()) {
4144 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00004145 Data.IntegralConstantExpression = true;
4146 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00004147 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00004148 }
Douglas Gregord328d572009-09-21 18:10:23 +00004149
4150 // Code-complete the cases of a switch statement over an enumeration type
4151 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00004152 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00004153 if (EnumDecl *Def = Enum->getDefinition())
4154 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00004155
4156 // Determine which enumerators we have already seen in the switch statement.
4157 // FIXME: Ideally, we would also be able to look *past* the code-completion
4158 // token, in case we are code-completing in the middle of the switch and not
4159 // at the end. However, we aren't able to do so at the moment.
4160 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Craig Topperc3ec1492014-05-26 06:22:03 +00004161 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregord328d572009-09-21 18:10:23 +00004162 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
4163 SC = SC->getNextSwitchCase()) {
4164 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
4165 if (!Case)
4166 continue;
4167
4168 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
4169 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
4170 if (EnumConstantDecl *Enumerator
4171 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
4172 // We look into the AST of the case statement to determine which
4173 // enumerator was named. Alternatively, we could compute the value of
4174 // the integral constant expression, then compare it against the
4175 // values of each enumerator. However, value-based approach would not
4176 // work as well with C++ templates where enumerators declared within a
4177 // template are type- and value-dependent.
4178 EnumeratorsSeen.insert(Enumerator);
4179
Douglas Gregorf2510672009-09-21 19:57:38 +00004180 // If this is a qualified-id, keep track of the nested-name-specifier
4181 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00004182 //
4183 // switch (TagD.getKind()) {
4184 // case TagDecl::TK_enum:
4185 // break;
4186 // case XXX
4187 //
Douglas Gregorf2510672009-09-21 19:57:38 +00004188 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00004189 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
4190 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00004191 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00004192 }
4193 }
4194
David Blaikiebbafb8a2012-03-11 07:00:24 +00004195 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00004196 // If there are no prior enumerators in C++, check whether we have to
4197 // qualify the names of the enumerators that we suggest, because they
4198 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00004199 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00004200 }
4201
Douglas Gregord328d572009-09-21 18:10:23 +00004202 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004203 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004204 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004205 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00004206 Results.EnterNewScope();
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00004207 for (auto *E : Enum->enumerators()) {
4208 if (EnumeratorsSeen.count(E))
Douglas Gregord328d572009-09-21 18:10:23 +00004209 continue;
4210
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00004211 CodeCompletionResult R(E, CCP_EnumInCase, Qualifier);
Craig Topperc3ec1492014-05-26 06:22:03 +00004212 Results.AddResult(R, CurContext, nullptr, false);
Douglas Gregord328d572009-09-21 18:10:23 +00004213 }
4214 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00004215
Douglas Gregor21325842011-07-07 16:03:39 +00004216 //We need to make sure we're setting the right context,
4217 //so only say we include macros if the code completer says we do
4218 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
4219 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00004220 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00004221 kind = CodeCompletionContext::CCC_OtherWithMacros;
4222 }
4223
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004224 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00004225 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004226 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00004227}
4228
Robert Wilhelm16e94b92013-08-09 18:02:13 +00004229static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004230 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00004231 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004232
4233 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00004234 if (!Args[I])
4235 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004236
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00004237 return false;
4238}
4239
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004240typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
4241
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00004242static void mergeCandidatesWithResults(Sema &SemaRef,
4243 SmallVectorImpl<ResultCandidate> &Results,
4244 OverloadCandidateSet &CandidateSet,
4245 SourceLocation Loc) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004246 if (!CandidateSet.empty()) {
4247 // Sort the overload candidate set by placing the best overloads first.
4248 std::stable_sort(
4249 CandidateSet.begin(), CandidateSet.end(),
4250 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
4251 return isBetterOverloadCandidate(SemaRef, X, Y, Loc);
4252 });
4253
4254 // Add the remaining viable overload candidates as code-completion results.
4255 for (auto &Candidate : CandidateSet)
4256 if (Candidate.Viable)
4257 Results.push_back(ResultCandidate(Candidate.Function));
4258 }
4259}
4260
4261/// \brief Get the type of the Nth parameter from a given set of overload
4262/// candidates.
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00004263static QualType getParamType(Sema &SemaRef,
4264 ArrayRef<ResultCandidate> Candidates,
4265 unsigned N) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004266
4267 // Given the overloads 'Candidates' for a function call matching all arguments
4268 // up to N, return the type of the Nth parameter if it is the same for all
4269 // overload candidates.
4270 QualType ParamType;
4271 for (auto &Candidate : Candidates) {
4272 if (auto FType = Candidate.getFunctionType())
4273 if (auto Proto = dyn_cast<FunctionProtoType>(FType))
4274 if (N < Proto->getNumParams()) {
4275 if (ParamType.isNull())
4276 ParamType = Proto->getParamType(N);
4277 else if (!SemaRef.Context.hasSameUnqualifiedType(
4278 ParamType.getNonReferenceType(),
4279 Proto->getParamType(N).getNonReferenceType()))
4280 // Otherwise return a default-constructed QualType.
4281 return QualType();
4282 }
4283 }
4284
4285 return ParamType;
4286}
4287
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00004288static void CodeCompleteOverloadResults(Sema &SemaRef, Scope *S,
4289 MutableArrayRef<ResultCandidate> Candidates,
4290 unsigned CurrentArg,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004291 bool CompleteExpressionWithCurrentArg = true) {
4292 QualType ParamType;
4293 if (CompleteExpressionWithCurrentArg)
4294 ParamType = getParamType(SemaRef, Candidates, CurrentArg);
4295
4296 if (ParamType.isNull())
4297 SemaRef.CodeCompleteOrdinaryName(S, Sema::PCC_Expression);
4298 else
4299 SemaRef.CodeCompleteExpression(S, ParamType);
4300
4301 if (!Candidates.empty())
4302 SemaRef.CodeCompleter->ProcessOverloadCandidates(SemaRef, CurrentArg,
4303 Candidates.data(),
4304 Candidates.size());
4305}
4306
4307void Sema::CodeCompleteCall(Scope *S, Expr *Fn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00004308 if (!CodeCompleter)
4309 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00004310
4311 // When we're code-completing for a call, we fall back to ordinary
4312 // name code-completion whenever we can't produce specific
4313 // results. We may want to revisit this strategy in the future,
4314 // e.g., by merging the two kinds of results.
4315
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004316 // FIXME: Provide support for variadic template functions.
Douglas Gregor3ef59522009-12-11 19:06:04 +00004317
Douglas Gregorcabea402009-09-22 15:41:20 +00004318 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004319 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
4320 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004321 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00004322 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00004323 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004324
John McCall57500772009-12-16 12:17:52 +00004325 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00004326 SourceLocation Loc = Fn->getExprLoc();
Richard Smith100b24a2014-04-17 01:52:14 +00004327 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
John McCall57500772009-12-16 12:17:52 +00004328
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004329 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00004330
John McCall57500772009-12-16 12:17:52 +00004331 Expr *NakedFn = Fn->IgnoreParenCasts();
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004332 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004333 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004334 /*PartialOverloading=*/true);
4335 else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) {
4336 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = nullptr;
4337 if (UME->hasExplicitTemplateArgs()) {
4338 UME->copyTemplateArgumentsInto(TemplateArgsBuffer);
4339 TemplateArgs = &TemplateArgsBuffer;
Douglas Gregorff59f672010-01-21 15:46:19 +00004340 }
Erik Verbruggenf1898cf2017-03-28 07:22:21 +00004341
4342 // Add the base as first argument (use a nullptr if the base is implicit).
4343 SmallVector<Expr *, 12> ArgExprs(
4344 1, UME->isImplicitAccess() ? nullptr : UME->getBase());
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004345 ArgExprs.append(Args.begin(), Args.end());
4346 UnresolvedSet<8> Decls;
4347 Decls.append(UME->decls_begin(), UME->decls_end());
4348 AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs,
4349 /*SuppressUsedConversions=*/false,
4350 /*PartialOverloading=*/true);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004351 } else {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004352 FunctionDecl *FD = nullptr;
4353 if (auto MCE = dyn_cast<MemberExpr>(NakedFn))
4354 FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl());
4355 else if (auto DRE = dyn_cast<DeclRefExpr>(NakedFn))
4356 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004357 if (FD) { // We check whether it's a resolved function declaration.
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00004358 if (!getLangOpts().CPlusPlus ||
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004359 !FD->getType()->getAs<FunctionProtoType>())
4360 Results.push_back(ResultCandidate(FD));
4361 else
4362 AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()),
4363 Args, CandidateSet,
4364 /*SuppressUsedConversions=*/false,
4365 /*PartialOverloading=*/true);
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004366
4367 } else if (auto DC = NakedFn->getType()->getAsCXXRecordDecl()) {
4368 // If expression's type is CXXRecordDecl, it may overload the function
4369 // call operator, so we check if it does and add them as candidates.
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004370 // A complete type is needed to lookup for member function call operators.
Richard Smithdb0ac552015-12-18 22:40:25 +00004371 if (isCompleteType(Loc, NakedFn->getType())) {
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004372 DeclarationName OpName = Context.DeclarationNames
4373 .getCXXOperatorName(OO_Call);
4374 LookupResult R(*this, OpName, Loc, LookupOrdinaryName);
4375 LookupQualifiedName(R, DC);
4376 R.suppressDiagnostics();
4377 SmallVector<Expr *, 12> ArgExprs(1, NakedFn);
4378 ArgExprs.append(Args.begin(), Args.end());
4379 AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet,
4380 /*ExplicitArgs=*/nullptr,
4381 /*SuppressUsedConversions=*/false,
4382 /*PartialOverloading=*/true);
4383 }
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004384 } else {
4385 // Lastly we check whether expression's type is function pointer or
4386 // function.
4387 QualType T = NakedFn->getType();
4388 if (!T->getPointeeType().isNull())
4389 T = T->getPointeeType();
4390
4391 if (auto FP = T->getAs<FunctionProtoType>()) {
4392 if (!TooManyArguments(FP->getNumParams(), Args.size(),
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004393 /*PartialOverloading=*/true) ||
4394 FP->isVariadic())
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004395 Results.push_back(ResultCandidate(FP));
4396 } else if (auto FT = T->getAs<FunctionType>())
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004397 // No prototype and declaration, it may be a K & R style function.
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004398 Results.push_back(ResultCandidate(FT));
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004399 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004400 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00004401
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004402 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4403 CodeCompleteOverloadResults(*this, S, Results, Args.size(),
4404 !CandidateSet.empty());
4405}
4406
4407void Sema::CodeCompleteConstructor(Scope *S, QualType Type, SourceLocation Loc,
4408 ArrayRef<Expr *> Args) {
4409 if (!CodeCompleter)
4410 return;
4411
4412 // A complete type is needed to lookup for constructors.
Richard Smithdb0ac552015-12-18 22:40:25 +00004413 if (!isCompleteType(Loc, Type))
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004414 return;
4415
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004416 CXXRecordDecl *RD = Type->getAsCXXRecordDecl();
4417 if (!RD) {
4418 CodeCompleteExpression(S, Type);
4419 return;
4420 }
4421
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004422 // FIXME: Provide support for member initializers.
4423 // FIXME: Provide support for variadic template constructors.
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004424
4425 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
4426
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004427 for (auto C : LookupConstructors(RD)) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004428 if (auto FD = dyn_cast<FunctionDecl>(C)) {
4429 AddOverloadCandidate(FD, DeclAccessPair::make(FD, C->getAccess()),
4430 Args, CandidateSet,
4431 /*SuppressUsedConversions=*/false,
4432 /*PartialOverloading=*/true);
4433 } else if (auto FTD = dyn_cast<FunctionTemplateDecl>(C)) {
4434 AddTemplateOverloadCandidate(FTD,
4435 DeclAccessPair::make(FTD, C->getAccess()),
4436 /*ExplicitTemplateArgs=*/nullptr,
4437 Args, CandidateSet,
4438 /*SuppressUsedConversions=*/false,
4439 /*PartialOverloading=*/true);
4440 }
4441 }
4442
4443 SmallVector<ResultCandidate, 8> Results;
4444 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4445 CodeCompleteOverloadResults(*this, S, Results, Args.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00004446}
4447
John McCall48871652010-08-21 09:40:31 +00004448void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
4449 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004450 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004451 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004452 return;
4453 }
4454
4455 CodeCompleteExpression(S, VD->getType());
4456}
4457
4458void Sema::CodeCompleteReturn(Scope *S) {
4459 QualType ResultType;
4460 if (isa<BlockDecl>(CurContext)) {
4461 if (BlockScopeInfo *BSI = getCurBlock())
4462 ResultType = BSI->ReturnType;
4463 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004464 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004465 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004466 ResultType = Method->getReturnType();
4467
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004468 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004469 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004470 else
4471 CodeCompleteExpression(S, ResultType);
4472}
4473
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004474void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004475 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004476 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004477 mapCodeCompletionContext(*this, PCC_Statement));
4478 Results.setFilter(&ResultBuilder::IsOrdinaryName);
4479 Results.EnterNewScope();
4480
4481 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4482 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4483 CodeCompleter->includeGlobals());
4484
4485 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
4486
4487 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004488 CodeCompletionBuilder Builder(Results.getAllocator(),
4489 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004490 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004491 if (Results.includeCodePatterns()) {
4492 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4493 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4494 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4495 Builder.AddPlaceholderChunk("statements");
4496 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4497 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4498 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004499 Results.AddResult(Builder.TakeString());
4500
4501 // "else if" block
4502 Builder.AddTypedTextChunk("else");
4503 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4504 Builder.AddTextChunk("if");
4505 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4506 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00004507 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004508 Builder.AddPlaceholderChunk("condition");
4509 else
4510 Builder.AddPlaceholderChunk("expression");
4511 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004512 if (Results.includeCodePatterns()) {
4513 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4514 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4515 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4516 Builder.AddPlaceholderChunk("statements");
4517 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4518 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4519 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004520 Results.AddResult(Builder.TakeString());
4521
4522 Results.ExitScope();
4523
4524 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00004525 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004526
4527 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004528 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004529
4530 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4531 Results.data(),Results.size());
4532}
4533
Richard Trieu2bd04012011-09-09 02:00:50 +00004534void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004535 if (LHS)
4536 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4537 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004538 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004539}
4540
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004541void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004542 bool EnteringContext) {
4543 if (!SS.getScopeRep() || !CodeCompleter)
4544 return;
Alex Lorenz8a7a4cf2017-06-15 21:40:54 +00004545
4546 // Always pretend to enter a context to ensure that a dependent type
4547 // resolves to a dependent record.
4548 DeclContext *Ctx = computeDeclContext(SS, /*EnteringContext=*/true);
Douglas Gregor3545ff42009-09-21 16:56:56 +00004549 if (!Ctx)
4550 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004551
4552 // Try to instantiate any non-dependent declaration contexts before
4553 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004554 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004555 return;
4556
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004557 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004558 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004559 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004560 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004561
Douglas Gregor3545ff42009-09-21 16:56:56 +00004562 // The "template" keyword can follow "::" in the grammar, but only
4563 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004564 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004565 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004566 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004567
4568 // Add calls to overridden virtual functions, if there are any.
4569 //
4570 // FIXME: This isn't wonderful, because we don't know whether we're actually
4571 // in a context that permits expressions. This is a general issue with
4572 // qualified-id completions.
4573 if (!EnteringContext)
4574 MaybeAddOverrideCalls(*this, Ctx, Results);
4575 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004576
Douglas Gregorac322ec2010-08-27 21:18:54 +00004577 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Alex Lorenz8a7a4cf2017-06-15 21:40:54 +00004578 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer,
4579 /*IncludeGlobalScope=*/true,
4580 /*IncludeDependentBases=*/true);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004581
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004582 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004583 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004584 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004585}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004586
4587void Sema::CodeCompleteUsing(Scope *S) {
4588 if (!CodeCompleter)
4589 return;
4590
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004591 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004592 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004593 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4594 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004595 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004596
4597 // If we aren't in class scope, we could see the "namespace" keyword.
4598 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004599 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004600
4601 // After "using", we can see anything that would start a
4602 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004603 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004604 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4605 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004606 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004607
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004608 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004609 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004610 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004611}
4612
4613void Sema::CodeCompleteUsingDirective(Scope *S) {
4614 if (!CodeCompleter)
4615 return;
4616
Douglas Gregor3545ff42009-09-21 16:56:56 +00004617 // After "using namespace", we expect to see a namespace name or namespace
4618 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004619 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004620 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004621 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004622 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004623 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004624 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004625 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4626 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004627 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004628 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004629 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004630 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004631}
4632
4633void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4634 if (!CodeCompleter)
4635 return;
4636
Ted Kremenekc37877d2013-10-08 17:08:03 +00004637 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004638 if (!S->getParent())
4639 Ctx = Context.getTranslationUnitDecl();
4640
Douglas Gregor0ac41382010-09-23 23:01:17 +00004641 bool SuppressedGlobalResults
4642 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4643
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004644 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004645 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004646 SuppressedGlobalResults
4647 ? CodeCompletionContext::CCC_Namespace
4648 : CodeCompletionContext::CCC_Other,
4649 &ResultBuilder::IsNamespace);
4650
4651 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004652 // We only want to see those namespaces that have already been defined
4653 // within this scope, because its likely that the user is creating an
4654 // extended namespace declaration. Keep track of the most recent
4655 // definition of each namespace.
4656 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4657 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4658 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4659 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004660 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004661
4662 // Add the most recent definition (or extended definition) of each
4663 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004664 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004665 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004666 NS = OrigToLatest.begin(),
4667 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004668 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004669 Results.AddResult(CodeCompletionResult(
Craig Topperc3ec1492014-05-26 06:22:03 +00004670 NS->second, Results.getBasePriority(NS->second),
4671 nullptr),
4672 CurContext, nullptr, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004673 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004674 }
4675
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004676 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004677 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004678 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004679}
4680
4681void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4682 if (!CodeCompleter)
4683 return;
4684
Douglas Gregor3545ff42009-09-21 16:56:56 +00004685 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004686 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004687 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004688 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004689 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004690 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004691 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4692 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004693 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004694 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004695 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004696}
4697
Douglas Gregorc811ede2009-09-18 20:05:18 +00004698void Sema::CodeCompleteOperatorName(Scope *S) {
4699 if (!CodeCompleter)
4700 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004701
John McCall276321a2010-08-25 06:19:51 +00004702 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004703 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004704 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004705 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004706 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004707 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004708
Douglas Gregor3545ff42009-09-21 16:56:56 +00004709 // Add the names of overloadable operators.
4710#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4711 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004712 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004713#include "clang/Basic/OperatorKinds.def"
4714
4715 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004716 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004717 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004718 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4719 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004720
4721 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004722 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004723 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004724
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004725 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004726 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004727 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004728}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004729
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004730void Sema::CodeCompleteConstructorInitializer(
4731 Decl *ConstructorD,
4732 ArrayRef <CXXCtorInitializer *> Initializers) {
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004733 if (!ConstructorD)
4734 return;
4735
4736 AdjustDeclIfTemplate(ConstructorD);
4737
4738 CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004739 if (!Constructor)
4740 return;
4741
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004742 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004743 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004744 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004745 Results.EnterNewScope();
4746
4747 // Fill in any already-initialized fields or base classes.
4748 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4749 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004750 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004751 if (Initializers[I]->isBaseInitializer())
4752 InitializedBases.insert(
4753 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4754 else
Francois Pichetd583da02010-12-04 09:14:42 +00004755 InitializedFields.insert(cast<FieldDecl>(
4756 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004757 }
4758
4759 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004760 CodeCompletionBuilder Builder(Results.getAllocator(),
4761 Results.getCodeCompletionTUInfo());
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004762 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004763 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004764 CXXRecordDecl *ClassDecl = Constructor->getParent();
Aaron Ballman574705e2014-03-13 15:41:46 +00004765 for (const auto &Base : ClassDecl->bases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004766 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4767 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004768 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004769 = !Initializers.empty() &&
4770 Initializers.back()->isBaseInitializer() &&
Aaron Ballman574705e2014-03-13 15:41:46 +00004771 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004772 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004773 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004774 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004775
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004776 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004777 Results.getAllocator().CopyString(
Aaron Ballman574705e2014-03-13 15:41:46 +00004778 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004779 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4780 Builder.AddPlaceholderChunk("args");
4781 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4782 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004783 SawLastInitializer? CCP_NextInitializer
4784 : CCP_MemberDeclaration));
4785 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004786 }
4787
4788 // Add completions for virtual base classes.
Aaron Ballman445a9392014-03-13 16:15:17 +00004789 for (const auto &Base : ClassDecl->vbases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004790 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4791 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004792 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004793 = !Initializers.empty() &&
4794 Initializers.back()->isBaseInitializer() &&
Aaron Ballman445a9392014-03-13 16:15:17 +00004795 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004796 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004797 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004798 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004799
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004800 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004801 Builder.getAllocator().CopyString(
Aaron Ballman445a9392014-03-13 16:15:17 +00004802 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004803 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4804 Builder.AddPlaceholderChunk("args");
4805 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4806 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004807 SawLastInitializer? CCP_NextInitializer
4808 : CCP_MemberDeclaration));
4809 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004810 }
4811
4812 // Add completions for members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004813 for (auto *Field : ClassDecl->fields()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004814 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))
4815 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004816 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004817 = !Initializers.empty() &&
4818 Initializers.back()->isAnyMemberInitializer() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004819 Initializers.back()->getAnyMember() == Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004820 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004821 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004822
4823 if (!Field->getDeclName())
4824 continue;
4825
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004826 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004827 Field->getIdentifier()->getName()));
4828 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4829 Builder.AddPlaceholderChunk("args");
4830 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4831 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004832 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004833 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004834 CXCursor_MemberRef,
4835 CXAvailability_Available,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004836 Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004837 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004838 }
4839 Results.ExitScope();
4840
Douglas Gregor0ac41382010-09-23 23:01:17 +00004841 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004842 Results.data(), Results.size());
4843}
4844
Douglas Gregord8c61782012-02-15 15:34:24 +00004845/// \brief Determine whether this scope denotes a namespace.
4846static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004847 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004848 if (!DC)
4849 return false;
4850
4851 return DC->isFileContext();
4852}
4853
4854void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4855 bool AfterAmpersand) {
4856 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004857 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004858 CodeCompletionContext::CCC_Other);
4859 Results.EnterNewScope();
4860
4861 // Note what has already been captured.
4862 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4863 bool IncludedThis = false;
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004864 for (const auto &C : Intro.Captures) {
4865 if (C.Kind == LCK_This) {
Douglas Gregord8c61782012-02-15 15:34:24 +00004866 IncludedThis = true;
4867 continue;
4868 }
4869
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004870 Known.insert(C.Id);
Douglas Gregord8c61782012-02-15 15:34:24 +00004871 }
4872
4873 // Look for other capturable variables.
4874 for (; S && !isNamespaceScope(S); S = S->getParent()) {
Aaron Ballman35c54952014-03-17 16:55:25 +00004875 for (const auto *D : S->decls()) {
4876 const auto *Var = dyn_cast<VarDecl>(D);
Douglas Gregord8c61782012-02-15 15:34:24 +00004877 if (!Var ||
4878 !Var->hasLocalStorage() ||
4879 Var->hasAttr<BlocksAttr>())
4880 continue;
4881
David Blaikie82e95a32014-11-19 07:49:47 +00004882 if (Known.insert(Var->getIdentifier()).second)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004883 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
Craig Topperc3ec1492014-05-26 06:22:03 +00004884 CurContext, nullptr, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004885 }
4886 }
4887
4888 // Add 'this', if it would be valid.
4889 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4890 addThisCompletion(*this, Results);
4891
4892 Results.ExitScope();
4893
4894 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4895 Results.data(), Results.size());
4896}
4897
James Dennett596e4752012-06-14 03:11:41 +00004898/// Macro that optionally prepends an "@" to the string literal passed in via
4899/// Keyword, depending on whether NeedAt is true or false.
4900#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4901
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004902static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004903 ResultBuilder &Results,
4904 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004905 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004906 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004907 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004908
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004909 CodeCompletionBuilder Builder(Results.getAllocator(),
4910 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004911 if (LangOpts.ObjC2) {
4912 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004913 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004914 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4915 Builder.AddPlaceholderChunk("property");
4916 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004917
4918 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004919 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004920 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4921 Builder.AddPlaceholderChunk("property");
4922 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004923 }
4924}
4925
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004926static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004927 ResultBuilder &Results,
4928 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004929 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004930
4931 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004932 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004933
4934 if (LangOpts.ObjC2) {
4935 // @property
James Dennett596e4752012-06-14 03:11:41 +00004936 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004937
4938 // @required
James Dennett596e4752012-06-14 03:11:41 +00004939 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004940
4941 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004942 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004943 }
4944}
4945
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004946static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004947 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004948 CodeCompletionBuilder Builder(Results.getAllocator(),
4949 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004950
4951 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004952 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004953 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4954 Builder.AddPlaceholderChunk("name");
4955 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004956
Douglas Gregorf4c33342010-05-28 00:22:41 +00004957 if (Results.includeCodePatterns()) {
4958 // @interface name
4959 // FIXME: Could introduce the whole pattern, including superclasses and
4960 // such.
James Dennett596e4752012-06-14 03:11:41 +00004961 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004962 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4963 Builder.AddPlaceholderChunk("class");
4964 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004965
Douglas Gregorf4c33342010-05-28 00:22:41 +00004966 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004967 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004968 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4969 Builder.AddPlaceholderChunk("protocol");
4970 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004971
4972 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004973 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004974 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4975 Builder.AddPlaceholderChunk("class");
4976 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004977 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004978
4979 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004980 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004981 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4982 Builder.AddPlaceholderChunk("alias");
4983 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4984 Builder.AddPlaceholderChunk("class");
4985 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004986
4987 if (Results.getSema().getLangOpts().Modules) {
4988 // @import name
4989 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4990 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4991 Builder.AddPlaceholderChunk("module");
4992 Results.AddResult(Result(Builder.TakeString()));
4993 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004994}
4995
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004996void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004997 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004998 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004999 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00005000 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005001 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00005002 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005003 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00005004 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00005005 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005006 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00005007 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005008 HandleCodeCompleteResults(this, CodeCompleter,
5009 CodeCompletionContext::CCC_Other,
5010 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00005011}
5012
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005013static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00005014 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005015 CodeCompletionBuilder Builder(Results.getAllocator(),
5016 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005017
5018 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00005019 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00005020 if (Results.getSema().getLangOpts().CPlusPlus ||
5021 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00005022 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00005023 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00005024 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005025 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
5026 Builder.AddPlaceholderChunk("type-name");
5027 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5028 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005029
5030 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00005031 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00005032 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005033 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
5034 Builder.AddPlaceholderChunk("protocol-name");
5035 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5036 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005037
5038 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00005039 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00005040 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005041 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
5042 Builder.AddPlaceholderChunk("selector");
5043 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5044 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00005045
5046 // @"string"
5047 Builder.AddResultTypeChunk("NSString *");
5048 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
5049 Builder.AddPlaceholderChunk("string");
5050 Builder.AddTextChunk("\"");
5051 Results.AddResult(Result(Builder.TakeString()));
5052
Douglas Gregor951de302012-07-17 23:24:47 +00005053 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00005054 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00005055 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00005056 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00005057 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
5058 Results.AddResult(Result(Builder.TakeString()));
5059
Douglas Gregor951de302012-07-17 23:24:47 +00005060 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00005061 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00005062 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00005063 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00005064 Builder.AddChunk(CodeCompletionString::CK_Colon);
5065 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
5066 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00005067 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
5068 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00005069
Douglas Gregor951de302012-07-17 23:24:47 +00005070 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00005071 Builder.AddResultTypeChunk("id");
5072 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00005073 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00005074 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5075 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005076}
5077
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005078static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00005079 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005080 CodeCompletionBuilder Builder(Results.getAllocator(),
5081 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00005082
Douglas Gregorf4c33342010-05-28 00:22:41 +00005083 if (Results.includeCodePatterns()) {
5084 // @try { statements } @catch ( declaration ) { statements } @finally
5085 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00005086 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005087 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
5088 Builder.AddPlaceholderChunk("statements");
5089 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
5090 Builder.AddTextChunk("@catch");
5091 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
5092 Builder.AddPlaceholderChunk("parameter");
5093 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5094 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
5095 Builder.AddPlaceholderChunk("statements");
5096 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
5097 Builder.AddTextChunk("@finally");
5098 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
5099 Builder.AddPlaceholderChunk("statements");
5100 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
5101 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00005102 }
Douglas Gregorf1934162010-01-13 21:24:21 +00005103
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005104 // @throw
James Dennett596e4752012-06-14 03:11:41 +00005105 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005106 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
5107 Builder.AddPlaceholderChunk("expression");
5108 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00005109
Douglas Gregorf4c33342010-05-28 00:22:41 +00005110 if (Results.includeCodePatterns()) {
5111 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00005112 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005113 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
5114 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
5115 Builder.AddPlaceholderChunk("expression");
5116 Builder.AddChunk(CodeCompletionString::CK_RightParen);
5117 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
5118 Builder.AddPlaceholderChunk("statements");
5119 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
5120 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00005121 }
Douglas Gregorf1934162010-01-13 21:24:21 +00005122}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005123
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005124static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00005125 ResultBuilder &Results,
5126 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00005127 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00005128 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
5129 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
5130 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00005131 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00005132 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00005133}
5134
5135void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005136 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005137 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005138 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00005139 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00005140 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00005141 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005142 HandleCodeCompleteResults(this, CodeCompleter,
5143 CodeCompletionContext::CCC_Other,
5144 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00005145}
5146
5147void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005148 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005149 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005150 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00005151 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005152 AddObjCStatementResults(Results, false);
5153 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005154 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005155 HandleCodeCompleteResults(this, CodeCompleter,
5156 CodeCompletionContext::CCC_Other,
5157 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005158}
5159
5160void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005161 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005162 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005163 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005164 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00005165 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005166 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005167 HandleCodeCompleteResults(this, CodeCompleter,
5168 CodeCompletionContext::CCC_Other,
5169 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00005170}
5171
Douglas Gregore6078da2009-11-19 00:14:45 +00005172/// \brief Determine whether the addition of the given flag to an Objective-C
5173/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00005174static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00005175 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00005176 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00005177 return true;
5178
Bill Wendling44426052012-12-20 19:22:21 +00005179 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00005180
5181 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00005182 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
5183 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00005184 return true;
5185
Jordan Rose53cb2f32012-08-20 20:01:13 +00005186 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00005187 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00005188 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00005189 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00005190 ObjCDeclSpec::DQ_PR_retain |
5191 ObjCDeclSpec::DQ_PR_strong |
5192 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00005193 if (AssignCopyRetMask &&
5194 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00005195 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00005196 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00005197 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00005198 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
5199 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00005200 return true;
5201
5202 return false;
5203}
5204
Douglas Gregor36029f42009-11-18 23:08:07 +00005205void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00005206 if (!CodeCompleter)
5207 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00005208
Bill Wendling44426052012-12-20 19:22:21 +00005209 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00005210
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005211 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005212 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005213 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00005214 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00005215 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00005216 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00005217 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00005218 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00005219 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00005220 ObjCDeclSpec::DQ_PR_unsafe_unretained))
5221 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00005222 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00005223 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00005224 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00005225 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00005226 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00005227 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00005228 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00005229 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00005230 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00005231 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00005232 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00005233 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00005234
5235 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall460ce582015-10-22 18:38:17 +00005236 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00005237 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00005238 Results.AddResult(CodeCompletionResult("weak"));
5239
Bill Wendling44426052012-12-20 19:22:21 +00005240 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005241 CodeCompletionBuilder Setter(Results.getAllocator(),
5242 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005243 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00005244 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005245 Setter.AddPlaceholderChunk("method");
5246 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00005247 }
Bill Wendling44426052012-12-20 19:22:21 +00005248 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005249 CodeCompletionBuilder Getter(Results.getAllocator(),
5250 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005251 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00005252 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005253 Getter.AddPlaceholderChunk("method");
5254 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00005255 }
Douglas Gregor86b42682015-06-19 18:27:52 +00005256 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nullability)) {
5257 Results.AddResult(CodeCompletionResult("nonnull"));
5258 Results.AddResult(CodeCompletionResult("nullable"));
5259 Results.AddResult(CodeCompletionResult("null_unspecified"));
5260 Results.AddResult(CodeCompletionResult("null_resettable"));
5261 }
Steve Naroff936354c2009-10-08 21:55:05 +00005262 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005263 HandleCodeCompleteResults(this, CodeCompleter,
5264 CodeCompletionContext::CCC_Other,
5265 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00005266}
Steve Naroffeae65032009-11-07 02:08:14 +00005267
James Dennettf1243872012-06-17 05:33:25 +00005268/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00005269/// via code completion.
5270enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00005271 MK_Any, ///< Any kind of method, provided it means other specified criteria.
5272 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
5273 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005274};
5275
Douglas Gregor67c692c2010-08-26 15:07:07 +00005276static bool isAcceptableObjCSelector(Selector Sel,
5277 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005278 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005279 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005280 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00005281 if (NumSelIdents > Sel.getNumArgs())
5282 return false;
5283
5284 switch (WantKind) {
5285 case MK_Any: break;
5286 case MK_ZeroArgSelector: return Sel.isUnarySelector();
5287 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
5288 }
5289
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005290 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
5291 return false;
5292
Douglas Gregor67c692c2010-08-26 15:07:07 +00005293 for (unsigned I = 0; I != NumSelIdents; ++I)
5294 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
5295 return false;
5296
5297 return true;
5298}
5299
Douglas Gregorc8537c52009-11-19 07:41:15 +00005300static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
5301 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005302 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005303 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005304 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005305 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005306}
Douglas Gregor1154e272010-09-16 16:06:31 +00005307
5308namespace {
5309 /// \brief A set of selectors, which is used to avoid introducing multiple
5310 /// completions with the same selector into the result set.
5311 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
5312}
5313
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005314/// \brief Add all of the Objective-C methods in the given Objective-C
5315/// container to the set of results.
5316///
5317/// The container will be a class, protocol, category, or implementation of
5318/// any of the above. This mether will recurse to include methods from
5319/// the superclasses of classes along with their categories, protocols, and
5320/// implementations.
5321///
5322/// \param Container the container in which we'll look to find methods.
5323///
James Dennett596e4752012-06-14 03:11:41 +00005324/// \param WantInstanceMethods Whether to add instance methods (only); if
5325/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005326///
5327/// \param CurContext the context in which we're performing the lookup that
5328/// finds methods.
5329///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005330/// \param AllowSameLength Whether we allow a method to be added to the list
5331/// when it has the same number of parameters as we have selector identifiers.
5332///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005333/// \param Results the structure into which we'll add results.
Alex Lorenz638dbc32017-01-24 14:15:08 +00005334static void AddObjCMethods(ObjCContainerDecl *Container,
5335 bool WantInstanceMethods, ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005336 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005337 DeclContext *CurContext,
Alex Lorenz638dbc32017-01-24 14:15:08 +00005338 VisitedSelectorSet &Selectors, bool AllowSameLength,
5339 ResultBuilder &Results, bool InOriginalClass = true,
5340 bool IsRootClass = false) {
John McCall276321a2010-08-25 06:19:51 +00005341 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005342 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00005343 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
Alex Lorenz638dbc32017-01-24 14:15:08 +00005344 IsRootClass = IsRootClass || (IFace && !IFace->getSuperClass());
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005345 for (auto *M : Container->methods()) {
Douglas Gregor41778c32013-01-30 06:58:39 +00005346 // The instance methods on the root class can be messaged via the
5347 // metaclass.
5348 if (M->isInstanceMethod() == WantInstanceMethods ||
Alex Lorenz638dbc32017-01-24 14:15:08 +00005349 (IsRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00005350 // Check whether the selector identifiers we've been given are a
5351 // subset of the identifiers for this particular method.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005352 if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00005353 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00005354
David Blaikie82e95a32014-11-19 07:49:47 +00005355 if (!Selectors.insert(M->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005356 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005357
5358 Result R = Result(M, Results.getBasePriority(M), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005359 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00005360 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00005361 if (!InOriginalClass)
5362 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00005363 Results.MaybeAddResult(R, CurContext);
5364 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005365 }
5366
Douglas Gregorf37c9492010-09-16 15:34:59 +00005367 // Visit the protocols of protocols.
5368 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00005369 if (Protocol->hasDefinition()) {
5370 const ObjCList<ObjCProtocolDecl> &Protocols
5371 = Protocol->getReferencedProtocols();
5372 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5373 E = Protocols.end();
5374 I != E; ++I)
Alex Lorenz638dbc32017-01-24 14:15:08 +00005375 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, CurContext,
5376 Selectors, AllowSameLength, Results, false, IsRootClass);
Douglas Gregore6e48b12012-01-01 19:29:29 +00005377 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00005378 }
5379
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00005380 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005381 return;
5382
5383 // Add methods in protocols.
Aaron Ballmana49c5062014-03-13 20:29:09 +00005384 for (auto *I : IFace->protocols())
Alex Lorenz638dbc32017-01-24 14:15:08 +00005385 AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents, CurContext,
5386 Selectors, AllowSameLength, Results, false, IsRootClass);
5387
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005388 // Add methods in categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00005389 for (auto *CatDecl : IFace->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005390 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Alex Lorenz638dbc32017-01-24 14:15:08 +00005391 CurContext, Selectors, AllowSameLength, Results,
5392 InOriginalClass, IsRootClass);
5393
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005394 // Add a categories protocol methods.
5395 const ObjCList<ObjCProtocolDecl> &Protocols
5396 = CatDecl->getReferencedProtocols();
5397 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5398 E = Protocols.end();
5399 I != E; ++I)
Alex Lorenz638dbc32017-01-24 14:15:08 +00005400 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents, CurContext,
5401 Selectors, AllowSameLength, Results, false, IsRootClass);
5402
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005403 // Add methods in category implementations.
5404 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Alex Lorenz638dbc32017-01-24 14:15:08 +00005405 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext,
5406 Selectors, AllowSameLength, Results, InOriginalClass,
5407 IsRootClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005408 }
5409
5410 // Add methods in superclass.
Alex Lorenz638dbc32017-01-24 14:15:08 +00005411 // Avoid passing in IsRootClass since root classes won't have super classes.
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005412 if (IFace->getSuperClass())
Alex Lorenz638dbc32017-01-24 14:15:08 +00005413 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
5414 SelIdents, CurContext, Selectors, AllowSameLength, Results,
5415 /*IsRootClass=*/false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005416
5417 // Add methods in our implementation, if any.
5418 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Alex Lorenz638dbc32017-01-24 14:15:08 +00005419 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents, CurContext,
5420 Selectors, AllowSameLength, Results, InOriginalClass,
5421 IsRootClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005422}
5423
5424
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005425void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005426 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005427 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005428 if (!Class) {
5429 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005430 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005431 Class = Category->getClassInterface();
5432
5433 if (!Class)
5434 return;
5435 }
5436
5437 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005438 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005439 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005440 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005441 Results.EnterNewScope();
5442
Douglas Gregor1154e272010-09-16 16:06:31 +00005443 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005444 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005445 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005446 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005447 HandleCodeCompleteResults(this, CodeCompleter,
5448 CodeCompletionContext::CCC_Other,
5449 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00005450}
5451
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005452void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005453 // Try to find the interface where setters might live.
5454 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005455 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005456 if (!Class) {
5457 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005458 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005459 Class = Category->getClassInterface();
5460
5461 if (!Class)
5462 return;
5463 }
5464
5465 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005466 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005467 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005468 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005469 Results.EnterNewScope();
5470
Douglas Gregor1154e272010-09-16 16:06:31 +00005471 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005472 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005473 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005474
5475 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005476 HandleCodeCompleteResults(this, CodeCompleter,
5477 CodeCompletionContext::CCC_Other,
5478 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005479}
5480
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005481void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
5482 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005483 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005484 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005485 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005486 Results.EnterNewScope();
5487
5488 // Add context-sensitive, Objective-C parameter-passing keywords.
5489 bool AddedInOut = false;
5490 if ((DS.getObjCDeclQualifier() &
5491 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
5492 Results.AddResult("in");
5493 Results.AddResult("inout");
5494 AddedInOut = true;
5495 }
5496 if ((DS.getObjCDeclQualifier() &
5497 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
5498 Results.AddResult("out");
5499 if (!AddedInOut)
5500 Results.AddResult("inout");
5501 }
5502 if ((DS.getObjCDeclQualifier() &
5503 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
5504 ObjCDeclSpec::DQ_Oneway)) == 0) {
5505 Results.AddResult("bycopy");
5506 Results.AddResult("byref");
5507 Results.AddResult("oneway");
5508 }
Douglas Gregor86b42682015-06-19 18:27:52 +00005509 if ((DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) == 0) {
5510 Results.AddResult("nonnull");
5511 Results.AddResult("nullable");
5512 Results.AddResult("null_unspecified");
5513 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00005514
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005515 // If we're completing the return type of an Objective-C method and the
5516 // identifier IBAction refers to a macro, provide a completion item for
5517 // an action, e.g.,
5518 // IBAction)<#selector#>:(id)sender
5519 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
Richard Smith20e883e2015-04-29 23:20:19 +00005520 PP.isMacroDefined("IBAction")) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005521 CodeCompletionBuilder Builder(Results.getAllocator(),
5522 Results.getCodeCompletionTUInfo(),
5523 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005524 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005525 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005526 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005527 Builder.AddChunk(CodeCompletionString::CK_Colon);
5528 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005529 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005530 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005531 Builder.AddTextChunk("sender");
5532 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
5533 }
Douglas Gregored1f5972013-01-30 07:11:43 +00005534
5535 // If we're completing the return type, provide 'instancetype'.
5536 if (!IsParameter) {
5537 Results.AddResult(CodeCompletionResult("instancetype"));
5538 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005539
Douglas Gregor99fa2642010-08-24 01:06:58 +00005540 // Add various builtin type names and specifiers.
5541 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5542 Results.ExitScope();
5543
5544 // Add the various type names
5545 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5546 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5547 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5548 CodeCompleter->includeGlobals());
5549
5550 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005551 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005552
5553 HandleCodeCompleteResults(this, CodeCompleter,
5554 CodeCompletionContext::CCC_Type,
5555 Results.data(), Results.size());
5556}
5557
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005558/// \brief When we have an expression with type "id", we may assume
5559/// that it has some more-specific class type based on knowledge of
5560/// common uses of Objective-C. This routine returns that class type,
5561/// or NULL if no better result could be determined.
5562static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005563 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005564 if (!Msg)
Craig Topperc3ec1492014-05-26 06:22:03 +00005565 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005566
5567 Selector Sel = Msg->getSelector();
5568 if (Sel.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00005569 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005570
5571 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5572 if (!Id)
Craig Topperc3ec1492014-05-26 06:22:03 +00005573 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005574
5575 ObjCMethodDecl *Method = Msg->getMethodDecl();
5576 if (!Method)
Craig Topperc3ec1492014-05-26 06:22:03 +00005577 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005578
5579 // Determine the class that we're sending the message to.
Craig Topperc3ec1492014-05-26 06:22:03 +00005580 ObjCInterfaceDecl *IFace = nullptr;
Douglas Gregor9a129192010-04-21 00:45:42 +00005581 switch (Msg->getReceiverKind()) {
5582 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005583 if (const ObjCObjectType *ObjType
5584 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5585 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005586 break;
5587
5588 case ObjCMessageExpr::Instance: {
5589 QualType T = Msg->getInstanceReceiver()->getType();
5590 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5591 IFace = Ptr->getInterfaceDecl();
5592 break;
5593 }
5594
5595 case ObjCMessageExpr::SuperInstance:
5596 case ObjCMessageExpr::SuperClass:
5597 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005598 }
5599
5600 if (!IFace)
Craig Topperc3ec1492014-05-26 06:22:03 +00005601 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005602
5603 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5604 if (Method->isInstanceMethod())
5605 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5606 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005607 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005608 .Case("autorelease", IFace)
5609 .Case("copy", IFace)
5610 .Case("copyWithZone", IFace)
5611 .Case("mutableCopy", IFace)
5612 .Case("mutableCopyWithZone", IFace)
5613 .Case("awakeFromCoder", IFace)
5614 .Case("replacementObjectFromCoder", IFace)
5615 .Case("class", IFace)
5616 .Case("classForCoder", IFace)
5617 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005618 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005619
5620 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5621 .Case("new", IFace)
5622 .Case("alloc", IFace)
5623 .Case("allocWithZone", IFace)
5624 .Case("class", IFace)
5625 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005626 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005627}
5628
Douglas Gregor6fc04132010-08-27 15:10:57 +00005629// Add a special completion for a message send to "super", which fills in the
5630// most likely case of forwarding all of our arguments to the superclass
5631// function.
5632///
5633/// \param S The semantic analysis object.
5634///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005635/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005636/// the "super" keyword. Otherwise, we just need to provide the arguments.
5637///
5638/// \param SelIdents The identifiers in the selector that have already been
5639/// provided as arguments for a send to "super".
5640///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005641/// \param Results The set of results to augment.
5642///
5643/// \returns the Objective-C method declaration that would be invoked by
5644/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005645static ObjCMethodDecl *AddSuperSendCompletion(
5646 Sema &S, bool NeedSuperKeyword,
5647 ArrayRef<IdentifierInfo *> SelIdents,
5648 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005649 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5650 if (!CurMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005651 return nullptr;
5652
Douglas Gregor6fc04132010-08-27 15:10:57 +00005653 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5654 if (!Class)
Craig Topperc3ec1492014-05-26 06:22:03 +00005655 return nullptr;
5656
Douglas Gregor6fc04132010-08-27 15:10:57 +00005657 // Try to find a superclass method with the same selector.
Craig Topperc3ec1492014-05-26 06:22:03 +00005658 ObjCMethodDecl *SuperMethod = nullptr;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005659 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5660 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005661 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5662 CurMethod->isInstanceMethod());
5663
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005664 // Check in categories or class extensions.
5665 if (!SuperMethod) {
Aaron Ballman15063e12014-03-13 21:35:02 +00005666 for (const auto *Cat : Class->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005667 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005668 CurMethod->isInstanceMethod())))
5669 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005670 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005671 }
5672 }
5673
Douglas Gregor6fc04132010-08-27 15:10:57 +00005674 if (!SuperMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005675 return nullptr;
5676
Douglas Gregor6fc04132010-08-27 15:10:57 +00005677 // Check whether the superclass method has the same signature.
5678 if (CurMethod->param_size() != SuperMethod->param_size() ||
5679 CurMethod->isVariadic() != SuperMethod->isVariadic())
Craig Topperc3ec1492014-05-26 06:22:03 +00005680 return nullptr;
5681
Douglas Gregor6fc04132010-08-27 15:10:57 +00005682 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5683 CurPEnd = CurMethod->param_end(),
5684 SuperP = SuperMethod->param_begin();
5685 CurP != CurPEnd; ++CurP, ++SuperP) {
5686 // Make sure the parameter types are compatible.
5687 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5688 (*SuperP)->getType()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005689 return nullptr;
5690
Douglas Gregor6fc04132010-08-27 15:10:57 +00005691 // Make sure we have a parameter name to forward!
5692 if (!(*CurP)->getIdentifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00005693 return nullptr;
Douglas Gregor6fc04132010-08-27 15:10:57 +00005694 }
5695
5696 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005697 CodeCompletionBuilder Builder(Results.getAllocator(),
5698 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005699
5700 // Give this completion a return type.
Douglas Gregorc3425b12015-07-07 06:20:19 +00005701 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5702 Results.getCompletionContext().getBaseType(),
Douglas Gregor75acd922011-09-27 23:30:47 +00005703 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005704
5705 // If we need the "super" keyword, add it (plus some spacing).
5706 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005707 Builder.AddTypedTextChunk("super");
5708 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005709 }
5710
5711 Selector Sel = CurMethod->getSelector();
5712 if (Sel.isUnarySelector()) {
5713 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005714 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005715 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005716 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005717 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005718 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005719 } else {
5720 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5721 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005722 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005723 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005724
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005725 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005726 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005727 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005728 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005729 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005730 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005731 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005732 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005733 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005734 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005735 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005736 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005737 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005738 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005739 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005740 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005741 }
5742 }
5743 }
5744
Douglas Gregor78254c82012-03-27 23:34:16 +00005745 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5746 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005747 return SuperMethod;
5748}
5749
Douglas Gregora817a192010-05-27 23:06:34 +00005750void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005751 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005752 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005753 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005754 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005755 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005756 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5757 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005758
Douglas Gregora817a192010-05-27 23:06:34 +00005759 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5760 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005761 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5762 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005763
5764 // If we are in an Objective-C method inside a class that has a superclass,
5765 // add "super" as an option.
5766 if (ObjCMethodDecl *Method = getCurMethodDecl())
5767 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005768 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005769 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005770
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005771 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005772 }
Douglas Gregora817a192010-05-27 23:06:34 +00005773
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005774 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005775 addThisCompletion(*this, Results);
5776
Douglas Gregora817a192010-05-27 23:06:34 +00005777 Results.ExitScope();
5778
5779 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005780 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005781 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005782 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005783
5784}
5785
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005786void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005787 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005788 bool AtArgumentExpression) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005789 ObjCInterfaceDecl *CDecl = nullptr;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005790 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5791 // Figure out which interface we're in.
5792 CDecl = CurMethod->getClassInterface();
5793 if (!CDecl)
5794 return;
5795
5796 // Find the superclass of this class.
5797 CDecl = CDecl->getSuperClass();
5798 if (!CDecl)
5799 return;
5800
5801 if (CurMethod->isInstanceMethod()) {
5802 // We are inside an instance method, which means that the message
5803 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005804 // current object.
Craig Topperc3ec1492014-05-26 06:22:03 +00005805 return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005806 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005807 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005808 }
5809
5810 // Fall through to send to the superclass in CDecl.
5811 } else {
5812 // "super" may be the name of a type or variable. Figure out which
5813 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005814 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005815 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5816 LookupOrdinaryName);
5817 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5818 // "super" names an interface. Use it.
5819 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005820 if (const ObjCObjectType *Iface
5821 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5822 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005823 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5824 // "super" names an unresolved type; we can't be more specific.
5825 } else {
5826 // Assume that "super" names some kind of value and parse that way.
5827 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005828 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005829 UnqualifiedId id;
5830 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005831 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5832 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005833 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005834 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005835 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005836 }
5837
5838 // Fall through
5839 }
5840
John McCallba7bf592010-08-24 05:47:05 +00005841 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005842 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005843 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005844 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005845 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005846 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005847}
5848
Douglas Gregor74661272010-09-21 00:03:25 +00005849/// \brief Given a set of code-completion results for the argument of a message
5850/// send, determine the preferred type (if any) for that argument expression.
5851static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5852 unsigned NumSelIdents) {
5853 typedef CodeCompletionResult Result;
5854 ASTContext &Context = Results.getSema().Context;
5855
5856 QualType PreferredType;
5857 unsigned BestPriority = CCP_Unlikely * 2;
5858 Result *ResultsData = Results.data();
5859 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5860 Result &R = ResultsData[I];
5861 if (R.Kind == Result::RK_Declaration &&
5862 isa<ObjCMethodDecl>(R.Declaration)) {
5863 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005864 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005865 if (NumSelIdents <= Method->param_size()) {
Alp Toker03376dc2014-07-07 09:02:20 +00005866 QualType MyPreferredType = Method->parameters()[NumSelIdents - 1]
Douglas Gregor74661272010-09-21 00:03:25 +00005867 ->getType();
5868 if (R.Priority < BestPriority || PreferredType.isNull()) {
5869 BestPriority = R.Priority;
5870 PreferredType = MyPreferredType;
5871 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5872 MyPreferredType)) {
5873 PreferredType = QualType();
5874 }
5875 }
5876 }
5877 }
5878 }
5879
5880 return PreferredType;
5881}
5882
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005883static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5884 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005885 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005886 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005887 bool IsSuper,
5888 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005889 typedef CodeCompletionResult Result;
Craig Topperc3ec1492014-05-26 06:22:03 +00005890 ObjCInterfaceDecl *CDecl = nullptr;
5891
Douglas Gregor8ce33212009-11-17 17:59:40 +00005892 // If the given name refers to an interface type, retrieve the
5893 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005894 if (Receiver) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005895 QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005896 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005897 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5898 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005899 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005900
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005901 // Add all of the factory methods in this Objective-C class, its protocols,
5902 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005903 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005904
Douglas Gregor6fc04132010-08-27 15:10:57 +00005905 // If this is a send-to-super, try to add the special "super" send
5906 // completion.
5907 if (IsSuper) {
5908 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005909 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005910 Results.Ignore(SuperMethod);
5911 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005912
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005913 // If we're inside an Objective-C method definition, prefer its selector to
5914 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005915 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005916 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005917
Douglas Gregor1154e272010-09-16 16:06:31 +00005918 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005919 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005920 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005921 SemaRef.CurContext, Selectors, AtArgumentExpression,
5922 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005923 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005924 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005925
Douglas Gregord720daf2010-04-06 17:30:22 +00005926 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005927 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005928 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005929 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005930 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005931 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005932 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005933 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005934 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005935
5936 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005937 }
5938 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005939
5940 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5941 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005942 M != MEnd; ++M) {
5943 for (ObjCMethodList *MethList = &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005944 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005945 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005946 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005947 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005948
Nico Weber2e0c8f72014-12-27 03:58:08 +00005949 Result R(MethList->getMethod(),
5950 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005951 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005952 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005953 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005954 }
5955 }
5956 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005957
5958 Results.ExitScope();
5959}
Douglas Gregor6285f752010-04-06 16:40:00 +00005960
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005961void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005962 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005963 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005964 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005965
5966 QualType T = this->GetTypeFromParser(Receiver);
5967
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005968 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005969 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005970 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005971 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005972
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005973 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005974 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005975
5976 // If we're actually at the argument expression (rather than prior to the
5977 // selector), we're actually performing code completion for an expression.
5978 // Determine whether we have a single, best method. If so, we can
5979 // code-complete the expression using the corresponding parameter type as
5980 // our preferred type, improving completion results.
5981 if (AtArgumentExpression) {
5982 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005983 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005984 if (PreferredType.isNull())
5985 CodeCompleteOrdinaryName(S, PCC_Expression);
5986 else
5987 CodeCompleteExpression(S, PreferredType);
5988 return;
5989 }
5990
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005991 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005992 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005993 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005994}
5995
Richard Trieu2bd04012011-09-09 02:00:50 +00005996void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005997 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005998 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005999 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00006000 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00006001
6002 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00006003
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00006004 // If necessary, apply function/array conversion to the receiver.
6005 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00006006 if (RecExpr) {
6007 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
6008 if (Conv.isInvalid()) // conversion failed. bail.
6009 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006010 RecExpr = Conv.get();
John Wiegley01296292011-04-08 18:41:53 +00006011 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00006012 QualType ReceiverType = RecExpr? RecExpr->getType()
6013 : Super? Context.getObjCObjectPointerType(
6014 Context.getObjCInterfaceType(Super))
6015 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00006016
Douglas Gregordc520b02010-11-08 21:12:30 +00006017 // If we're messaging an expression with type "id" or "Class", check
6018 // whether we know something special about the receiver that allows
6019 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00006020 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00006021 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
6022 if (ReceiverType->isObjCClassType())
6023 return CodeCompleteObjCClassMessage(S,
6024 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006025 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00006026 AtArgumentExpression, Super);
6027
6028 ReceiverType = Context.getObjCObjectPointerType(
6029 Context.getObjCInterfaceType(IFace));
6030 }
Anders Carlsson382ba412014-02-28 19:07:22 +00006031 } else if (RecExpr && getLangOpts().CPlusPlus) {
6032 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
6033 if (Conv.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006034 RecExpr = Conv.get();
Anders Carlsson382ba412014-02-28 19:07:22 +00006035 ReceiverType = RecExpr->getType();
6036 }
6037 }
Douglas Gregordc520b02010-11-08 21:12:30 +00006038
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00006039 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006040 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006041 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00006042 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006043 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00006044
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00006045 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00006046
Douglas Gregor6fc04132010-08-27 15:10:57 +00006047 // If this is a send-to-super, try to add the special "super" send
6048 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00006049 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00006050 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006051 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00006052 Results.Ignore(SuperMethod);
6053 }
6054
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00006055 // If we're inside an Objective-C method definition, prefer its selector to
6056 // others.
6057 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
6058 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00006059
Douglas Gregor1154e272010-09-16 16:06:31 +00006060 // Keep track of the selectors we've already added.
6061 VisitedSelectorSet Selectors;
6062
Douglas Gregora3329fa2009-11-18 00:06:18 +00006063 // Handle messages to Class. This really isn't a message to an instance
6064 // method, so we treat it the same way we would treat a message send to a
6065 // class method.
6066 if (ReceiverType->isObjCClassType() ||
6067 ReceiverType->isObjCQualifiedClassType()) {
6068 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
6069 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006070 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00006071 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00006072 }
6073 }
6074 // Handle messages to a qualified ID ("id<foo>").
6075 else if (const ObjCObjectPointerType *QualID
6076 = ReceiverType->getAsObjCQualifiedIdType()) {
6077 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00006078 for (auto *I : QualID->quals())
6079 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00006080 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00006081 }
6082 // Handle messages to a pointer to interface type.
6083 else if (const ObjCObjectPointerType *IFacePtr
6084 = ReceiverType->getAsObjCInterfacePointerType()) {
6085 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00006086 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006087 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00006088 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00006089
6090 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00006091 for (auto *I : IFacePtr->quals())
6092 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00006093 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00006094 }
Douglas Gregor6285f752010-04-06 16:40:00 +00006095 // Handle messages to "id".
6096 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00006097 // We're messaging "id", so provide all instance methods we know
6098 // about as code-completion results.
6099
6100 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00006101 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00006102 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00006103 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
6104 I != N; ++I) {
6105 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00006106 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00006107 continue;
6108
Sebastian Redl75d8a322010-08-02 23:18:59 +00006109 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00006110 }
6111 }
6112
Sebastian Redl75d8a322010-08-02 23:18:59 +00006113 for (GlobalMethodPool::iterator M = MethodPool.begin(),
6114 MEnd = MethodPool.end();
6115 M != MEnd; ++M) {
6116 for (ObjCMethodList *MethList = &M->second.first;
Nico Weber2e0c8f72014-12-27 03:58:08 +00006117 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00006118 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00006119 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00006120 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00006121
Nico Weber2e0c8f72014-12-27 03:58:08 +00006122 if (!Selectors.insert(MethList->getMethod()->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00006123 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00006124
Nico Weber2e0c8f72014-12-27 03:58:08 +00006125 Result R(MethList->getMethod(),
6126 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006127 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00006128 R.AllParametersAreInformative = false;
6129 Results.MaybeAddResult(R, CurContext);
6130 }
6131 }
6132 }
Steve Naroffeae65032009-11-07 02:08:14 +00006133 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00006134
6135
6136 // If we're actually at the argument expression (rather than prior to the
6137 // selector), we're actually performing code completion for an expression.
6138 // Determine whether we have a single, best method. If so, we can
6139 // code-complete the expression using the corresponding parameter type as
6140 // our preferred type, improving completion results.
6141 if (AtArgumentExpression) {
6142 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006143 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00006144 if (PreferredType.isNull())
6145 CodeCompleteOrdinaryName(S, PCC_Expression);
6146 else
6147 CodeCompleteExpression(S, PreferredType);
6148 return;
6149 }
6150
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006151 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00006152 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006153 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00006154}
Douglas Gregorbaf69612009-11-18 04:19:12 +00006155
Douglas Gregor68762e72010-08-23 21:17:50 +00006156void Sema::CodeCompleteObjCForCollection(Scope *S,
6157 DeclGroupPtrTy IterationVar) {
6158 CodeCompleteExpressionData Data;
6159 Data.ObjCCollection = true;
6160
6161 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00006162 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00006163 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
6164 if (*I)
6165 Data.IgnoreDecls.push_back(*I);
6166 }
6167 }
6168
6169 CodeCompleteExpression(S, Data);
6170}
6171
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006172void Sema::CodeCompleteObjCSelector(Scope *S,
6173 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00006174 // If we have an external source, load the entire class method
6175 // pool from the AST file.
6176 if (ExternalSource) {
6177 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
6178 I != N; ++I) {
6179 Selector Sel = ExternalSource->GetExternalSelector(I);
6180 if (Sel.isNull() || MethodPool.count(Sel))
6181 continue;
6182
6183 ReadMethodPool(Sel);
6184 }
6185 }
6186
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006187 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006188 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006189 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00006190 Results.EnterNewScope();
6191 for (GlobalMethodPool::iterator M = MethodPool.begin(),
6192 MEnd = MethodPool.end();
6193 M != MEnd; ++M) {
6194
6195 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006196 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00006197 continue;
6198
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006199 CodeCompletionBuilder Builder(Results.getAllocator(),
6200 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00006201 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006202 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006203 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006204 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00006205 continue;
6206 }
6207
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00006208 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00006209 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006210 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00006211 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006212 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006213 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00006214 Accumulator.clear();
6215 }
6216 }
6217
Benjamin Kramer632500c2011-07-26 16:59:25 +00006218 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00006219 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00006220 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006221 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006222 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00006223 }
6224 Results.ExitScope();
6225
6226 HandleCodeCompleteResults(this, CodeCompleter,
6227 CodeCompletionContext::CCC_SelectorName,
6228 Results.data(), Results.size());
6229}
6230
Douglas Gregorbaf69612009-11-18 04:19:12 +00006231/// \brief Add all of the protocol declarations that we find in the given
6232/// (translation unit) context.
6233static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00006234 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00006235 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00006236 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00006237
Aaron Ballman629afae2014-03-07 19:56:05 +00006238 for (const auto *D : Ctx->decls()) {
Douglas Gregorbaf69612009-11-18 04:19:12 +00006239 // Record any protocols we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00006240 if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00006241 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Craig Topperc3ec1492014-05-26 06:22:03 +00006242 Results.AddResult(Result(Proto, Results.getBasePriority(Proto),nullptr),
6243 CurContext, nullptr, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00006244 }
6245}
6246
Craig Topper883dd332015-12-24 23:58:11 +00006247void Sema::CodeCompleteObjCProtocolReferences(
6248 ArrayRef<IdentifierLocPair> Protocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006249 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006250 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006251 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00006252
Chandler Carruthede11632016-11-04 06:06:50 +00006253 if (CodeCompleter->includeGlobals()) {
Douglas Gregora3b23b02010-12-09 21:44:02 +00006254 Results.EnterNewScope();
6255
6256 // Tell the result set to ignore all of the protocols we have
6257 // already seen.
6258 // FIXME: This doesn't work when caching code-completion results.
Craig Topper883dd332015-12-24 23:58:11 +00006259 for (const IdentifierLocPair &Pair : Protocols)
6260 if (ObjCProtocolDecl *Protocol = LookupProtocol(Pair.first,
6261 Pair.second))
Douglas Gregora3b23b02010-12-09 21:44:02 +00006262 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00006263
Douglas Gregora3b23b02010-12-09 21:44:02 +00006264 // Add all protocols.
6265 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
6266 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00006267
Douglas Gregora3b23b02010-12-09 21:44:02 +00006268 Results.ExitScope();
6269 }
6270
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006271 HandleCodeCompleteResults(this, CodeCompleter,
6272 CodeCompletionContext::CCC_ObjCProtocolName,
6273 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00006274}
6275
6276void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006277 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006278 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006279 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00006280
Chandler Carruthede11632016-11-04 06:06:50 +00006281 if (CodeCompleter->includeGlobals()) {
Douglas Gregora3b23b02010-12-09 21:44:02 +00006282 Results.EnterNewScope();
6283
6284 // Add all protocols.
6285 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
6286 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00006287
Douglas Gregora3b23b02010-12-09 21:44:02 +00006288 Results.ExitScope();
6289 }
6290
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006291 HandleCodeCompleteResults(this, CodeCompleter,
6292 CodeCompletionContext::CCC_ObjCProtocolName,
6293 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00006294}
Douglas Gregor49c22a72009-11-18 16:26:39 +00006295
6296/// \brief Add all of the Objective-C interface declarations that we find in
6297/// the given (translation unit) context.
6298static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
6299 bool OnlyForwardDeclarations,
6300 bool OnlyUnimplemented,
6301 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00006302 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00006303
Aaron Ballman629afae2014-03-07 19:56:05 +00006304 for (const auto *D : Ctx->decls()) {
Douglas Gregor1c283312010-08-11 12:19:30 +00006305 // Record any interfaces we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00006306 if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00006307 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00006308 (!OnlyUnimplemented || !Class->getImplementation()))
Craig Topperc3ec1492014-05-26 06:22:03 +00006309 Results.AddResult(Result(Class, Results.getBasePriority(Class),nullptr),
6310 CurContext, nullptr, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006311 }
6312}
6313
6314void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006315 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006316 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006317 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006318 Results.EnterNewScope();
6319
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006320 if (CodeCompleter->includeGlobals()) {
6321 // Add all classes.
6322 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6323 false, Results);
6324 }
6325
Douglas Gregor49c22a72009-11-18 16:26:39 +00006326 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006327
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006328 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006329 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006330 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006331}
6332
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006333void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
6334 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006335 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006336 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006337 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006338 Results.EnterNewScope();
6339
6340 // Make sure that we ignore the class we're currently defining.
6341 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006342 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006343 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00006344 Results.Ignore(CurClass);
6345
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006346 if (CodeCompleter->includeGlobals()) {
6347 // Add all classes.
6348 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6349 false, Results);
6350 }
6351
Douglas Gregor49c22a72009-11-18 16:26:39 +00006352 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006353
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006354 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006355 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006356 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006357}
6358
6359void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006360 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006361 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006362 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006363 Results.EnterNewScope();
6364
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006365 if (CodeCompleter->includeGlobals()) {
6366 // Add all unimplemented classes.
6367 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6368 true, Results);
6369 }
6370
Douglas Gregor49c22a72009-11-18 16:26:39 +00006371 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006372
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006373 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006374 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006375 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006376}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006377
6378void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006379 IdentifierInfo *ClassName,
6380 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006381 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006382
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006383 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006384 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006385 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006386
6387 // Ignore any categories we find that have already been implemented by this
6388 // interface.
6389 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6390 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006391 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006392 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006393 for (const auto *Cat : Class->visible_categories())
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006394 CategoryNames.insert(Cat->getIdentifier());
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006395 }
6396
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006397 // Add all of the categories we know about.
6398 Results.EnterNewScope();
6399 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Aaron Ballman629afae2014-03-07 19:56:05 +00006400 for (const auto *D : TU->decls())
6401 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
David Blaikie82e95a32014-11-19 07:49:47 +00006402 if (CategoryNames.insert(Category->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006403 Results.AddResult(Result(Category, Results.getBasePriority(Category),
6404 nullptr),
6405 CurContext, nullptr, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006406 Results.ExitScope();
6407
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006408 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006409 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006410 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006411}
6412
6413void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006414 IdentifierInfo *ClassName,
6415 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006416 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006417
6418 // Find the corresponding interface. If we couldn't find the interface, the
6419 // program itself is ill-formed. However, we'll try to be helpful still by
6420 // providing the list of all of the categories we know about.
6421 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006422 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006423 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
6424 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006425 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006426
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006427 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006428 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006429 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006430
6431 // Add all of the categories that have have corresponding interface
6432 // declarations in this class and any of its superclasses, except for
6433 // already-implemented categories in the class itself.
6434 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6435 Results.EnterNewScope();
6436 bool IgnoreImplemented = true;
6437 while (Class) {
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006438 for (const auto *Cat : Class->visible_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006439 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
David Blaikie82e95a32014-11-19 07:49:47 +00006440 CategoryNames.insert(Cat->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006441 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr),
6442 CurContext, nullptr, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006443 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006444
6445 Class = Class->getSuperClass();
6446 IgnoreImplemented = false;
6447 }
6448 Results.ExitScope();
6449
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006450 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006451 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006452 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006453}
Douglas Gregor5d649882009-11-18 22:32:06 +00006454
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006455void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00006456 CodeCompletionContext CCContext(CodeCompletionContext::CCC_Other);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006457 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006458 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00006459 CCContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006460
6461 // Figure out where this @synthesize lives.
6462 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006463 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006464 if (!Container ||
6465 (!isa<ObjCImplementationDecl>(Container) &&
6466 !isa<ObjCCategoryImplDecl>(Container)))
6467 return;
6468
6469 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006470 Container = getContainerDef(Container);
Aaron Ballman629afae2014-03-07 19:56:05 +00006471 for (const auto *D : Container->decls())
6472 if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregor5d649882009-11-18 22:32:06 +00006473 Results.Ignore(PropertyImpl->getPropertyDecl());
6474
6475 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00006476 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00006477 Results.EnterNewScope();
6478 if (ObjCImplementationDecl *ClassImpl
6479 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregorc3425b12015-07-07 06:20:19 +00006480 AddObjCProperties(CCContext, ClassImpl->getClassInterface(), false,
Douglas Gregor95147142011-05-05 15:50:42 +00006481 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00006482 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006483 else
Douglas Gregorc3425b12015-07-07 06:20:19 +00006484 AddObjCProperties(CCContext,
6485 cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00006486 false, /*AllowNullaryMethods=*/false, CurContext,
6487 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006488 Results.ExitScope();
6489
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006490 HandleCodeCompleteResults(this, CodeCompleter,
6491 CodeCompletionContext::CCC_Other,
6492 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006493}
6494
6495void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006496 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00006497 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006498 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006499 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006500 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00006501
6502 // Figure out where this @synthesize lives.
6503 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006504 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006505 if (!Container ||
6506 (!isa<ObjCImplementationDecl>(Container) &&
6507 !isa<ObjCCategoryImplDecl>(Container)))
6508 return;
6509
6510 // Figure out which interface we're looking into.
Craig Topperc3ec1492014-05-26 06:22:03 +00006511 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor5d649882009-11-18 22:32:06 +00006512 if (ObjCImplementationDecl *ClassImpl
Manman Ren5b786402016-01-28 18:49:28 +00006513 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregor5d649882009-11-18 22:32:06 +00006514 Class = ClassImpl->getClassInterface();
6515 else
6516 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
6517 ->getClassInterface();
6518
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006519 // Determine the type of the property we're synthesizing.
6520 QualType PropertyType = Context.getObjCIdType();
6521 if (Class) {
Manman Ren5b786402016-01-28 18:49:28 +00006522 if (ObjCPropertyDecl *Property = Class->FindPropertyDeclaration(
6523 PropertyName, ObjCPropertyQueryKind::OBJC_PR_query_instance)) {
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006524 PropertyType
6525 = Property->getType().getNonReferenceType().getUnqualifiedType();
6526
6527 // Give preference to ivars
6528 Results.setPreferredType(PropertyType);
6529 }
6530 }
6531
Douglas Gregor5d649882009-11-18 22:32:06 +00006532 // Add all of the instance variables in this class and its superclasses.
6533 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00006534 bool SawSimilarlyNamedIvar = false;
6535 std::string NameWithPrefix;
6536 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00006537 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00006538 std::string NameWithSuffix = PropertyName->getName().str();
6539 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006540 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006541 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6542 Ivar = Ivar->getNextIvar()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006543 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr),
6544 CurContext, nullptr, false);
6545
Douglas Gregor331faa02011-04-18 14:13:53 +00006546 // Determine whether we've seen an ivar with a name similar to the
6547 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006548 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006549 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006550 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006551 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006552
6553 // Reduce the priority of this result by one, to give it a slight
6554 // advantage over other results whose names don't match so closely.
6555 if (Results.size() &&
6556 Results.data()[Results.size() - 1].Kind
6557 == CodeCompletionResult::RK_Declaration &&
6558 Results.data()[Results.size() - 1].Declaration == Ivar)
6559 Results.data()[Results.size() - 1].Priority--;
6560 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006561 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006562 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006563
6564 if (!SawSimilarlyNamedIvar) {
6565 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006566 // an ivar of the appropriate type.
6567 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006568 typedef CodeCompletionResult Result;
6569 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006570 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6571 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006572
Douglas Gregor75acd922011-09-27 23:30:47 +00006573 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006574 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006575 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006576 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6577 Results.AddResult(Result(Builder.TakeString(), Priority,
6578 CXCursor_ObjCIvarDecl));
6579 }
6580
Douglas Gregor5d649882009-11-18 22:32:06 +00006581 Results.ExitScope();
6582
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006583 HandleCodeCompleteResults(this, CodeCompleter,
6584 CodeCompletionContext::CCC_Other,
6585 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006586}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006587
Douglas Gregor416b5752010-08-25 01:08:01 +00006588// Mapping from selectors to the methods that implement that selector, along
6589// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006590typedef llvm::DenseMap<
6591 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006592
6593/// \brief Find all of the methods that reside in the given container
6594/// (and its superclasses, protocols, etc.) that meet the given
6595/// criteria. Insert those methods into the map of known methods,
6596/// indexed by selector so they can be easily found.
6597static void FindImplementableMethods(ASTContext &Context,
6598 ObjCContainerDecl *Container,
6599 bool WantInstanceMethods,
6600 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006601 KnownMethodsMap &KnownMethods,
6602 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006603 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006604 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006605 if (!IFace->hasDefinition())
6606 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006607
6608 IFace = IFace->getDefinition();
6609 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006610
Douglas Gregor636a61e2010-04-07 00:21:17 +00006611 const ObjCList<ObjCProtocolDecl> &Protocols
6612 = IFace->getReferencedProtocols();
6613 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006614 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006615 I != E; ++I)
6616 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006617 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006618
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006619 // Add methods from any class extensions and categories.
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006620 for (auto *Cat : IFace->visible_categories()) {
6621 FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006622 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006623 }
6624
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006625 // Visit the superclass.
6626 if (IFace->getSuperClass())
6627 FindImplementableMethods(Context, IFace->getSuperClass(),
6628 WantInstanceMethods, ReturnType,
6629 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006630 }
6631
6632 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6633 // Recurse into protocols.
6634 const ObjCList<ObjCProtocolDecl> &Protocols
6635 = Category->getReferencedProtocols();
6636 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006637 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006638 I != E; ++I)
6639 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006640 KnownMethods, InOriginalClass);
6641
6642 // If this category is the original class, jump to the interface.
6643 if (InOriginalClass && Category->getClassInterface())
6644 FindImplementableMethods(Context, Category->getClassInterface(),
6645 WantInstanceMethods, ReturnType, KnownMethods,
6646 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006647 }
6648
6649 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006650 // Make sure we have a definition; that's what we'll walk.
6651 if (!Protocol->hasDefinition())
6652 return;
6653 Protocol = Protocol->getDefinition();
6654 Container = Protocol;
6655
6656 // Recurse into protocols.
6657 const ObjCList<ObjCProtocolDecl> &Protocols
6658 = Protocol->getReferencedProtocols();
6659 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6660 E = Protocols.end();
6661 I != E; ++I)
6662 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6663 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006664 }
6665
6666 // Add methods in this container. This operation occurs last because
6667 // we want the methods from this container to override any methods
6668 // we've previously seen with the same selector.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006669 for (auto *M : Container->methods()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006670 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006671 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006672 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006673 continue;
6674
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006675 KnownMethods[M->getSelector()] =
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006676 KnownMethodsMap::mapped_type(M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006677 }
6678 }
6679}
6680
Douglas Gregor669a25a2011-02-17 00:22:45 +00006681/// \brief Add the parenthesized return or parameter type chunk to a code
6682/// completion string.
6683static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006684 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006685 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006686 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006687 CodeCompletionBuilder &Builder) {
6688 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor86b42682015-06-19 18:27:52 +00006689 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals, Type);
Douglas Gregor29979142012-04-10 18:35:07 +00006690 if (!Quals.empty())
6691 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006692 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006693 Builder.getAllocator()));
6694 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6695}
6696
6697/// \brief Determine whether the given class is or inherits from a class by
6698/// the given name.
6699static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006700 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006701 if (!Class)
6702 return false;
6703
6704 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6705 return true;
6706
6707 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6708}
6709
6710/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6711/// Key-Value Observing (KVO).
6712static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6713 bool IsInstanceMethod,
6714 QualType ReturnType,
6715 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006716 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006717 ResultBuilder &Results) {
6718 IdentifierInfo *PropName = Property->getIdentifier();
6719 if (!PropName || PropName->getLength() == 0)
6720 return;
6721
Douglas Gregor75acd922011-09-27 23:30:47 +00006722 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6723
Douglas Gregor669a25a2011-02-17 00:22:45 +00006724 // Builder that will create each code completion.
6725 typedef CodeCompletionResult Result;
6726 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006727 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006728
6729 // The selector table.
6730 SelectorTable &Selectors = Context.Selectors;
6731
6732 // The property name, copied into the code completion allocation region
6733 // on demand.
6734 struct KeyHolder {
6735 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006736 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006737 const char *CopiedKey;
Craig Topperc3ec1492014-05-26 06:22:03 +00006738
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006739 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Craig Topperc3ec1492014-05-26 06:22:03 +00006740 : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {}
6741
Douglas Gregor669a25a2011-02-17 00:22:45 +00006742 operator const char *() {
6743 if (CopiedKey)
6744 return CopiedKey;
6745
6746 return CopiedKey = Allocator.CopyString(Key);
6747 }
6748 } Key(Allocator, PropName->getName());
6749
6750 // The uppercased name of the property name.
6751 std::string UpperKey = PropName->getName();
6752 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006753 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006754
6755 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6756 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6757 Property->getType());
6758 bool ReturnTypeMatchesVoid
6759 = ReturnType.isNull() || ReturnType->isVoidType();
6760
6761 // Add the normal accessor -(type)key.
6762 if (IsInstanceMethod &&
David Blaikie82e95a32014-11-19 07:49:47 +00006763 KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006764 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6765 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006766 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6767 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006768
6769 Builder.AddTypedTextChunk(Key);
6770 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6771 CXCursor_ObjCInstanceMethodDecl));
6772 }
6773
6774 // If we have an integral or boolean property (or the user has provided
6775 // an integral or boolean return type), add the accessor -(type)isKey.
6776 if (IsInstanceMethod &&
6777 ((!ReturnType.isNull() &&
6778 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6779 (ReturnType.isNull() &&
6780 (Property->getType()->isIntegerType() ||
6781 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006782 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006783 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006784 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6785 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006786 if (ReturnType.isNull()) {
6787 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6788 Builder.AddTextChunk("BOOL");
6789 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6790 }
6791
6792 Builder.AddTypedTextChunk(
6793 Allocator.CopyString(SelectorId->getName()));
6794 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6795 CXCursor_ObjCInstanceMethodDecl));
6796 }
6797 }
6798
6799 // Add the normal mutator.
6800 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6801 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006802 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006803 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006804 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006805 if (ReturnType.isNull()) {
6806 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6807 Builder.AddTextChunk("void");
6808 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6809 }
6810
6811 Builder.AddTypedTextChunk(
6812 Allocator.CopyString(SelectorId->getName()));
6813 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006814 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6815 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006816 Builder.AddTextChunk(Key);
6817 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6818 CXCursor_ObjCInstanceMethodDecl));
6819 }
6820 }
6821
6822 // Indexed and unordered accessors
6823 unsigned IndexedGetterPriority = CCP_CodePattern;
6824 unsigned IndexedSetterPriority = CCP_CodePattern;
6825 unsigned UnorderedGetterPriority = CCP_CodePattern;
6826 unsigned UnorderedSetterPriority = CCP_CodePattern;
6827 if (const ObjCObjectPointerType *ObjCPointer
6828 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6829 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6830 // If this interface type is not provably derived from a known
6831 // collection, penalize the corresponding completions.
6832 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6833 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6834 if (!InheritsFromClassNamed(IFace, "NSArray"))
6835 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6836 }
6837
6838 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6839 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6840 if (!InheritsFromClassNamed(IFace, "NSSet"))
6841 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6842 }
6843 }
6844 } else {
6845 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6846 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6847 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6848 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6849 }
6850
6851 // Add -(NSUInteger)countOf<key>
6852 if (IsInstanceMethod &&
6853 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006854 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006855 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006856 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6857 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006858 if (ReturnType.isNull()) {
6859 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6860 Builder.AddTextChunk("NSUInteger");
6861 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6862 }
6863
6864 Builder.AddTypedTextChunk(
6865 Allocator.CopyString(SelectorId->getName()));
6866 Results.AddResult(Result(Builder.TakeString(),
6867 std::min(IndexedGetterPriority,
6868 UnorderedGetterPriority),
6869 CXCursor_ObjCInstanceMethodDecl));
6870 }
6871 }
6872
6873 // Indexed getters
6874 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6875 if (IsInstanceMethod &&
6876 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006877 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006878 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006879 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006880 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006881 if (ReturnType.isNull()) {
6882 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6883 Builder.AddTextChunk("id");
6884 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6885 }
6886
6887 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6888 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6889 Builder.AddTextChunk("NSUInteger");
6890 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6891 Builder.AddTextChunk("index");
6892 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6893 CXCursor_ObjCInstanceMethodDecl));
6894 }
6895 }
6896
6897 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6898 if (IsInstanceMethod &&
6899 (ReturnType.isNull() ||
6900 (ReturnType->isObjCObjectPointerType() &&
6901 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6902 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6903 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006904 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006905 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006906 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006907 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006908 if (ReturnType.isNull()) {
6909 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6910 Builder.AddTextChunk("NSArray *");
6911 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6912 }
6913
6914 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6915 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6916 Builder.AddTextChunk("NSIndexSet *");
6917 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6918 Builder.AddTextChunk("indexes");
6919 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6920 CXCursor_ObjCInstanceMethodDecl));
6921 }
6922 }
6923
6924 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6925 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006926 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006927 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006928 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006929 &Context.Idents.get("range")
6930 };
6931
David Blaikie82e95a32014-11-19 07:49:47 +00006932 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006933 if (ReturnType.isNull()) {
6934 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6935 Builder.AddTextChunk("void");
6936 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6937 }
6938
6939 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6940 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6941 Builder.AddPlaceholderChunk("object-type");
6942 Builder.AddTextChunk(" **");
6943 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6944 Builder.AddTextChunk("buffer");
6945 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6946 Builder.AddTypedTextChunk("range:");
6947 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6948 Builder.AddTextChunk("NSRange");
6949 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6950 Builder.AddTextChunk("inRange");
6951 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6952 CXCursor_ObjCInstanceMethodDecl));
6953 }
6954 }
6955
6956 // Mutable indexed accessors
6957
6958 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6959 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006960 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006961 IdentifierInfo *SelectorIds[2] = {
6962 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006963 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006964 };
6965
David Blaikie82e95a32014-11-19 07:49:47 +00006966 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006967 if (ReturnType.isNull()) {
6968 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6969 Builder.AddTextChunk("void");
6970 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6971 }
6972
6973 Builder.AddTypedTextChunk("insertObject:");
6974 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6975 Builder.AddPlaceholderChunk("object-type");
6976 Builder.AddTextChunk(" *");
6977 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6978 Builder.AddTextChunk("object");
6979 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6980 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6981 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6982 Builder.AddPlaceholderChunk("NSUInteger");
6983 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6984 Builder.AddTextChunk("index");
6985 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6986 CXCursor_ObjCInstanceMethodDecl));
6987 }
6988 }
6989
6990 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6991 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006992 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006993 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006994 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006995 &Context.Idents.get("atIndexes")
6996 };
6997
David Blaikie82e95a32014-11-19 07:49:47 +00006998 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006999 if (ReturnType.isNull()) {
7000 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7001 Builder.AddTextChunk("void");
7002 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7003 }
7004
7005 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7006 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7007 Builder.AddTextChunk("NSArray *");
7008 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7009 Builder.AddTextChunk("array");
7010 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7011 Builder.AddTypedTextChunk("atIndexes:");
7012 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7013 Builder.AddPlaceholderChunk("NSIndexSet *");
7014 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7015 Builder.AddTextChunk("indexes");
7016 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
7017 CXCursor_ObjCInstanceMethodDecl));
7018 }
7019 }
7020
7021 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
7022 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007023 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007024 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007025 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007026 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007027 if (ReturnType.isNull()) {
7028 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7029 Builder.AddTextChunk("void");
7030 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7031 }
7032
7033 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7034 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7035 Builder.AddTextChunk("NSUInteger");
7036 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7037 Builder.AddTextChunk("index");
7038 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
7039 CXCursor_ObjCInstanceMethodDecl));
7040 }
7041 }
7042
7043 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
7044 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007045 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007046 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007047 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007048 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007049 if (ReturnType.isNull()) {
7050 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7051 Builder.AddTextChunk("void");
7052 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7053 }
7054
7055 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7056 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7057 Builder.AddTextChunk("NSIndexSet *");
7058 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7059 Builder.AddTextChunk("indexes");
7060 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
7061 CXCursor_ObjCInstanceMethodDecl));
7062 }
7063 }
7064
7065 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
7066 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007067 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007068 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00007069 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007070 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00007071 &Context.Idents.get("withObject")
7072 };
7073
David Blaikie82e95a32014-11-19 07:49:47 +00007074 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007075 if (ReturnType.isNull()) {
7076 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7077 Builder.AddTextChunk("void");
7078 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7079 }
7080
7081 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7082 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7083 Builder.AddPlaceholderChunk("NSUInteger");
7084 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7085 Builder.AddTextChunk("index");
7086 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7087 Builder.AddTypedTextChunk("withObject:");
7088 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7089 Builder.AddTextChunk("id");
7090 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7091 Builder.AddTextChunk("object");
7092 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
7093 CXCursor_ObjCInstanceMethodDecl));
7094 }
7095 }
7096
7097 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
7098 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007099 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007100 = (Twine("replace") + UpperKey + "AtIndexes").str();
7101 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00007102 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007103 &Context.Idents.get(SelectorName1),
7104 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00007105 };
7106
David Blaikie82e95a32014-11-19 07:49:47 +00007107 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007108 if (ReturnType.isNull()) {
7109 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7110 Builder.AddTextChunk("void");
7111 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7112 }
7113
7114 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
7115 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7116 Builder.AddPlaceholderChunk("NSIndexSet *");
7117 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7118 Builder.AddTextChunk("indexes");
7119 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7120 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
7121 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7122 Builder.AddTextChunk("NSArray *");
7123 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7124 Builder.AddTextChunk("array");
7125 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
7126 CXCursor_ObjCInstanceMethodDecl));
7127 }
7128 }
7129
7130 // Unordered getters
7131 // - (NSEnumerator *)enumeratorOfKey
7132 if (IsInstanceMethod &&
7133 (ReturnType.isNull() ||
7134 (ReturnType->isObjCObjectPointerType() &&
7135 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
7136 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
7137 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007138 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007139 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007140 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
7141 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007142 if (ReturnType.isNull()) {
7143 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7144 Builder.AddTextChunk("NSEnumerator *");
7145 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7146 }
7147
7148 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
7149 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
7150 CXCursor_ObjCInstanceMethodDecl));
7151 }
7152 }
7153
7154 // - (type *)memberOfKey:(type *)object
7155 if (IsInstanceMethod &&
7156 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007157 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007158 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007159 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007160 if (ReturnType.isNull()) {
7161 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7162 Builder.AddPlaceholderChunk("object-type");
7163 Builder.AddTextChunk(" *");
7164 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7165 }
7166
7167 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7168 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7169 if (ReturnType.isNull()) {
7170 Builder.AddPlaceholderChunk("object-type");
7171 Builder.AddTextChunk(" *");
7172 } else {
7173 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00007174 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00007175 Builder.getAllocator()));
7176 }
7177 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7178 Builder.AddTextChunk("object");
7179 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
7180 CXCursor_ObjCInstanceMethodDecl));
7181 }
7182 }
7183
7184 // Mutable unordered accessors
7185 // - (void)addKeyObject:(type *)object
7186 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007187 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007188 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007189 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007190 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007191 if (ReturnType.isNull()) {
7192 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7193 Builder.AddTextChunk("void");
7194 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7195 }
7196
7197 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7198 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7199 Builder.AddPlaceholderChunk("object-type");
7200 Builder.AddTextChunk(" *");
7201 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7202 Builder.AddTextChunk("object");
7203 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
7204 CXCursor_ObjCInstanceMethodDecl));
7205 }
7206 }
7207
7208 // - (void)addKey:(NSSet *)objects
7209 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007210 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007211 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007212 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007213 if (ReturnType.isNull()) {
7214 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7215 Builder.AddTextChunk("void");
7216 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7217 }
7218
7219 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7220 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7221 Builder.AddTextChunk("NSSet *");
7222 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7223 Builder.AddTextChunk("objects");
7224 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
7225 CXCursor_ObjCInstanceMethodDecl));
7226 }
7227 }
7228
7229 // - (void)removeKeyObject:(type *)object
7230 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007231 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007232 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007233 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007234 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007235 if (ReturnType.isNull()) {
7236 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7237 Builder.AddTextChunk("void");
7238 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7239 }
7240
7241 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7242 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7243 Builder.AddPlaceholderChunk("object-type");
7244 Builder.AddTextChunk(" *");
7245 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7246 Builder.AddTextChunk("object");
7247 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
7248 CXCursor_ObjCInstanceMethodDecl));
7249 }
7250 }
7251
7252 // - (void)removeKey:(NSSet *)objects
7253 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007254 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007255 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007256 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007257 if (ReturnType.isNull()) {
7258 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7259 Builder.AddTextChunk("void");
7260 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7261 }
7262
7263 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7264 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7265 Builder.AddTextChunk("NSSet *");
7266 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7267 Builder.AddTextChunk("objects");
7268 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
7269 CXCursor_ObjCInstanceMethodDecl));
7270 }
7271 }
7272
7273 // - (void)intersectKey:(NSSet *)objects
7274 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007275 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007276 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007277 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007278 if (ReturnType.isNull()) {
7279 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7280 Builder.AddTextChunk("void");
7281 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7282 }
7283
7284 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
7285 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7286 Builder.AddTextChunk("NSSet *");
7287 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7288 Builder.AddTextChunk("objects");
7289 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
7290 CXCursor_ObjCInstanceMethodDecl));
7291 }
7292 }
7293
7294 // Key-Value Observing
7295 // + (NSSet *)keyPathsForValuesAffectingKey
7296 if (!IsInstanceMethod &&
7297 (ReturnType.isNull() ||
7298 (ReturnType->isObjCObjectPointerType() &&
7299 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
7300 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
7301 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007302 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007303 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00007304 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007305 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
7306 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00007307 if (ReturnType.isNull()) {
7308 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Alex Lorenz71ecb072016-12-08 16:49:05 +00007309 Builder.AddTextChunk("NSSet<NSString *> *");
Douglas Gregor669a25a2011-02-17 00:22:45 +00007310 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7311 }
7312
7313 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
7314 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00007315 CXCursor_ObjCClassMethodDecl));
7316 }
7317 }
7318
7319 // + (BOOL)automaticallyNotifiesObserversForKey
7320 if (!IsInstanceMethod &&
7321 (ReturnType.isNull() ||
7322 ReturnType->isIntegerType() ||
7323 ReturnType->isBooleanType())) {
7324 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007325 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00007326 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007327 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
7328 .second) {
Douglas Gregor857bcda2011-06-02 04:02:27 +00007329 if (ReturnType.isNull()) {
7330 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7331 Builder.AddTextChunk("BOOL");
7332 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7333 }
7334
7335 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
7336 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
7337 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00007338 }
7339 }
7340}
7341
Douglas Gregor636a61e2010-04-07 00:21:17 +00007342void Sema::CodeCompleteObjCMethodDecl(Scope *S,
7343 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007344 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007345 // Determine the return type of the method we're declaring, if
7346 // provided.
7347 QualType ReturnType = GetTypeFromParser(ReturnTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00007348 Decl *IDecl = nullptr;
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007349 if (CurContext->isObjCContainer()) {
7350 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
7351 IDecl = cast<Decl>(OCD);
7352 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007353 // Determine where we should start searching for methods.
Craig Topperc3ec1492014-05-26 06:22:03 +00007354 ObjCContainerDecl *SearchDecl = nullptr;
Douglas Gregor636a61e2010-04-07 00:21:17 +00007355 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00007356 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007357 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
7358 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007359 IsInImplementation = true;
7360 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007361 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007362 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007363 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007364 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00007365 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007366 }
7367
7368 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00007369 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00007370 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007371 }
7372
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007373 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007374 HandleCodeCompleteResults(this, CodeCompleter,
7375 CodeCompletionContext::CCC_Other,
Craig Topperc3ec1492014-05-26 06:22:03 +00007376 nullptr, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007377 return;
7378 }
7379
7380 // Find all of the methods that we could declare/implement here.
7381 KnownMethodsMap KnownMethods;
7382 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007383 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007384
Douglas Gregor636a61e2010-04-07 00:21:17 +00007385 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00007386 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007387 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007388 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007389 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007390 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00007391 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007392 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7393 MEnd = KnownMethods.end();
7394 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007395 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007396 CodeCompletionBuilder Builder(Results.getAllocator(),
7397 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007398
7399 // If the result type was not already provided, add it to the
7400 // pattern as (type).
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007401 if (ReturnType.isNull()) {
7402 QualType ResTy = Method->getSendResultType().stripObjCKindOfType(Context);
7403 AttributedType::stripOuterNullability(ResTy);
7404 AddObjCPassingTypeChunk(ResTy,
Alp Toker314cc812014-01-25 16:55:45 +00007405 Method->getObjCDeclQualifier(), Context, Policy,
7406 Builder);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007407 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007408
7409 Selector Sel = Method->getSelector();
7410
7411 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007412 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007413 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007414
7415 // Add parameters to the pattern.
7416 unsigned I = 0;
7417 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
7418 PEnd = Method->param_end();
7419 P != PEnd; (void)++P, ++I) {
7420 // Add the part of the selector name.
7421 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007422 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007423 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007424 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7425 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007426 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007427 } else
7428 break;
7429
7430 // Add the parameter type.
Douglas Gregor86b42682015-06-19 18:27:52 +00007431 QualType ParamType;
7432 if ((*P)->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
7433 ParamType = (*P)->getType();
7434 else
7435 ParamType = (*P)->getOriginalType();
Douglas Gregor9b7b3e92015-07-07 06:20:27 +00007436 ParamType = ParamType.substObjCTypeArgs(Context, {},
7437 ObjCSubstitutionContext::Parameter);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007438 AttributedType::stripOuterNullability(ParamType);
Douglas Gregor86b42682015-06-19 18:27:52 +00007439 AddObjCPassingTypeChunk(ParamType,
Douglas Gregor29979142012-04-10 18:35:07 +00007440 (*P)->getObjCDeclQualifier(),
7441 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00007442 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007443
7444 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007445 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007446 }
7447
7448 if (Method->isVariadic()) {
7449 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007450 Builder.AddChunk(CodeCompletionString::CK_Comma);
7451 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00007452 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007453
Douglas Gregord37c59d2010-05-28 00:57:46 +00007454 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007455 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007456 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7457 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
7458 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00007459 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007460 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007461 Builder.AddTextChunk("return");
7462 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7463 Builder.AddPlaceholderChunk("expression");
7464 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007465 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007466 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007467
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007468 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
7469 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007470 }
7471
Douglas Gregor416b5752010-08-25 01:08:01 +00007472 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007473 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00007474 Priority += CCD_InBaseClass;
7475
Douglas Gregor78254c82012-03-27 23:34:16 +00007476 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007477 }
7478
Douglas Gregor669a25a2011-02-17 00:22:45 +00007479 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
7480 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00007481 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007482 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00007483 Containers.push_back(SearchDecl);
7484
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007485 VisitedSelectorSet KnownSelectors;
7486 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7487 MEnd = KnownMethods.end();
7488 M != MEnd; ++M)
7489 KnownSelectors.insert(M->first);
7490
7491
Douglas Gregor669a25a2011-02-17 00:22:45 +00007492 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
7493 if (!IFace)
7494 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
7495 IFace = Category->getClassInterface();
7496
Aaron Ballman3fe486a2014-03-13 21:23:55 +00007497 if (IFace)
7498 for (auto *Cat : IFace->visible_categories())
7499 Containers.push_back(Cat);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007500
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007501 for (unsigned I = 0, N = Containers.size(); I != N; ++I)
Manman Rena7a8b1f2016-01-26 18:05:23 +00007502 for (auto *P : Containers[I]->instance_properties())
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007503 AddObjCKeyValueCompletions(P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007504 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007505 }
7506
Douglas Gregor636a61e2010-04-07 00:21:17 +00007507 Results.ExitScope();
7508
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007509 HandleCodeCompleteResults(this, CodeCompleter,
7510 CodeCompletionContext::CCC_Other,
7511 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007512}
Douglas Gregor95887f92010-07-08 23:20:03 +00007513
7514void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
7515 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00007516 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00007517 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007518 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00007519 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00007520 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00007521 if (ExternalSource) {
7522 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
7523 I != N; ++I) {
7524 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00007525 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00007526 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00007527
7528 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00007529 }
7530 }
7531
7532 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00007533 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007534 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007535 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007536 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00007537
7538 if (ReturnTy)
7539 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00007540
Douglas Gregor95887f92010-07-08 23:20:03 +00007541 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00007542 for (GlobalMethodPool::iterator M = MethodPool.begin(),
7543 MEnd = MethodPool.end();
7544 M != MEnd; ++M) {
7545 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
7546 &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00007547 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007548 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00007549 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007550 continue;
7551
Douglas Gregor45879692010-07-08 23:37:41 +00007552 if (AtParameterName) {
7553 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007554 unsigned NumSelIdents = SelIdents.size();
Nico Weber2e0c8f72014-12-27 03:58:08 +00007555 if (NumSelIdents &&
7556 NumSelIdents <= MethList->getMethod()->param_size()) {
7557 ParmVarDecl *Param =
7558 MethList->getMethod()->parameters()[NumSelIdents - 1];
Douglas Gregor45879692010-07-08 23:37:41 +00007559 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007560 CodeCompletionBuilder Builder(Results.getAllocator(),
7561 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007562 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007563 Param->getIdentifier()->getName()));
7564 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007565 }
7566 }
7567
7568 continue;
7569 }
Craig Topperc3ec1492014-05-26 06:22:03 +00007570
Nico Weber2e0c8f72014-12-27 03:58:08 +00007571 Result R(MethList->getMethod(),
7572 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007573 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007574 R.AllParametersAreInformative = false;
7575 R.DeclaringEntity = true;
7576 Results.MaybeAddResult(R, CurContext);
7577 }
7578 }
7579
7580 Results.ExitScope();
Alex Lorenz847fda12017-01-03 11:56:40 +00007581
7582 if (!AtParameterName && !SelIdents.empty() &&
7583 SelIdents.front()->getName().startswith("init")) {
7584 for (const auto &M : PP.macros()) {
7585 if (M.first->getName() != "NS_DESIGNATED_INITIALIZER")
7586 continue;
7587 Results.EnterNewScope();
7588 CodeCompletionBuilder Builder(Results.getAllocator(),
7589 Results.getCodeCompletionTUInfo());
7590 Builder.AddTypedTextChunk(
7591 Builder.getAllocator().CopyString(M.first->getName()));
7592 Results.AddResult(CodeCompletionResult(Builder.TakeString(), CCP_Macro,
7593 CXCursor_MacroDefinition));
7594 Results.ExitScope();
7595 }
7596 }
7597
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007598 HandleCodeCompleteResults(this, CodeCompleter,
7599 CodeCompletionContext::CCC_Other,
7600 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007601}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007602
Douglas Gregorec00a262010-08-24 22:20:20 +00007603void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007604 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007605 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007606 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007607 Results.EnterNewScope();
7608
7609 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007610 CodeCompletionBuilder Builder(Results.getAllocator(),
7611 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007612 Builder.AddTypedTextChunk("if");
7613 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7614 Builder.AddPlaceholderChunk("condition");
7615 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007616
7617 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007618 Builder.AddTypedTextChunk("ifdef");
7619 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7620 Builder.AddPlaceholderChunk("macro");
7621 Results.AddResult(Builder.TakeString());
7622
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007623 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007624 Builder.AddTypedTextChunk("ifndef");
7625 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7626 Builder.AddPlaceholderChunk("macro");
7627 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007628
7629 if (InConditional) {
7630 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007631 Builder.AddTypedTextChunk("elif");
7632 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7633 Builder.AddPlaceholderChunk("condition");
7634 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007635
7636 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007637 Builder.AddTypedTextChunk("else");
7638 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007639
7640 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007641 Builder.AddTypedTextChunk("endif");
7642 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007643 }
7644
7645 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007646 Builder.AddTypedTextChunk("include");
7647 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7648 Builder.AddTextChunk("\"");
7649 Builder.AddPlaceholderChunk("header");
7650 Builder.AddTextChunk("\"");
7651 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007652
7653 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007654 Builder.AddTypedTextChunk("include");
7655 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7656 Builder.AddTextChunk("<");
7657 Builder.AddPlaceholderChunk("header");
7658 Builder.AddTextChunk(">");
7659 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007660
7661 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007662 Builder.AddTypedTextChunk("define");
7663 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7664 Builder.AddPlaceholderChunk("macro");
7665 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007666
7667 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007668 Builder.AddTypedTextChunk("define");
7669 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7670 Builder.AddPlaceholderChunk("macro");
7671 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7672 Builder.AddPlaceholderChunk("args");
7673 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7674 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007675
7676 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007677 Builder.AddTypedTextChunk("undef");
7678 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7679 Builder.AddPlaceholderChunk("macro");
7680 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007681
7682 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007683 Builder.AddTypedTextChunk("line");
7684 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7685 Builder.AddPlaceholderChunk("number");
7686 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007687
7688 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007689 Builder.AddTypedTextChunk("line");
7690 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7691 Builder.AddPlaceholderChunk("number");
7692 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7693 Builder.AddTextChunk("\"");
7694 Builder.AddPlaceholderChunk("filename");
7695 Builder.AddTextChunk("\"");
7696 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007697
7698 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007699 Builder.AddTypedTextChunk("error");
7700 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7701 Builder.AddPlaceholderChunk("message");
7702 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007703
7704 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007705 Builder.AddTypedTextChunk("pragma");
7706 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7707 Builder.AddPlaceholderChunk("arguments");
7708 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007709
David Blaikiebbafb8a2012-03-11 07:00:24 +00007710 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007711 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007712 Builder.AddTypedTextChunk("import");
7713 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7714 Builder.AddTextChunk("\"");
7715 Builder.AddPlaceholderChunk("header");
7716 Builder.AddTextChunk("\"");
7717 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007718
7719 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007720 Builder.AddTypedTextChunk("import");
7721 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7722 Builder.AddTextChunk("<");
7723 Builder.AddPlaceholderChunk("header");
7724 Builder.AddTextChunk(">");
7725 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007726 }
7727
7728 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007729 Builder.AddTypedTextChunk("include_next");
7730 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7731 Builder.AddTextChunk("\"");
7732 Builder.AddPlaceholderChunk("header");
7733 Builder.AddTextChunk("\"");
7734 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007735
7736 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007737 Builder.AddTypedTextChunk("include_next");
7738 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7739 Builder.AddTextChunk("<");
7740 Builder.AddPlaceholderChunk("header");
7741 Builder.AddTextChunk(">");
7742 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007743
7744 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007745 Builder.AddTypedTextChunk("warning");
7746 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7747 Builder.AddPlaceholderChunk("message");
7748 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007749
7750 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7751 // completions for them. And __include_macros is a Clang-internal extension
7752 // that we don't want to encourage anyone to use.
7753
7754 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7755 Results.ExitScope();
7756
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007757 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007758 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007759 Results.data(), Results.size());
7760}
7761
7762void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007763 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007764 S->getFnParent()? Sema::PCC_RecoveryInFunction
7765 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007766}
7767
Douglas Gregorec00a262010-08-24 22:20:20 +00007768void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007769 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007770 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007771 IsDefinition? CodeCompletionContext::CCC_MacroName
7772 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007773 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7774 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007775 CodeCompletionBuilder Builder(Results.getAllocator(),
7776 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007777 Results.EnterNewScope();
7778 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7779 MEnd = PP.macro_end();
7780 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007781 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007782 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007783 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7784 CCP_CodePattern,
7785 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007786 }
7787 Results.ExitScope();
7788 } else if (IsDefinition) {
7789 // FIXME: Can we detect when the user just wrote an include guard above?
7790 }
7791
Douglas Gregor0ac41382010-09-23 23:01:17 +00007792 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007793 Results.data(), Results.size());
7794}
7795
Douglas Gregorec00a262010-08-24 22:20:20 +00007796void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007797 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007798 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007799 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007800
7801 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007802 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007803
7804 // defined (<macro>)
7805 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007806 CodeCompletionBuilder Builder(Results.getAllocator(),
7807 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007808 Builder.AddTypedTextChunk("defined");
7809 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7810 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7811 Builder.AddPlaceholderChunk("macro");
7812 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7813 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007814 Results.ExitScope();
7815
7816 HandleCodeCompleteResults(this, CodeCompleter,
7817 CodeCompletionContext::CCC_PreprocessorExpression,
7818 Results.data(), Results.size());
7819}
7820
7821void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7822 IdentifierInfo *Macro,
7823 MacroInfo *MacroInfo,
7824 unsigned Argument) {
7825 // FIXME: In the future, we could provide "overload" results, much like we
7826 // do for function calls.
7827
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007828 // Now just ignore this. There will be another code-completion callback
7829 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007830}
7831
Douglas Gregor11583702010-08-25 17:04:25 +00007832void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007833 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007834 CodeCompletionContext::CCC_NaturalLanguage,
Craig Topperc3ec1492014-05-26 06:22:03 +00007835 nullptr, 0);
Douglas Gregor11583702010-08-25 17:04:25 +00007836}
7837
Alex Lorenzf7f6f822017-05-09 16:05:04 +00007838void Sema::CodeCompleteAvailabilityPlatformName() {
7839 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
7840 CodeCompleter->getCodeCompletionTUInfo(),
7841 CodeCompletionContext::CCC_Other);
7842 Results.EnterNewScope();
7843 static const char *Platforms[] = {"macOS", "iOS", "watchOS", "tvOS"};
7844 for (const char *Platform : llvm::makeArrayRef(Platforms)) {
7845 Results.AddResult(CodeCompletionResult(Platform));
7846 Results.AddResult(CodeCompletionResult(Results.getAllocator().CopyString(
7847 Twine(Platform) + "ApplicationExtension")));
7848 }
7849 Results.ExitScope();
7850 HandleCodeCompleteResults(this, CodeCompleter,
7851 CodeCompletionContext::CCC_Other, Results.data(),
7852 Results.size());
7853}
7854
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007855void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007856 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007857 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007858 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7859 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007860 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7861 CodeCompletionDeclConsumer Consumer(Builder,
7862 Context.getTranslationUnitDecl());
7863 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7864 Consumer);
7865 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007866
7867 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007868 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007869
7870 Results.clear();
7871 Results.insert(Results.end(),
7872 Builder.data(), Builder.data() + Builder.size());
7873}