blob: 59ab0ba618d489483411955cf634b03bfda54f56 [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"
22#include "clang/Sema/ExternalSemaSource.h"
23#include "clang/Sema/Lookup.h"
24#include "clang/Sema/Overload.h"
25#include "clang/Sema/Scope.h"
26#include "clang/Sema/ScopeInfo.h"
Douglas Gregor1154e272010-09-16 16:06:31 +000027#include "llvm/ADT/DenseSet.h"
Benjamin Kramere0513cb2012-01-30 16:17:39 +000028#include "llvm/ADT/SmallBitVector.h"
Douglas Gregor3545ff42009-09-21 16:56:56 +000029#include "llvm/ADT/SmallPtrSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000030#include "llvm/ADT/SmallString.h"
Douglas Gregore6688e62009-09-28 03:51:44 +000031#include "llvm/ADT/StringExtras.h"
Douglas Gregor9d2ddb22010-04-06 19:22:33 +000032#include "llvm/ADT/StringSwitch.h"
Douglas Gregor67c692c2010-08-26 15:07:07 +000033#include "llvm/ADT/Twine.h"
Douglas Gregor3545ff42009-09-21 16:56:56 +000034#include <list>
35#include <map>
36#include <vector>
Douglas Gregor2436e712009-09-17 21:32:03 +000037
38using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000039using namespace sema;
Douglas Gregor2436e712009-09-17 21:32:03 +000040
Douglas Gregor3545ff42009-09-21 16:56:56 +000041namespace {
42 /// \brief A container of code-completion results.
43 class ResultBuilder {
44 public:
45 /// \brief The type of a name-lookup filter, which can be provided to the
46 /// name-lookup routines to specify which declarations should be included in
47 /// the result set (when it returns true) and which declarations should be
48 /// filtered out (returns false).
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000049 typedef bool (ResultBuilder::*LookupFilter)(const NamedDecl *) const;
Douglas Gregor3545ff42009-09-21 16:56:56 +000050
John McCall276321a2010-08-25 06:19:51 +000051 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +000052
53 private:
54 /// \brief The actual results we have found.
55 std::vector<Result> Results;
56
57 /// \brief A record of all of the declarations we have found and placed
58 /// into the result set, used to ensure that no declaration ever gets into
59 /// the result set twice.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000060 llvm::SmallPtrSet<const Decl*, 16> AllDeclsFound;
Douglas Gregor3545ff42009-09-21 16:56:56 +000061
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000062 typedef std::pair<const NamedDecl *, unsigned> DeclIndexPair;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000063
64 /// \brief An entry in the shadow map, which is optimized to store
65 /// a single (declaration, index) mapping (the common case) but
66 /// can also store a list of (declaration, index) mappings.
67 class ShadowMapEntry {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000068 typedef SmallVector<DeclIndexPair, 4> DeclIndexPairVector;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000069
70 /// \brief Contains either the solitary NamedDecl * or a vector
71 /// of (declaration, index) pairs.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000072 llvm::PointerUnion<const NamedDecl *, DeclIndexPairVector*> DeclOrVector;
Douglas Gregor05e7ca32009-12-06 20:23:50 +000073
74 /// \brief When the entry contains a single declaration, this is
75 /// the index associated with that entry.
76 unsigned SingleDeclIndex;
77
78 public:
79 ShadowMapEntry() : DeclOrVector(), SingleDeclIndex(0) { }
80
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000081 void Add(const NamedDecl *ND, unsigned Index) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +000082 if (DeclOrVector.isNull()) {
83 // 0 - > 1 elements: just set the single element information.
84 DeclOrVector = ND;
85 SingleDeclIndex = Index;
86 return;
87 }
88
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +000089 if (const NamedDecl *PrevND =
90 DeclOrVector.dyn_cast<const NamedDecl *>()) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +000091 // 1 -> 2 elements: create the vector of results and push in the
92 // existing declaration.
93 DeclIndexPairVector *Vec = new DeclIndexPairVector;
94 Vec->push_back(DeclIndexPair(PrevND, SingleDeclIndex));
95 DeclOrVector = Vec;
96 }
97
98 // Add the new element to the end of the vector.
99 DeclOrVector.get<DeclIndexPairVector*>()->push_back(
100 DeclIndexPair(ND, Index));
101 }
102
103 void Destroy() {
104 if (DeclIndexPairVector *Vec
105 = DeclOrVector.dyn_cast<DeclIndexPairVector *>()) {
106 delete Vec;
Craig Topperc3ec1492014-05-26 06:22:03 +0000107 DeclOrVector = ((NamedDecl *)nullptr);
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000108 }
109 }
110
111 // Iteration.
112 class iterator;
113 iterator begin() const;
114 iterator end() const;
115 };
116
Douglas Gregor3545ff42009-09-21 16:56:56 +0000117 /// \brief A mapping from declaration names to the declarations that have
118 /// this name within a particular scope and their index within the list of
119 /// results.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000120 typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000121
122 /// \brief The semantic analysis object for which results are being
123 /// produced.
124 Sema &SemaRef;
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000125
126 /// \brief The allocator used to allocate new code-completion strings.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000127 CodeCompletionAllocator &Allocator;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000128
129 CodeCompletionTUInfo &CCTUInfo;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000130
131 /// \brief If non-NULL, a filter function used to remove any code-completion
132 /// results that are not desirable.
133 LookupFilter Filter;
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000134
135 /// \brief Whether we should allow declarations as
136 /// nested-name-specifiers that would otherwise be filtered out.
137 bool AllowNestedNameSpecifiers;
138
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000139 /// \brief If set, the type that we would prefer our resulting value
140 /// declarations to have.
141 ///
142 /// Closely matching the preferred type gives a boost to a result's
143 /// priority.
144 CanQualType PreferredType;
145
Douglas Gregor3545ff42009-09-21 16:56:56 +0000146 /// \brief A list of shadow maps, which is used to model name hiding at
147 /// different levels of, e.g., the inheritance hierarchy.
148 std::list<ShadowMap> ShadowMaps;
149
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000150 /// \brief If we're potentially referring to a C++ member function, the set
151 /// of qualifiers applied to the object type.
152 Qualifiers ObjectTypeQualifiers;
153
154 /// \brief Whether the \p ObjectTypeQualifiers field is active.
155 bool HasObjectTypeQualifiers;
156
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000157 /// \brief The selector that we prefer.
158 Selector PreferredSelector;
159
Douglas Gregor05fcf842010-11-02 20:36:02 +0000160 /// \brief The completion context in which we are gathering results.
Douglas Gregor50832e02010-09-20 22:39:41 +0000161 CodeCompletionContext CompletionContext;
162
James Dennett596e4752012-06-14 03:11:41 +0000163 /// \brief If we are in an instance method definition, the \@implementation
Douglas Gregor05fcf842010-11-02 20:36:02 +0000164 /// object.
165 ObjCImplementationDecl *ObjCImplementation;
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000166
Douglas Gregor50832e02010-09-20 22:39:41 +0000167 void AdjustResultPriorityForDecl(Result &R);
Douglas Gregor95887f92010-07-08 23:20:03 +0000168
Douglas Gregor0212fd72010-09-21 16:06:22 +0000169 void MaybeAddConstructorResults(Result R);
170
Douglas Gregor3545ff42009-09-21 16:56:56 +0000171 public:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000172 explicit ResultBuilder(Sema &SemaRef, CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000173 CodeCompletionTUInfo &CCTUInfo,
Douglas Gregor0ac41382010-09-23 23:01:17 +0000174 const CodeCompletionContext &CompletionContext,
Craig Topperc3ec1492014-05-26 06:22:03 +0000175 LookupFilter Filter = nullptr)
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000176 : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo),
177 Filter(Filter),
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000178 AllowNestedNameSpecifiers(false), HasObjectTypeQualifiers(false),
Douglas Gregor05fcf842010-11-02 20:36:02 +0000179 CompletionContext(CompletionContext),
Craig Topperc3ec1492014-05-26 06:22:03 +0000180 ObjCImplementation(nullptr)
Douglas Gregor05fcf842010-11-02 20:36:02 +0000181 {
182 // If this is an Objective-C instance method definition, dig out the
183 // corresponding implementation.
184 switch (CompletionContext.getKind()) {
185 case CodeCompletionContext::CCC_Expression:
186 case CodeCompletionContext::CCC_ObjCMessageReceiver:
187 case CodeCompletionContext::CCC_ParenthesizedExpression:
188 case CodeCompletionContext::CCC_Statement:
189 case CodeCompletionContext::CCC_Recovery:
190 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
191 if (Method->isInstanceMethod())
192 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
193 ObjCImplementation = Interface->getImplementation();
194 break;
195
196 default:
197 break;
198 }
199 }
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000200
201 /// \brief Determine the priority for a reference to the given declaration.
202 unsigned getBasePriority(const NamedDecl *D);
203
Douglas Gregorf64acca2010-05-25 21:41:55 +0000204 /// \brief Whether we should include code patterns in the completion
205 /// results.
206 bool includeCodePatterns() const {
207 return SemaRef.CodeCompleter &&
Douglas Gregorac322ec2010-08-27 21:18:54 +0000208 SemaRef.CodeCompleter->includeCodePatterns();
Douglas Gregorf64acca2010-05-25 21:41:55 +0000209 }
210
Douglas Gregor3545ff42009-09-21 16:56:56 +0000211 /// \brief Set the filter used for code-completion results.
212 void setFilter(LookupFilter Filter) {
213 this->Filter = Filter;
214 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000215
216 Result *data() { return Results.empty()? nullptr : &Results.front(); }
Douglas Gregor3545ff42009-09-21 16:56:56 +0000217 unsigned size() const { return Results.size(); }
218 bool empty() const { return Results.empty(); }
219
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000220 /// \brief Specify the preferred type.
221 void setPreferredType(QualType T) {
222 PreferredType = SemaRef.Context.getCanonicalType(T);
223 }
224
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000225 /// \brief Set the cv-qualifiers on the object type, for us in filtering
226 /// calls to member functions.
227 ///
228 /// When there are qualifiers in this set, they will be used to filter
229 /// out member functions that aren't available (because there will be a
230 /// cv-qualifier mismatch) or prefer functions with an exact qualifier
231 /// match.
232 void setObjectTypeQualifiers(Qualifiers Quals) {
233 ObjectTypeQualifiers = Quals;
234 HasObjectTypeQualifiers = true;
235 }
236
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000237 /// \brief Set the preferred selector.
238 ///
239 /// When an Objective-C method declaration result is added, and that
240 /// method's selector matches this preferred selector, we give that method
241 /// a slight priority boost.
242 void setPreferredSelector(Selector Sel) {
243 PreferredSelector = Sel;
244 }
Douglas Gregor05fcf842010-11-02 20:36:02 +0000245
Douglas Gregor50832e02010-09-20 22:39:41 +0000246 /// \brief Retrieve the code-completion context for which results are
247 /// being collected.
248 const CodeCompletionContext &getCompletionContext() const {
249 return CompletionContext;
250 }
251
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000252 /// \brief Specify whether nested-name-specifiers are allowed.
253 void allowNestedNameSpecifiers(bool Allow = true) {
254 AllowNestedNameSpecifiers = Allow;
255 }
256
Douglas Gregor74661272010-09-21 00:03:25 +0000257 /// \brief Return the semantic analysis object for which we are collecting
258 /// code completion results.
259 Sema &getSema() const { return SemaRef; }
260
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000261 /// \brief Retrieve the allocator used to allocate code completion strings.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +0000262 CodeCompletionAllocator &getAllocator() const { return Allocator; }
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +0000263
264 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; }
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000265
Douglas Gregor7c208612010-01-14 00:20:49 +0000266 /// \brief Determine whether the given declaration is at all interesting
267 /// as a code-completion result.
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000268 ///
269 /// \param ND the declaration that we are inspecting.
270 ///
271 /// \param AsNestedNameSpecifier will be set true if this declaration is
272 /// only interesting when it is a nested-name-specifier.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000273 bool isInterestingDecl(const NamedDecl *ND,
274 bool &AsNestedNameSpecifier) const;
Douglas Gregore0717ab2010-01-14 00:41:07 +0000275
276 /// \brief Check whether the result is hidden by the Hiding declaration.
277 ///
278 /// \returns true if the result is hidden and cannot be found, false if
279 /// the hidden result could still be found. When false, \p R may be
280 /// modified to describe how the result can be found (e.g., via extra
281 /// qualification).
282 bool CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000283 const NamedDecl *Hiding);
Douglas Gregore0717ab2010-01-14 00:41:07 +0000284
Douglas Gregor3545ff42009-09-21 16:56:56 +0000285 /// \brief Add a new result to this result set (if it isn't already in one
286 /// of the shadow maps), or replace an existing result (for, e.g., a
287 /// redeclaration).
Douglas Gregor2af2f672009-09-21 20:12:40 +0000288 ///
Douglas Gregord8c61782012-02-15 15:34:24 +0000289 /// \param R the result to add (if it is unique).
Douglas Gregor2af2f672009-09-21 20:12:40 +0000290 ///
Douglas Gregord8c61782012-02-15 15:34:24 +0000291 /// \param CurContext the context in which this result will be named.
Craig Topperc3ec1492014-05-26 06:22:03 +0000292 void MaybeAddResult(Result R, DeclContext *CurContext = nullptr);
293
Douglas Gregorc580c522010-01-14 01:09:38 +0000294 /// \brief Add a new result to this result set, where we already know
Yaron Keren8fbe43982014-11-14 18:33:42 +0000295 /// the hiding declaration (if any).
Douglas Gregorc580c522010-01-14 01:09:38 +0000296 ///
297 /// \param R the result to add (if it is unique).
298 ///
299 /// \param CurContext the context in which this result will be named.
300 ///
301 /// \param Hiding the declaration that hides the result.
Douglas Gregor09bbc652010-01-14 15:47:35 +0000302 ///
303 /// \param InBaseClass whether the result was found in a base
304 /// class of the searched context.
305 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding,
306 bool InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +0000307
Douglas Gregor78a21012010-01-14 16:01:26 +0000308 /// \brief Add a new non-declaration result to this result set.
309 void AddResult(Result R);
310
Douglas Gregor3545ff42009-09-21 16:56:56 +0000311 /// \brief Enter into a new scope.
312 void EnterNewScope();
313
314 /// \brief Exit from the current scope.
315 void ExitScope();
316
Douglas Gregorbaf69612009-11-18 04:19:12 +0000317 /// \brief Ignore this declaration, if it is seen again.
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +0000318 void Ignore(const Decl *D) { AllDeclsFound.insert(D->getCanonicalDecl()); }
Douglas Gregorbaf69612009-11-18 04:19:12 +0000319
Douglas Gregor3545ff42009-09-21 16:56:56 +0000320 /// \name Name lookup predicates
321 ///
322 /// These predicates can be passed to the name lookup functions to filter the
323 /// results of name lookup. All of the predicates have the same type, so that
324 ///
325 //@{
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000326 bool IsOrdinaryName(const NamedDecl *ND) const;
327 bool IsOrdinaryNonTypeName(const NamedDecl *ND) const;
328 bool IsIntegralConstantValue(const NamedDecl *ND) const;
329 bool IsOrdinaryNonValueName(const NamedDecl *ND) const;
330 bool IsNestedNameSpecifier(const NamedDecl *ND) const;
331 bool IsEnum(const NamedDecl *ND) const;
332 bool IsClassOrStruct(const NamedDecl *ND) const;
333 bool IsUnion(const NamedDecl *ND) const;
334 bool IsNamespace(const NamedDecl *ND) const;
335 bool IsNamespaceOrAlias(const NamedDecl *ND) const;
336 bool IsType(const NamedDecl *ND) const;
337 bool IsMember(const NamedDecl *ND) const;
338 bool IsObjCIvar(const NamedDecl *ND) const;
339 bool IsObjCMessageReceiver(const NamedDecl *ND) const;
340 bool IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const;
341 bool IsObjCCollection(const NamedDecl *ND) const;
342 bool IsImpossibleToSatisfy(const NamedDecl *ND) const;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000343 //@}
344 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000345}
Douglas Gregor3545ff42009-09-21 16:56:56 +0000346
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000347class ResultBuilder::ShadowMapEntry::iterator {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000348 llvm::PointerUnion<const NamedDecl *, const DeclIndexPair *> DeclOrIterator;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000349 unsigned SingleDeclIndex;
350
351public:
352 typedef DeclIndexPair value_type;
353 typedef value_type reference;
354 typedef std::ptrdiff_t difference_type;
355 typedef std::input_iterator_tag iterator_category;
356
357 class pointer {
358 DeclIndexPair Value;
359
360 public:
361 pointer(const DeclIndexPair &Value) : Value(Value) { }
362
363 const DeclIndexPair *operator->() const {
364 return &Value;
365 }
366 };
Craig Topperc3ec1492014-05-26 06:22:03 +0000367
368 iterator() : DeclOrIterator((NamedDecl *)nullptr), SingleDeclIndex(0) {}
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000369
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000370 iterator(const NamedDecl *SingleDecl, unsigned Index)
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000371 : DeclOrIterator(SingleDecl), SingleDeclIndex(Index) { }
372
373 iterator(const DeclIndexPair *Iterator)
374 : DeclOrIterator(Iterator), SingleDeclIndex(0) { }
375
376 iterator &operator++() {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000377 if (DeclOrIterator.is<const NamedDecl *>()) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000378 DeclOrIterator = (NamedDecl *)nullptr;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000379 SingleDeclIndex = 0;
380 return *this;
381 }
382
383 const DeclIndexPair *I = DeclOrIterator.get<const DeclIndexPair*>();
384 ++I;
385 DeclOrIterator = I;
386 return *this;
387 }
388
Chris Lattner9795b392010-09-04 18:12:20 +0000389 /*iterator operator++(int) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000390 iterator tmp(*this);
391 ++(*this);
392 return tmp;
Chris Lattner9795b392010-09-04 18:12:20 +0000393 }*/
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000394
395 reference operator*() const {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000396 if (const NamedDecl *ND = DeclOrIterator.dyn_cast<const NamedDecl *>())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000397 return reference(ND, SingleDeclIndex);
398
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000399 return *DeclOrIterator.get<const DeclIndexPair*>();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000400 }
401
402 pointer operator->() const {
403 return pointer(**this);
404 }
405
406 friend bool operator==(const iterator &X, const iterator &Y) {
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000407 return X.DeclOrIterator.getOpaqueValue()
408 == Y.DeclOrIterator.getOpaqueValue() &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000409 X.SingleDeclIndex == Y.SingleDeclIndex;
410 }
411
412 friend bool operator!=(const iterator &X, const iterator &Y) {
Douglas Gregor94bb5e82009-12-06 21:27:58 +0000413 return !(X == Y);
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000414 }
415};
416
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000417ResultBuilder::ShadowMapEntry::iterator
418ResultBuilder::ShadowMapEntry::begin() const {
419 if (DeclOrVector.isNull())
420 return iterator();
421
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000422 if (const NamedDecl *ND = DeclOrVector.dyn_cast<const NamedDecl *>())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000423 return iterator(ND, SingleDeclIndex);
424
425 return iterator(DeclOrVector.get<DeclIndexPairVector *>()->begin());
426}
427
428ResultBuilder::ShadowMapEntry::iterator
429ResultBuilder::ShadowMapEntry::end() const {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000430 if (DeclOrVector.is<const NamedDecl *>() || DeclOrVector.isNull())
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000431 return iterator();
432
433 return iterator(DeclOrVector.get<DeclIndexPairVector *>()->end());
434}
435
Douglas Gregor2af2f672009-09-21 20:12:40 +0000436/// \brief Compute the qualification required to get from the current context
437/// (\p CurContext) to the target context (\p TargetContext).
438///
439/// \param Context the AST context in which the qualification will be used.
440///
441/// \param CurContext the context where an entity is being named, which is
442/// typically based on the current scope.
443///
444/// \param TargetContext the context in which the named entity actually
445/// resides.
446///
447/// \returns a nested name specifier that refers into the target context, or
448/// NULL if no qualification is needed.
449static NestedNameSpecifier *
450getRequiredQualification(ASTContext &Context,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000451 const DeclContext *CurContext,
452 const DeclContext *TargetContext) {
453 SmallVector<const DeclContext *, 4> TargetParents;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000454
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000455 for (const DeclContext *CommonAncestor = TargetContext;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000456 CommonAncestor && !CommonAncestor->Encloses(CurContext);
457 CommonAncestor = CommonAncestor->getLookupParent()) {
458 if (CommonAncestor->isTransparentContext() ||
459 CommonAncestor->isFunctionOrMethod())
460 continue;
461
462 TargetParents.push_back(CommonAncestor);
463 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000464
465 NestedNameSpecifier *Result = nullptr;
Douglas Gregor2af2f672009-09-21 20:12:40 +0000466 while (!TargetParents.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +0000467 const DeclContext *Parent = TargetParents.pop_back_val();
468
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000469 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Parent)) {
Douglas Gregor68762e72010-08-23 21:17:50 +0000470 if (!Namespace->getIdentifier())
471 continue;
472
Douglas Gregor2af2f672009-09-21 20:12:40 +0000473 Result = NestedNameSpecifier::Create(Context, Result, Namespace);
Douglas Gregor68762e72010-08-23 21:17:50 +0000474 }
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000475 else if (const TagDecl *TD = dyn_cast<TagDecl>(Parent))
Douglas Gregor2af2f672009-09-21 20:12:40 +0000476 Result = NestedNameSpecifier::Create(Context, Result,
477 false,
478 Context.getTypeDeclType(TD).getTypePtr());
Douglas Gregor9eb77012009-11-07 00:00:49 +0000479 }
Douglas Gregor2af2f672009-09-21 20:12:40 +0000480 return Result;
481}
482
Alp Toker034bbd52014-06-30 01:33:53 +0000483/// Determine whether \p Id is a name reserved for the implementation (C99
484/// 7.1.3, C++ [lib.global.names]).
485static bool isReservedName(const IdentifierInfo *Id) {
486 if (Id->getLength() < 2)
487 return false;
488 const char *Name = Id->getNameStart();
489 return Name[0] == '_' &&
490 (Name[1] == '_' || (Name[1] >= 'A' && Name[1] <= 'Z'));
491}
492
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000493bool ResultBuilder::isInterestingDecl(const NamedDecl *ND,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000494 bool &AsNestedNameSpecifier) const {
495 AsNestedNameSpecifier = false;
496
Richard Smithf2005d32015-12-29 23:34:32 +0000497 auto *Named = ND;
Douglas Gregor7c208612010-01-14 00:20:49 +0000498 ND = ND->getUnderlyingDecl();
Douglas Gregor58acf322009-10-09 22:16:47 +0000499
500 // Skip unnamed entities.
Douglas Gregor7c208612010-01-14 00:20:49 +0000501 if (!ND->getDeclName())
502 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000503
504 // Friend declarations and declarations introduced due to friends are never
505 // added as results.
Richard Smith6eece292015-01-15 02:27:20 +0000506 if (ND->getFriendObjectKind() == Decl::FOK_Undeclared)
Douglas Gregor7c208612010-01-14 00:20:49 +0000507 return false;
508
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000509 // Class template (partial) specializations are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000510 if (isa<ClassTemplateSpecializationDecl>(ND) ||
511 isa<ClassTemplatePartialSpecializationDecl>(ND))
512 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000513
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000514 // Using declarations themselves are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000515 if (isa<UsingDecl>(ND))
516 return false;
517
518 // Some declarations have reserved names that we don't want to ever show.
Alp Toker034bbd52014-06-30 01:33:53 +0000519 // Filter out names reserved for the implementation if they come from a
520 // system header.
521 // TODO: Add a predicate for this.
522 if (const IdentifierInfo *Id = ND->getIdentifier())
523 if (isReservedName(Id) &&
524 (ND->getLocation().isInvalid() ||
525 SemaRef.SourceMgr.isInSystemHeader(
526 SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))))
Douglas Gregor7c208612010-01-14 00:20:49 +0000527 return false;
Douglas Gregor2927c0c2010-11-09 03:59:40 +0000528
Douglas Gregor59cab552010-08-16 23:05:20 +0000529 if (Filter == &ResultBuilder::IsNestedNameSpecifier ||
Richard Smithf2005d32015-12-29 23:34:32 +0000530 (isa<NamespaceDecl>(ND) &&
Douglas Gregor59cab552010-08-16 23:05:20 +0000531 Filter != &ResultBuilder::IsNamespace &&
Douglas Gregor0ac41382010-09-23 23:01:17 +0000532 Filter != &ResultBuilder::IsNamespaceOrAlias &&
Craig Topperc3ec1492014-05-26 06:22:03 +0000533 Filter != nullptr))
Douglas Gregor59cab552010-08-16 23:05:20 +0000534 AsNestedNameSpecifier = true;
535
Douglas Gregor3545ff42009-09-21 16:56:56 +0000536 // Filter out any unwanted results.
Richard Smithf2005d32015-12-29 23:34:32 +0000537 if (Filter && !(this->*Filter)(Named)) {
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000538 // Check whether it is interesting as a nested-name-specifier.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000539 if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus &&
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000540 IsNestedNameSpecifier(ND) &&
541 (Filter != &ResultBuilder::IsMember ||
542 (isa<CXXRecordDecl>(ND) &&
543 cast<CXXRecordDecl>(ND)->isInjectedClassName()))) {
544 AsNestedNameSpecifier = true;
545 return true;
546 }
547
Douglas Gregor7c208612010-01-14 00:20:49 +0000548 return false;
Douglas Gregor59cab552010-08-16 23:05:20 +0000549 }
Douglas Gregor7c208612010-01-14 00:20:49 +0000550 // ... then it must be interesting!
551 return true;
552}
553
Douglas Gregore0717ab2010-01-14 00:41:07 +0000554bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000555 const NamedDecl *Hiding) {
Douglas Gregore0717ab2010-01-14 00:41:07 +0000556 // In C, there is no way to refer to a hidden name.
557 // FIXME: This isn't true; we can find a tag name hidden by an ordinary
558 // name if we introduce the tag type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000559 if (!SemaRef.getLangOpts().CPlusPlus)
Douglas Gregore0717ab2010-01-14 00:41:07 +0000560 return true;
561
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000562 const DeclContext *HiddenCtx =
563 R.Declaration->getDeclContext()->getRedeclContext();
Douglas Gregore0717ab2010-01-14 00:41:07 +0000564
565 // There is no way to qualify a name declared in a function or method.
566 if (HiddenCtx->isFunctionOrMethod())
567 return true;
568
Sebastian Redl50c68252010-08-31 00:36:30 +0000569 if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext())
Douglas Gregore0717ab2010-01-14 00:41:07 +0000570 return true;
571
572 // We can refer to the result with the appropriate qualification. Do it.
573 R.Hidden = true;
574 R.QualifierIsInformative = false;
575
576 if (!R.Qualifier)
577 R.Qualifier = getRequiredQualification(SemaRef.Context,
578 CurContext,
579 R.Declaration->getDeclContext());
580 return false;
581}
582
Douglas Gregor95887f92010-07-08 23:20:03 +0000583/// \brief A simplified classification of types used to determine whether two
584/// types are "similar enough" when adjusting priorities.
Douglas Gregor6e240332010-08-16 16:18:59 +0000585SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000586 switch (T->getTypeClass()) {
587 case Type::Builtin:
588 switch (cast<BuiltinType>(T)->getKind()) {
589 case BuiltinType::Void:
590 return STC_Void;
591
592 case BuiltinType::NullPtr:
593 return STC_Pointer;
594
595 case BuiltinType::Overload:
596 case BuiltinType::Dependent:
Douglas Gregor95887f92010-07-08 23:20:03 +0000597 return STC_Other;
598
599 case BuiltinType::ObjCId:
600 case BuiltinType::ObjCClass:
601 case BuiltinType::ObjCSel:
602 return STC_ObjectiveC;
603
604 default:
605 return STC_Arithmetic;
606 }
David Blaikie8a40f702012-01-17 06:56:22 +0000607
Douglas Gregor95887f92010-07-08 23:20:03 +0000608 case Type::Complex:
609 return STC_Arithmetic;
610
611 case Type::Pointer:
612 return STC_Pointer;
613
614 case Type::BlockPointer:
615 return STC_Block;
616
617 case Type::LValueReference:
618 case Type::RValueReference:
619 return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType());
620
621 case Type::ConstantArray:
622 case Type::IncompleteArray:
623 case Type::VariableArray:
624 case Type::DependentSizedArray:
625 return STC_Array;
626
627 case Type::DependentSizedExtVector:
628 case Type::Vector:
629 case Type::ExtVector:
630 return STC_Arithmetic;
631
632 case Type::FunctionProto:
633 case Type::FunctionNoProto:
634 return STC_Function;
635
636 case Type::Record:
637 return STC_Record;
638
639 case Type::Enum:
640 return STC_Arithmetic;
641
642 case Type::ObjCObject:
643 case Type::ObjCInterface:
644 case Type::ObjCObjectPointer:
645 return STC_ObjectiveC;
646
647 default:
648 return STC_Other;
649 }
650}
651
652/// \brief Get the type that a given expression will have if this declaration
653/// is used as an expression in its "typical" code-completion form.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000654QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000655 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
656
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000657 if (const TypeDecl *Type = dyn_cast<TypeDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000658 return C.getTypeDeclType(Type);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000659 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000660 return C.getObjCInterfaceType(Iface);
661
662 QualType T;
Alp Tokera2794f92014-01-22 07:29:52 +0000663 if (const FunctionDecl *Function = ND->getAsFunction())
Douglas Gregor603d81b2010-07-13 08:18:22 +0000664 T = Function->getCallResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000665 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Douglas Gregor603d81b2010-07-13 08:18:22 +0000666 T = Method->getSendResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000667 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000668 T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext()));
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000669 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000670 T = Property->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000671 else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000672 T = Value->getType();
673 else
674 return QualType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000675
676 // Dig through references, function pointers, and block pointers to
677 // get down to the likely type of an expression when the entity is
678 // used.
679 do {
680 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) {
681 T = Ref->getPointeeType();
682 continue;
683 }
684
685 if (const PointerType *Pointer = T->getAs<PointerType>()) {
686 if (Pointer->getPointeeType()->isFunctionType()) {
687 T = Pointer->getPointeeType();
688 continue;
689 }
690
691 break;
692 }
693
694 if (const BlockPointerType *Block = T->getAs<BlockPointerType>()) {
695 T = Block->getPointeeType();
696 continue;
697 }
698
699 if (const FunctionType *Function = T->getAs<FunctionType>()) {
Alp Toker314cc812014-01-25 16:55:45 +0000700 T = Function->getReturnType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000701 continue;
702 }
703
704 break;
705 } while (true);
706
707 return T;
Douglas Gregor95887f92010-07-08 23:20:03 +0000708}
709
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000710unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) {
711 if (!ND)
712 return CCP_Unlikely;
713
714 // Context-based decisions.
Richard Smith541b38b2013-09-20 01:15:31 +0000715 const DeclContext *LexicalDC = ND->getLexicalDeclContext();
716 if (LexicalDC->isFunctionOrMethod()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000717 // _cmd is relatively rare
718 if (const ImplicitParamDecl *ImplicitParam =
719 dyn_cast<ImplicitParamDecl>(ND))
720 if (ImplicitParam->getIdentifier() &&
721 ImplicitParam->getIdentifier()->isStr("_cmd"))
722 return CCP_ObjC_cmd;
723
724 return CCP_LocalDeclaration;
725 }
Richard Smith541b38b2013-09-20 01:15:31 +0000726
727 const DeclContext *DC = ND->getDeclContext()->getRedeclContext();
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000728 if (DC->isRecord() || isa<ObjCContainerDecl>(DC))
729 return CCP_MemberDeclaration;
730
731 // Content-based decisions.
732 if (isa<EnumConstantDecl>(ND))
733 return CCP_Constant;
734
Douglas Gregor52e0de42013-01-31 05:03:46 +0000735 // Use CCP_Type for type declarations unless we're in a statement, Objective-C
736 // message receiver, or parenthesized expression context. There, it's as
737 // likely that the user will want to write a type as other declarations.
738 if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
739 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
740 CompletionContext.getKind()
741 == CodeCompletionContext::CCC_ObjCMessageReceiver ||
742 CompletionContext.getKind()
743 == CodeCompletionContext::CCC_ParenthesizedExpression))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000744 return CCP_Type;
745
746 return CCP_Declaration;
747}
748
Douglas Gregor50832e02010-09-20 22:39:41 +0000749void ResultBuilder::AdjustResultPriorityForDecl(Result &R) {
750 // If this is an Objective-C method declaration whose selector matches our
751 // preferred selector, give it a priority boost.
752 if (!PreferredSelector.isNull())
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000753 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration))
Douglas Gregor50832e02010-09-20 22:39:41 +0000754 if (PreferredSelector == Method->getSelector())
755 R.Priority += CCD_SelectorMatch;
Douglas Gregor5fb901d2010-09-20 23:11:55 +0000756
Douglas Gregor50832e02010-09-20 22:39:41 +0000757 // If we have a preferred type, adjust the priority for results with exactly-
758 // matching or nearly-matching types.
759 if (!PreferredType.isNull()) {
760 QualType T = getDeclUsageType(SemaRef.Context, R.Declaration);
761 if (!T.isNull()) {
762 CanQualType TC = SemaRef.Context.getCanonicalType(T);
763 // Check for exactly-matching types (modulo qualifiers).
764 if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
765 R.Priority /= CCF_ExactTypeMatch;
766 // Check for nearly-matching types, based on classification of each.
767 else if ((getSimplifiedTypeClass(PreferredType)
Douglas Gregor95887f92010-07-08 23:20:03 +0000768 == getSimplifiedTypeClass(TC)) &&
Douglas Gregor50832e02010-09-20 22:39:41 +0000769 !(PreferredType->isEnumeralType() && TC->isEnumeralType()))
770 R.Priority /= CCF_SimilarTypeMatch;
771 }
772 }
Douglas Gregor95887f92010-07-08 23:20:03 +0000773}
774
Douglas Gregor0212fd72010-09-21 16:06:22 +0000775void ResultBuilder::MaybeAddConstructorResults(Result R) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000776 if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration ||
Douglas Gregor0212fd72010-09-21 16:06:22 +0000777 !CompletionContext.wantConstructorResults())
778 return;
779
780 ASTContext &Context = SemaRef.Context;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000781 const NamedDecl *D = R.Declaration;
Craig Topperc3ec1492014-05-26 06:22:03 +0000782 const CXXRecordDecl *Record = nullptr;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000783 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D))
Douglas Gregor0212fd72010-09-21 16:06:22 +0000784 Record = ClassTemplate->getTemplatedDecl();
785 else if ((Record = dyn_cast<CXXRecordDecl>(D))) {
786 // Skip specializations and partial specializations.
787 if (isa<ClassTemplateSpecializationDecl>(Record))
788 return;
789 } else {
790 // There are no constructors here.
791 return;
792 }
793
794 Record = Record->getDefinition();
795 if (!Record)
796 return;
797
798
799 QualType RecordTy = Context.getTypeDeclType(Record);
800 DeclarationName ConstructorName
801 = Context.DeclarationNames.getCXXConstructorName(
802 Context.getCanonicalType(RecordTy));
Richard Smithcf4bdde2015-02-21 02:45:19 +0000803 DeclContext::lookup_result Ctors = Record->lookup(ConstructorName);
804 for (DeclContext::lookup_iterator I = Ctors.begin(),
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000805 E = Ctors.end();
806 I != E; ++I) {
David Blaikieff7d47a2012-12-19 00:45:41 +0000807 R.Declaration = *I;
Douglas Gregor0212fd72010-09-21 16:06:22 +0000808 R.CursorKind = getCursorKindForDecl(R.Declaration);
809 Results.push_back(R);
810 }
811}
812
Douglas Gregor7c208612010-01-14 00:20:49 +0000813void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) {
814 assert(!ShadowMaps.empty() && "Must enter into a results scope");
815
816 if (R.Kind != Result::RK_Declaration) {
817 // For non-declaration results, just add the result.
818 Results.push_back(R);
819 return;
820 }
821
822 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000823 if (const UsingShadowDecl *Using =
824 dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000825 MaybeAddResult(Result(Using->getTargetDecl(),
826 getBasePriority(Using->getTargetDecl()),
827 R.Qualifier),
828 CurContext);
Douglas Gregor7c208612010-01-14 00:20:49 +0000829 return;
830 }
831
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000832 const Decl *CanonDecl = R.Declaration->getCanonicalDecl();
Douglas Gregor7c208612010-01-14 00:20:49 +0000833 unsigned IDNS = CanonDecl->getIdentifierNamespace();
834
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000835 bool AsNestedNameSpecifier = false;
836 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregor7c208612010-01-14 00:20:49 +0000837 return;
838
Douglas Gregor0212fd72010-09-21 16:06:22 +0000839 // C++ constructors are never found by name lookup.
840 if (isa<CXXConstructorDecl>(R.Declaration))
841 return;
842
Douglas Gregor3545ff42009-09-21 16:56:56 +0000843 ShadowMap &SMap = ShadowMaps.back();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000844 ShadowMapEntry::iterator I, IEnd;
845 ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
846 if (NamePos != SMap.end()) {
847 I = NamePos->second.begin();
848 IEnd = NamePos->second.end();
849 }
850
851 for (; I != IEnd; ++I) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000852 const NamedDecl *ND = I->first;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000853 unsigned Index = I->second;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000854 if (ND->getCanonicalDecl() == CanonDecl) {
855 // This is a redeclaration. Always pick the newer declaration.
Douglas Gregor3545ff42009-09-21 16:56:56 +0000856 Results[Index].Declaration = R.Declaration;
857
Douglas Gregor3545ff42009-09-21 16:56:56 +0000858 // We're done.
859 return;
860 }
861 }
862
863 // This is a new declaration in this scope. However, check whether this
864 // declaration name is hidden by a similarly-named declaration in an outer
865 // scope.
866 std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end();
867 --SMEnd;
868 for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000869 ShadowMapEntry::iterator I, IEnd;
870 ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName());
871 if (NamePos != SM->end()) {
872 I = NamePos->second.begin();
873 IEnd = NamePos->second.end();
874 }
875 for (; I != IEnd; ++I) {
Douglas Gregor3545ff42009-09-21 16:56:56 +0000876 // A tag declaration does not hide a non-tag declaration.
John McCalle87beb22010-04-23 18:46:30 +0000877 if (I->first->hasTagIdentifierNamespace() &&
Richard Smith541b38b2013-09-20 01:15:31 +0000878 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
879 Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol)))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000880 continue;
881
882 // Protocols are in distinct namespaces from everything else.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000883 if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000884 || (IDNS & Decl::IDNS_ObjCProtocol)) &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000885 I->first->getIdentifierNamespace() != IDNS)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000886 continue;
887
888 // The newly-added result is hidden by an entry in the shadow map.
Douglas Gregore0717ab2010-01-14 00:41:07 +0000889 if (CheckHiddenResult(R, CurContext, I->first))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000890 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000891
892 break;
893 }
894 }
895
896 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000897 if (!AllDeclsFound.insert(CanonDecl).second)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000898 return;
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000899
Douglas Gregore412a5a2009-09-23 22:26:46 +0000900 // If the filter is for nested-name-specifiers, then this result starts a
901 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000902 if (AsNestedNameSpecifier) {
Douglas Gregore412a5a2009-09-23 22:26:46 +0000903 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000904 R.Priority = CCP_NestedNameSpecifier;
Douglas Gregor50832e02010-09-20 22:39:41 +0000905 } else
906 AdjustResultPriorityForDecl(R);
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000907
Douglas Gregor5bf52692009-09-22 23:15:58 +0000908 // If this result is supposed to have an informative qualifier, add one.
Douglas Gregore412a5a2009-09-23 22:26:46 +0000909 if (R.QualifierIsInformative && !R.Qualifier &&
910 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000911 const DeclContext *Ctx = R.Declaration->getDeclContext();
912 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000913 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
914 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000915 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000916 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
917 false, SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregor5bf52692009-09-22 23:15:58 +0000918 else
919 R.QualifierIsInformative = false;
920 }
Douglas Gregore412a5a2009-09-23 22:26:46 +0000921
Douglas Gregor3545ff42009-09-21 16:56:56 +0000922 // Insert this result into the set of results and into the current shadow
923 // map.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000924 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
Douglas Gregor3545ff42009-09-21 16:56:56 +0000925 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +0000926
927 if (!AsNestedNameSpecifier)
928 MaybeAddConstructorResults(R);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000929}
930
Douglas Gregorc580c522010-01-14 01:09:38 +0000931void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
Douglas Gregor09bbc652010-01-14 15:47:35 +0000932 NamedDecl *Hiding, bool InBaseClass = false) {
Douglas Gregor78a21012010-01-14 16:01:26 +0000933 if (R.Kind != Result::RK_Declaration) {
934 // For non-declaration results, just add the result.
935 Results.push_back(R);
936 return;
937 }
938
Douglas Gregorc580c522010-01-14 01:09:38 +0000939 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000940 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000941 AddResult(Result(Using->getTargetDecl(),
942 getBasePriority(Using->getTargetDecl()),
943 R.Qualifier),
944 CurContext, Hiding);
Douglas Gregorc580c522010-01-14 01:09:38 +0000945 return;
946 }
947
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000948 bool AsNestedNameSpecifier = false;
949 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregorc580c522010-01-14 01:09:38 +0000950 return;
951
Douglas Gregor0212fd72010-09-21 16:06:22 +0000952 // C++ constructors are never found by name lookup.
953 if (isa<CXXConstructorDecl>(R.Declaration))
954 return;
955
Douglas Gregorc580c522010-01-14 01:09:38 +0000956 if (Hiding && CheckHiddenResult(R, CurContext, Hiding))
957 return;
Nick Lewyckyc3921482012-04-03 21:44:08 +0000958
Douglas Gregorc580c522010-01-14 01:09:38 +0000959 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000960 if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second)
Douglas Gregorc580c522010-01-14 01:09:38 +0000961 return;
962
963 // If the filter is for nested-name-specifiers, then this result starts a
964 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000965 if (AsNestedNameSpecifier) {
Douglas Gregorc580c522010-01-14 01:09:38 +0000966 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000967 R.Priority = CCP_NestedNameSpecifier;
968 }
Douglas Gregor09bbc652010-01-14 15:47:35 +0000969 else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass &&
970 isa<CXXRecordDecl>(R.Declaration->getDeclContext()
Sebastian Redl50c68252010-08-31 00:36:30 +0000971 ->getRedeclContext()))
Douglas Gregor09bbc652010-01-14 15:47:35 +0000972 R.QualifierIsInformative = true;
973
Douglas Gregorc580c522010-01-14 01:09:38 +0000974 // If this result is supposed to have an informative qualifier, add one.
975 if (R.QualifierIsInformative && !R.Qualifier &&
976 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000977 const DeclContext *Ctx = R.Declaration->getDeclContext();
978 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000979 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
980 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000981 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000982 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr, false,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000983 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregorc580c522010-01-14 01:09:38 +0000984 else
985 R.QualifierIsInformative = false;
986 }
987
Douglas Gregora2db7932010-05-26 22:00:08 +0000988 // Adjust the priority if this result comes from a base class.
989 if (InBaseClass)
990 R.Priority += CCD_InBaseClass;
991
Douglas Gregor50832e02010-09-20 22:39:41 +0000992 AdjustResultPriorityForDecl(R);
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000993
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000994 if (HasObjectTypeQualifiers)
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000995 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration))
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000996 if (Method->isInstance()) {
997 Qualifiers MethodQuals
998 = Qualifiers::fromCVRMask(Method->getTypeQualifiers());
999 if (ObjectTypeQualifiers == MethodQuals)
1000 R.Priority += CCD_ObjectQualifierMatch;
1001 else if (ObjectTypeQualifiers - MethodQuals) {
1002 // The method cannot be invoked, because doing so would drop
1003 // qualifiers.
1004 return;
1005 }
1006 }
1007
Douglas Gregorc580c522010-01-14 01:09:38 +00001008 // Insert this result into the set of results.
1009 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +00001010
1011 if (!AsNestedNameSpecifier)
1012 MaybeAddConstructorResults(R);
Douglas Gregorc580c522010-01-14 01:09:38 +00001013}
1014
Douglas Gregor78a21012010-01-14 16:01:26 +00001015void ResultBuilder::AddResult(Result R) {
1016 assert(R.Kind != Result::RK_Declaration &&
1017 "Declaration results need more context");
1018 Results.push_back(R);
1019}
1020
Douglas Gregor3545ff42009-09-21 16:56:56 +00001021/// \brief Enter into a new scope.
Benjamin Kramer3204b152015-05-29 19:42:19 +00001022void ResultBuilder::EnterNewScope() { ShadowMaps.emplace_back(); }
Douglas Gregor3545ff42009-09-21 16:56:56 +00001023
1024/// \brief Exit from the current scope.
1025void ResultBuilder::ExitScope() {
Douglas Gregor05e7ca32009-12-06 20:23:50 +00001026 for (ShadowMap::iterator E = ShadowMaps.back().begin(),
1027 EEnd = ShadowMaps.back().end();
1028 E != EEnd;
1029 ++E)
1030 E->second.Destroy();
1031
Douglas Gregor3545ff42009-09-21 16:56:56 +00001032 ShadowMaps.pop_back();
1033}
1034
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001035/// \brief Determines whether this given declaration will be found by
1036/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001037bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001038 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1039
Richard Smith541b38b2013-09-20 01:15:31 +00001040 // If name lookup finds a local extern declaration, then we are in a
1041 // context where it behaves like an ordinary name.
1042 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001043 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001044 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001045 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001046 if (isa<ObjCIvarDecl>(ND))
1047 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001048 }
1049
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001050 return ND->getIdentifierNamespace() & IDNS;
1051}
1052
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001053/// \brief Determines whether this given declaration will be found by
Douglas Gregor70febae2010-05-28 00:49:12 +00001054/// ordinary name lookup but is not a type name.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001055bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001056 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1057 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
1058 return false;
1059
Richard Smith541b38b2013-09-20 01:15:31 +00001060 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001061 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001062 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001063 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001064 if (isa<ObjCIvarDecl>(ND))
1065 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001066 }
1067
Douglas Gregor70febae2010-05-28 00:49:12 +00001068 return ND->getIdentifierNamespace() & IDNS;
1069}
1070
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001071bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const {
Douglas Gregor85b50632010-07-28 21:50:18 +00001072 if (!IsOrdinaryNonTypeName(ND))
1073 return 0;
1074
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001075 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
Douglas Gregor85b50632010-07-28 21:50:18 +00001076 if (VD->getType()->isIntegralOrEnumerationType())
1077 return true;
1078
1079 return false;
1080}
1081
Douglas Gregor70febae2010-05-28 00:49:12 +00001082/// \brief Determines whether this given declaration will be found by
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001083/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001084bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001085 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1086
Richard Smith541b38b2013-09-20 01:15:31 +00001087 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001088 if (SemaRef.getLangOpts().CPlusPlus)
John McCalle87beb22010-04-23 18:46:30 +00001089 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001090
1091 return (ND->getIdentifierNamespace() & IDNS) &&
Douglas Gregor70febae2010-05-28 00:49:12 +00001092 !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) &&
1093 !isa<ObjCPropertyDecl>(ND);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001094}
1095
Douglas Gregor3545ff42009-09-21 16:56:56 +00001096/// \brief Determines whether the given declaration is suitable as the
1097/// start of a C++ nested-name-specifier, e.g., a class or namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001098bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001099 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001100 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001101 ND = ClassTemplate->getTemplatedDecl();
1102
1103 return SemaRef.isAcceptableNestedNameSpecifier(ND);
1104}
1105
1106/// \brief Determines whether the given declaration is an enumeration.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001107bool ResultBuilder::IsEnum(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001108 return isa<EnumDecl>(ND);
1109}
1110
1111/// \brief Determines whether the given declaration is a class or struct.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001112bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001113 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001114 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001115 ND = ClassTemplate->getTemplatedDecl();
Joao Matosdc86f942012-08-31 18:45:21 +00001116
1117 // For purposes of this check, interfaces match too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001118 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001119 return RD->getTagKind() == TTK_Class ||
Joao Matosdc86f942012-08-31 18:45:21 +00001120 RD->getTagKind() == TTK_Struct ||
1121 RD->getTagKind() == TTK_Interface;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001122
1123 return false;
1124}
1125
1126/// \brief Determines whether the given declaration is a union.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001127bool ResultBuilder::IsUnion(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001128 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001129 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001130 ND = ClassTemplate->getTemplatedDecl();
1131
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001132 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001133 return RD->getTagKind() == TTK_Union;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001134
1135 return false;
1136}
1137
1138/// \brief Determines whether the given declaration is a namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001139bool ResultBuilder::IsNamespace(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001140 return isa<NamespaceDecl>(ND);
1141}
1142
1143/// \brief Determines whether the given declaration is a namespace or
1144/// namespace alias.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001145bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001146 return isa<NamespaceDecl>(ND->getUnderlyingDecl());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001147}
1148
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001149/// \brief Determines whether the given declaration is a type.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001150bool ResultBuilder::IsType(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001151 ND = ND->getUnderlyingDecl();
Douglas Gregor99fa2642010-08-24 01:06:58 +00001152 return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor3545ff42009-09-21 16:56:56 +00001153}
1154
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001155/// \brief Determines which members of a class should be visible via
1156/// "." or "->". Only value declarations, nested name specifiers, and
1157/// using declarations thereof should show up.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001158bool ResultBuilder::IsMember(const NamedDecl *ND) const {
Richard Smithf2005d32015-12-29 23:34:32 +00001159 ND = ND->getUnderlyingDecl();
Douglas Gregor70788392009-12-11 18:14:22 +00001160 return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) ||
Richard Smithf2005d32015-12-29 23:34:32 +00001161 isa<ObjCPropertyDecl>(ND);
Douglas Gregore412a5a2009-09-23 22:26:46 +00001162}
1163
Douglas Gregora817a192010-05-27 23:06:34 +00001164static bool isObjCReceiverType(ASTContext &C, QualType T) {
1165 T = C.getCanonicalType(T);
1166 switch (T->getTypeClass()) {
1167 case Type::ObjCObject:
1168 case Type::ObjCInterface:
1169 case Type::ObjCObjectPointer:
1170 return true;
1171
1172 case Type::Builtin:
1173 switch (cast<BuiltinType>(T)->getKind()) {
1174 case BuiltinType::ObjCId:
1175 case BuiltinType::ObjCClass:
1176 case BuiltinType::ObjCSel:
1177 return true;
1178
1179 default:
1180 break;
1181 }
1182 return false;
1183
1184 default:
1185 break;
1186 }
1187
David Blaikiebbafb8a2012-03-11 07:00:24 +00001188 if (!C.getLangOpts().CPlusPlus)
Douglas Gregora817a192010-05-27 23:06:34 +00001189 return false;
1190
1191 // FIXME: We could perform more analysis here to determine whether a
1192 // particular class type has any conversions to Objective-C types. For now,
1193 // just accept all class types.
1194 return T->isDependentType() || T->isRecordType();
1195}
1196
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001197bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const {
Douglas Gregora817a192010-05-27 23:06:34 +00001198 QualType T = getDeclUsageType(SemaRef.Context, ND);
1199 if (T.isNull())
1200 return false;
1201
1202 T = SemaRef.Context.getBaseElementType(T);
1203 return isObjCReceiverType(SemaRef.Context, T);
1204}
1205
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001206bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const {
Douglas Gregord8c61782012-02-15 15:34:24 +00001207 if (IsObjCMessageReceiver(ND))
1208 return true;
1209
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001210 const VarDecl *Var = dyn_cast<VarDecl>(ND);
Douglas Gregord8c61782012-02-15 15:34:24 +00001211 if (!Var)
1212 return false;
1213
1214 return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>();
1215}
1216
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001217bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001218 if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) ||
1219 (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND)))
Douglas Gregor68762e72010-08-23 21:17:50 +00001220 return false;
1221
1222 QualType T = getDeclUsageType(SemaRef.Context, ND);
1223 if (T.isNull())
1224 return false;
1225
1226 T = SemaRef.Context.getBaseElementType(T);
1227 return T->isObjCObjectType() || T->isObjCObjectPointerType() ||
1228 T->isObjCIdType() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001229 (SemaRef.getLangOpts().CPlusPlus && T->isRecordType());
Douglas Gregor68762e72010-08-23 21:17:50 +00001230}
Douglas Gregora817a192010-05-27 23:06:34 +00001231
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001232bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001233 return false;
1234}
1235
James Dennettf1243872012-06-17 05:33:25 +00001236/// \brief Determines whether the given declaration is an Objective-C
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001237/// instance variable.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001238bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const {
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001239 return isa<ObjCIvarDecl>(ND);
1240}
1241
Douglas Gregorc580c522010-01-14 01:09:38 +00001242namespace {
1243 /// \brief Visible declaration consumer that adds a code-completion result
1244 /// for each visible declaration.
1245 class CodeCompletionDeclConsumer : public VisibleDeclConsumer {
1246 ResultBuilder &Results;
1247 DeclContext *CurContext;
1248
1249 public:
1250 CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext)
1251 : Results(Results), CurContext(CurContext) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00001252
1253 void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1254 bool InBaseClass) override {
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001255 bool Accessible = true;
Douglas Gregor03ba1882011-11-03 16:51:37 +00001256 if (Ctx)
1257 Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx);
Craig Topperc3ec1492014-05-26 06:22:03 +00001258
1259 ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr,
1260 false, Accessible);
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001261 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +00001262 }
1263 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001264}
Douglas Gregorc580c522010-01-14 01:09:38 +00001265
Douglas Gregor3545ff42009-09-21 16:56:56 +00001266/// \brief Add type specifiers for the current language as keyword results.
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001267static void AddTypeSpecifierResults(const LangOptions &LangOpts,
Douglas Gregor3545ff42009-09-21 16:56:56 +00001268 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001269 typedef CodeCompletionResult Result;
Douglas Gregora2db7932010-05-26 22:00:08 +00001270 Results.AddResult(Result("short", CCP_Type));
1271 Results.AddResult(Result("long", CCP_Type));
1272 Results.AddResult(Result("signed", CCP_Type));
1273 Results.AddResult(Result("unsigned", CCP_Type));
1274 Results.AddResult(Result("void", CCP_Type));
1275 Results.AddResult(Result("char", CCP_Type));
1276 Results.AddResult(Result("int", CCP_Type));
1277 Results.AddResult(Result("float", CCP_Type));
1278 Results.AddResult(Result("double", CCP_Type));
1279 Results.AddResult(Result("enum", CCP_Type));
1280 Results.AddResult(Result("struct", CCP_Type));
1281 Results.AddResult(Result("union", CCP_Type));
1282 Results.AddResult(Result("const", CCP_Type));
1283 Results.AddResult(Result("volatile", CCP_Type));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001284
Douglas Gregor3545ff42009-09-21 16:56:56 +00001285 if (LangOpts.C99) {
1286 // C99-specific
Douglas Gregora2db7932010-05-26 22:00:08 +00001287 Results.AddResult(Result("_Complex", CCP_Type));
1288 Results.AddResult(Result("_Imaginary", CCP_Type));
1289 Results.AddResult(Result("_Bool", CCP_Type));
1290 Results.AddResult(Result("restrict", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001291 }
1292
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001293 CodeCompletionBuilder Builder(Results.getAllocator(),
1294 Results.getCodeCompletionTUInfo());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001295 if (LangOpts.CPlusPlus) {
1296 // C++-specific
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00001297 Results.AddResult(Result("bool", CCP_Type +
1298 (LangOpts.ObjC1? CCD_bool_in_ObjC : 0)));
Douglas Gregora2db7932010-05-26 22:00:08 +00001299 Results.AddResult(Result("class", CCP_Type));
1300 Results.AddResult(Result("wchar_t", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001301
Douglas Gregorf4c33342010-05-28 00:22:41 +00001302 // typename qualified-id
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001303 Builder.AddTypedTextChunk("typename");
1304 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1305 Builder.AddPlaceholderChunk("qualifier");
1306 Builder.AddTextChunk("::");
1307 Builder.AddPlaceholderChunk("name");
1308 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001309
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001310 if (LangOpts.CPlusPlus11) {
Douglas Gregora2db7932010-05-26 22:00:08 +00001311 Results.AddResult(Result("auto", CCP_Type));
1312 Results.AddResult(Result("char16_t", CCP_Type));
1313 Results.AddResult(Result("char32_t", CCP_Type));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001314
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001315 Builder.AddTypedTextChunk("decltype");
1316 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1317 Builder.AddPlaceholderChunk("expression");
1318 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1319 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001320 }
1321 }
1322
1323 // GNU extensions
1324 if (LangOpts.GNUMode) {
1325 // FIXME: Enable when we actually support decimal floating point.
Douglas Gregor78a21012010-01-14 16:01:26 +00001326 // Results.AddResult(Result("_Decimal32"));
1327 // Results.AddResult(Result("_Decimal64"));
1328 // Results.AddResult(Result("_Decimal128"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001329
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001330 Builder.AddTypedTextChunk("typeof");
1331 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1332 Builder.AddPlaceholderChunk("expression");
1333 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001334
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001335 Builder.AddTypedTextChunk("typeof");
1336 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1337 Builder.AddPlaceholderChunk("type");
1338 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1339 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001340 }
Douglas Gregor86b42682015-06-19 18:27:52 +00001341
1342 // Nullability
Douglas Gregoraea7afd2015-06-24 22:02:08 +00001343 Results.AddResult(Result("_Nonnull", CCP_Type));
1344 Results.AddResult(Result("_Null_unspecified", CCP_Type));
1345 Results.AddResult(Result("_Nullable", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001346}
1347
John McCallfaf5fb42010-08-26 23:41:50 +00001348static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001349 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001350 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001351 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001352 // Note: we don't suggest either "auto" or "register", because both
1353 // are pointless as storage specifiers. Elsewhere, we suggest "auto"
1354 // in C++0x as a type specifier.
Douglas Gregor78a21012010-01-14 16:01:26 +00001355 Results.AddResult(Result("extern"));
1356 Results.AddResult(Result("static"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001357}
1358
John McCallfaf5fb42010-08-26 23:41:50 +00001359static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001360 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001361 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001362 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001363 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001364 case Sema::PCC_Class:
1365 case Sema::PCC_MemberTemplate:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001366 if (LangOpts.CPlusPlus) {
Douglas Gregor78a21012010-01-14 16:01:26 +00001367 Results.AddResult(Result("explicit"));
1368 Results.AddResult(Result("friend"));
1369 Results.AddResult(Result("mutable"));
1370 Results.AddResult(Result("virtual"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001371 }
1372 // Fall through
1373
John McCallfaf5fb42010-08-26 23:41:50 +00001374 case Sema::PCC_ObjCInterface:
1375 case Sema::PCC_ObjCImplementation:
1376 case Sema::PCC_Namespace:
1377 case Sema::PCC_Template:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001378 if (LangOpts.CPlusPlus || LangOpts.C99)
Douglas Gregor78a21012010-01-14 16:01:26 +00001379 Results.AddResult(Result("inline"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001380 break;
1381
John McCallfaf5fb42010-08-26 23:41:50 +00001382 case Sema::PCC_ObjCInstanceVariableList:
1383 case Sema::PCC_Expression:
1384 case Sema::PCC_Statement:
1385 case Sema::PCC_ForInit:
1386 case Sema::PCC_Condition:
1387 case Sema::PCC_RecoveryInFunction:
1388 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001389 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001390 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001391 break;
1392 }
1393}
1394
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001395static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt);
1396static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt);
1397static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00001398 ResultBuilder &Results,
1399 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001400static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001401 ResultBuilder &Results,
1402 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001403static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001404 ResultBuilder &Results,
1405 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001406static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt);
Douglas Gregorf1934162010-01-13 21:24:21 +00001407
Douglas Gregorf4c33342010-05-28 00:22:41 +00001408static void AddTypedefResult(ResultBuilder &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001409 CodeCompletionBuilder Builder(Results.getAllocator(),
1410 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001411 Builder.AddTypedTextChunk("typedef");
1412 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1413 Builder.AddPlaceholderChunk("type");
1414 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1415 Builder.AddPlaceholderChunk("name");
1416 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001417}
1418
John McCallfaf5fb42010-08-26 23:41:50 +00001419static bool WantTypesInContext(Sema::ParserCompletionContext CCC,
Douglas Gregor70febae2010-05-28 00:49:12 +00001420 const LangOptions &LangOpts) {
Douglas Gregor70febae2010-05-28 00:49:12 +00001421 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001422 case Sema::PCC_Namespace:
1423 case Sema::PCC_Class:
1424 case Sema::PCC_ObjCInstanceVariableList:
1425 case Sema::PCC_Template:
1426 case Sema::PCC_MemberTemplate:
1427 case Sema::PCC_Statement:
1428 case Sema::PCC_RecoveryInFunction:
1429 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001430 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001431 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor70febae2010-05-28 00:49:12 +00001432 return true;
1433
John McCallfaf5fb42010-08-26 23:41:50 +00001434 case Sema::PCC_Expression:
1435 case Sema::PCC_Condition:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001436 return LangOpts.CPlusPlus;
1437
1438 case Sema::PCC_ObjCInterface:
1439 case Sema::PCC_ObjCImplementation:
Douglas Gregor70febae2010-05-28 00:49:12 +00001440 return false;
1441
John McCallfaf5fb42010-08-26 23:41:50 +00001442 case Sema::PCC_ForInit:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001443 return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99;
Douglas Gregor70febae2010-05-28 00:49:12 +00001444 }
David Blaikie8a40f702012-01-17 06:56:22 +00001445
1446 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor70febae2010-05-28 00:49:12 +00001447}
1448
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001449static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context,
1450 const Preprocessor &PP) {
1451 PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001452 Policy.AnonymousTagLocations = false;
1453 Policy.SuppressStrongLifetime = true;
Douglas Gregor2e10cf92011-11-03 00:16:13 +00001454 Policy.SuppressUnwrittenScope = true;
Douglas Gregore5c79d52011-10-18 21:20:17 +00001455 return Policy;
1456}
1457
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001458/// \brief Retrieve a printing policy suitable for code completion.
1459static PrintingPolicy getCompletionPrintingPolicy(Sema &S) {
1460 return getCompletionPrintingPolicy(S.Context, S.PP);
1461}
1462
Douglas Gregore5c79d52011-10-18 21:20:17 +00001463/// \brief Retrieve the string representation of the given type as a string
1464/// that has the appropriate lifetime for code completion.
1465///
1466/// This routine provides a fast path where we provide constant strings for
1467/// common type names.
1468static const char *GetCompletionTypeString(QualType T,
1469 ASTContext &Context,
1470 const PrintingPolicy &Policy,
1471 CodeCompletionAllocator &Allocator) {
1472 if (!T.getLocalQualifiers()) {
1473 // Built-in type names are constant strings.
1474 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T))
Argyrios Kyrtzidisbbff3da2012-05-05 04:20:28 +00001475 return BT->getNameAsCString(Policy);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001476
1477 // Anonymous tag types are constant strings.
1478 if (const TagType *TagT = dyn_cast<TagType>(T))
1479 if (TagDecl *Tag = TagT->getDecl())
John McCall5ea95772013-03-09 00:54:27 +00001480 if (!Tag->hasNameForLinkage()) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001481 switch (Tag->getTagKind()) {
1482 case TTK_Struct: return "struct <anonymous>";
Joao Matosdc86f942012-08-31 18:45:21 +00001483 case TTK_Interface: return "__interface <anonymous>";
1484 case TTK_Class: return "class <anonymous>";
Douglas Gregore5c79d52011-10-18 21:20:17 +00001485 case TTK_Union: return "union <anonymous>";
1486 case TTK_Enum: return "enum <anonymous>";
1487 }
1488 }
1489 }
1490
1491 // Slow path: format the type as a string.
1492 std::string Result;
1493 T.getAsStringInternal(Result, Policy);
1494 return Allocator.CopyString(Result);
1495}
1496
Douglas Gregord8c61782012-02-15 15:34:24 +00001497/// \brief Add a completion for "this", if we're in a member function.
1498static void addThisCompletion(Sema &S, ResultBuilder &Results) {
1499 QualType ThisTy = S.getCurrentThisType();
1500 if (ThisTy.isNull())
1501 return;
1502
1503 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001504 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregord8c61782012-02-15 15:34:24 +00001505 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
1506 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
1507 S.Context,
1508 Policy,
1509 Allocator));
1510 Builder.AddTypedTextChunk("this");
Joao Matosdc86f942012-08-31 18:45:21 +00001511 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregord8c61782012-02-15 15:34:24 +00001512}
1513
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001514/// \brief Add language constructs that show up for "ordinary" names.
John McCallfaf5fb42010-08-26 23:41:50 +00001515static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001516 Scope *S,
1517 Sema &SemaRef,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001518 ResultBuilder &Results) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001519 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001520 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregore5c79d52011-10-18 21:20:17 +00001521 PrintingPolicy Policy = getCompletionPrintingPolicy(SemaRef);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001522
John McCall276321a2010-08-25 06:19:51 +00001523 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001524 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001525 case Sema::PCC_Namespace:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001526 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001527 if (Results.includeCodePatterns()) {
1528 // namespace <identifier> { declarations }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001529 Builder.AddTypedTextChunk("namespace");
1530 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1531 Builder.AddPlaceholderChunk("identifier");
1532 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1533 Builder.AddPlaceholderChunk("declarations");
1534 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1535 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1536 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001537 }
1538
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001539 // namespace identifier = identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001540 Builder.AddTypedTextChunk("namespace");
1541 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1542 Builder.AddPlaceholderChunk("name");
1543 Builder.AddChunk(CodeCompletionString::CK_Equal);
1544 Builder.AddPlaceholderChunk("namespace");
1545 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001546
1547 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001548 Builder.AddTypedTextChunk("using");
1549 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1550 Builder.AddTextChunk("namespace");
1551 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1552 Builder.AddPlaceholderChunk("identifier");
1553 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001554
1555 // asm(string-literal)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001556 Builder.AddTypedTextChunk("asm");
1557 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1558 Builder.AddPlaceholderChunk("string-literal");
1559 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1560 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001561
Douglas Gregorf4c33342010-05-28 00:22:41 +00001562 if (Results.includeCodePatterns()) {
1563 // Explicit template instantiation
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001564 Builder.AddTypedTextChunk("template");
1565 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1566 Builder.AddPlaceholderChunk("declaration");
1567 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001568 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001569 }
Douglas Gregorf1934162010-01-13 21:24:21 +00001570
David Blaikiebbafb8a2012-03-11 07:00:24 +00001571 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001572 AddObjCTopLevelResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001573
Douglas Gregorf4c33342010-05-28 00:22:41 +00001574 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001575 // Fall through
1576
John McCallfaf5fb42010-08-26 23:41:50 +00001577 case Sema::PCC_Class:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001578 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001579 // Using declaration
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001580 Builder.AddTypedTextChunk("using");
1581 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1582 Builder.AddPlaceholderChunk("qualifier");
1583 Builder.AddTextChunk("::");
1584 Builder.AddPlaceholderChunk("name");
1585 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001586
Douglas Gregorf4c33342010-05-28 00:22:41 +00001587 // using typename qualifier::name (only in a dependent context)
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001588 if (SemaRef.CurContext->isDependentContext()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001589 Builder.AddTypedTextChunk("using");
1590 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1591 Builder.AddTextChunk("typename");
1592 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1593 Builder.AddPlaceholderChunk("qualifier");
1594 Builder.AddTextChunk("::");
1595 Builder.AddPlaceholderChunk("name");
1596 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001597 }
1598
John McCallfaf5fb42010-08-26 23:41:50 +00001599 if (CCC == Sema::PCC_Class) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001600 AddTypedefResult(Results);
1601
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001602 // public:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001603 Builder.AddTypedTextChunk("public");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001604 if (Results.includeCodePatterns())
1605 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001606 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001607
1608 // protected:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001609 Builder.AddTypedTextChunk("protected");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001610 if (Results.includeCodePatterns())
1611 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001612 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001613
1614 // private:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001615 Builder.AddTypedTextChunk("private");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001616 if (Results.includeCodePatterns())
1617 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001618 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001619 }
1620 }
1621 // Fall through
1622
John McCallfaf5fb42010-08-26 23:41:50 +00001623 case Sema::PCC_Template:
1624 case Sema::PCC_MemberTemplate:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001625 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001626 // template < parameters >
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001627 Builder.AddTypedTextChunk("template");
1628 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1629 Builder.AddPlaceholderChunk("parameters");
1630 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1631 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001632 }
1633
David Blaikiebbafb8a2012-03-11 07:00:24 +00001634 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1635 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001636 break;
1637
John McCallfaf5fb42010-08-26 23:41:50 +00001638 case Sema::PCC_ObjCInterface:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001639 AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true);
1640 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1641 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001642 break;
1643
John McCallfaf5fb42010-08-26 23:41:50 +00001644 case Sema::PCC_ObjCImplementation:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001645 AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true);
1646 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1647 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001648 break;
1649
John McCallfaf5fb42010-08-26 23:41:50 +00001650 case Sema::PCC_ObjCInstanceVariableList:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001651 AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true);
Douglas Gregor48d46252010-01-13 21:54:15 +00001652 break;
1653
John McCallfaf5fb42010-08-26 23:41:50 +00001654 case Sema::PCC_RecoveryInFunction:
1655 case Sema::PCC_Statement: {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001656 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001657
David Blaikiebbafb8a2012-03-11 07:00:24 +00001658 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() &&
1659 SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001660 Builder.AddTypedTextChunk("try");
1661 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1662 Builder.AddPlaceholderChunk("statements");
1663 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1664 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1665 Builder.AddTextChunk("catch");
1666 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1667 Builder.AddPlaceholderChunk("declaration");
1668 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1669 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1670 Builder.AddPlaceholderChunk("statements");
1671 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1672 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1673 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001674 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001675 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001676 AddObjCStatementResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001677
Douglas Gregorf64acca2010-05-25 21:41:55 +00001678 if (Results.includeCodePatterns()) {
1679 // if (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001680 Builder.AddTypedTextChunk("if");
1681 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001682 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001683 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001684 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001685 Builder.AddPlaceholderChunk("expression");
1686 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1687 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1688 Builder.AddPlaceholderChunk("statements");
1689 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1690 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1691 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001692
Douglas Gregorf64acca2010-05-25 21:41:55 +00001693 // switch (condition) { }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001694 Builder.AddTypedTextChunk("switch");
1695 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001696 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001697 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001698 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001699 Builder.AddPlaceholderChunk("expression");
1700 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1701 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1702 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1703 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1704 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001705 }
1706
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001707 // Switch-specific statements.
John McCallaab3e412010-08-25 08:40:02 +00001708 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001709 // case expression:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001710 Builder.AddTypedTextChunk("case");
1711 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1712 Builder.AddPlaceholderChunk("expression");
1713 Builder.AddChunk(CodeCompletionString::CK_Colon);
1714 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001715
1716 // default:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001717 Builder.AddTypedTextChunk("default");
1718 Builder.AddChunk(CodeCompletionString::CK_Colon);
1719 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001720 }
1721
Douglas Gregorf64acca2010-05-25 21:41:55 +00001722 if (Results.includeCodePatterns()) {
1723 /// while (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001724 Builder.AddTypedTextChunk("while");
1725 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001726 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001727 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001728 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001729 Builder.AddPlaceholderChunk("expression");
1730 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1731 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1732 Builder.AddPlaceholderChunk("statements");
1733 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1734 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1735 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001736
1737 // do { statements } while ( expression );
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001738 Builder.AddTypedTextChunk("do");
1739 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1740 Builder.AddPlaceholderChunk("statements");
1741 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1742 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1743 Builder.AddTextChunk("while");
1744 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1745 Builder.AddPlaceholderChunk("expression");
1746 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1747 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001748
Douglas Gregorf64acca2010-05-25 21:41:55 +00001749 // for ( for-init-statement ; condition ; expression ) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001750 Builder.AddTypedTextChunk("for");
1751 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001752 if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001753 Builder.AddPlaceholderChunk("init-statement");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001754 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001755 Builder.AddPlaceholderChunk("init-expression");
1756 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1757 Builder.AddPlaceholderChunk("condition");
1758 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1759 Builder.AddPlaceholderChunk("inc-expression");
1760 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1761 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1762 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1763 Builder.AddPlaceholderChunk("statements");
1764 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1765 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1766 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001767 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001768
1769 if (S->getContinueParent()) {
1770 // continue ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001771 Builder.AddTypedTextChunk("continue");
1772 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001773 }
1774
1775 if (S->getBreakParent()) {
1776 // break ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001777 Builder.AddTypedTextChunk("break");
1778 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001779 }
1780
1781 // "return expression ;" or "return ;", depending on whether we
1782 // know the function is void or not.
1783 bool isVoid = false;
1784 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001785 isVoid = Function->getReturnType()->isVoidType();
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001786 else if (ObjCMethodDecl *Method
1787 = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001788 isVoid = Method->getReturnType()->isVoidType();
Douglas Gregor9a28e842010-03-01 23:15:13 +00001789 else if (SemaRef.getCurBlock() &&
1790 !SemaRef.getCurBlock()->ReturnType.isNull())
1791 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001792 Builder.AddTypedTextChunk("return");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001793 if (!isVoid) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001794 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1795 Builder.AddPlaceholderChunk("expression");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001796 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001797 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001798
Douglas Gregorf4c33342010-05-28 00:22:41 +00001799 // goto identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001800 Builder.AddTypedTextChunk("goto");
1801 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1802 Builder.AddPlaceholderChunk("label");
1803 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001804
Douglas Gregorf4c33342010-05-28 00:22:41 +00001805 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001806 Builder.AddTypedTextChunk("using");
1807 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1808 Builder.AddTextChunk("namespace");
1809 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1810 Builder.AddPlaceholderChunk("identifier");
1811 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001812 }
1813
1814 // Fall through (for statement expressions).
John McCallfaf5fb42010-08-26 23:41:50 +00001815 case Sema::PCC_ForInit:
1816 case Sema::PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001817 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001818 // Fall through: conditions and statements can have expressions.
1819
Douglas Gregor5e35d592010-09-14 23:59:36 +00001820 case Sema::PCC_ParenthesizedExpression:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001821 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001822 CCC == Sema::PCC_ParenthesizedExpression) {
1823 // (__bridge <type>)<expression>
1824 Builder.AddTypedTextChunk("__bridge");
1825 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1826 Builder.AddPlaceholderChunk("type");
1827 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1828 Builder.AddPlaceholderChunk("expression");
1829 Results.AddResult(Result(Builder.TakeString()));
1830
1831 // (__bridge_transfer <Objective-C type>)<expression>
1832 Builder.AddTypedTextChunk("__bridge_transfer");
1833 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1834 Builder.AddPlaceholderChunk("Objective-C type");
1835 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1836 Builder.AddPlaceholderChunk("expression");
1837 Results.AddResult(Result(Builder.TakeString()));
1838
1839 // (__bridge_retained <CF type>)<expression>
1840 Builder.AddTypedTextChunk("__bridge_retained");
1841 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1842 Builder.AddPlaceholderChunk("CF type");
1843 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1844 Builder.AddPlaceholderChunk("expression");
1845 Results.AddResult(Result(Builder.TakeString()));
1846 }
1847 // Fall through
1848
John McCallfaf5fb42010-08-26 23:41:50 +00001849 case Sema::PCC_Expression: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001850 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001851 // 'this', if we're in a non-static member function.
Douglas Gregord8c61782012-02-15 15:34:24 +00001852 addThisCompletion(SemaRef, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001853
Douglas Gregore5c79d52011-10-18 21:20:17 +00001854 // true
1855 Builder.AddResultTypeChunk("bool");
1856 Builder.AddTypedTextChunk("true");
1857 Results.AddResult(Result(Builder.TakeString()));
1858
1859 // false
1860 Builder.AddResultTypeChunk("bool");
1861 Builder.AddTypedTextChunk("false");
1862 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001863
David Blaikiebbafb8a2012-03-11 07:00:24 +00001864 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001865 // dynamic_cast < type-id > ( expression )
1866 Builder.AddTypedTextChunk("dynamic_cast");
1867 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1868 Builder.AddPlaceholderChunk("type");
1869 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1870 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1871 Builder.AddPlaceholderChunk("expression");
1872 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1873 Results.AddResult(Result(Builder.TakeString()));
1874 }
Douglas Gregorf4c33342010-05-28 00:22:41 +00001875
1876 // static_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001877 Builder.AddTypedTextChunk("static_cast");
1878 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1879 Builder.AddPlaceholderChunk("type");
1880 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1881 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1882 Builder.AddPlaceholderChunk("expression");
1883 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1884 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001885
Douglas Gregorf4c33342010-05-28 00:22:41 +00001886 // reinterpret_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001887 Builder.AddTypedTextChunk("reinterpret_cast");
1888 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1889 Builder.AddPlaceholderChunk("type");
1890 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1891 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1892 Builder.AddPlaceholderChunk("expression");
1893 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1894 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001895
Douglas Gregorf4c33342010-05-28 00:22:41 +00001896 // const_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001897 Builder.AddTypedTextChunk("const_cast");
1898 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1899 Builder.AddPlaceholderChunk("type");
1900 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1901 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1902 Builder.AddPlaceholderChunk("expression");
1903 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1904 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001905
David Blaikiebbafb8a2012-03-11 07:00:24 +00001906 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001907 // typeid ( expression-or-type )
Douglas Gregore5c79d52011-10-18 21:20:17 +00001908 Builder.AddResultTypeChunk("std::type_info");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001909 Builder.AddTypedTextChunk("typeid");
1910 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1911 Builder.AddPlaceholderChunk("expression-or-type");
1912 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1913 Results.AddResult(Result(Builder.TakeString()));
1914 }
1915
Douglas Gregorf4c33342010-05-28 00:22:41 +00001916 // new T ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001917 Builder.AddTypedTextChunk("new");
1918 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1919 Builder.AddPlaceholderChunk("type");
1920 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1921 Builder.AddPlaceholderChunk("expressions");
1922 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1923 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001924
Douglas Gregorf4c33342010-05-28 00:22:41 +00001925 // new T [ ] ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001926 Builder.AddTypedTextChunk("new");
1927 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1928 Builder.AddPlaceholderChunk("type");
1929 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1930 Builder.AddPlaceholderChunk("size");
1931 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1932 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1933 Builder.AddPlaceholderChunk("expressions");
1934 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1935 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001936
Douglas Gregorf4c33342010-05-28 00:22:41 +00001937 // delete expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001938 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001939 Builder.AddTypedTextChunk("delete");
1940 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1941 Builder.AddPlaceholderChunk("expression");
1942 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001943
Douglas Gregorf4c33342010-05-28 00:22:41 +00001944 // delete [] expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001945 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001946 Builder.AddTypedTextChunk("delete");
1947 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1948 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1949 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1950 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1951 Builder.AddPlaceholderChunk("expression");
1952 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001953
David Blaikiebbafb8a2012-03-11 07:00:24 +00001954 if (SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001955 // throw expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001956 Builder.AddResultTypeChunk("void");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001957 Builder.AddTypedTextChunk("throw");
1958 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1959 Builder.AddPlaceholderChunk("expression");
1960 Results.AddResult(Result(Builder.TakeString()));
1961 }
Douglas Gregor4205fef2011-10-18 16:29:03 +00001962
Douglas Gregora2db7932010-05-26 22:00:08 +00001963 // FIXME: Rethrow?
Douglas Gregor4205fef2011-10-18 16:29:03 +00001964
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001965 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregor4205fef2011-10-18 16:29:03 +00001966 // nullptr
Douglas Gregore5c79d52011-10-18 21:20:17 +00001967 Builder.AddResultTypeChunk("std::nullptr_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001968 Builder.AddTypedTextChunk("nullptr");
1969 Results.AddResult(Result(Builder.TakeString()));
1970
1971 // alignof
Douglas Gregore5c79d52011-10-18 21:20:17 +00001972 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001973 Builder.AddTypedTextChunk("alignof");
1974 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1975 Builder.AddPlaceholderChunk("type");
1976 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1977 Results.AddResult(Result(Builder.TakeString()));
1978
1979 // noexcept
Douglas Gregore5c79d52011-10-18 21:20:17 +00001980 Builder.AddResultTypeChunk("bool");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001981 Builder.AddTypedTextChunk("noexcept");
1982 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1983 Builder.AddPlaceholderChunk("expression");
1984 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1985 Results.AddResult(Result(Builder.TakeString()));
1986
1987 // sizeof... expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001988 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001989 Builder.AddTypedTextChunk("sizeof...");
1990 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1991 Builder.AddPlaceholderChunk("parameter-pack");
1992 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1993 Results.AddResult(Result(Builder.TakeString()));
1994 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001995 }
1996
David Blaikiebbafb8a2012-03-11 07:00:24 +00001997 if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001998 // Add "super", if we're in an Objective-C class with a superclass.
Ted Kremenek305a0a72010-05-31 21:43:10 +00001999 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
2000 // The interface can be NULL.
2001 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
Douglas Gregore5c79d52011-10-18 21:20:17 +00002002 if (ID->getSuperClass()) {
2003 std::string SuperType;
2004 SuperType = ID->getSuperClass()->getNameAsString();
2005 if (Method->isInstanceMethod())
2006 SuperType += " *";
2007
2008 Builder.AddResultTypeChunk(Allocator.CopyString(SuperType));
2009 Builder.AddTypedTextChunk("super");
2010 Results.AddResult(Result(Builder.TakeString()));
2011 }
Ted Kremenek305a0a72010-05-31 21:43:10 +00002012 }
2013
Douglas Gregorf98e6a22010-01-13 23:51:12 +00002014 AddObjCExpressionResults(Results, true);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002015 }
2016
Jordan Rose58d54722012-06-30 21:33:57 +00002017 if (SemaRef.getLangOpts().C11) {
2018 // _Alignof
2019 Builder.AddResultTypeChunk("size_t");
Richard Smith20e883e2015-04-29 23:20:19 +00002020 if (SemaRef.PP.isMacroDefined("alignof"))
Jordan Rose58d54722012-06-30 21:33:57 +00002021 Builder.AddTypedTextChunk("alignof");
2022 else
2023 Builder.AddTypedTextChunk("_Alignof");
2024 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2025 Builder.AddPlaceholderChunk("type");
2026 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2027 Results.AddResult(Result(Builder.TakeString()));
2028 }
2029
Douglas Gregorf4c33342010-05-28 00:22:41 +00002030 // sizeof expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002031 Builder.AddResultTypeChunk("size_t");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002032 Builder.AddTypedTextChunk("sizeof");
2033 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2034 Builder.AddPlaceholderChunk("expression-or-type");
2035 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2036 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002037 break;
2038 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00002039
John McCallfaf5fb42010-08-26 23:41:50 +00002040 case Sema::PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00002041 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor99fa2642010-08-24 01:06:58 +00002042 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002043 }
2044
David Blaikiebbafb8a2012-03-11 07:00:24 +00002045 if (WantTypesInContext(CCC, SemaRef.getLangOpts()))
2046 AddTypeSpecifierResults(SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002047
David Blaikiebbafb8a2012-03-11 07:00:24 +00002048 if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type)
Douglas Gregor78a21012010-01-14 16:01:26 +00002049 Results.AddResult(Result("operator"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002050}
2051
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002052/// \brief If the given declaration has an associated type, add it as a result
2053/// type chunk.
2054static void AddResultTypeChunk(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002055 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002056 const NamedDecl *ND,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002057 QualType BaseType,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002058 CodeCompletionBuilder &Result) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002059 if (!ND)
2060 return;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002061
2062 // Skip constructors and conversion functions, which have their return types
2063 // built into their names.
2064 if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND))
2065 return;
2066
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002067 // Determine the type of the declaration (if it has a type).
Alp Tokera2794f92014-01-22 07:29:52 +00002068 QualType T;
2069 if (const FunctionDecl *Function = ND->getAsFunction())
Alp Toker314cc812014-01-25 16:55:45 +00002070 T = Function->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002071 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
2072 if (!BaseType.isNull())
2073 T = Method->getSendResultType(BaseType);
2074 else
2075 T = Method->getReturnType();
2076 } else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002077 T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext()));
2078 else if (isa<UnresolvedUsingValueDecl>(ND)) {
2079 /* Do nothing: ignore unresolved using declarations*/
Douglas Gregorc3425b12015-07-07 06:20:19 +00002080 } else if (const ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
2081 if (!BaseType.isNull())
2082 T = Ivar->getUsageType(BaseType);
2083 else
2084 T = Ivar->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002085 } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002086 T = Value->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002087 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) {
2088 if (!BaseType.isNull())
2089 T = Property->getUsageType(BaseType);
2090 else
2091 T = Property->getType();
2092 }
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002093
2094 if (T.isNull() || Context.hasSameType(T, Context.DependentTy))
2095 return;
2096
Douglas Gregor75acd922011-09-27 23:30:47 +00002097 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
Douglas Gregor304f9b02011-02-01 21:15:40 +00002098 Result.getAllocator()));
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002099}
2100
Richard Smith20e883e2015-04-29 23:20:19 +00002101static void MaybeAddSentinel(Preprocessor &PP,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002102 const NamedDecl *FunctionOrMethod,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002103 CodeCompletionBuilder &Result) {
Douglas Gregordbb71db2010-08-23 23:51:41 +00002104 if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>())
2105 if (Sentinel->getSentinel() == 0) {
Richard Smith20e883e2015-04-29 23:20:19 +00002106 if (PP.getLangOpts().ObjC1 && PP.isMacroDefined("nil"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002107 Result.AddTextChunk(", nil");
Richard Smith20e883e2015-04-29 23:20:19 +00002108 else if (PP.isMacroDefined("NULL"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002109 Result.AddTextChunk(", NULL");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002110 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002111 Result.AddTextChunk(", (void*)0");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002112 }
2113}
2114
Douglas Gregor86b42682015-06-19 18:27:52 +00002115static std::string formatObjCParamQualifiers(unsigned ObjCQuals,
2116 QualType &Type) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002117 std::string Result;
2118 if (ObjCQuals & Decl::OBJC_TQ_In)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002119 Result += "in ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002120 else if (ObjCQuals & Decl::OBJC_TQ_Inout)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002121 Result += "inout ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002122 else if (ObjCQuals & Decl::OBJC_TQ_Out)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002123 Result += "out ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002124 if (ObjCQuals & Decl::OBJC_TQ_Bycopy)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002125 Result += "bycopy ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002126 else if (ObjCQuals & Decl::OBJC_TQ_Byref)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002127 Result += "byref ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002128 if (ObjCQuals & Decl::OBJC_TQ_Oneway)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002129 Result += "oneway ";
Douglas Gregor86b42682015-06-19 18:27:52 +00002130 if (ObjCQuals & Decl::OBJC_TQ_CSNullability) {
2131 if (auto nullability = AttributedType::stripOuterNullability(Type)) {
2132 switch (*nullability) {
2133 case NullabilityKind::NonNull:
2134 Result += "nonnull ";
2135 break;
2136
2137 case NullabilityKind::Nullable:
2138 Result += "nullable ";
2139 break;
2140
2141 case NullabilityKind::Unspecified:
2142 Result += "null_unspecified ";
2143 break;
2144 }
2145 }
2146 }
Douglas Gregor8f08d742011-07-30 07:55:26 +00002147 return Result;
2148}
2149
Richard Smith20e883e2015-04-29 23:20:19 +00002150static std::string FormatFunctionParameter(const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002151 const ParmVarDecl *Param,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002152 bool SuppressName = false,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002153 bool SuppressBlock = false,
2154 Optional<ArrayRef<QualType>> ObjCSubsts = None) {
Douglas Gregore90dd002010-08-24 16:15:59 +00002155 bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext());
2156 if (Param->getType()->isDependentType() ||
2157 !Param->getType()->isBlockPointerType()) {
2158 // The argument for a dependent or non-block parameter is a placeholder
2159 // containing that parameter's type.
2160 std::string Result;
2161
Douglas Gregor981a0c42010-08-29 19:47:46 +00002162 if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002163 Result = Param->getIdentifier()->getName();
2164
Douglas Gregor86b42682015-06-19 18:27:52 +00002165 QualType Type = Param->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002166 if (ObjCSubsts)
2167 Type = Type.substObjCTypeArgs(Param->getASTContext(), *ObjCSubsts,
2168 ObjCSubstitutionContext::Parameter);
Douglas Gregore90dd002010-08-24 16:15:59 +00002169 if (ObjCMethodParam) {
Douglas Gregor86b42682015-06-19 18:27:52 +00002170 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(),
2171 Type);
2172 Result += Type.getAsString(Policy) + ")";
Douglas Gregor981a0c42010-08-29 19:47:46 +00002173 if (Param->getIdentifier() && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002174 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002175 } else {
2176 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002177 }
2178 return Result;
2179 }
2180
2181 // The argument for a block pointer parameter is a block literal with
2182 // the appropriate type.
David Blaikie6adc78e2013-02-18 22:06:02 +00002183 FunctionTypeLoc Block;
2184 FunctionProtoTypeLoc BlockProto;
Douglas Gregore90dd002010-08-24 16:15:59 +00002185 TypeLoc TL;
2186 if (TypeSourceInfo *TSInfo = Param->getTypeSourceInfo()) {
2187 TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2188 while (true) {
2189 // Look through typedefs.
Douglas Gregord793e7c2011-10-18 04:23:19 +00002190 if (!SuppressBlock) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002191 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2192 if (TypeSourceInfo *InnerTSInfo =
2193 TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002194 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2195 continue;
2196 }
2197 }
2198
2199 // Look through qualified types
David Blaikie6adc78e2013-02-18 22:06:02 +00002200 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2201 TL = QualifiedTL.getUnqualifiedLoc();
Douglas Gregore90dd002010-08-24 16:15:59 +00002202 continue;
2203 }
Douglas Gregor4c850f32015-07-07 06:20:22 +00002204
2205 if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) {
2206 TL = AttrTL.getModifiedLoc();
2207 continue;
2208 }
Douglas Gregore90dd002010-08-24 16:15:59 +00002209 }
2210
Douglas Gregore90dd002010-08-24 16:15:59 +00002211 // Try to get the function prototype behind the block pointer type,
2212 // then we're done.
David Blaikie6adc78e2013-02-18 22:06:02 +00002213 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2214 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2215 Block = TL.getAs<FunctionTypeLoc>();
2216 BlockProto = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregore90dd002010-08-24 16:15:59 +00002217 }
2218 break;
2219 }
2220 }
2221
2222 if (!Block) {
2223 // We were unable to find a FunctionProtoTypeLoc with parameter names
2224 // for the block; just use the parameter type as a placeholder.
2225 std::string Result;
Douglas Gregord793e7c2011-10-18 04:23:19 +00002226 if (!ObjCMethodParam && Param->getIdentifier())
2227 Result = Param->getIdentifier()->getName();
2228
Douglas Gregor86b42682015-06-19 18:27:52 +00002229 QualType Type = Param->getType().getUnqualifiedType();
Douglas Gregore90dd002010-08-24 16:15:59 +00002230
2231 if (ObjCMethodParam) {
Douglas Gregor86b42682015-06-19 18:27:52 +00002232 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(),
2233 Type);
2234 Result += Type.getAsString(Policy) + Result + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002235 if (Param->getIdentifier())
2236 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002237 } else {
2238 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002239 }
2240
2241 return Result;
2242 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002243
Douglas Gregore90dd002010-08-24 16:15:59 +00002244 // We have the function prototype behind the block pointer type, as it was
2245 // written in the source.
Douglas Gregor67da50e2010-09-08 22:47:51 +00002246 std::string Result;
Alp Toker314cc812014-01-25 16:55:45 +00002247 QualType ResultType = Block.getTypePtr()->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002248 if (ObjCSubsts)
2249 ResultType = ResultType.substObjCTypeArgs(Param->getASTContext(),
2250 *ObjCSubsts,
2251 ObjCSubstitutionContext::Result);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002252 if (!ResultType->isVoidType() || SuppressBlock)
John McCall31168b02011-06-15 23:02:42 +00002253 ResultType.getAsStringInternal(Result, Policy);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002254
2255 // Format the parameter list.
2256 std::string Params;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002257 if (!BlockProto || Block.getNumParams() == 0) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002258 if (BlockProto && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002259 Params = "(...)";
Douglas Gregoraf25cfa2010-10-02 23:49:58 +00002260 else
Douglas Gregord793e7c2011-10-18 04:23:19 +00002261 Params = "(void)";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002262 } else {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002263 Params += "(";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002264 for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002265 if (I)
Douglas Gregord793e7c2011-10-18 04:23:19 +00002266 Params += ", ";
Richard Smith20e883e2015-04-29 23:20:19 +00002267 Params += FormatFunctionParameter(Policy, Block.getParam(I),
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002268 /*SuppressName=*/false,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002269 /*SuppressBlock=*/true,
2270 ObjCSubsts);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002271
David Blaikie6adc78e2013-02-18 22:06:02 +00002272 if (I == N - 1 && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002273 Params += ", ...";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002274 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002275 Params += ")";
Douglas Gregor400f5972010-08-31 05:13:43 +00002276 }
Douglas Gregor67da50e2010-09-08 22:47:51 +00002277
Douglas Gregord793e7c2011-10-18 04:23:19 +00002278 if (SuppressBlock) {
2279 // Format as a parameter.
2280 Result = Result + " (^";
2281 if (Param->getIdentifier())
2282 Result += Param->getIdentifier()->getName();
2283 Result += ")";
2284 Result += Params;
2285 } else {
2286 // Format as a block literal argument.
2287 Result = '^' + Result;
2288 Result += Params;
2289
2290 if (Param->getIdentifier())
2291 Result += Param->getIdentifier()->getName();
2292 }
2293
Douglas Gregore90dd002010-08-24 16:15:59 +00002294 return Result;
2295}
2296
Douglas Gregor3545ff42009-09-21 16:56:56 +00002297/// \brief Add function parameter chunks to the given code completion string.
Richard Smith20e883e2015-04-29 23:20:19 +00002298static void AddFunctionParameterChunks(Preprocessor &PP,
Douglas Gregor75acd922011-09-27 23:30:47 +00002299 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002300 const FunctionDecl *Function,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002301 CodeCompletionBuilder &Result,
2302 unsigned Start = 0,
2303 bool InOptional = false) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002304 bool FirstParameter = true;
Douglas Gregor9eb77012009-11-07 00:00:49 +00002305
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002306 for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002307 const ParmVarDecl *Param = Function->getParamDecl(P);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002308
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002309 if (Param->hasDefaultArg() && !InOptional) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002310 // When we see an optional default argument, put that argument and
2311 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002312 CodeCompletionBuilder Opt(Result.getAllocator(),
2313 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002314 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002315 Opt.AddChunk(CodeCompletionString::CK_Comma);
Richard Smith20e883e2015-04-29 23:20:19 +00002316 AddFunctionParameterChunks(PP, Policy, Function, Opt, P, true);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002317 Result.AddOptionalChunk(Opt.TakeString());
2318 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002319 }
2320
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002321 if (FirstParameter)
2322 FirstParameter = false;
2323 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002324 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002325
2326 InOptional = false;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002327
2328 // Format the placeholder string.
Richard Smith20e883e2015-04-29 23:20:19 +00002329 std::string PlaceholderStr = FormatFunctionParameter(Policy, Param);
2330
Douglas Gregor400f5972010-08-31 05:13:43 +00002331 if (Function->isVariadic() && P == N - 1)
2332 PlaceholderStr += ", ...";
2333
Douglas Gregor3545ff42009-09-21 16:56:56 +00002334 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002335 Result.AddPlaceholderChunk(
2336 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002337 }
Douglas Gregorba449032009-09-22 21:42:17 +00002338
2339 if (const FunctionProtoType *Proto
2340 = Function->getType()->getAs<FunctionProtoType>())
Douglas Gregordbb71db2010-08-23 23:51:41 +00002341 if (Proto->isVariadic()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00002342 if (Proto->getNumParams() == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002343 Result.AddPlaceholderChunk("...");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002344
Richard Smith20e883e2015-04-29 23:20:19 +00002345 MaybeAddSentinel(PP, Function, Result);
Douglas Gregordbb71db2010-08-23 23:51:41 +00002346 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002347}
2348
2349/// \brief Add template parameter chunks to the given code completion string.
2350static void AddTemplateParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002351 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002352 const TemplateDecl *Template,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002353 CodeCompletionBuilder &Result,
2354 unsigned MaxParameters = 0,
2355 unsigned Start = 0,
2356 bool InDefaultArg = false) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002357 bool FirstParameter = true;
Richard Smith6eece292015-01-15 02:27:20 +00002358
2359 // Prefer to take the template parameter names from the first declaration of
2360 // the template.
2361 Template = cast<TemplateDecl>(Template->getCanonicalDecl());
2362
Douglas Gregor3545ff42009-09-21 16:56:56 +00002363 TemplateParameterList *Params = Template->getTemplateParameters();
2364 TemplateParameterList::iterator PEnd = Params->end();
2365 if (MaxParameters)
2366 PEnd = Params->begin() + MaxParameters;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002367 for (TemplateParameterList::iterator P = Params->begin() + Start;
2368 P != PEnd; ++P) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002369 bool HasDefaultArg = false;
2370 std::string PlaceholderStr;
2371 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
2372 if (TTP->wasDeclaredWithTypename())
2373 PlaceholderStr = "typename";
2374 else
2375 PlaceholderStr = "class";
2376
2377 if (TTP->getIdentifier()) {
2378 PlaceholderStr += ' ';
2379 PlaceholderStr += TTP->getIdentifier()->getName();
2380 }
2381
2382 HasDefaultArg = TTP->hasDefaultArgument();
2383 } else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002384 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002385 if (NTTP->getIdentifier())
2386 PlaceholderStr = NTTP->getIdentifier()->getName();
John McCall31168b02011-06-15 23:02:42 +00002387 NTTP->getType().getAsStringInternal(PlaceholderStr, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002388 HasDefaultArg = NTTP->hasDefaultArgument();
2389 } else {
2390 assert(isa<TemplateTemplateParmDecl>(*P));
2391 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
2392
2393 // Since putting the template argument list into the placeholder would
2394 // be very, very long, we just use an abbreviation.
2395 PlaceholderStr = "template<...> class";
2396 if (TTP->getIdentifier()) {
2397 PlaceholderStr += ' ';
2398 PlaceholderStr += TTP->getIdentifier()->getName();
2399 }
2400
2401 HasDefaultArg = TTP->hasDefaultArgument();
2402 }
2403
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002404 if (HasDefaultArg && !InDefaultArg) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002405 // When we see an optional default argument, put that argument and
2406 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002407 CodeCompletionBuilder Opt(Result.getAllocator(),
2408 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002409 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002410 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002411 AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002412 P - Params->begin(), true);
2413 Result.AddOptionalChunk(Opt.TakeString());
2414 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002415 }
2416
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002417 InDefaultArg = false;
2418
Douglas Gregor3545ff42009-09-21 16:56:56 +00002419 if (FirstParameter)
2420 FirstParameter = false;
2421 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002422 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002423
2424 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002425 Result.AddPlaceholderChunk(
2426 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002427 }
2428}
2429
Douglas Gregorf2510672009-09-21 19:57:38 +00002430/// \brief Add a qualifier to the given code-completion string, if the
2431/// provided nested-name-specifier is non-NULL.
Douglas Gregor0f622362009-12-11 18:44:16 +00002432static void
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002433AddQualifierToCompletionString(CodeCompletionBuilder &Result,
Douglas Gregor0f622362009-12-11 18:44:16 +00002434 NestedNameSpecifier *Qualifier,
2435 bool QualifierIsInformative,
Douglas Gregor75acd922011-09-27 23:30:47 +00002436 ASTContext &Context,
2437 const PrintingPolicy &Policy) {
Douglas Gregorf2510672009-09-21 19:57:38 +00002438 if (!Qualifier)
2439 return;
2440
2441 std::string PrintedNNS;
2442 {
2443 llvm::raw_string_ostream OS(PrintedNNS);
Douglas Gregor75acd922011-09-27 23:30:47 +00002444 Qualifier->print(OS, Policy);
Douglas Gregorf2510672009-09-21 19:57:38 +00002445 }
Douglas Gregor5bf52692009-09-22 23:15:58 +00002446 if (QualifierIsInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002447 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregor5bf52692009-09-22 23:15:58 +00002448 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002449 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregorf2510672009-09-21 19:57:38 +00002450}
2451
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002452static void
2453AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002454 const FunctionDecl *Function) {
Douglas Gregor0f622362009-12-11 18:44:16 +00002455 const FunctionProtoType *Proto
2456 = Function->getType()->getAs<FunctionProtoType>();
2457 if (!Proto || !Proto->getTypeQuals())
2458 return;
2459
Douglas Gregor304f9b02011-02-01 21:15:40 +00002460 // FIXME: Add ref-qualifier!
2461
2462 // Handle single qualifiers without copying
2463 if (Proto->getTypeQuals() == Qualifiers::Const) {
2464 Result.AddInformativeChunk(" const");
2465 return;
2466 }
2467
2468 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2469 Result.AddInformativeChunk(" volatile");
2470 return;
2471 }
2472
2473 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2474 Result.AddInformativeChunk(" restrict");
2475 return;
2476 }
2477
2478 // Handle multiple qualifiers.
Douglas Gregor0f622362009-12-11 18:44:16 +00002479 std::string QualsStr;
David Blaikief5697e52012-08-10 00:55:35 +00002480 if (Proto->isConst())
Douglas Gregor0f622362009-12-11 18:44:16 +00002481 QualsStr += " const";
David Blaikief5697e52012-08-10 00:55:35 +00002482 if (Proto->isVolatile())
Douglas Gregor0f622362009-12-11 18:44:16 +00002483 QualsStr += " volatile";
David Blaikief5697e52012-08-10 00:55:35 +00002484 if (Proto->isRestrict())
Douglas Gregor0f622362009-12-11 18:44:16 +00002485 QualsStr += " restrict";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002486 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
Douglas Gregor0f622362009-12-11 18:44:16 +00002487}
2488
Douglas Gregor0212fd72010-09-21 16:06:22 +00002489/// \brief Add the name of the given declaration
Douglas Gregor75acd922011-09-27 23:30:47 +00002490static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002491 const NamedDecl *ND,
2492 CodeCompletionBuilder &Result) {
Douglas Gregor0212fd72010-09-21 16:06:22 +00002493 DeclarationName Name = ND->getDeclName();
2494 if (!Name)
2495 return;
2496
2497 switch (Name.getNameKind()) {
Douglas Gregor304f9b02011-02-01 21:15:40 +00002498 case DeclarationName::CXXOperatorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002499 const char *OperatorName = nullptr;
Douglas Gregor304f9b02011-02-01 21:15:40 +00002500 switch (Name.getCXXOverloadedOperator()) {
2501 case OO_None:
2502 case OO_Conditional:
2503 case NUM_OVERLOADED_OPERATORS:
2504 OperatorName = "operator";
2505 break;
2506
2507#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2508 case OO_##Name: OperatorName = "operator" Spelling; break;
2509#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2510#include "clang/Basic/OperatorKinds.def"
2511
2512 case OO_New: OperatorName = "operator new"; break;
2513 case OO_Delete: OperatorName = "operator delete"; break;
2514 case OO_Array_New: OperatorName = "operator new[]"; break;
2515 case OO_Array_Delete: OperatorName = "operator delete[]"; break;
2516 case OO_Call: OperatorName = "operator()"; break;
2517 case OO_Subscript: OperatorName = "operator[]"; break;
2518 }
2519 Result.AddTypedTextChunk(OperatorName);
2520 break;
2521 }
2522
Douglas Gregor0212fd72010-09-21 16:06:22 +00002523 case DeclarationName::Identifier:
2524 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002525 case DeclarationName::CXXDestructorName:
2526 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002527 Result.AddTypedTextChunk(
2528 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002529 break;
2530
2531 case DeclarationName::CXXUsingDirective:
2532 case DeclarationName::ObjCZeroArgSelector:
2533 case DeclarationName::ObjCOneArgSelector:
2534 case DeclarationName::ObjCMultiArgSelector:
2535 break;
2536
2537 case DeclarationName::CXXConstructorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002538 CXXRecordDecl *Record = nullptr;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002539 QualType Ty = Name.getCXXNameType();
2540 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2541 Record = cast<CXXRecordDecl>(RecordTy->getDecl());
2542 else if (const InjectedClassNameType *InjectedTy
2543 = Ty->getAs<InjectedClassNameType>())
2544 Record = InjectedTy->getDecl();
2545 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002546 Result.AddTypedTextChunk(
2547 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002548 break;
2549 }
2550
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002551 Result.AddTypedTextChunk(
2552 Result.getAllocator().CopyString(Record->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002553 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002554 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Douglas Gregor75acd922011-09-27 23:30:47 +00002555 AddTemplateParameterChunks(Context, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002556 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002557 }
2558 break;
2559 }
2560 }
2561}
2562
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002563CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002564 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002565 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002566 CodeCompletionTUInfo &CCTUInfo,
2567 bool IncludeBriefComments) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002568 return CreateCodeCompletionString(S.Context, S.PP, CCContext, Allocator,
2569 CCTUInfo, IncludeBriefComments);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002570}
2571
Douglas Gregor3545ff42009-09-21 16:56:56 +00002572/// \brief If possible, create a new code completion string for the given
2573/// result.
2574///
2575/// \returns Either a new, heap-allocated code completion string describing
2576/// how to use this result, or NULL to indicate that the string or name of the
2577/// result is all that is needed.
2578CodeCompletionString *
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002579CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx,
2580 Preprocessor &PP,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002581 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002582 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002583 CodeCompletionTUInfo &CCTUInfo,
2584 bool IncludeBriefComments) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002585 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
Douglas Gregor9eb77012009-11-07 00:00:49 +00002586
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002587 PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002588 if (Kind == RK_Pattern) {
2589 Pattern->Priority = Priority;
2590 Pattern->Availability = Availability;
Douglas Gregor78254c82012-03-27 23:34:16 +00002591
2592 if (Declaration) {
2593 Result.addParentContext(Declaration->getDeclContext());
Douglas Gregor78254c82012-03-27 23:34:16 +00002594 Pattern->ParentName = Result.getParentName();
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002595 // Provide code completion comment for self.GetterName where
2596 // GetterName is the getter method for a property with name
2597 // different from the property name (declared via a property
2598 // getter attribute.
2599 const NamedDecl *ND = Declaration;
2600 if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND))
2601 if (M->isPropertyAccessor())
2602 if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl())
2603 if (PDecl->getGetterName() == M->getSelector() &&
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002604 PDecl->getIdentifier() != M->getIdentifier()) {
2605 if (const RawComment *RC =
2606 Ctx.getRawCommentForAnyRedecl(M)) {
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002607 Result.addBriefComment(RC->getBriefText(Ctx));
2608 Pattern->BriefComment = Result.getBriefComment();
2609 }
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002610 else if (const RawComment *RC =
2611 Ctx.getRawCommentForAnyRedecl(PDecl)) {
2612 Result.addBriefComment(RC->getBriefText(Ctx));
2613 Pattern->BriefComment = Result.getBriefComment();
2614 }
2615 }
Douglas Gregor78254c82012-03-27 23:34:16 +00002616 }
2617
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002618 return Pattern;
2619 }
Douglas Gregorf09935f2009-12-01 05:55:20 +00002620
Douglas Gregorf09935f2009-12-01 05:55:20 +00002621 if (Kind == RK_Keyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002622 Result.AddTypedTextChunk(Keyword);
2623 return Result.TakeString();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002624 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002625
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002626 if (Kind == RK_Macro) {
Richard Smith20e883e2015-04-29 23:20:19 +00002627 const MacroInfo *MI = PP.getMacroInfo(Macro);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002628 Result.AddTypedTextChunk(
2629 Result.getAllocator().CopyString(Macro->getName()));
Douglas Gregorf09935f2009-12-01 05:55:20 +00002630
Ben Langmuirc28ce3a2014-09-30 20:00:18 +00002631 if (!MI || !MI->isFunctionLike())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002632 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002633
2634 // Format a function-like macro with placeholders for the arguments.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002635 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor0c505312011-07-30 08:17:44 +00002636 MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002637
2638 // C99 variadic macros add __VA_ARGS__ at the end. Skip it.
2639 if (MI->isC99Varargs()) {
2640 --AEnd;
2641
2642 if (A == AEnd) {
2643 Result.AddPlaceholderChunk("...");
2644 }
Douglas Gregor0c505312011-07-30 08:17:44 +00002645 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002646
Douglas Gregor0c505312011-07-30 08:17:44 +00002647 for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) {
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002648 if (A != MI->arg_begin())
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002649 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3aa55262012-01-21 00:43:38 +00002650
2651 if (MI->isVariadic() && (A+1) == AEnd) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002652 SmallString<32> Arg = (*A)->getName();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002653 if (MI->isC99Varargs())
2654 Arg += ", ...";
2655 else
2656 Arg += "...";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002657 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor3aa55262012-01-21 00:43:38 +00002658 break;
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002659 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002660
2661 // Non-variadic macros are simple.
2662 Result.AddPlaceholderChunk(
2663 Result.getAllocator().CopyString((*A)->getName()));
Douglas Gregor0c505312011-07-30 08:17:44 +00002664 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002665 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002666 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002667 }
2668
Douglas Gregorf64acca2010-05-25 21:41:55 +00002669 assert(Kind == RK_Declaration && "Missed a result kind?");
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002670 const NamedDecl *ND = Declaration;
Douglas Gregor78254c82012-03-27 23:34:16 +00002671 Result.addParentContext(ND->getDeclContext());
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002672
2673 if (IncludeBriefComments) {
2674 // Add documentation comment, if it exists.
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +00002675 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) {
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002676 Result.addBriefComment(RC->getBriefText(Ctx));
Fariborz Jahanian15a0b552013-02-28 17:47:14 +00002677 }
2678 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
2679 if (OMD->isPropertyAccessor())
2680 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
2681 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl))
2682 Result.addBriefComment(RC->getBriefText(Ctx));
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002683 }
2684
Douglas Gregor9eb77012009-11-07 00:00:49 +00002685 if (StartsNestedNameSpecifier) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002686 Result.AddTypedTextChunk(
2687 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002688 Result.AddTextChunk("::");
2689 return Result.TakeString();
Douglas Gregor9eb77012009-11-07 00:00:49 +00002690 }
Erik Verbruggen98ea7f62011-10-14 15:31:08 +00002691
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00002692 for (const auto *I : ND->specific_attrs<AnnotateAttr>())
2693 Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation()));
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002694
Douglas Gregorc3425b12015-07-07 06:20:19 +00002695 AddResultTypeChunk(Ctx, Policy, ND, CCContext.getBaseType(), Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002696
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002697 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002698 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002699 Ctx, Policy);
2700 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002701 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002702 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002703 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002704 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002705 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002706 }
2707
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002708 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002709 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002710 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002711 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002712 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002713
Douglas Gregor3545ff42009-09-21 16:56:56 +00002714 // Figure out which template parameters are deduced (or have default
2715 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002716 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002717 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002718 unsigned LastDeducibleArgument;
2719 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2720 --LastDeducibleArgument) {
2721 if (!Deduced[LastDeducibleArgument - 1]) {
2722 // C++0x: Figure out if the template argument has a default. If so,
2723 // the user doesn't need to type this argument.
2724 // FIXME: We need to abstract template parameters better!
2725 bool HasDefaultArg = false;
2726 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002727 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002728 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2729 HasDefaultArg = TTP->hasDefaultArgument();
2730 else if (NonTypeTemplateParmDecl *NTTP
2731 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2732 HasDefaultArg = NTTP->hasDefaultArgument();
2733 else {
2734 assert(isa<TemplateTemplateParmDecl>(Param));
2735 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002736 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002737 }
2738
2739 if (!HasDefaultArg)
2740 break;
2741 }
2742 }
2743
2744 if (LastDeducibleArgument) {
2745 // Some of the function template arguments cannot be deduced from a
2746 // function call, so we introduce an explicit template argument list
2747 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002748 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002749 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002750 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002751 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002752 }
2753
2754 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002755 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002756 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002757 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002758 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002759 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002760 }
2761
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002762 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002763 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002764 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002765 Result.AddTypedTextChunk(
2766 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002767 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002768 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002769 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002770 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002771 }
2772
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002773 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002774 Selector Sel = Method->getSelector();
2775 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002776 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002777 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002778 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002779 }
2780
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002781 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002782 SelName += ':';
2783 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002784 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002785 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002786 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002787
2788 // If there is only one parameter, and we're past it, add an empty
2789 // typed-text chunk since there is nothing to type.
2790 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002791 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002792 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002793 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002794 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2795 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002796 P != PEnd; (void)++P, ++Idx) {
2797 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002798 std::string Keyword;
2799 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002800 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002801 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002802 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002803 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002804 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002805 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002806 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002807 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002808 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002809
2810 // If we're before the starting parameter, skip the placeholder.
2811 if (Idx < StartParameter)
2812 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002813
2814 std::string Arg;
Douglas Gregorc3425b12015-07-07 06:20:19 +00002815 QualType ParamType = (*P)->getType();
2816 Optional<ArrayRef<QualType>> ObjCSubsts;
2817 if (!CCContext.getBaseType().isNull())
2818 ObjCSubsts = CCContext.getBaseType()->getObjCSubstitutions(Method);
2819
2820 if (ParamType->isBlockPointerType() && !DeclaringEntity)
2821 Arg = FormatFunctionParameter(Policy, *P, true,
2822 /*SuppressBlock=*/false,
2823 ObjCSubsts);
Douglas Gregore90dd002010-08-24 16:15:59 +00002824 else {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002825 if (ObjCSubsts)
2826 ParamType = ParamType.substObjCTypeArgs(Ctx, *ObjCSubsts,
2827 ObjCSubstitutionContext::Parameter);
Douglas Gregor86b42682015-06-19 18:27:52 +00002828 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00002829 ParamType);
2830 Arg += ParamType.getAsString(Policy) + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002831 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002832 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002833 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002834 }
2835
Douglas Gregor400f5972010-08-31 05:13:43 +00002836 if (Method->isVariadic() && (P + 1) == PEnd)
2837 Arg += ", ...";
2838
Douglas Gregor95887f92010-07-08 23:20:03 +00002839 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002840 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002841 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002842 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002843 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002844 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002845 }
2846
Douglas Gregor04c5f972009-12-23 00:21:46 +00002847 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002848 if (Method->param_size() == 0) {
2849 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002850 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002851 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002852 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002853 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002854 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002855 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002856
Richard Smith20e883e2015-04-29 23:20:19 +00002857 MaybeAddSentinel(PP, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002858 }
2859
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002860 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002861 }
2862
Douglas Gregorf09935f2009-12-01 05:55:20 +00002863 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002864 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002865 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002866
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002867 Result.AddTypedTextChunk(
2868 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002869 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002870}
2871
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002872/// \brief Add function overload parameter chunks to the given code completion
2873/// string.
2874static void AddOverloadParameterChunks(ASTContext &Context,
2875 const PrintingPolicy &Policy,
2876 const FunctionDecl *Function,
2877 const FunctionProtoType *Prototype,
2878 CodeCompletionBuilder &Result,
2879 unsigned CurrentArg,
2880 unsigned Start = 0,
2881 bool InOptional = false) {
2882 bool FirstParameter = true;
2883 unsigned NumParams = Function ? Function->getNumParams()
2884 : Prototype->getNumParams();
2885
2886 for (unsigned P = Start; P != NumParams; ++P) {
2887 if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) {
2888 // When we see an optional default argument, put that argument and
2889 // the remaining default arguments into a new, optional string.
2890 CodeCompletionBuilder Opt(Result.getAllocator(),
2891 Result.getCodeCompletionTUInfo());
2892 if (!FirstParameter)
2893 Opt.AddChunk(CodeCompletionString::CK_Comma);
2894 // Optional sections are nested.
2895 AddOverloadParameterChunks(Context, Policy, Function, Prototype, Opt,
2896 CurrentArg, P, /*InOptional=*/true);
2897 Result.AddOptionalChunk(Opt.TakeString());
2898 return;
2899 }
2900
2901 if (FirstParameter)
2902 FirstParameter = false;
2903 else
2904 Result.AddChunk(CodeCompletionString::CK_Comma);
2905
2906 InOptional = false;
2907
2908 // Format the placeholder string.
2909 std::string Placeholder;
2910 if (Function)
Richard Smith20e883e2015-04-29 23:20:19 +00002911 Placeholder = FormatFunctionParameter(Policy, Function->getParamDecl(P));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002912 else
2913 Placeholder = Prototype->getParamType(P).getAsString(Policy);
2914
2915 if (P == CurrentArg)
2916 Result.AddCurrentParameterChunk(
2917 Result.getAllocator().CopyString(Placeholder));
2918 else
2919 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder));
2920 }
2921
2922 if (Prototype && Prototype->isVariadic()) {
2923 CodeCompletionBuilder Opt(Result.getAllocator(),
2924 Result.getCodeCompletionTUInfo());
2925 if (!FirstParameter)
2926 Opt.AddChunk(CodeCompletionString::CK_Comma);
2927
2928 if (CurrentArg < NumParams)
2929 Opt.AddPlaceholderChunk("...");
2930 else
2931 Opt.AddCurrentParameterChunk("...");
2932
2933 Result.AddOptionalChunk(Opt.TakeString());
2934 }
2935}
2936
Douglas Gregorf0f51982009-09-23 00:34:09 +00002937CodeCompletionString *
2938CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002939 unsigned CurrentArg, Sema &S,
2940 CodeCompletionAllocator &Allocator,
2941 CodeCompletionTUInfo &CCTUInfo,
2942 bool IncludeBriefComments) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00002943 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00002944
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002945 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002946 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002947 FunctionDecl *FDecl = getFunction();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002948 const FunctionProtoType *Proto
Douglas Gregorf0f51982009-09-23 00:34:09 +00002949 = dyn_cast<FunctionProtoType>(getFunctionType());
2950 if (!FDecl && !Proto) {
2951 // Function without a prototype. Just give the return type and a
2952 // highlighted ellipsis.
2953 const FunctionType *FT = getFunctionType();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002954 Result.AddResultTypeChunk(Result.getAllocator().CopyString(
2955 FT->getReturnType().getAsString(Policy)));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002956 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2957 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2958 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002959 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002960 }
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002961
2962 if (FDecl) {
2963 if (IncludeBriefComments && CurrentArg < FDecl->getNumParams())
2964 if (auto RC = S.getASTContext().getRawCommentForAnyRedecl(
2965 FDecl->getParamDecl(CurrentArg)))
2966 Result.addBriefComment(RC->getBriefText(S.getASTContext()));
Douglas Gregorc3425b12015-07-07 06:20:19 +00002967 AddResultTypeChunk(S.Context, Policy, FDecl, QualType(), Result);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002968 Result.AddTextChunk(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002969 Result.getAllocator().CopyString(FDecl->getNameAsString()));
2970 } else {
2971 Result.AddResultTypeChunk(
2972 Result.getAllocator().CopyString(
Alp Toker314cc812014-01-25 16:55:45 +00002973 Proto->getReturnType().getAsString(Policy)));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002974 }
Alp Toker314cc812014-01-25 16:55:45 +00002975
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002976 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002977 AddOverloadParameterChunks(S.getASTContext(), Policy, FDecl, Proto, Result,
2978 CurrentArg);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002979 Result.AddChunk(CodeCompletionString::CK_RightParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002980
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002981 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002982}
2983
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002984unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002985 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00002986 bool PreferredTypeIsPointer) {
2987 unsigned Priority = CCP_Macro;
2988
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002989 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
2990 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
2991 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00002992 Priority = CCP_Constant;
2993 if (PreferredTypeIsPointer)
2994 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002995 }
2996 // Treat "YES", "NO", "true", and "false" as constants.
2997 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
2998 MacroName.equals("true") || MacroName.equals("false"))
2999 Priority = CCP_Constant;
3000 // Treat "bool" as a type.
3001 else if (MacroName.equals("bool"))
3002 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
3003
Douglas Gregor6e240332010-08-16 16:18:59 +00003004
3005 return Priority;
3006}
3007
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003008CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003009 if (!D)
3010 return CXCursor_UnexposedDecl;
3011
3012 switch (D->getKind()) {
3013 case Decl::Enum: return CXCursor_EnumDecl;
3014 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
3015 case Decl::Field: return CXCursor_FieldDecl;
3016 case Decl::Function:
3017 return CXCursor_FunctionDecl;
3018 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
3019 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003020 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00003021
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003022 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003023 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
3024 case Decl::ObjCMethod:
3025 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
3026 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
3027 case Decl::CXXMethod: return CXCursor_CXXMethod;
3028 case Decl::CXXConstructor: return CXCursor_Constructor;
3029 case Decl::CXXDestructor: return CXCursor_Destructor;
3030 case Decl::CXXConversion: return CXCursor_ConversionFunction;
3031 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003032 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003033 case Decl::ParmVar: return CXCursor_ParmDecl;
3034 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00003035 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Sergey Kalinichev8f3b1872015-11-15 13:48:32 +00003036 case Decl::TypeAliasTemplate: return CXCursor_TypeAliasTemplateDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003037 case Decl::Var: return CXCursor_VarDecl;
3038 case Decl::Namespace: return CXCursor_Namespace;
3039 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
3040 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
3041 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
3042 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
3043 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
3044 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00003045 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003046 case Decl::ClassTemplatePartialSpecialization:
3047 return CXCursor_ClassTemplatePartialSpecialization;
3048 case Decl::UsingDirective: return CXCursor_UsingDirective;
Douglas Gregor3e653b32012-04-30 23:41:16 +00003049 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003050
3051 case Decl::Using:
3052 case Decl::UnresolvedUsingValue:
3053 case Decl::UnresolvedUsingTypename:
3054 return CXCursor_UsingDeclaration;
3055
Douglas Gregor4cd65962011-06-03 23:08:58 +00003056 case Decl::ObjCPropertyImpl:
3057 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
3058 case ObjCPropertyImplDecl::Dynamic:
3059 return CXCursor_ObjCDynamicDecl;
3060
3061 case ObjCPropertyImplDecl::Synthesize:
3062 return CXCursor_ObjCSynthesizeDecl;
3063 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00003064
3065 case Decl::Import:
3066 return CXCursor_ModuleImportDecl;
Douglas Gregor85f3f952015-07-07 03:57:15 +00003067
3068 case Decl::ObjCTypeParam: return CXCursor_TemplateTypeParameter;
3069
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003070 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003071 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003072 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00003073 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003074 case TTK_Struct: return CXCursor_StructDecl;
3075 case TTK_Class: return CXCursor_ClassDecl;
3076 case TTK_Union: return CXCursor_UnionDecl;
3077 case TTK_Enum: return CXCursor_EnumDecl;
3078 }
3079 }
3080 }
3081
3082 return CXCursor_UnexposedDecl;
3083}
3084
Douglas Gregor55b037b2010-07-08 20:55:51 +00003085static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00003086 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00003087 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00003088 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00003089
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003090 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003091
Douglas Gregor9eb77012009-11-07 00:00:49 +00003092 for (Preprocessor::macro_iterator M = PP.macro_begin(),
3093 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003094 M != MEnd; ++M) {
Richard Smith20e883e2015-04-29 23:20:19 +00003095 auto MD = PP.getMacroDefinition(M->first);
3096 if (IncludeUndefined || MD) {
3097 if (MacroInfo *MI = MD.getMacroInfo())
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003098 if (MI->isUsedForHeaderGuard())
3099 continue;
3100
Douglas Gregor8cb17462012-10-09 16:01:50 +00003101 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00003102 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00003103 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00003104 TargetTypeIsPointer)));
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003105 }
Douglas Gregor55b037b2010-07-08 20:55:51 +00003106 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003107
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003108 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003109
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003110}
3111
Douglas Gregorce0e8562010-08-23 21:54:33 +00003112static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3113 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003114 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003115
3116 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003117
Douglas Gregorce0e8562010-08-23 21:54:33 +00003118 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3119 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003120 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003121 Results.AddResult(Result("__func__", CCP_Constant));
3122 Results.ExitScope();
3123}
3124
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003125static void HandleCodeCompleteResults(Sema *S,
3126 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003127 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003128 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003129 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003130 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003131 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003132}
3133
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003134static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3135 Sema::ParserCompletionContext PCC) {
3136 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003137 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003138 return CodeCompletionContext::CCC_TopLevel;
3139
John McCallfaf5fb42010-08-26 23:41:50 +00003140 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003141 return CodeCompletionContext::CCC_ClassStructUnion;
3142
John McCallfaf5fb42010-08-26 23:41:50 +00003143 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003144 return CodeCompletionContext::CCC_ObjCInterface;
3145
John McCallfaf5fb42010-08-26 23:41:50 +00003146 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003147 return CodeCompletionContext::CCC_ObjCImplementation;
3148
John McCallfaf5fb42010-08-26 23:41:50 +00003149 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003150 return CodeCompletionContext::CCC_ObjCIvarList;
3151
John McCallfaf5fb42010-08-26 23:41:50 +00003152 case Sema::PCC_Template:
3153 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003154 if (S.CurContext->isFileContext())
3155 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003156 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003157 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003158 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003159
John McCallfaf5fb42010-08-26 23:41:50 +00003160 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003161 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003162
John McCallfaf5fb42010-08-26 23:41:50 +00003163 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003164 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3165 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003166 return CodeCompletionContext::CCC_ParenthesizedExpression;
3167 else
3168 return CodeCompletionContext::CCC_Expression;
3169
3170 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003171 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003172 return CodeCompletionContext::CCC_Expression;
3173
John McCallfaf5fb42010-08-26 23:41:50 +00003174 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003175 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003176
John McCallfaf5fb42010-08-26 23:41:50 +00003177 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003178 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003179
3180 case Sema::PCC_ParenthesizedExpression:
3181 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003182
3183 case Sema::PCC_LocalDeclarationSpecifiers:
3184 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003185 }
David Blaikie8a40f702012-01-17 06:56:22 +00003186
3187 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003188}
3189
Douglas Gregorac322ec2010-08-27 21:18:54 +00003190/// \brief If we're in a C++ virtual member function, add completion results
3191/// that invoke the functions we override, since it's common to invoke the
3192/// overridden function as well as adding new functionality.
3193///
3194/// \param S The semantic analysis object for which we are generating results.
3195///
3196/// \param InContext This context in which the nested-name-specifier preceding
3197/// the code-completion point
3198static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3199 ResultBuilder &Results) {
3200 // Look through blocks.
3201 DeclContext *CurContext = S.CurContext;
3202 while (isa<BlockDecl>(CurContext))
3203 CurContext = CurContext->getParent();
3204
3205
3206 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3207 if (!Method || !Method->isVirtual())
3208 return;
3209
3210 // We need to have names for all of the parameters, if we're going to
3211 // generate a forwarding call.
Aaron Ballman43b68be2014-03-07 17:50:17 +00003212 for (auto P : Method->params())
3213 if (!P->getDeclName())
Douglas Gregorac322ec2010-08-27 21:18:54 +00003214 return;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003215
Douglas Gregor75acd922011-09-27 23:30:47 +00003216 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003217 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3218 MEnd = Method->end_overridden_methods();
3219 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003220 CodeCompletionBuilder Builder(Results.getAllocator(),
3221 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003222 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003223 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3224 continue;
3225
3226 // If we need a nested-name-specifier, add one now.
3227 if (!InContext) {
3228 NestedNameSpecifier *NNS
3229 = getRequiredQualification(S.Context, CurContext,
3230 Overridden->getDeclContext());
3231 if (NNS) {
3232 std::string Str;
3233 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003234 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003235 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003236 }
3237 } else if (!InContext->Equals(Overridden->getDeclContext()))
3238 continue;
3239
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003240 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003241 Overridden->getNameAsString()));
3242 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003243 bool FirstParam = true;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003244 for (auto P : Method->params()) {
Douglas Gregorac322ec2010-08-27 21:18:54 +00003245 if (FirstParam)
3246 FirstParam = false;
3247 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003248 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003249
Aaron Ballman43b68be2014-03-07 17:50:17 +00003250 Builder.AddPlaceholderChunk(
3251 Results.getAllocator().CopyString(P->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003252 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003253 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3254 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003255 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003256 CXCursor_CXXMethod,
3257 CXAvailability_Available,
3258 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003259 Results.Ignore(Overridden);
3260 }
3261}
3262
Douglas Gregor07f43572012-01-29 18:15:03 +00003263void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3264 ModuleIdPath Path) {
3265 typedef CodeCompletionResult Result;
3266 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003267 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003268 CodeCompletionContext::CCC_Other);
3269 Results.EnterNewScope();
3270
3271 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003272 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003273 typedef CodeCompletionResult Result;
3274 if (Path.empty()) {
3275 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003276 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003277 PP.getHeaderSearchInfo().collectAllModules(Modules);
3278 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3279 Builder.AddTypedTextChunk(
3280 Builder.getAllocator().CopyString(Modules[I]->Name));
3281 Results.AddResult(Result(Builder.TakeString(),
3282 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003283 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003284 Modules[I]->isAvailable()
3285 ? CXAvailability_Available
3286 : CXAvailability_NotAvailable));
3287 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003288 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003289 // Load the named module.
3290 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3291 Module::AllVisible,
3292 /*IsInclusionDirective=*/false);
3293 // Enumerate submodules.
3294 if (Mod) {
3295 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3296 SubEnd = Mod->submodule_end();
3297 Sub != SubEnd; ++Sub) {
3298
3299 Builder.AddTypedTextChunk(
3300 Builder.getAllocator().CopyString((*Sub)->Name));
3301 Results.AddResult(Result(Builder.TakeString(),
3302 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003303 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003304 (*Sub)->isAvailable()
3305 ? CXAvailability_Available
3306 : CXAvailability_NotAvailable));
3307 }
3308 }
3309 }
3310 Results.ExitScope();
3311 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3312 Results.data(),Results.size());
3313}
3314
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003315void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003316 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003317 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003318 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003319 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003320 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003321
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003322 // Determine how to filter results, e.g., so that the names of
3323 // values (functions, enumerators, function templates, etc.) are
3324 // only allowed where we can have an expression.
3325 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003326 case PCC_Namespace:
3327 case PCC_Class:
3328 case PCC_ObjCInterface:
3329 case PCC_ObjCImplementation:
3330 case PCC_ObjCInstanceVariableList:
3331 case PCC_Template:
3332 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003333 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003334 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003335 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3336 break;
3337
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003338 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003339 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003340 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003341 case PCC_ForInit:
3342 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003343 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003344 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3345 else
3346 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003347
David Blaikiebbafb8a2012-03-11 07:00:24 +00003348 if (getLangOpts().CPlusPlus)
Craig Topperc3ec1492014-05-26 06:22:03 +00003349 MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003350 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003351
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003352 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003353 // Unfiltered
3354 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003355 }
3356
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003357 // If we are in a C++ non-static member function, check the qualifiers on
3358 // the member function to filter/prioritize the results list.
3359 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3360 if (CurMethod->isInstance())
3361 Results.setObjectTypeQualifiers(
3362 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3363
Douglas Gregorc580c522010-01-14 01:09:38 +00003364 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003365 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3366 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003367
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003368 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003369 Results.ExitScope();
3370
Douglas Gregorce0e8562010-08-23 21:54:33 +00003371 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003372 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003373 case PCC_Expression:
3374 case PCC_Statement:
3375 case PCC_RecoveryInFunction:
3376 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00003377 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003378 break;
3379
3380 case PCC_Namespace:
3381 case PCC_Class:
3382 case PCC_ObjCInterface:
3383 case PCC_ObjCImplementation:
3384 case PCC_ObjCInstanceVariableList:
3385 case PCC_Template:
3386 case PCC_MemberTemplate:
3387 case PCC_ForInit:
3388 case PCC_Condition:
3389 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003390 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003391 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003392 }
3393
Douglas Gregor9eb77012009-11-07 00:00:49 +00003394 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003395 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003396
Douglas Gregor50832e02010-09-20 22:39:41 +00003397 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003398 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003399}
3400
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003401static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3402 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003403 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003404 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003405 bool IsSuper,
3406 ResultBuilder &Results);
3407
3408void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3409 bool AllowNonIdentifiers,
3410 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003411 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003412 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003413 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003414 AllowNestedNameSpecifiers
3415 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3416 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003417 Results.EnterNewScope();
3418
3419 // Type qualifiers can come after names.
3420 Results.AddResult(Result("const"));
3421 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003422 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003423 Results.AddResult(Result("restrict"));
3424
David Blaikiebbafb8a2012-03-11 07:00:24 +00003425 if (getLangOpts().CPlusPlus) {
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003426 if (AllowNonIdentifiers) {
3427 Results.AddResult(Result("operator"));
3428 }
3429
3430 // Add nested-name-specifiers.
3431 if (AllowNestedNameSpecifiers) {
3432 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003433 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003434 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3435 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3436 CodeCompleter->includeGlobals());
Craig Topperc3ec1492014-05-26 06:22:03 +00003437 Results.setFilter(nullptr);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003438 }
3439 }
3440 Results.ExitScope();
3441
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003442 // If we're in a context where we might have an expression (rather than a
3443 // declaration), and what we've seen so far is an Objective-C type that could
3444 // be a receiver of a class message, this may be a class message send with
3445 // the initial opening bracket '[' missing. Add appropriate completions.
3446 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003447 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003448 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003449 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3450 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003451 !DS.isTypeAltiVecVector() &&
3452 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003453 (S->getFlags() & Scope::DeclScope) != 0 &&
3454 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3455 Scope::FunctionPrototypeScope |
3456 Scope::AtCatchScope)) == 0) {
3457 ParsedType T = DS.getRepAsType();
3458 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003459 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003460 }
3461
Douglas Gregor56ccce02010-08-24 04:59:56 +00003462 // Note that we intentionally suppress macro results here, since we do not
3463 // encourage using macros to produce the names of entities.
3464
Douglas Gregor0ac41382010-09-23 23:01:17 +00003465 HandleCodeCompleteResults(this, CodeCompleter,
3466 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003467 Results.data(), Results.size());
3468}
3469
Douglas Gregor68762e72010-08-23 21:17:50 +00003470struct Sema::CodeCompleteExpressionData {
3471 CodeCompleteExpressionData(QualType PreferredType = QualType())
3472 : PreferredType(PreferredType), IntegralConstantExpression(false),
3473 ObjCCollection(false) { }
3474
3475 QualType PreferredType;
3476 bool IntegralConstantExpression;
3477 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003478 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003479};
3480
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003481/// \brief Perform code-completion in an expression context when we know what
3482/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003483void Sema::CodeCompleteExpression(Scope *S,
3484 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003485 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003486 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003487 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003488 if (Data.ObjCCollection)
3489 Results.setFilter(&ResultBuilder::IsObjCCollection);
3490 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003491 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003492 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003493 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3494 else
3495 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003496
3497 if (!Data.PreferredType.isNull())
3498 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3499
3500 // Ignore any declarations that we were told that we don't care about.
3501 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3502 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003503
3504 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003505 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3506 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003507
3508 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003509 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003510 Results.ExitScope();
3511
Douglas Gregor55b037b2010-07-08 20:55:51 +00003512 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003513 if (!Data.PreferredType.isNull())
3514 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3515 || Data.PreferredType->isMemberPointerType()
3516 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003517
Douglas Gregorce0e8562010-08-23 21:54:33 +00003518 if (S->getFnParent() &&
3519 !Data.ObjCCollection &&
3520 !Data.IntegralConstantExpression)
Craig Topper12126262015-11-15 17:27:57 +00003521 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003522
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003523 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003524 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003525 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003526 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3527 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003528 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003529}
3530
Douglas Gregoreda7e542010-09-18 01:28:11 +00003531void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3532 if (E.isInvalid())
3533 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003534 else if (getLangOpts().ObjC1)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003535 CodeCompleteObjCInstanceMessage(S, E.get(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003536}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003537
Douglas Gregorb888acf2010-12-09 23:01:55 +00003538/// \brief The set of properties that have already been added, referenced by
3539/// property name.
3540typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3541
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003542/// \brief Retrieve the container definition, if any?
3543static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3544 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3545 if (Interface->hasDefinition())
3546 return Interface->getDefinition();
3547
3548 return Interface;
3549 }
3550
3551 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3552 if (Protocol->hasDefinition())
3553 return Protocol->getDefinition();
3554
3555 return Protocol;
3556 }
3557 return Container;
3558}
3559
Douglas Gregorc3425b12015-07-07 06:20:19 +00003560static void AddObjCProperties(const CodeCompletionContext &CCContext,
3561 ObjCContainerDecl *Container,
Douglas Gregor5d649882009-11-18 22:32:06 +00003562 bool AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003563 bool AllowNullaryMethods,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003564 DeclContext *CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003565 AddedPropertiesSet &AddedProperties,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003566 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003567 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003568
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003569 // Retrieve the definition.
3570 Container = getContainerDef(Container);
3571
Douglas Gregor9291bad2009-11-18 01:29:26 +00003572 // Add properties in this container.
Manman Rena7a8b1f2016-01-26 18:05:23 +00003573 for (const auto *P : Container->instance_properties())
David Blaikie82e95a32014-11-19 07:49:47 +00003574 if (AddedProperties.insert(P->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00003575 Results.MaybeAddResult(Result(P, Results.getBasePriority(P), nullptr),
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003576 CurContext);
Craig Topperc3ec1492014-05-26 06:22:03 +00003577
Douglas Gregor95147142011-05-05 15:50:42 +00003578 // Add nullary methods
3579 if (AllowNullaryMethods) {
3580 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003581 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003582 for (auto *M : Container->methods()) {
Douglas Gregor95147142011-05-05 15:50:42 +00003583 if (M->getSelector().isUnarySelector())
3584 if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0))
David Blaikie82e95a32014-11-19 07:49:47 +00003585 if (AddedProperties.insert(Name).second) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003586 CodeCompletionBuilder Builder(Results.getAllocator(),
3587 Results.getCodeCompletionTUInfo());
Douglas Gregorc3425b12015-07-07 06:20:19 +00003588 AddResultTypeChunk(Context, Policy, M, CCContext.getBaseType(),
3589 Builder);
Douglas Gregor95147142011-05-05 15:50:42 +00003590 Builder.AddTypedTextChunk(
3591 Results.getAllocator().CopyString(Name->getName()));
3592
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003593 Results.MaybeAddResult(Result(Builder.TakeString(), M,
Douglas Gregor78254c82012-03-27 23:34:16 +00003594 CCP_MemberDeclaration + CCD_MethodAsProperty),
Douglas Gregor95147142011-05-05 15:50:42 +00003595 CurContext);
3596 }
3597 }
3598 }
3599
3600
Douglas Gregor9291bad2009-11-18 01:29:26 +00003601 // Add properties in referenced protocols.
3602 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003603 for (auto *P : Protocol->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003604 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
3605 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003606 } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){
Douglas Gregor5d649882009-11-18 22:32:06 +00003607 if (AllowCategories) {
3608 // Look through categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00003609 for (auto *Cat : IFace->known_categories())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003610 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods,
3611 CurContext, AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00003612 }
Aaron Ballman15063e12014-03-13 21:35:02 +00003613
Douglas Gregor9291bad2009-11-18 01:29:26 +00003614 // Look through protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003615 for (auto *I : IFace->all_referenced_protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003616 AddObjCProperties(CCContext, I, AllowCategories, AllowNullaryMethods,
3617 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003618
3619 // Look in the superclass.
3620 if (IFace->getSuperClass())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003621 AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003622 AllowNullaryMethods, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003623 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003624 } else if (const ObjCCategoryDecl *Category
3625 = dyn_cast<ObjCCategoryDecl>(Container)) {
3626 // Look through protocols.
Aaron Ballman19a41762014-03-14 12:55:57 +00003627 for (auto *P : Category->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003628 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
3629 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003630 }
3631}
3632
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003633void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Douglas Gregor2436e712009-09-17 21:32:03 +00003634 SourceLocation OpLoc,
3635 bool IsArrow) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003636 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003637 return;
3638
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003639 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3640 if (ConvertedBase.isInvalid())
3641 return;
3642 Base = ConvertedBase.get();
3643
John McCall276321a2010-08-25 06:19:51 +00003644 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003645
Douglas Gregor2436e712009-09-17 21:32:03 +00003646 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003647
3648 if (IsArrow) {
3649 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3650 BaseType = Ptr->getPointeeType();
3651 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003652 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003653 else
3654 return;
3655 }
3656
Douglas Gregor21325842011-07-07 16:03:39 +00003657 enum CodeCompletionContext::Kind contextKind;
3658
3659 if (IsArrow) {
3660 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3661 }
3662 else {
3663 if (BaseType->isObjCObjectPointerType() ||
3664 BaseType->isObjCObjectOrInterfaceType()) {
3665 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3666 }
3667 else {
3668 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3669 }
3670 }
Douglas Gregorc3425b12015-07-07 06:20:19 +00003671
3672 CodeCompletionContext CCContext(contextKind, BaseType);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003673 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003674 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00003675 CCContext,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003676 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003677 Results.EnterNewScope();
3678 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003679 // Indicate that we are performing a member access, and the cv-qualifiers
3680 // for the base object type.
3681 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3682
Douglas Gregor9291bad2009-11-18 01:29:26 +00003683 // Access to a C/C++ class, struct, or union.
Douglas Gregor6ae4c522010-01-14 03:21:49 +00003684 Results.allowNestedNameSpecifiers();
Douglas Gregor09bbc652010-01-14 15:47:35 +00003685 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003686 LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer,
3687 CodeCompleter->includeGlobals());
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003688
David Blaikiebbafb8a2012-03-11 07:00:24 +00003689 if (getLangOpts().CPlusPlus) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003690 if (!Results.empty()) {
3691 // The "template" keyword can follow "->" or "." in the grammar.
3692 // However, we only want to suggest the template keyword if something
3693 // is dependent.
3694 bool IsDependent = BaseType->isDependentType();
3695 if (!IsDependent) {
3696 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00003697 if (DeclContext *Ctx = DepScope->getEntity()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003698 IsDependent = Ctx->isDependentContext();
3699 break;
3700 }
3701 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003702
Douglas Gregor9291bad2009-11-18 01:29:26 +00003703 if (IsDependent)
Douglas Gregor78a21012010-01-14 16:01:26 +00003704 Results.AddResult(Result("template"));
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003705 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003706 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003707 } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) {
3708 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003709 AddedPropertiesSet AddedProperties;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003710
3711 // Add property results based on our interface.
3712 const ObjCObjectPointerType *ObjCPtr
3713 = BaseType->getAsObjCInterfacePointerType();
3714 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
Douglas Gregorc3425b12015-07-07 06:20:19 +00003715 AddObjCProperties(CCContext, ObjCPtr->getInterfaceDecl(), true,
Douglas Gregor95147142011-05-05 15:50:42 +00003716 /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003717 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003718
3719 // Add properties from the protocols in a qualified interface.
Aaron Ballman83731462014-03-17 16:14:00 +00003720 for (auto *I : ObjCPtr->quals())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003721 AddObjCProperties(CCContext, I, true, /*AllowNullaryMethods=*/true,
3722 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003723 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003724 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003725 // Objective-C instance variable access.
Craig Topperc3ec1492014-05-26 06:22:03 +00003726 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003727 if (const ObjCObjectPointerType *ObjCPtr
3728 = BaseType->getAs<ObjCObjectPointerType>())
3729 Class = ObjCPtr->getInterfaceDecl();
3730 else
John McCall8b07ec22010-05-15 11:32:37 +00003731 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003732
3733 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003734 if (Class) {
3735 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3736 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003737 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3738 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00003739 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003740 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003741
3742 // FIXME: How do we cope with isa?
3743
3744 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003745
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003746 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003747 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003748 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003749 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00003750}
3751
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003752void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
3753 if (!CodeCompleter)
3754 return;
Craig Topperc3ec1492014-05-26 06:22:03 +00003755
3756 ResultBuilder::LookupFilter Filter = nullptr;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003757 enum CodeCompletionContext::Kind ContextKind
3758 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003759 switch ((DeclSpec::TST)TagSpec) {
3760 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003761 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003762 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003763 break;
3764
3765 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003766 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003767 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003768 break;
3769
3770 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003771 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00003772 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003773 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003774 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003775 break;
3776
3777 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003778 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003779 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003780
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003781 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
3782 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00003783 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00003784
3785 // First pass: look for tags.
3786 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00003787 LookupVisibleDecls(S, LookupTagName, Consumer,
3788 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00003789
Douglas Gregor39982192010-08-15 06:18:01 +00003790 if (CodeCompleter->includeGlobals()) {
3791 // Second pass: look for nested name specifiers.
3792 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
3793 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
3794 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003795
Douglas Gregor0ac41382010-09-23 23:01:17 +00003796 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003797 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003798}
3799
Douglas Gregor28c78432010-08-27 17:35:51 +00003800void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003801 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003802 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003803 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00003804 Results.EnterNewScope();
3805 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
3806 Results.AddResult("const");
3807 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
3808 Results.AddResult("volatile");
David Blaikiebbafb8a2012-03-11 07:00:24 +00003809 if (getLangOpts().C99 &&
Douglas Gregor28c78432010-08-27 17:35:51 +00003810 !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
3811 Results.AddResult("restrict");
Richard Smith8e1ac332013-03-28 01:55:44 +00003812 if (getLangOpts().C11 &&
3813 !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
3814 Results.AddResult("_Atomic");
Douglas Gregor28c78432010-08-27 17:35:51 +00003815 Results.ExitScope();
3816 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003817 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00003818 Results.data(), Results.size());
3819}
3820
Douglas Gregord328d572009-09-21 18:10:23 +00003821void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00003822 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00003823 return;
John McCall5939b162011-08-06 07:30:58 +00003824
John McCallaab3e412010-08-25 08:40:02 +00003825 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00003826 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
3827 if (!type->isEnumeralType()) {
3828 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00003829 Data.IntegralConstantExpression = true;
3830 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00003831 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00003832 }
Douglas Gregord328d572009-09-21 18:10:23 +00003833
3834 // Code-complete the cases of a switch statement over an enumeration type
3835 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00003836 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003837 if (EnumDecl *Def = Enum->getDefinition())
3838 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00003839
3840 // Determine which enumerators we have already seen in the switch statement.
3841 // FIXME: Ideally, we would also be able to look *past* the code-completion
3842 // token, in case we are code-completing in the middle of the switch and not
3843 // at the end. However, we aren't able to do so at the moment.
3844 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Craig Topperc3ec1492014-05-26 06:22:03 +00003845 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregord328d572009-09-21 18:10:23 +00003846 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
3847 SC = SC->getNextSwitchCase()) {
3848 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
3849 if (!Case)
3850 continue;
3851
3852 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
3853 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
3854 if (EnumConstantDecl *Enumerator
3855 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3856 // We look into the AST of the case statement to determine which
3857 // enumerator was named. Alternatively, we could compute the value of
3858 // the integral constant expression, then compare it against the
3859 // values of each enumerator. However, value-based approach would not
3860 // work as well with C++ templates where enumerators declared within a
3861 // template are type- and value-dependent.
3862 EnumeratorsSeen.insert(Enumerator);
3863
Douglas Gregorf2510672009-09-21 19:57:38 +00003864 // If this is a qualified-id, keep track of the nested-name-specifier
3865 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00003866 //
3867 // switch (TagD.getKind()) {
3868 // case TagDecl::TK_enum:
3869 // break;
3870 // case XXX
3871 //
Douglas Gregorf2510672009-09-21 19:57:38 +00003872 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00003873 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
3874 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00003875 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00003876 }
3877 }
3878
David Blaikiebbafb8a2012-03-11 07:00:24 +00003879 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00003880 // If there are no prior enumerators in C++, check whether we have to
3881 // qualify the names of the enumerators that we suggest, because they
3882 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00003883 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00003884 }
3885
Douglas Gregord328d572009-09-21 18:10:23 +00003886 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003887 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003888 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003889 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00003890 Results.EnterNewScope();
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003891 for (auto *E : Enum->enumerators()) {
3892 if (EnumeratorsSeen.count(E))
Douglas Gregord328d572009-09-21 18:10:23 +00003893 continue;
3894
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003895 CodeCompletionResult R(E, CCP_EnumInCase, Qualifier);
Craig Topperc3ec1492014-05-26 06:22:03 +00003896 Results.AddResult(R, CurContext, nullptr, false);
Douglas Gregord328d572009-09-21 18:10:23 +00003897 }
3898 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00003899
Douglas Gregor21325842011-07-07 16:03:39 +00003900 //We need to make sure we're setting the right context,
3901 //so only say we include macros if the code completer says we do
3902 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
3903 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00003904 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00003905 kind = CodeCompletionContext::CCC_OtherWithMacros;
3906 }
3907
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003908 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00003909 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003910 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00003911}
3912
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003913static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003914 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003915 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003916
3917 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003918 if (!Args[I])
3919 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003920
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003921 return false;
3922}
3923
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003924typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
3925
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003926static void mergeCandidatesWithResults(Sema &SemaRef,
3927 SmallVectorImpl<ResultCandidate> &Results,
3928 OverloadCandidateSet &CandidateSet,
3929 SourceLocation Loc) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003930 if (!CandidateSet.empty()) {
3931 // Sort the overload candidate set by placing the best overloads first.
3932 std::stable_sort(
3933 CandidateSet.begin(), CandidateSet.end(),
3934 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
3935 return isBetterOverloadCandidate(SemaRef, X, Y, Loc);
3936 });
3937
3938 // Add the remaining viable overload candidates as code-completion results.
3939 for (auto &Candidate : CandidateSet)
3940 if (Candidate.Viable)
3941 Results.push_back(ResultCandidate(Candidate.Function));
3942 }
3943}
3944
3945/// \brief Get the type of the Nth parameter from a given set of overload
3946/// candidates.
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003947static QualType getParamType(Sema &SemaRef,
3948 ArrayRef<ResultCandidate> Candidates,
3949 unsigned N) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003950
3951 // Given the overloads 'Candidates' for a function call matching all arguments
3952 // up to N, return the type of the Nth parameter if it is the same for all
3953 // overload candidates.
3954 QualType ParamType;
3955 for (auto &Candidate : Candidates) {
3956 if (auto FType = Candidate.getFunctionType())
3957 if (auto Proto = dyn_cast<FunctionProtoType>(FType))
3958 if (N < Proto->getNumParams()) {
3959 if (ParamType.isNull())
3960 ParamType = Proto->getParamType(N);
3961 else if (!SemaRef.Context.hasSameUnqualifiedType(
3962 ParamType.getNonReferenceType(),
3963 Proto->getParamType(N).getNonReferenceType()))
3964 // Otherwise return a default-constructed QualType.
3965 return QualType();
3966 }
3967 }
3968
3969 return ParamType;
3970}
3971
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003972static void CodeCompleteOverloadResults(Sema &SemaRef, Scope *S,
3973 MutableArrayRef<ResultCandidate> Candidates,
3974 unsigned CurrentArg,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003975 bool CompleteExpressionWithCurrentArg = true) {
3976 QualType ParamType;
3977 if (CompleteExpressionWithCurrentArg)
3978 ParamType = getParamType(SemaRef, Candidates, CurrentArg);
3979
3980 if (ParamType.isNull())
3981 SemaRef.CodeCompleteOrdinaryName(S, Sema::PCC_Expression);
3982 else
3983 SemaRef.CodeCompleteExpression(S, ParamType);
3984
3985 if (!Candidates.empty())
3986 SemaRef.CodeCompleter->ProcessOverloadCandidates(SemaRef, CurrentArg,
3987 Candidates.data(),
3988 Candidates.size());
3989}
3990
3991void Sema::CodeCompleteCall(Scope *S, Expr *Fn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00003992 if (!CodeCompleter)
3993 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003994
3995 // When we're code-completing for a call, we fall back to ordinary
3996 // name code-completion whenever we can't produce specific
3997 // results. We may want to revisit this strategy in the future,
3998 // e.g., by merging the two kinds of results.
3999
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004000 // FIXME: Provide support for variadic template functions.
Douglas Gregor3ef59522009-12-11 19:06:04 +00004001
Douglas Gregorcabea402009-09-22 15:41:20 +00004002 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004003 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
4004 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004005 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00004006 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00004007 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004008
John McCall57500772009-12-16 12:17:52 +00004009 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00004010 SourceLocation Loc = Fn->getExprLoc();
Richard Smith100b24a2014-04-17 01:52:14 +00004011 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
John McCall57500772009-12-16 12:17:52 +00004012
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004013 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00004014
John McCall57500772009-12-16 12:17:52 +00004015 Expr *NakedFn = Fn->IgnoreParenCasts();
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004016 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004017 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004018 /*PartialOverloading=*/true);
4019 else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) {
4020 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = nullptr;
4021 if (UME->hasExplicitTemplateArgs()) {
4022 UME->copyTemplateArgumentsInto(TemplateArgsBuffer);
4023 TemplateArgs = &TemplateArgsBuffer;
Douglas Gregorff59f672010-01-21 15:46:19 +00004024 }
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004025 SmallVector<Expr *, 12> ArgExprs(1, UME->getBase());
4026 ArgExprs.append(Args.begin(), Args.end());
4027 UnresolvedSet<8> Decls;
4028 Decls.append(UME->decls_begin(), UME->decls_end());
4029 AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs,
4030 /*SuppressUsedConversions=*/false,
4031 /*PartialOverloading=*/true);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004032 } else {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004033 FunctionDecl *FD = nullptr;
4034 if (auto MCE = dyn_cast<MemberExpr>(NakedFn))
4035 FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl());
4036 else if (auto DRE = dyn_cast<DeclRefExpr>(NakedFn))
4037 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004038 if (FD) { // We check whether it's a resolved function declaration.
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00004039 if (!getLangOpts().CPlusPlus ||
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004040 !FD->getType()->getAs<FunctionProtoType>())
4041 Results.push_back(ResultCandidate(FD));
4042 else
4043 AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()),
4044 Args, CandidateSet,
4045 /*SuppressUsedConversions=*/false,
4046 /*PartialOverloading=*/true);
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004047
4048 } else if (auto DC = NakedFn->getType()->getAsCXXRecordDecl()) {
4049 // If expression's type is CXXRecordDecl, it may overload the function
4050 // call operator, so we check if it does and add them as candidates.
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004051 // A complete type is needed to lookup for member function call operators.
Richard Smithdb0ac552015-12-18 22:40:25 +00004052 if (isCompleteType(Loc, NakedFn->getType())) {
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004053 DeclarationName OpName = Context.DeclarationNames
4054 .getCXXOperatorName(OO_Call);
4055 LookupResult R(*this, OpName, Loc, LookupOrdinaryName);
4056 LookupQualifiedName(R, DC);
4057 R.suppressDiagnostics();
4058 SmallVector<Expr *, 12> ArgExprs(1, NakedFn);
4059 ArgExprs.append(Args.begin(), Args.end());
4060 AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet,
4061 /*ExplicitArgs=*/nullptr,
4062 /*SuppressUsedConversions=*/false,
4063 /*PartialOverloading=*/true);
4064 }
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004065 } else {
4066 // Lastly we check whether expression's type is function pointer or
4067 // function.
4068 QualType T = NakedFn->getType();
4069 if (!T->getPointeeType().isNull())
4070 T = T->getPointeeType();
4071
4072 if (auto FP = T->getAs<FunctionProtoType>()) {
4073 if (!TooManyArguments(FP->getNumParams(), Args.size(),
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004074 /*PartialOverloading=*/true) ||
4075 FP->isVariadic())
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004076 Results.push_back(ResultCandidate(FP));
4077 } else if (auto FT = T->getAs<FunctionType>())
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004078 // No prototype and declaration, it may be a K & R style function.
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004079 Results.push_back(ResultCandidate(FT));
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004080 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004081 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00004082
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004083 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4084 CodeCompleteOverloadResults(*this, S, Results, Args.size(),
4085 !CandidateSet.empty());
4086}
4087
4088void Sema::CodeCompleteConstructor(Scope *S, QualType Type, SourceLocation Loc,
4089 ArrayRef<Expr *> Args) {
4090 if (!CodeCompleter)
4091 return;
4092
4093 // A complete type is needed to lookup for constructors.
Richard Smithdb0ac552015-12-18 22:40:25 +00004094 if (!isCompleteType(Loc, Type))
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004095 return;
4096
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004097 CXXRecordDecl *RD = Type->getAsCXXRecordDecl();
4098 if (!RD) {
4099 CodeCompleteExpression(S, Type);
4100 return;
4101 }
4102
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004103 // FIXME: Provide support for member initializers.
4104 // FIXME: Provide support for variadic template constructors.
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004105
4106 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
4107
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004108 for (auto C : LookupConstructors(RD)) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004109 if (auto FD = dyn_cast<FunctionDecl>(C)) {
4110 AddOverloadCandidate(FD, DeclAccessPair::make(FD, C->getAccess()),
4111 Args, CandidateSet,
4112 /*SuppressUsedConversions=*/false,
4113 /*PartialOverloading=*/true);
4114 } else if (auto FTD = dyn_cast<FunctionTemplateDecl>(C)) {
4115 AddTemplateOverloadCandidate(FTD,
4116 DeclAccessPair::make(FTD, C->getAccess()),
4117 /*ExplicitTemplateArgs=*/nullptr,
4118 Args, CandidateSet,
4119 /*SuppressUsedConversions=*/false,
4120 /*PartialOverloading=*/true);
4121 }
4122 }
4123
4124 SmallVector<ResultCandidate, 8> Results;
4125 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4126 CodeCompleteOverloadResults(*this, S, Results, Args.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00004127}
4128
John McCall48871652010-08-21 09:40:31 +00004129void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
4130 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004131 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004132 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004133 return;
4134 }
4135
4136 CodeCompleteExpression(S, VD->getType());
4137}
4138
4139void Sema::CodeCompleteReturn(Scope *S) {
4140 QualType ResultType;
4141 if (isa<BlockDecl>(CurContext)) {
4142 if (BlockScopeInfo *BSI = getCurBlock())
4143 ResultType = BSI->ReturnType;
4144 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004145 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004146 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004147 ResultType = Method->getReturnType();
4148
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004149 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004150 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004151 else
4152 CodeCompleteExpression(S, ResultType);
4153}
4154
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004155void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004156 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004157 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004158 mapCodeCompletionContext(*this, PCC_Statement));
4159 Results.setFilter(&ResultBuilder::IsOrdinaryName);
4160 Results.EnterNewScope();
4161
4162 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4163 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4164 CodeCompleter->includeGlobals());
4165
4166 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
4167
4168 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004169 CodeCompletionBuilder Builder(Results.getAllocator(),
4170 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004171 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004172 if (Results.includeCodePatterns()) {
4173 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4174 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4175 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4176 Builder.AddPlaceholderChunk("statements");
4177 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4178 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4179 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004180 Results.AddResult(Builder.TakeString());
4181
4182 // "else if" block
4183 Builder.AddTypedTextChunk("else");
4184 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4185 Builder.AddTextChunk("if");
4186 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4187 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00004188 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004189 Builder.AddPlaceholderChunk("condition");
4190 else
4191 Builder.AddPlaceholderChunk("expression");
4192 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004193 if (Results.includeCodePatterns()) {
4194 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4195 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4196 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4197 Builder.AddPlaceholderChunk("statements");
4198 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4199 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4200 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004201 Results.AddResult(Builder.TakeString());
4202
4203 Results.ExitScope();
4204
4205 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00004206 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004207
4208 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004209 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004210
4211 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4212 Results.data(),Results.size());
4213}
4214
Richard Trieu2bd04012011-09-09 02:00:50 +00004215void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004216 if (LHS)
4217 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4218 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004219 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004220}
4221
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004222void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004223 bool EnteringContext) {
4224 if (!SS.getScopeRep() || !CodeCompleter)
4225 return;
4226
Douglas Gregor3545ff42009-09-21 16:56:56 +00004227 DeclContext *Ctx = computeDeclContext(SS, EnteringContext);
4228 if (!Ctx)
4229 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004230
4231 // Try to instantiate any non-dependent declaration contexts before
4232 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004233 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004234 return;
4235
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004236 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004237 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004238 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004239 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004240
Douglas Gregor3545ff42009-09-21 16:56:56 +00004241 // The "template" keyword can follow "::" in the grammar, but only
4242 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004243 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004244 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004245 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004246
4247 // Add calls to overridden virtual functions, if there are any.
4248 //
4249 // FIXME: This isn't wonderful, because we don't know whether we're actually
4250 // in a context that permits expressions. This is a general issue with
4251 // qualified-id completions.
4252 if (!EnteringContext)
4253 MaybeAddOverrideCalls(*this, Ctx, Results);
4254 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004255
Douglas Gregorac322ec2010-08-27 21:18:54 +00004256 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4257 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer);
4258
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004259 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004260 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004261 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004262}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004263
4264void Sema::CodeCompleteUsing(Scope *S) {
4265 if (!CodeCompleter)
4266 return;
4267
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004268 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004269 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004270 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4271 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004272 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004273
4274 // If we aren't in class scope, we could see the "namespace" keyword.
4275 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004276 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004277
4278 // After "using", we can see anything that would start a
4279 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004280 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004281 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4282 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004283 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004284
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004285 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004286 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004287 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004288}
4289
4290void Sema::CodeCompleteUsingDirective(Scope *S) {
4291 if (!CodeCompleter)
4292 return;
4293
Douglas Gregor3545ff42009-09-21 16:56:56 +00004294 // After "using namespace", we expect to see a namespace name or namespace
4295 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004296 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004297 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004298 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004299 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004300 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004301 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004302 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4303 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004304 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004305 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004306 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004307 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004308}
4309
4310void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4311 if (!CodeCompleter)
4312 return;
4313
Ted Kremenekc37877d2013-10-08 17:08:03 +00004314 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004315 if (!S->getParent())
4316 Ctx = Context.getTranslationUnitDecl();
4317
Douglas Gregor0ac41382010-09-23 23:01:17 +00004318 bool SuppressedGlobalResults
4319 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4320
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004321 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004322 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004323 SuppressedGlobalResults
4324 ? CodeCompletionContext::CCC_Namespace
4325 : CodeCompletionContext::CCC_Other,
4326 &ResultBuilder::IsNamespace);
4327
4328 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004329 // We only want to see those namespaces that have already been defined
4330 // within this scope, because its likely that the user is creating an
4331 // extended namespace declaration. Keep track of the most recent
4332 // definition of each namespace.
4333 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4334 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4335 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4336 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004337 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004338
4339 // Add the most recent definition (or extended definition) of each
4340 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004341 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004342 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004343 NS = OrigToLatest.begin(),
4344 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004345 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004346 Results.AddResult(CodeCompletionResult(
Craig Topperc3ec1492014-05-26 06:22:03 +00004347 NS->second, Results.getBasePriority(NS->second),
4348 nullptr),
4349 CurContext, nullptr, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004350 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004351 }
4352
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004353 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004354 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004355 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004356}
4357
4358void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4359 if (!CodeCompleter)
4360 return;
4361
Douglas Gregor3545ff42009-09-21 16:56:56 +00004362 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004363 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004364 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004365 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004366 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004367 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004368 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4369 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004370 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004371 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004372 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004373}
4374
Douglas Gregorc811ede2009-09-18 20:05:18 +00004375void Sema::CodeCompleteOperatorName(Scope *S) {
4376 if (!CodeCompleter)
4377 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004378
John McCall276321a2010-08-25 06:19:51 +00004379 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004380 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004381 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004382 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004383 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004384 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004385
Douglas Gregor3545ff42009-09-21 16:56:56 +00004386 // Add the names of overloadable operators.
4387#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4388 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004389 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004390#include "clang/Basic/OperatorKinds.def"
4391
4392 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004393 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004394 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004395 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4396 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004397
4398 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004399 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004400 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004401
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004402 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004403 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004404 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004405}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004406
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004407void Sema::CodeCompleteConstructorInitializer(
4408 Decl *ConstructorD,
4409 ArrayRef <CXXCtorInitializer *> Initializers) {
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004410 if (!ConstructorD)
4411 return;
4412
4413 AdjustDeclIfTemplate(ConstructorD);
4414
4415 CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004416 if (!Constructor)
4417 return;
4418
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004419 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004420 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004421 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004422 Results.EnterNewScope();
4423
4424 // Fill in any already-initialized fields or base classes.
4425 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4426 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004427 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004428 if (Initializers[I]->isBaseInitializer())
4429 InitializedBases.insert(
4430 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4431 else
Francois Pichetd583da02010-12-04 09:14:42 +00004432 InitializedFields.insert(cast<FieldDecl>(
4433 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004434 }
4435
4436 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004437 CodeCompletionBuilder Builder(Results.getAllocator(),
4438 Results.getCodeCompletionTUInfo());
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004439 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004440 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004441 CXXRecordDecl *ClassDecl = Constructor->getParent();
Aaron Ballman574705e2014-03-13 15:41:46 +00004442 for (const auto &Base : ClassDecl->bases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004443 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4444 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004445 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004446 = !Initializers.empty() &&
4447 Initializers.back()->isBaseInitializer() &&
Aaron Ballman574705e2014-03-13 15:41:46 +00004448 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004449 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004450 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004451 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004452
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004453 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004454 Results.getAllocator().CopyString(
Aaron Ballman574705e2014-03-13 15:41:46 +00004455 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004456 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4457 Builder.AddPlaceholderChunk("args");
4458 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4459 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004460 SawLastInitializer? CCP_NextInitializer
4461 : CCP_MemberDeclaration));
4462 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004463 }
4464
4465 // Add completions for virtual base classes.
Aaron Ballman445a9392014-03-13 16:15:17 +00004466 for (const auto &Base : ClassDecl->vbases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004467 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4468 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004469 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004470 = !Initializers.empty() &&
4471 Initializers.back()->isBaseInitializer() &&
Aaron Ballman445a9392014-03-13 16:15:17 +00004472 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004473 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004474 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004475 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004476
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004477 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004478 Builder.getAllocator().CopyString(
Aaron Ballman445a9392014-03-13 16:15:17 +00004479 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004480 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4481 Builder.AddPlaceholderChunk("args");
4482 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4483 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004484 SawLastInitializer? CCP_NextInitializer
4485 : CCP_MemberDeclaration));
4486 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004487 }
4488
4489 // Add completions for members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004490 for (auto *Field : ClassDecl->fields()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004491 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))
4492 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004493 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004494 = !Initializers.empty() &&
4495 Initializers.back()->isAnyMemberInitializer() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004496 Initializers.back()->getAnyMember() == Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004497 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004498 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004499
4500 if (!Field->getDeclName())
4501 continue;
4502
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004503 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004504 Field->getIdentifier()->getName()));
4505 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4506 Builder.AddPlaceholderChunk("args");
4507 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4508 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004509 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004510 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004511 CXCursor_MemberRef,
4512 CXAvailability_Available,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004513 Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004514 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004515 }
4516 Results.ExitScope();
4517
Douglas Gregor0ac41382010-09-23 23:01:17 +00004518 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004519 Results.data(), Results.size());
4520}
4521
Douglas Gregord8c61782012-02-15 15:34:24 +00004522/// \brief Determine whether this scope denotes a namespace.
4523static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004524 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004525 if (!DC)
4526 return false;
4527
4528 return DC->isFileContext();
4529}
4530
4531void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4532 bool AfterAmpersand) {
4533 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004534 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004535 CodeCompletionContext::CCC_Other);
4536 Results.EnterNewScope();
4537
4538 // Note what has already been captured.
4539 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4540 bool IncludedThis = false;
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004541 for (const auto &C : Intro.Captures) {
4542 if (C.Kind == LCK_This) {
Douglas Gregord8c61782012-02-15 15:34:24 +00004543 IncludedThis = true;
4544 continue;
4545 }
4546
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004547 Known.insert(C.Id);
Douglas Gregord8c61782012-02-15 15:34:24 +00004548 }
4549
4550 // Look for other capturable variables.
4551 for (; S && !isNamespaceScope(S); S = S->getParent()) {
Aaron Ballman35c54952014-03-17 16:55:25 +00004552 for (const auto *D : S->decls()) {
4553 const auto *Var = dyn_cast<VarDecl>(D);
Douglas Gregord8c61782012-02-15 15:34:24 +00004554 if (!Var ||
4555 !Var->hasLocalStorage() ||
4556 Var->hasAttr<BlocksAttr>())
4557 continue;
4558
David Blaikie82e95a32014-11-19 07:49:47 +00004559 if (Known.insert(Var->getIdentifier()).second)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004560 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
Craig Topperc3ec1492014-05-26 06:22:03 +00004561 CurContext, nullptr, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004562 }
4563 }
4564
4565 // Add 'this', if it would be valid.
4566 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4567 addThisCompletion(*this, Results);
4568
4569 Results.ExitScope();
4570
4571 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4572 Results.data(), Results.size());
4573}
4574
James Dennett596e4752012-06-14 03:11:41 +00004575/// Macro that optionally prepends an "@" to the string literal passed in via
4576/// Keyword, depending on whether NeedAt is true or false.
4577#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4578
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004579static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004580 ResultBuilder &Results,
4581 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004582 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004583 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004584 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004585
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004586 CodeCompletionBuilder Builder(Results.getAllocator(),
4587 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004588 if (LangOpts.ObjC2) {
4589 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004590 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004591 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4592 Builder.AddPlaceholderChunk("property");
4593 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004594
4595 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004596 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004597 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4598 Builder.AddPlaceholderChunk("property");
4599 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004600 }
4601}
4602
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004603static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004604 ResultBuilder &Results,
4605 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004606 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004607
4608 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004609 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004610
4611 if (LangOpts.ObjC2) {
4612 // @property
James Dennett596e4752012-06-14 03:11:41 +00004613 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004614
4615 // @required
James Dennett596e4752012-06-14 03:11:41 +00004616 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004617
4618 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004619 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004620 }
4621}
4622
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004623static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004624 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004625 CodeCompletionBuilder Builder(Results.getAllocator(),
4626 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004627
4628 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004629 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004630 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4631 Builder.AddPlaceholderChunk("name");
4632 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004633
Douglas Gregorf4c33342010-05-28 00:22:41 +00004634 if (Results.includeCodePatterns()) {
4635 // @interface name
4636 // FIXME: Could introduce the whole pattern, including superclasses and
4637 // such.
James Dennett596e4752012-06-14 03:11:41 +00004638 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004639 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4640 Builder.AddPlaceholderChunk("class");
4641 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004642
Douglas Gregorf4c33342010-05-28 00:22:41 +00004643 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004644 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004645 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4646 Builder.AddPlaceholderChunk("protocol");
4647 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004648
4649 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004650 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004651 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4652 Builder.AddPlaceholderChunk("class");
4653 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004654 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004655
4656 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004657 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004658 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4659 Builder.AddPlaceholderChunk("alias");
4660 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4661 Builder.AddPlaceholderChunk("class");
4662 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004663
4664 if (Results.getSema().getLangOpts().Modules) {
4665 // @import name
4666 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4667 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4668 Builder.AddPlaceholderChunk("module");
4669 Results.AddResult(Result(Builder.TakeString()));
4670 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004671}
4672
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004673void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004674 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004675 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004676 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004677 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004678 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00004679 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004680 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004681 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00004682 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004683 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004684 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004685 HandleCodeCompleteResults(this, CodeCompleter,
4686 CodeCompletionContext::CCC_Other,
4687 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00004688}
4689
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004690static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004691 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004692 CodeCompletionBuilder Builder(Results.getAllocator(),
4693 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004694
4695 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004696 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00004697 if (Results.getSema().getLangOpts().CPlusPlus ||
4698 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00004699 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00004700 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00004701 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004702 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4703 Builder.AddPlaceholderChunk("type-name");
4704 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4705 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004706
4707 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004708 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00004709 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004710 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4711 Builder.AddPlaceholderChunk("protocol-name");
4712 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4713 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004714
4715 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004716 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00004717 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004718 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4719 Builder.AddPlaceholderChunk("selector");
4720 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4721 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004722
4723 // @"string"
4724 Builder.AddResultTypeChunk("NSString *");
4725 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
4726 Builder.AddPlaceholderChunk("string");
4727 Builder.AddTextChunk("\"");
4728 Results.AddResult(Result(Builder.TakeString()));
4729
Douglas Gregor951de302012-07-17 23:24:47 +00004730 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00004731 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00004732 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004733 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004734 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
4735 Results.AddResult(Result(Builder.TakeString()));
4736
Douglas Gregor951de302012-07-17 23:24:47 +00004737 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00004738 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00004739 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004740 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004741 Builder.AddChunk(CodeCompletionString::CK_Colon);
4742 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4743 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004744 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4745 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004746
Douglas Gregor951de302012-07-17 23:24:47 +00004747 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00004748 Builder.AddResultTypeChunk("id");
4749 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00004750 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00004751 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4752 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004753}
4754
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004755static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004756 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004757 CodeCompletionBuilder Builder(Results.getAllocator(),
4758 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004759
Douglas Gregorf4c33342010-05-28 00:22:41 +00004760 if (Results.includeCodePatterns()) {
4761 // @try { statements } @catch ( declaration ) { statements } @finally
4762 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00004763 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004764 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4765 Builder.AddPlaceholderChunk("statements");
4766 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4767 Builder.AddTextChunk("@catch");
4768 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4769 Builder.AddPlaceholderChunk("parameter");
4770 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4771 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4772 Builder.AddPlaceholderChunk("statements");
4773 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4774 Builder.AddTextChunk("@finally");
4775 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4776 Builder.AddPlaceholderChunk("statements");
4777 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4778 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004779 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004780
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004781 // @throw
James Dennett596e4752012-06-14 03:11:41 +00004782 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004783 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4784 Builder.AddPlaceholderChunk("expression");
4785 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004786
Douglas Gregorf4c33342010-05-28 00:22:41 +00004787 if (Results.includeCodePatterns()) {
4788 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00004789 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004790 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4791 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4792 Builder.AddPlaceholderChunk("expression");
4793 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4794 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4795 Builder.AddPlaceholderChunk("statements");
4796 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4797 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004798 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004799}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004800
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004801static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00004802 ResultBuilder &Results,
4803 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004804 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00004805 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4806 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4807 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004808 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00004809 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004810}
4811
4812void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004813 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004814 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004815 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00004816 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004817 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00004818 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004819 HandleCodeCompleteResults(this, CodeCompleter,
4820 CodeCompletionContext::CCC_Other,
4821 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00004822}
4823
4824void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004825 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004826 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004827 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00004828 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004829 AddObjCStatementResults(Results, false);
4830 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004831 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004832 HandleCodeCompleteResults(this, CodeCompleter,
4833 CodeCompletionContext::CCC_Other,
4834 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004835}
4836
4837void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004838 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004839 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004840 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004841 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004842 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004843 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004844 HandleCodeCompleteResults(this, CodeCompleter,
4845 CodeCompletionContext::CCC_Other,
4846 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004847}
4848
Douglas Gregore6078da2009-11-19 00:14:45 +00004849/// \brief Determine whether the addition of the given flag to an Objective-C
4850/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00004851static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00004852 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00004853 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00004854 return true;
4855
Bill Wendling44426052012-12-20 19:22:21 +00004856 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00004857
4858 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00004859 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4860 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00004861 return true;
4862
Jordan Rose53cb2f32012-08-20 20:01:13 +00004863 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00004864 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00004865 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00004866 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00004867 ObjCDeclSpec::DQ_PR_retain |
4868 ObjCDeclSpec::DQ_PR_strong |
4869 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00004870 if (AssignCopyRetMask &&
4871 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00004872 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00004873 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00004874 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00004875 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
4876 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00004877 return true;
4878
4879 return false;
4880}
4881
Douglas Gregor36029f42009-11-18 23:08:07 +00004882void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00004883 if (!CodeCompleter)
4884 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004885
Bill Wendling44426052012-12-20 19:22:21 +00004886 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00004887
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004888 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004889 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004890 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00004891 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00004892 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00004893 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00004894 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00004895 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00004896 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00004897 ObjCDeclSpec::DQ_PR_unsafe_unretained))
4898 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00004899 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00004900 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00004901 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00004902 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00004903 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00004904 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00004905 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00004906 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00004907 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00004908 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00004909 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00004910 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00004911
4912 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall460ce582015-10-22 18:38:17 +00004913 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00004914 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00004915 Results.AddResult(CodeCompletionResult("weak"));
4916
Bill Wendling44426052012-12-20 19:22:21 +00004917 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004918 CodeCompletionBuilder Setter(Results.getAllocator(),
4919 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004920 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004921 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004922 Setter.AddPlaceholderChunk("method");
4923 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004924 }
Bill Wendling44426052012-12-20 19:22:21 +00004925 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004926 CodeCompletionBuilder Getter(Results.getAllocator(),
4927 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004928 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004929 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004930 Getter.AddPlaceholderChunk("method");
4931 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004932 }
Douglas Gregor86b42682015-06-19 18:27:52 +00004933 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nullability)) {
4934 Results.AddResult(CodeCompletionResult("nonnull"));
4935 Results.AddResult(CodeCompletionResult("nullable"));
4936 Results.AddResult(CodeCompletionResult("null_unspecified"));
4937 Results.AddResult(CodeCompletionResult("null_resettable"));
4938 }
Steve Naroff936354c2009-10-08 21:55:05 +00004939 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004940 HandleCodeCompleteResults(this, CodeCompleter,
4941 CodeCompletionContext::CCC_Other,
4942 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00004943}
Steve Naroffeae65032009-11-07 02:08:14 +00004944
James Dennettf1243872012-06-17 05:33:25 +00004945/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00004946/// via code completion.
4947enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00004948 MK_Any, ///< Any kind of method, provided it means other specified criteria.
4949 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
4950 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00004951};
4952
Douglas Gregor67c692c2010-08-26 15:07:07 +00004953static bool isAcceptableObjCSelector(Selector Sel,
4954 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004955 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004956 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004957 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00004958 if (NumSelIdents > Sel.getNumArgs())
4959 return false;
4960
4961 switch (WantKind) {
4962 case MK_Any: break;
4963 case MK_ZeroArgSelector: return Sel.isUnarySelector();
4964 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
4965 }
4966
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004967 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
4968 return false;
4969
Douglas Gregor67c692c2010-08-26 15:07:07 +00004970 for (unsigned I = 0; I != NumSelIdents; ++I)
4971 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
4972 return false;
4973
4974 return true;
4975}
4976
Douglas Gregorc8537c52009-11-19 07:41:15 +00004977static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
4978 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004979 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004980 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00004981 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004982 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004983}
Douglas Gregor1154e272010-09-16 16:06:31 +00004984
4985namespace {
4986 /// \brief A set of selectors, which is used to avoid introducing multiple
4987 /// completions with the same selector into the result set.
4988 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
4989}
4990
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004991/// \brief Add all of the Objective-C methods in the given Objective-C
4992/// container to the set of results.
4993///
4994/// The container will be a class, protocol, category, or implementation of
4995/// any of the above. This mether will recurse to include methods from
4996/// the superclasses of classes along with their categories, protocols, and
4997/// implementations.
4998///
4999/// \param Container the container in which we'll look to find methods.
5000///
James Dennett596e4752012-06-14 03:11:41 +00005001/// \param WantInstanceMethods Whether to add instance methods (only); if
5002/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005003///
5004/// \param CurContext the context in which we're performing the lookup that
5005/// finds methods.
5006///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005007/// \param AllowSameLength Whether we allow a method to be added to the list
5008/// when it has the same number of parameters as we have selector identifiers.
5009///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005010/// \param Results the structure into which we'll add results.
5011static void AddObjCMethods(ObjCContainerDecl *Container,
5012 bool WantInstanceMethods,
Douglas Gregorc8537c52009-11-19 07:41:15 +00005013 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005014 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005015 DeclContext *CurContext,
Douglas Gregor1154e272010-09-16 16:06:31 +00005016 VisitedSelectorSet &Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005017 bool AllowSameLength,
Douglas Gregor416b5752010-08-25 01:08:01 +00005018 ResultBuilder &Results,
5019 bool InOriginalClass = true) {
John McCall276321a2010-08-25 06:19:51 +00005020 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005021 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00005022 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
5023 bool isRootClass = IFace && !IFace->getSuperClass();
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005024 for (auto *M : Container->methods()) {
Douglas Gregor41778c32013-01-30 06:58:39 +00005025 // The instance methods on the root class can be messaged via the
5026 // metaclass.
5027 if (M->isInstanceMethod() == WantInstanceMethods ||
5028 (isRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00005029 // Check whether the selector identifiers we've been given are a
5030 // subset of the identifiers for this particular method.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005031 if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00005032 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00005033
David Blaikie82e95a32014-11-19 07:49:47 +00005034 if (!Selectors.insert(M->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005035 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005036
5037 Result R = Result(M, Results.getBasePriority(M), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005038 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00005039 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00005040 if (!InOriginalClass)
5041 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00005042 Results.MaybeAddResult(R, CurContext);
5043 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005044 }
5045
Douglas Gregorf37c9492010-09-16 15:34:59 +00005046 // Visit the protocols of protocols.
5047 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00005048 if (Protocol->hasDefinition()) {
5049 const ObjCList<ObjCProtocolDecl> &Protocols
5050 = Protocol->getReferencedProtocols();
5051 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5052 E = Protocols.end();
5053 I != E; ++I)
5054 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005055 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregore6e48b12012-01-01 19:29:29 +00005056 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00005057 }
5058
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00005059 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005060 return;
5061
5062 // Add methods in protocols.
Aaron Ballmana49c5062014-03-13 20:29:09 +00005063 for (auto *I : IFace->protocols())
5064 AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005065 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005066
5067 // Add methods in categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00005068 for (auto *CatDecl : IFace->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005069 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005070 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005071 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005072
5073 // Add a categories protocol methods.
5074 const ObjCList<ObjCProtocolDecl> &Protocols
5075 = CatDecl->getReferencedProtocols();
5076 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5077 E = Protocols.end();
5078 I != E; ++I)
Douglas Gregorc8537c52009-11-19 07:41:15 +00005079 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005080 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005081 Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005082
5083 // Add methods in category implementations.
5084 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005085 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005086 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005087 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005088 }
5089
5090 // Add methods in superclass.
5091 if (IFace->getSuperClass())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005092 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005093 SelIdents, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005094 AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005095
5096 // Add methods in our implementation, if any.
5097 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005098 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005099 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005100 Results, InOriginalClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005101}
5102
5103
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005104void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005105 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005106 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005107 if (!Class) {
5108 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005109 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005110 Class = Category->getClassInterface();
5111
5112 if (!Class)
5113 return;
5114 }
5115
5116 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005117 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005118 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005119 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005120 Results.EnterNewScope();
5121
Douglas Gregor1154e272010-09-16 16:06:31 +00005122 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005123 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005124 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005125 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005126 HandleCodeCompleteResults(this, CodeCompleter,
5127 CodeCompletionContext::CCC_Other,
5128 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00005129}
5130
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005131void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005132 // Try to find the interface where setters might live.
5133 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005134 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005135 if (!Class) {
5136 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005137 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005138 Class = Category->getClassInterface();
5139
5140 if (!Class)
5141 return;
5142 }
5143
5144 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005145 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005146 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005147 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005148 Results.EnterNewScope();
5149
Douglas Gregor1154e272010-09-16 16:06:31 +00005150 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005151 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005152 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005153
5154 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005155 HandleCodeCompleteResults(this, CodeCompleter,
5156 CodeCompletionContext::CCC_Other,
5157 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005158}
5159
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005160void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
5161 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005162 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005163 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005164 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005165 Results.EnterNewScope();
5166
5167 // Add context-sensitive, Objective-C parameter-passing keywords.
5168 bool AddedInOut = false;
5169 if ((DS.getObjCDeclQualifier() &
5170 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
5171 Results.AddResult("in");
5172 Results.AddResult("inout");
5173 AddedInOut = true;
5174 }
5175 if ((DS.getObjCDeclQualifier() &
5176 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
5177 Results.AddResult("out");
5178 if (!AddedInOut)
5179 Results.AddResult("inout");
5180 }
5181 if ((DS.getObjCDeclQualifier() &
5182 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
5183 ObjCDeclSpec::DQ_Oneway)) == 0) {
5184 Results.AddResult("bycopy");
5185 Results.AddResult("byref");
5186 Results.AddResult("oneway");
5187 }
Douglas Gregor86b42682015-06-19 18:27:52 +00005188 if ((DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) == 0) {
5189 Results.AddResult("nonnull");
5190 Results.AddResult("nullable");
5191 Results.AddResult("null_unspecified");
5192 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00005193
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005194 // If we're completing the return type of an Objective-C method and the
5195 // identifier IBAction refers to a macro, provide a completion item for
5196 // an action, e.g.,
5197 // IBAction)<#selector#>:(id)sender
5198 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
Richard Smith20e883e2015-04-29 23:20:19 +00005199 PP.isMacroDefined("IBAction")) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005200 CodeCompletionBuilder Builder(Results.getAllocator(),
5201 Results.getCodeCompletionTUInfo(),
5202 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005203 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005204 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005205 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005206 Builder.AddChunk(CodeCompletionString::CK_Colon);
5207 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005208 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005209 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005210 Builder.AddTextChunk("sender");
5211 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
5212 }
Douglas Gregored1f5972013-01-30 07:11:43 +00005213
5214 // If we're completing the return type, provide 'instancetype'.
5215 if (!IsParameter) {
5216 Results.AddResult(CodeCompletionResult("instancetype"));
5217 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005218
Douglas Gregor99fa2642010-08-24 01:06:58 +00005219 // Add various builtin type names and specifiers.
5220 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5221 Results.ExitScope();
5222
5223 // Add the various type names
5224 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5225 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5226 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5227 CodeCompleter->includeGlobals());
5228
5229 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005230 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005231
5232 HandleCodeCompleteResults(this, CodeCompleter,
5233 CodeCompletionContext::CCC_Type,
5234 Results.data(), Results.size());
5235}
5236
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005237/// \brief When we have an expression with type "id", we may assume
5238/// that it has some more-specific class type based on knowledge of
5239/// common uses of Objective-C. This routine returns that class type,
5240/// or NULL if no better result could be determined.
5241static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005242 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005243 if (!Msg)
Craig Topperc3ec1492014-05-26 06:22:03 +00005244 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005245
5246 Selector Sel = Msg->getSelector();
5247 if (Sel.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00005248 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005249
5250 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5251 if (!Id)
Craig Topperc3ec1492014-05-26 06:22:03 +00005252 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005253
5254 ObjCMethodDecl *Method = Msg->getMethodDecl();
5255 if (!Method)
Craig Topperc3ec1492014-05-26 06:22:03 +00005256 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005257
5258 // Determine the class that we're sending the message to.
Craig Topperc3ec1492014-05-26 06:22:03 +00005259 ObjCInterfaceDecl *IFace = nullptr;
Douglas Gregor9a129192010-04-21 00:45:42 +00005260 switch (Msg->getReceiverKind()) {
5261 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005262 if (const ObjCObjectType *ObjType
5263 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5264 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005265 break;
5266
5267 case ObjCMessageExpr::Instance: {
5268 QualType T = Msg->getInstanceReceiver()->getType();
5269 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5270 IFace = Ptr->getInterfaceDecl();
5271 break;
5272 }
5273
5274 case ObjCMessageExpr::SuperInstance:
5275 case ObjCMessageExpr::SuperClass:
5276 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005277 }
5278
5279 if (!IFace)
Craig Topperc3ec1492014-05-26 06:22:03 +00005280 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005281
5282 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5283 if (Method->isInstanceMethod())
5284 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5285 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005286 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005287 .Case("autorelease", IFace)
5288 .Case("copy", IFace)
5289 .Case("copyWithZone", IFace)
5290 .Case("mutableCopy", IFace)
5291 .Case("mutableCopyWithZone", IFace)
5292 .Case("awakeFromCoder", IFace)
5293 .Case("replacementObjectFromCoder", IFace)
5294 .Case("class", IFace)
5295 .Case("classForCoder", IFace)
5296 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005297 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005298
5299 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5300 .Case("new", IFace)
5301 .Case("alloc", IFace)
5302 .Case("allocWithZone", IFace)
5303 .Case("class", IFace)
5304 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005305 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005306}
5307
Douglas Gregor6fc04132010-08-27 15:10:57 +00005308// Add a special completion for a message send to "super", which fills in the
5309// most likely case of forwarding all of our arguments to the superclass
5310// function.
5311///
5312/// \param S The semantic analysis object.
5313///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005314/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005315/// the "super" keyword. Otherwise, we just need to provide the arguments.
5316///
5317/// \param SelIdents The identifiers in the selector that have already been
5318/// provided as arguments for a send to "super".
5319///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005320/// \param Results The set of results to augment.
5321///
5322/// \returns the Objective-C method declaration that would be invoked by
5323/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005324static ObjCMethodDecl *AddSuperSendCompletion(
5325 Sema &S, bool NeedSuperKeyword,
5326 ArrayRef<IdentifierInfo *> SelIdents,
5327 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005328 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5329 if (!CurMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005330 return nullptr;
5331
Douglas Gregor6fc04132010-08-27 15:10:57 +00005332 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5333 if (!Class)
Craig Topperc3ec1492014-05-26 06:22:03 +00005334 return nullptr;
5335
Douglas Gregor6fc04132010-08-27 15:10:57 +00005336 // Try to find a superclass method with the same selector.
Craig Topperc3ec1492014-05-26 06:22:03 +00005337 ObjCMethodDecl *SuperMethod = nullptr;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005338 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5339 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005340 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5341 CurMethod->isInstanceMethod());
5342
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005343 // Check in categories or class extensions.
5344 if (!SuperMethod) {
Aaron Ballman15063e12014-03-13 21:35:02 +00005345 for (const auto *Cat : Class->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005346 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005347 CurMethod->isInstanceMethod())))
5348 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005349 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005350 }
5351 }
5352
Douglas Gregor6fc04132010-08-27 15:10:57 +00005353 if (!SuperMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005354 return nullptr;
5355
Douglas Gregor6fc04132010-08-27 15:10:57 +00005356 // Check whether the superclass method has the same signature.
5357 if (CurMethod->param_size() != SuperMethod->param_size() ||
5358 CurMethod->isVariadic() != SuperMethod->isVariadic())
Craig Topperc3ec1492014-05-26 06:22:03 +00005359 return nullptr;
5360
Douglas Gregor6fc04132010-08-27 15:10:57 +00005361 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5362 CurPEnd = CurMethod->param_end(),
5363 SuperP = SuperMethod->param_begin();
5364 CurP != CurPEnd; ++CurP, ++SuperP) {
5365 // Make sure the parameter types are compatible.
5366 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5367 (*SuperP)->getType()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005368 return nullptr;
5369
Douglas Gregor6fc04132010-08-27 15:10:57 +00005370 // Make sure we have a parameter name to forward!
5371 if (!(*CurP)->getIdentifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00005372 return nullptr;
Douglas Gregor6fc04132010-08-27 15:10:57 +00005373 }
5374
5375 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005376 CodeCompletionBuilder Builder(Results.getAllocator(),
5377 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005378
5379 // Give this completion a return type.
Douglas Gregorc3425b12015-07-07 06:20:19 +00005380 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5381 Results.getCompletionContext().getBaseType(),
Douglas Gregor75acd922011-09-27 23:30:47 +00005382 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005383
5384 // If we need the "super" keyword, add it (plus some spacing).
5385 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005386 Builder.AddTypedTextChunk("super");
5387 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005388 }
5389
5390 Selector Sel = CurMethod->getSelector();
5391 if (Sel.isUnarySelector()) {
5392 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005393 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005394 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005395 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005396 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005397 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005398 } else {
5399 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5400 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005401 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005402 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005403
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005404 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005405 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005406 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005407 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005408 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005409 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005410 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005411 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005412 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005413 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005414 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005415 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005416 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005417 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005418 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005419 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005420 }
5421 }
5422 }
5423
Douglas Gregor78254c82012-03-27 23:34:16 +00005424 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5425 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005426 return SuperMethod;
5427}
5428
Douglas Gregora817a192010-05-27 23:06:34 +00005429void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005430 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005431 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005432 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005433 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005434 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005435 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5436 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005437
Douglas Gregora817a192010-05-27 23:06:34 +00005438 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5439 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005440 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5441 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005442
5443 // If we are in an Objective-C method inside a class that has a superclass,
5444 // add "super" as an option.
5445 if (ObjCMethodDecl *Method = getCurMethodDecl())
5446 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005447 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005448 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005449
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005450 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005451 }
Douglas Gregora817a192010-05-27 23:06:34 +00005452
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005453 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005454 addThisCompletion(*this, Results);
5455
Douglas Gregora817a192010-05-27 23:06:34 +00005456 Results.ExitScope();
5457
5458 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005459 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005460 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005461 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005462
5463}
5464
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005465void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005466 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005467 bool AtArgumentExpression) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005468 ObjCInterfaceDecl *CDecl = nullptr;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005469 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5470 // Figure out which interface we're in.
5471 CDecl = CurMethod->getClassInterface();
5472 if (!CDecl)
5473 return;
5474
5475 // Find the superclass of this class.
5476 CDecl = CDecl->getSuperClass();
5477 if (!CDecl)
5478 return;
5479
5480 if (CurMethod->isInstanceMethod()) {
5481 // We are inside an instance method, which means that the message
5482 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005483 // current object.
Craig Topperc3ec1492014-05-26 06:22:03 +00005484 return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005485 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005486 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005487 }
5488
5489 // Fall through to send to the superclass in CDecl.
5490 } else {
5491 // "super" may be the name of a type or variable. Figure out which
5492 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005493 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005494 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5495 LookupOrdinaryName);
5496 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5497 // "super" names an interface. Use it.
5498 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005499 if (const ObjCObjectType *Iface
5500 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5501 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005502 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5503 // "super" names an unresolved type; we can't be more specific.
5504 } else {
5505 // Assume that "super" names some kind of value and parse that way.
5506 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005507 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005508 UnqualifiedId id;
5509 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005510 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5511 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005512 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005513 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005514 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005515 }
5516
5517 // Fall through
5518 }
5519
John McCallba7bf592010-08-24 05:47:05 +00005520 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005521 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005522 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005523 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005524 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005525 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005526}
5527
Douglas Gregor74661272010-09-21 00:03:25 +00005528/// \brief Given a set of code-completion results for the argument of a message
5529/// send, determine the preferred type (if any) for that argument expression.
5530static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5531 unsigned NumSelIdents) {
5532 typedef CodeCompletionResult Result;
5533 ASTContext &Context = Results.getSema().Context;
5534
5535 QualType PreferredType;
5536 unsigned BestPriority = CCP_Unlikely * 2;
5537 Result *ResultsData = Results.data();
5538 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5539 Result &R = ResultsData[I];
5540 if (R.Kind == Result::RK_Declaration &&
5541 isa<ObjCMethodDecl>(R.Declaration)) {
5542 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005543 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005544 if (NumSelIdents <= Method->param_size()) {
Alp Toker03376dc2014-07-07 09:02:20 +00005545 QualType MyPreferredType = Method->parameters()[NumSelIdents - 1]
Douglas Gregor74661272010-09-21 00:03:25 +00005546 ->getType();
5547 if (R.Priority < BestPriority || PreferredType.isNull()) {
5548 BestPriority = R.Priority;
5549 PreferredType = MyPreferredType;
5550 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5551 MyPreferredType)) {
5552 PreferredType = QualType();
5553 }
5554 }
5555 }
5556 }
5557 }
5558
5559 return PreferredType;
5560}
5561
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005562static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5563 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005564 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005565 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005566 bool IsSuper,
5567 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005568 typedef CodeCompletionResult Result;
Craig Topperc3ec1492014-05-26 06:22:03 +00005569 ObjCInterfaceDecl *CDecl = nullptr;
5570
Douglas Gregor8ce33212009-11-17 17:59:40 +00005571 // If the given name refers to an interface type, retrieve the
5572 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005573 if (Receiver) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005574 QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005575 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005576 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5577 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005578 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005579
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005580 // Add all of the factory methods in this Objective-C class, its protocols,
5581 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005582 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005583
Douglas Gregor6fc04132010-08-27 15:10:57 +00005584 // If this is a send-to-super, try to add the special "super" send
5585 // completion.
5586 if (IsSuper) {
5587 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005588 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005589 Results.Ignore(SuperMethod);
5590 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005591
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005592 // If we're inside an Objective-C method definition, prefer its selector to
5593 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005594 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005595 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005596
Douglas Gregor1154e272010-09-16 16:06:31 +00005597 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005598 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005599 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005600 SemaRef.CurContext, Selectors, AtArgumentExpression,
5601 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005602 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005603 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005604
Douglas Gregord720daf2010-04-06 17:30:22 +00005605 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005606 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005607 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005608 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005609 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005610 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005611 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005612 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005613 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005614
5615 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005616 }
5617 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005618
5619 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5620 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005621 M != MEnd; ++M) {
5622 for (ObjCMethodList *MethList = &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005623 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005624 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005625 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005626 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005627
Nico Weber2e0c8f72014-12-27 03:58:08 +00005628 Result R(MethList->getMethod(),
5629 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005630 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005631 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005632 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005633 }
5634 }
5635 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005636
5637 Results.ExitScope();
5638}
Douglas Gregor6285f752010-04-06 16:40:00 +00005639
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005640void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005641 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005642 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005643 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005644
5645 QualType T = this->GetTypeFromParser(Receiver);
5646
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005647 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005648 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005649 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005650 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005651
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005652 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005653 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005654
5655 // If we're actually at the argument expression (rather than prior to the
5656 // selector), we're actually performing code completion for an expression.
5657 // Determine whether we have a single, best method. If so, we can
5658 // code-complete the expression using the corresponding parameter type as
5659 // our preferred type, improving completion results.
5660 if (AtArgumentExpression) {
5661 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005662 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005663 if (PreferredType.isNull())
5664 CodeCompleteOrdinaryName(S, PCC_Expression);
5665 else
5666 CodeCompleteExpression(S, PreferredType);
5667 return;
5668 }
5669
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005670 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005671 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005672 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005673}
5674
Richard Trieu2bd04012011-09-09 02:00:50 +00005675void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005676 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005677 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005678 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00005679 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00005680
5681 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00005682
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005683 // If necessary, apply function/array conversion to the receiver.
5684 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00005685 if (RecExpr) {
5686 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
5687 if (Conv.isInvalid()) // conversion failed. bail.
5688 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005689 RecExpr = Conv.get();
John Wiegley01296292011-04-08 18:41:53 +00005690 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00005691 QualType ReceiverType = RecExpr? RecExpr->getType()
5692 : Super? Context.getObjCObjectPointerType(
5693 Context.getObjCInterfaceType(Super))
5694 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00005695
Douglas Gregordc520b02010-11-08 21:12:30 +00005696 // If we're messaging an expression with type "id" or "Class", check
5697 // whether we know something special about the receiver that allows
5698 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00005699 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00005700 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
5701 if (ReceiverType->isObjCClassType())
5702 return CodeCompleteObjCClassMessage(S,
5703 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005704 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00005705 AtArgumentExpression, Super);
5706
5707 ReceiverType = Context.getObjCObjectPointerType(
5708 Context.getObjCInterfaceType(IFace));
5709 }
Anders Carlsson382ba412014-02-28 19:07:22 +00005710 } else if (RecExpr && getLangOpts().CPlusPlus) {
5711 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
5712 if (Conv.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005713 RecExpr = Conv.get();
Anders Carlsson382ba412014-02-28 19:07:22 +00005714 ReceiverType = RecExpr->getType();
5715 }
5716 }
Douglas Gregordc520b02010-11-08 21:12:30 +00005717
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005718 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005719 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005720 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005721 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005722 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005723
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005724 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005725
Douglas Gregor6fc04132010-08-27 15:10:57 +00005726 // If this is a send-to-super, try to add the special "super" send
5727 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00005728 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005729 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005730 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005731 Results.Ignore(SuperMethod);
5732 }
5733
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005734 // If we're inside an Objective-C method definition, prefer its selector to
5735 // others.
5736 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5737 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005738
Douglas Gregor1154e272010-09-16 16:06:31 +00005739 // Keep track of the selectors we've already added.
5740 VisitedSelectorSet Selectors;
5741
Douglas Gregora3329fa2009-11-18 00:06:18 +00005742 // Handle messages to Class. This really isn't a message to an instance
5743 // method, so we treat it the same way we would treat a message send to a
5744 // class method.
5745 if (ReceiverType->isObjCClassType() ||
5746 ReceiverType->isObjCQualifiedClassType()) {
5747 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5748 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005749 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005750 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005751 }
5752 }
5753 // Handle messages to a qualified ID ("id<foo>").
5754 else if (const ObjCObjectPointerType *QualID
5755 = ReceiverType->getAsObjCQualifiedIdType()) {
5756 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005757 for (auto *I : QualID->quals())
5758 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005759 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005760 }
5761 // Handle messages to a pointer to interface type.
5762 else if (const ObjCObjectPointerType *IFacePtr
5763 = ReceiverType->getAsObjCInterfacePointerType()) {
5764 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005765 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005766 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005767 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005768
5769 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005770 for (auto *I : IFacePtr->quals())
5771 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005772 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005773 }
Douglas Gregor6285f752010-04-06 16:40:00 +00005774 // Handle messages to "id".
5775 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00005776 // We're messaging "id", so provide all instance methods we know
5777 // about as code-completion results.
5778
5779 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005780 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00005781 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00005782 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5783 I != N; ++I) {
5784 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00005785 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005786 continue;
5787
Sebastian Redl75d8a322010-08-02 23:18:59 +00005788 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005789 }
5790 }
5791
Sebastian Redl75d8a322010-08-02 23:18:59 +00005792 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5793 MEnd = MethodPool.end();
5794 M != MEnd; ++M) {
5795 for (ObjCMethodList *MethList = &M->second.first;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005796 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005797 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005798 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005799 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00005800
Nico Weber2e0c8f72014-12-27 03:58:08 +00005801 if (!Selectors.insert(MethList->getMethod()->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005802 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005803
Nico Weber2e0c8f72014-12-27 03:58:08 +00005804 Result R(MethList->getMethod(),
5805 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005806 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005807 R.AllParametersAreInformative = false;
5808 Results.MaybeAddResult(R, CurContext);
5809 }
5810 }
5811 }
Steve Naroffeae65032009-11-07 02:08:14 +00005812 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00005813
5814
5815 // If we're actually at the argument expression (rather than prior to the
5816 // selector), we're actually performing code completion for an expression.
5817 // Determine whether we have a single, best method. If so, we can
5818 // code-complete the expression using the corresponding parameter type as
5819 // our preferred type, improving completion results.
5820 if (AtArgumentExpression) {
5821 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005822 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005823 if (PreferredType.isNull())
5824 CodeCompleteOrdinaryName(S, PCC_Expression);
5825 else
5826 CodeCompleteExpression(S, PreferredType);
5827 return;
5828 }
5829
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005830 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005831 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005832 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005833}
Douglas Gregorbaf69612009-11-18 04:19:12 +00005834
Douglas Gregor68762e72010-08-23 21:17:50 +00005835void Sema::CodeCompleteObjCForCollection(Scope *S,
5836 DeclGroupPtrTy IterationVar) {
5837 CodeCompleteExpressionData Data;
5838 Data.ObjCCollection = true;
5839
5840 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00005841 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00005842 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
5843 if (*I)
5844 Data.IgnoreDecls.push_back(*I);
5845 }
5846 }
5847
5848 CodeCompleteExpression(S, Data);
5849}
5850
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005851void Sema::CodeCompleteObjCSelector(Scope *S,
5852 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005853 // If we have an external source, load the entire class method
5854 // pool from the AST file.
5855 if (ExternalSource) {
5856 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5857 I != N; ++I) {
5858 Selector Sel = ExternalSource->GetExternalSelector(I);
5859 if (Sel.isNull() || MethodPool.count(Sel))
5860 continue;
5861
5862 ReadMethodPool(Sel);
5863 }
5864 }
5865
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005866 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005867 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005868 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00005869 Results.EnterNewScope();
5870 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5871 MEnd = MethodPool.end();
5872 M != MEnd; ++M) {
5873
5874 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005875 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00005876 continue;
5877
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005878 CodeCompletionBuilder Builder(Results.getAllocator(),
5879 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005880 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005881 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005882 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005883 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005884 continue;
5885 }
5886
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005887 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00005888 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005889 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005890 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005891 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005892 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005893 Accumulator.clear();
5894 }
5895 }
5896
Benjamin Kramer632500c2011-07-26 16:59:25 +00005897 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005898 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00005899 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005900 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005901 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005902 }
5903 Results.ExitScope();
5904
5905 HandleCodeCompleteResults(this, CodeCompleter,
5906 CodeCompletionContext::CCC_SelectorName,
5907 Results.data(), Results.size());
5908}
5909
Douglas Gregorbaf69612009-11-18 04:19:12 +00005910/// \brief Add all of the protocol declarations that we find in the given
5911/// (translation unit) context.
5912static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005913 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00005914 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005915 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00005916
Aaron Ballman629afae2014-03-07 19:56:05 +00005917 for (const auto *D : Ctx->decls()) {
Douglas Gregorbaf69612009-11-18 04:19:12 +00005918 // Record any protocols we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005919 if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00005920 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Craig Topperc3ec1492014-05-26 06:22:03 +00005921 Results.AddResult(Result(Proto, Results.getBasePriority(Proto),nullptr),
5922 CurContext, nullptr, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005923 }
5924}
5925
Craig Topper883dd332015-12-24 23:58:11 +00005926void Sema::CodeCompleteObjCProtocolReferences(
5927 ArrayRef<IdentifierLocPair> Protocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005928 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005929 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005930 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005931
Douglas Gregora3b23b02010-12-09 21:44:02 +00005932 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5933 Results.EnterNewScope();
5934
5935 // Tell the result set to ignore all of the protocols we have
5936 // already seen.
5937 // FIXME: This doesn't work when caching code-completion results.
Craig Topper883dd332015-12-24 23:58:11 +00005938 for (const IdentifierLocPair &Pair : Protocols)
5939 if (ObjCProtocolDecl *Protocol = LookupProtocol(Pair.first,
5940 Pair.second))
Douglas Gregora3b23b02010-12-09 21:44:02 +00005941 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005942
Douglas Gregora3b23b02010-12-09 21:44:02 +00005943 // Add all protocols.
5944 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
5945 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005946
Douglas Gregora3b23b02010-12-09 21:44:02 +00005947 Results.ExitScope();
5948 }
5949
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005950 HandleCodeCompleteResults(this, CodeCompleter,
5951 CodeCompletionContext::CCC_ObjCProtocolName,
5952 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005953}
5954
5955void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005956 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005957 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005958 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005959
Douglas Gregora3b23b02010-12-09 21:44:02 +00005960 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5961 Results.EnterNewScope();
5962
5963 // Add all protocols.
5964 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
5965 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005966
Douglas Gregora3b23b02010-12-09 21:44:02 +00005967 Results.ExitScope();
5968 }
5969
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005970 HandleCodeCompleteResults(this, CodeCompleter,
5971 CodeCompletionContext::CCC_ObjCProtocolName,
5972 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00005973}
Douglas Gregor49c22a72009-11-18 16:26:39 +00005974
5975/// \brief Add all of the Objective-C interface declarations that we find in
5976/// the given (translation unit) context.
5977static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
5978 bool OnlyForwardDeclarations,
5979 bool OnlyUnimplemented,
5980 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005981 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00005982
Aaron Ballman629afae2014-03-07 19:56:05 +00005983 for (const auto *D : Ctx->decls()) {
Douglas Gregor1c283312010-08-11 12:19:30 +00005984 // Record any interfaces we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005985 if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00005986 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00005987 (!OnlyUnimplemented || !Class->getImplementation()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005988 Results.AddResult(Result(Class, Results.getBasePriority(Class),nullptr),
5989 CurContext, nullptr, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005990 }
5991}
5992
5993void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005994 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005995 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005996 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005997 Results.EnterNewScope();
5998
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005999 if (CodeCompleter->includeGlobals()) {
6000 // Add all classes.
6001 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6002 false, Results);
6003 }
6004
Douglas Gregor49c22a72009-11-18 16:26:39 +00006005 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006006
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006007 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006008 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006009 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006010}
6011
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006012void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
6013 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006014 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006015 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006016 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006017 Results.EnterNewScope();
6018
6019 // Make sure that we ignore the class we're currently defining.
6020 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006021 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006022 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00006023 Results.Ignore(CurClass);
6024
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006025 if (CodeCompleter->includeGlobals()) {
6026 // Add all classes.
6027 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6028 false, Results);
6029 }
6030
Douglas Gregor49c22a72009-11-18 16:26:39 +00006031 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006032
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006033 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006034 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006035 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006036}
6037
6038void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006039 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006040 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006041 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006042 Results.EnterNewScope();
6043
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006044 if (CodeCompleter->includeGlobals()) {
6045 // Add all unimplemented classes.
6046 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6047 true, Results);
6048 }
6049
Douglas Gregor49c22a72009-11-18 16:26:39 +00006050 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006051
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006052 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006053 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006054 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006055}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006056
6057void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006058 IdentifierInfo *ClassName,
6059 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006060 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006061
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006062 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006063 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006064 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006065
6066 // Ignore any categories we find that have already been implemented by this
6067 // interface.
6068 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6069 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006070 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006071 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006072 for (const auto *Cat : Class->visible_categories())
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006073 CategoryNames.insert(Cat->getIdentifier());
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006074 }
6075
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006076 // Add all of the categories we know about.
6077 Results.EnterNewScope();
6078 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Aaron Ballman629afae2014-03-07 19:56:05 +00006079 for (const auto *D : TU->decls())
6080 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
David Blaikie82e95a32014-11-19 07:49:47 +00006081 if (CategoryNames.insert(Category->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006082 Results.AddResult(Result(Category, Results.getBasePriority(Category),
6083 nullptr),
6084 CurContext, nullptr, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006085 Results.ExitScope();
6086
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006087 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006088 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006089 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006090}
6091
6092void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006093 IdentifierInfo *ClassName,
6094 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006095 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006096
6097 // Find the corresponding interface. If we couldn't find the interface, the
6098 // program itself is ill-formed. However, we'll try to be helpful still by
6099 // providing the list of all of the categories we know about.
6100 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006101 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006102 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
6103 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006104 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006105
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006106 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006107 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006108 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006109
6110 // Add all of the categories that have have corresponding interface
6111 // declarations in this class and any of its superclasses, except for
6112 // already-implemented categories in the class itself.
6113 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6114 Results.EnterNewScope();
6115 bool IgnoreImplemented = true;
6116 while (Class) {
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006117 for (const auto *Cat : Class->visible_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006118 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
David Blaikie82e95a32014-11-19 07:49:47 +00006119 CategoryNames.insert(Cat->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006120 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr),
6121 CurContext, nullptr, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006122 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006123
6124 Class = Class->getSuperClass();
6125 IgnoreImplemented = false;
6126 }
6127 Results.ExitScope();
6128
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006129 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006130 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006131 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006132}
Douglas Gregor5d649882009-11-18 22:32:06 +00006133
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006134void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00006135 CodeCompletionContext CCContext(CodeCompletionContext::CCC_Other);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006136 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006137 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00006138 CCContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006139
6140 // Figure out where this @synthesize lives.
6141 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006142 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006143 if (!Container ||
6144 (!isa<ObjCImplementationDecl>(Container) &&
6145 !isa<ObjCCategoryImplDecl>(Container)))
6146 return;
6147
6148 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006149 Container = getContainerDef(Container);
Aaron Ballman629afae2014-03-07 19:56:05 +00006150 for (const auto *D : Container->decls())
6151 if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregor5d649882009-11-18 22:32:06 +00006152 Results.Ignore(PropertyImpl->getPropertyDecl());
6153
6154 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00006155 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00006156 Results.EnterNewScope();
6157 if (ObjCImplementationDecl *ClassImpl
6158 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregorc3425b12015-07-07 06:20:19 +00006159 AddObjCProperties(CCContext, ClassImpl->getClassInterface(), false,
Douglas Gregor95147142011-05-05 15:50:42 +00006160 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00006161 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006162 else
Douglas Gregorc3425b12015-07-07 06:20:19 +00006163 AddObjCProperties(CCContext,
6164 cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00006165 false, /*AllowNullaryMethods=*/false, CurContext,
6166 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006167 Results.ExitScope();
6168
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006169 HandleCodeCompleteResults(this, CodeCompleter,
6170 CodeCompletionContext::CCC_Other,
6171 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006172}
6173
6174void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006175 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00006176 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006177 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006178 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006179 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00006180
6181 // Figure out where this @synthesize lives.
6182 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006183 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006184 if (!Container ||
6185 (!isa<ObjCImplementationDecl>(Container) &&
6186 !isa<ObjCCategoryImplDecl>(Container)))
6187 return;
6188
6189 // Figure out which interface we're looking into.
Craig Topperc3ec1492014-05-26 06:22:03 +00006190 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor5d649882009-11-18 22:32:06 +00006191 if (ObjCImplementationDecl *ClassImpl
6192 = dyn_cast<ObjCImplementationDecl>(Container))
6193 Class = ClassImpl->getClassInterface();
6194 else
6195 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
6196 ->getClassInterface();
6197
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006198 // Determine the type of the property we're synthesizing.
6199 QualType PropertyType = Context.getObjCIdType();
6200 if (Class) {
6201 if (ObjCPropertyDecl *Property
6202 = Class->FindPropertyDeclaration(PropertyName)) {
6203 PropertyType
6204 = Property->getType().getNonReferenceType().getUnqualifiedType();
6205
6206 // Give preference to ivars
6207 Results.setPreferredType(PropertyType);
6208 }
6209 }
6210
Douglas Gregor5d649882009-11-18 22:32:06 +00006211 // Add all of the instance variables in this class and its superclasses.
6212 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00006213 bool SawSimilarlyNamedIvar = false;
6214 std::string NameWithPrefix;
6215 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00006216 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00006217 std::string NameWithSuffix = PropertyName->getName().str();
6218 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006219 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006220 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6221 Ivar = Ivar->getNextIvar()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006222 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr),
6223 CurContext, nullptr, false);
6224
Douglas Gregor331faa02011-04-18 14:13:53 +00006225 // Determine whether we've seen an ivar with a name similar to the
6226 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006227 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006228 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006229 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006230 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006231
6232 // Reduce the priority of this result by one, to give it a slight
6233 // advantage over other results whose names don't match so closely.
6234 if (Results.size() &&
6235 Results.data()[Results.size() - 1].Kind
6236 == CodeCompletionResult::RK_Declaration &&
6237 Results.data()[Results.size() - 1].Declaration == Ivar)
6238 Results.data()[Results.size() - 1].Priority--;
6239 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006240 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006241 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006242
6243 if (!SawSimilarlyNamedIvar) {
6244 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006245 // an ivar of the appropriate type.
6246 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006247 typedef CodeCompletionResult Result;
6248 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006249 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6250 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006251
Douglas Gregor75acd922011-09-27 23:30:47 +00006252 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006253 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006254 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006255 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6256 Results.AddResult(Result(Builder.TakeString(), Priority,
6257 CXCursor_ObjCIvarDecl));
6258 }
6259
Douglas Gregor5d649882009-11-18 22:32:06 +00006260 Results.ExitScope();
6261
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006262 HandleCodeCompleteResults(this, CodeCompleter,
6263 CodeCompletionContext::CCC_Other,
6264 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006265}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006266
Douglas Gregor416b5752010-08-25 01:08:01 +00006267// Mapping from selectors to the methods that implement that selector, along
6268// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006269typedef llvm::DenseMap<
6270 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006271
6272/// \brief Find all of the methods that reside in the given container
6273/// (and its superclasses, protocols, etc.) that meet the given
6274/// criteria. Insert those methods into the map of known methods,
6275/// indexed by selector so they can be easily found.
6276static void FindImplementableMethods(ASTContext &Context,
6277 ObjCContainerDecl *Container,
6278 bool WantInstanceMethods,
6279 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006280 KnownMethodsMap &KnownMethods,
6281 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006282 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006283 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006284 if (!IFace->hasDefinition())
6285 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006286
6287 IFace = IFace->getDefinition();
6288 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006289
Douglas Gregor636a61e2010-04-07 00:21:17 +00006290 const ObjCList<ObjCProtocolDecl> &Protocols
6291 = IFace->getReferencedProtocols();
6292 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006293 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006294 I != E; ++I)
6295 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006296 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006297
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006298 // Add methods from any class extensions and categories.
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006299 for (auto *Cat : IFace->visible_categories()) {
6300 FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006301 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006302 }
6303
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006304 // Visit the superclass.
6305 if (IFace->getSuperClass())
6306 FindImplementableMethods(Context, IFace->getSuperClass(),
6307 WantInstanceMethods, ReturnType,
6308 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006309 }
6310
6311 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6312 // Recurse into protocols.
6313 const ObjCList<ObjCProtocolDecl> &Protocols
6314 = Category->getReferencedProtocols();
6315 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006316 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006317 I != E; ++I)
6318 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006319 KnownMethods, InOriginalClass);
6320
6321 // If this category is the original class, jump to the interface.
6322 if (InOriginalClass && Category->getClassInterface())
6323 FindImplementableMethods(Context, Category->getClassInterface(),
6324 WantInstanceMethods, ReturnType, KnownMethods,
6325 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006326 }
6327
6328 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006329 // Make sure we have a definition; that's what we'll walk.
6330 if (!Protocol->hasDefinition())
6331 return;
6332 Protocol = Protocol->getDefinition();
6333 Container = Protocol;
6334
6335 // Recurse into protocols.
6336 const ObjCList<ObjCProtocolDecl> &Protocols
6337 = Protocol->getReferencedProtocols();
6338 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6339 E = Protocols.end();
6340 I != E; ++I)
6341 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6342 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006343 }
6344
6345 // Add methods in this container. This operation occurs last because
6346 // we want the methods from this container to override any methods
6347 // we've previously seen with the same selector.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006348 for (auto *M : Container->methods()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006349 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006350 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006351 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006352 continue;
6353
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006354 KnownMethods[M->getSelector()] =
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006355 KnownMethodsMap::mapped_type(M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006356 }
6357 }
6358}
6359
Douglas Gregor669a25a2011-02-17 00:22:45 +00006360/// \brief Add the parenthesized return or parameter type chunk to a code
6361/// completion string.
6362static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006363 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006364 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006365 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006366 CodeCompletionBuilder &Builder) {
6367 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor86b42682015-06-19 18:27:52 +00006368 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals, Type);
Douglas Gregor29979142012-04-10 18:35:07 +00006369 if (!Quals.empty())
6370 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006371 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006372 Builder.getAllocator()));
6373 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6374}
6375
6376/// \brief Determine whether the given class is or inherits from a class by
6377/// the given name.
6378static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006379 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006380 if (!Class)
6381 return false;
6382
6383 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6384 return true;
6385
6386 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6387}
6388
6389/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6390/// Key-Value Observing (KVO).
6391static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6392 bool IsInstanceMethod,
6393 QualType ReturnType,
6394 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006395 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006396 ResultBuilder &Results) {
6397 IdentifierInfo *PropName = Property->getIdentifier();
6398 if (!PropName || PropName->getLength() == 0)
6399 return;
6400
Douglas Gregor75acd922011-09-27 23:30:47 +00006401 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6402
Douglas Gregor669a25a2011-02-17 00:22:45 +00006403 // Builder that will create each code completion.
6404 typedef CodeCompletionResult Result;
6405 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006406 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006407
6408 // The selector table.
6409 SelectorTable &Selectors = Context.Selectors;
6410
6411 // The property name, copied into the code completion allocation region
6412 // on demand.
6413 struct KeyHolder {
6414 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006415 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006416 const char *CopiedKey;
Craig Topperc3ec1492014-05-26 06:22:03 +00006417
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006418 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Craig Topperc3ec1492014-05-26 06:22:03 +00006419 : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {}
6420
Douglas Gregor669a25a2011-02-17 00:22:45 +00006421 operator const char *() {
6422 if (CopiedKey)
6423 return CopiedKey;
6424
6425 return CopiedKey = Allocator.CopyString(Key);
6426 }
6427 } Key(Allocator, PropName->getName());
6428
6429 // The uppercased name of the property name.
6430 std::string UpperKey = PropName->getName();
6431 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006432 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006433
6434 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6435 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6436 Property->getType());
6437 bool ReturnTypeMatchesVoid
6438 = ReturnType.isNull() || ReturnType->isVoidType();
6439
6440 // Add the normal accessor -(type)key.
6441 if (IsInstanceMethod &&
David Blaikie82e95a32014-11-19 07:49:47 +00006442 KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006443 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6444 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006445 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6446 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006447
6448 Builder.AddTypedTextChunk(Key);
6449 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6450 CXCursor_ObjCInstanceMethodDecl));
6451 }
6452
6453 // If we have an integral or boolean property (or the user has provided
6454 // an integral or boolean return type), add the accessor -(type)isKey.
6455 if (IsInstanceMethod &&
6456 ((!ReturnType.isNull() &&
6457 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6458 (ReturnType.isNull() &&
6459 (Property->getType()->isIntegerType() ||
6460 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006461 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006462 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006463 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6464 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006465 if (ReturnType.isNull()) {
6466 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6467 Builder.AddTextChunk("BOOL");
6468 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6469 }
6470
6471 Builder.AddTypedTextChunk(
6472 Allocator.CopyString(SelectorId->getName()));
6473 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6474 CXCursor_ObjCInstanceMethodDecl));
6475 }
6476 }
6477
6478 // Add the normal mutator.
6479 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6480 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006481 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006482 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006483 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006484 if (ReturnType.isNull()) {
6485 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6486 Builder.AddTextChunk("void");
6487 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6488 }
6489
6490 Builder.AddTypedTextChunk(
6491 Allocator.CopyString(SelectorId->getName()));
6492 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006493 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6494 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006495 Builder.AddTextChunk(Key);
6496 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6497 CXCursor_ObjCInstanceMethodDecl));
6498 }
6499 }
6500
6501 // Indexed and unordered accessors
6502 unsigned IndexedGetterPriority = CCP_CodePattern;
6503 unsigned IndexedSetterPriority = CCP_CodePattern;
6504 unsigned UnorderedGetterPriority = CCP_CodePattern;
6505 unsigned UnorderedSetterPriority = CCP_CodePattern;
6506 if (const ObjCObjectPointerType *ObjCPointer
6507 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6508 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6509 // If this interface type is not provably derived from a known
6510 // collection, penalize the corresponding completions.
6511 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6512 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6513 if (!InheritsFromClassNamed(IFace, "NSArray"))
6514 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6515 }
6516
6517 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6518 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6519 if (!InheritsFromClassNamed(IFace, "NSSet"))
6520 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6521 }
6522 }
6523 } else {
6524 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6525 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6526 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6527 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6528 }
6529
6530 // Add -(NSUInteger)countOf<key>
6531 if (IsInstanceMethod &&
6532 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006533 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006534 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006535 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6536 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006537 if (ReturnType.isNull()) {
6538 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6539 Builder.AddTextChunk("NSUInteger");
6540 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6541 }
6542
6543 Builder.AddTypedTextChunk(
6544 Allocator.CopyString(SelectorId->getName()));
6545 Results.AddResult(Result(Builder.TakeString(),
6546 std::min(IndexedGetterPriority,
6547 UnorderedGetterPriority),
6548 CXCursor_ObjCInstanceMethodDecl));
6549 }
6550 }
6551
6552 // Indexed getters
6553 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6554 if (IsInstanceMethod &&
6555 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006556 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006557 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006558 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006559 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006560 if (ReturnType.isNull()) {
6561 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6562 Builder.AddTextChunk("id");
6563 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6564 }
6565
6566 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6567 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6568 Builder.AddTextChunk("NSUInteger");
6569 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6570 Builder.AddTextChunk("index");
6571 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6572 CXCursor_ObjCInstanceMethodDecl));
6573 }
6574 }
6575
6576 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6577 if (IsInstanceMethod &&
6578 (ReturnType.isNull() ||
6579 (ReturnType->isObjCObjectPointerType() &&
6580 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6581 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6582 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006583 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006584 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006585 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006586 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006587 if (ReturnType.isNull()) {
6588 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6589 Builder.AddTextChunk("NSArray *");
6590 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6591 }
6592
6593 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6594 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6595 Builder.AddTextChunk("NSIndexSet *");
6596 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6597 Builder.AddTextChunk("indexes");
6598 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6599 CXCursor_ObjCInstanceMethodDecl));
6600 }
6601 }
6602
6603 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6604 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006605 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006606 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006607 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006608 &Context.Idents.get("range")
6609 };
6610
David Blaikie82e95a32014-11-19 07:49:47 +00006611 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006612 if (ReturnType.isNull()) {
6613 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6614 Builder.AddTextChunk("void");
6615 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6616 }
6617
6618 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6619 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6620 Builder.AddPlaceholderChunk("object-type");
6621 Builder.AddTextChunk(" **");
6622 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6623 Builder.AddTextChunk("buffer");
6624 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6625 Builder.AddTypedTextChunk("range:");
6626 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6627 Builder.AddTextChunk("NSRange");
6628 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6629 Builder.AddTextChunk("inRange");
6630 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6631 CXCursor_ObjCInstanceMethodDecl));
6632 }
6633 }
6634
6635 // Mutable indexed accessors
6636
6637 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6638 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006639 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006640 IdentifierInfo *SelectorIds[2] = {
6641 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006642 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006643 };
6644
David Blaikie82e95a32014-11-19 07:49:47 +00006645 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006646 if (ReturnType.isNull()) {
6647 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6648 Builder.AddTextChunk("void");
6649 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6650 }
6651
6652 Builder.AddTypedTextChunk("insertObject:");
6653 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6654 Builder.AddPlaceholderChunk("object-type");
6655 Builder.AddTextChunk(" *");
6656 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6657 Builder.AddTextChunk("object");
6658 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6659 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6660 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6661 Builder.AddPlaceholderChunk("NSUInteger");
6662 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6663 Builder.AddTextChunk("index");
6664 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6665 CXCursor_ObjCInstanceMethodDecl));
6666 }
6667 }
6668
6669 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6670 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006671 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006672 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006673 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006674 &Context.Idents.get("atIndexes")
6675 };
6676
David Blaikie82e95a32014-11-19 07:49:47 +00006677 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006678 if (ReturnType.isNull()) {
6679 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6680 Builder.AddTextChunk("void");
6681 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6682 }
6683
6684 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6685 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6686 Builder.AddTextChunk("NSArray *");
6687 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6688 Builder.AddTextChunk("array");
6689 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6690 Builder.AddTypedTextChunk("atIndexes:");
6691 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6692 Builder.AddPlaceholderChunk("NSIndexSet *");
6693 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6694 Builder.AddTextChunk("indexes");
6695 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6696 CXCursor_ObjCInstanceMethodDecl));
6697 }
6698 }
6699
6700 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
6701 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006702 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006703 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006704 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006705 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006706 if (ReturnType.isNull()) {
6707 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6708 Builder.AddTextChunk("void");
6709 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6710 }
6711
6712 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6713 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6714 Builder.AddTextChunk("NSUInteger");
6715 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6716 Builder.AddTextChunk("index");
6717 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6718 CXCursor_ObjCInstanceMethodDecl));
6719 }
6720 }
6721
6722 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
6723 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006724 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006725 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006726 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006727 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006728 if (ReturnType.isNull()) {
6729 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6730 Builder.AddTextChunk("void");
6731 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6732 }
6733
6734 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6735 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6736 Builder.AddTextChunk("NSIndexSet *");
6737 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6738 Builder.AddTextChunk("indexes");
6739 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6740 CXCursor_ObjCInstanceMethodDecl));
6741 }
6742 }
6743
6744 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
6745 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006746 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006747 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006748 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006749 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006750 &Context.Idents.get("withObject")
6751 };
6752
David Blaikie82e95a32014-11-19 07:49:47 +00006753 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006754 if (ReturnType.isNull()) {
6755 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6756 Builder.AddTextChunk("void");
6757 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6758 }
6759
6760 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6761 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6762 Builder.AddPlaceholderChunk("NSUInteger");
6763 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6764 Builder.AddTextChunk("index");
6765 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6766 Builder.AddTypedTextChunk("withObject:");
6767 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6768 Builder.AddTextChunk("id");
6769 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6770 Builder.AddTextChunk("object");
6771 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6772 CXCursor_ObjCInstanceMethodDecl));
6773 }
6774 }
6775
6776 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
6777 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006778 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006779 = (Twine("replace") + UpperKey + "AtIndexes").str();
6780 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006781 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006782 &Context.Idents.get(SelectorName1),
6783 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006784 };
6785
David Blaikie82e95a32014-11-19 07:49:47 +00006786 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006787 if (ReturnType.isNull()) {
6788 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6789 Builder.AddTextChunk("void");
6790 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6791 }
6792
6793 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
6794 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6795 Builder.AddPlaceholderChunk("NSIndexSet *");
6796 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6797 Builder.AddTextChunk("indexes");
6798 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6799 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
6800 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6801 Builder.AddTextChunk("NSArray *");
6802 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6803 Builder.AddTextChunk("array");
6804 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6805 CXCursor_ObjCInstanceMethodDecl));
6806 }
6807 }
6808
6809 // Unordered getters
6810 // - (NSEnumerator *)enumeratorOfKey
6811 if (IsInstanceMethod &&
6812 (ReturnType.isNull() ||
6813 (ReturnType->isObjCObjectPointerType() &&
6814 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6815 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6816 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006817 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006818 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006819 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6820 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006821 if (ReturnType.isNull()) {
6822 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6823 Builder.AddTextChunk("NSEnumerator *");
6824 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6825 }
6826
6827 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6828 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6829 CXCursor_ObjCInstanceMethodDecl));
6830 }
6831 }
6832
6833 // - (type *)memberOfKey:(type *)object
6834 if (IsInstanceMethod &&
6835 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006836 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006837 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006838 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006839 if (ReturnType.isNull()) {
6840 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6841 Builder.AddPlaceholderChunk("object-type");
6842 Builder.AddTextChunk(" *");
6843 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6844 }
6845
6846 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6847 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6848 if (ReturnType.isNull()) {
6849 Builder.AddPlaceholderChunk("object-type");
6850 Builder.AddTextChunk(" *");
6851 } else {
6852 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006853 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006854 Builder.getAllocator()));
6855 }
6856 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6857 Builder.AddTextChunk("object");
6858 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6859 CXCursor_ObjCInstanceMethodDecl));
6860 }
6861 }
6862
6863 // Mutable unordered accessors
6864 // - (void)addKeyObject:(type *)object
6865 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006866 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006867 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006868 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006869 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006870 if (ReturnType.isNull()) {
6871 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6872 Builder.AddTextChunk("void");
6873 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6874 }
6875
6876 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6877 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6878 Builder.AddPlaceholderChunk("object-type");
6879 Builder.AddTextChunk(" *");
6880 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6881 Builder.AddTextChunk("object");
6882 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6883 CXCursor_ObjCInstanceMethodDecl));
6884 }
6885 }
6886
6887 // - (void)addKey:(NSSet *)objects
6888 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006889 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006890 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006891 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006892 if (ReturnType.isNull()) {
6893 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6894 Builder.AddTextChunk("void");
6895 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6896 }
6897
6898 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6899 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6900 Builder.AddTextChunk("NSSet *");
6901 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6902 Builder.AddTextChunk("objects");
6903 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6904 CXCursor_ObjCInstanceMethodDecl));
6905 }
6906 }
6907
6908 // - (void)removeKeyObject:(type *)object
6909 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006910 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006911 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006912 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006913 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006914 if (ReturnType.isNull()) {
6915 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6916 Builder.AddTextChunk("void");
6917 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6918 }
6919
6920 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6921 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6922 Builder.AddPlaceholderChunk("object-type");
6923 Builder.AddTextChunk(" *");
6924 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6925 Builder.AddTextChunk("object");
6926 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6927 CXCursor_ObjCInstanceMethodDecl));
6928 }
6929 }
6930
6931 // - (void)removeKey:(NSSet *)objects
6932 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006933 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006934 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006935 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006936 if (ReturnType.isNull()) {
6937 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6938 Builder.AddTextChunk("void");
6939 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6940 }
6941
6942 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6943 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6944 Builder.AddTextChunk("NSSet *");
6945 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6946 Builder.AddTextChunk("objects");
6947 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6948 CXCursor_ObjCInstanceMethodDecl));
6949 }
6950 }
6951
6952 // - (void)intersectKey:(NSSet *)objects
6953 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006954 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006955 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006956 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006957 if (ReturnType.isNull()) {
6958 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6959 Builder.AddTextChunk("void");
6960 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6961 }
6962
6963 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6964 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6965 Builder.AddTextChunk("NSSet *");
6966 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6967 Builder.AddTextChunk("objects");
6968 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6969 CXCursor_ObjCInstanceMethodDecl));
6970 }
6971 }
6972
6973 // Key-Value Observing
6974 // + (NSSet *)keyPathsForValuesAffectingKey
6975 if (!IsInstanceMethod &&
6976 (ReturnType.isNull() ||
6977 (ReturnType->isObjCObjectPointerType() &&
6978 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6979 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6980 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006981 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006982 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006983 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006984 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6985 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006986 if (ReturnType.isNull()) {
6987 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6988 Builder.AddTextChunk("NSSet *");
6989 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6990 }
6991
6992 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6993 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00006994 CXCursor_ObjCClassMethodDecl));
6995 }
6996 }
6997
6998 // + (BOOL)automaticallyNotifiesObserversForKey
6999 if (!IsInstanceMethod &&
7000 (ReturnType.isNull() ||
7001 ReturnType->isIntegerType() ||
7002 ReturnType->isBooleanType())) {
7003 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007004 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00007005 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007006 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
7007 .second) {
Douglas Gregor857bcda2011-06-02 04:02:27 +00007008 if (ReturnType.isNull()) {
7009 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7010 Builder.AddTextChunk("BOOL");
7011 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7012 }
7013
7014 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
7015 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
7016 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00007017 }
7018 }
7019}
7020
Douglas Gregor636a61e2010-04-07 00:21:17 +00007021void Sema::CodeCompleteObjCMethodDecl(Scope *S,
7022 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007023 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007024 // Determine the return type of the method we're declaring, if
7025 // provided.
7026 QualType ReturnType = GetTypeFromParser(ReturnTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00007027 Decl *IDecl = nullptr;
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007028 if (CurContext->isObjCContainer()) {
7029 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
7030 IDecl = cast<Decl>(OCD);
7031 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007032 // Determine where we should start searching for methods.
Craig Topperc3ec1492014-05-26 06:22:03 +00007033 ObjCContainerDecl *SearchDecl = nullptr;
Douglas Gregor636a61e2010-04-07 00:21:17 +00007034 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00007035 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007036 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
7037 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007038 IsInImplementation = true;
7039 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007040 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007041 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007042 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007043 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00007044 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007045 }
7046
7047 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00007048 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00007049 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007050 }
7051
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007052 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007053 HandleCodeCompleteResults(this, CodeCompleter,
7054 CodeCompletionContext::CCC_Other,
Craig Topperc3ec1492014-05-26 06:22:03 +00007055 nullptr, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007056 return;
7057 }
7058
7059 // Find all of the methods that we could declare/implement here.
7060 KnownMethodsMap KnownMethods;
7061 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007062 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007063
Douglas Gregor636a61e2010-04-07 00:21:17 +00007064 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00007065 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007066 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007067 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007068 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007069 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00007070 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007071 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7072 MEnd = KnownMethods.end();
7073 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007074 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007075 CodeCompletionBuilder Builder(Results.getAllocator(),
7076 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007077
7078 // If the result type was not already provided, add it to the
7079 // pattern as (type).
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007080 if (ReturnType.isNull()) {
7081 QualType ResTy = Method->getSendResultType().stripObjCKindOfType(Context);
7082 AttributedType::stripOuterNullability(ResTy);
7083 AddObjCPassingTypeChunk(ResTy,
Alp Toker314cc812014-01-25 16:55:45 +00007084 Method->getObjCDeclQualifier(), Context, Policy,
7085 Builder);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007086 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007087
7088 Selector Sel = Method->getSelector();
7089
7090 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007091 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007092 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007093
7094 // Add parameters to the pattern.
7095 unsigned I = 0;
7096 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
7097 PEnd = Method->param_end();
7098 P != PEnd; (void)++P, ++I) {
7099 // Add the part of the selector name.
7100 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007101 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007102 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007103 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7104 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007105 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007106 } else
7107 break;
7108
7109 // Add the parameter type.
Douglas Gregor86b42682015-06-19 18:27:52 +00007110 QualType ParamType;
7111 if ((*P)->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
7112 ParamType = (*P)->getType();
7113 else
7114 ParamType = (*P)->getOriginalType();
Douglas Gregor9b7b3e92015-07-07 06:20:27 +00007115 ParamType = ParamType.substObjCTypeArgs(Context, {},
7116 ObjCSubstitutionContext::Parameter);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007117 AttributedType::stripOuterNullability(ParamType);
Douglas Gregor86b42682015-06-19 18:27:52 +00007118 AddObjCPassingTypeChunk(ParamType,
Douglas Gregor29979142012-04-10 18:35:07 +00007119 (*P)->getObjCDeclQualifier(),
7120 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00007121 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007122
7123 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007124 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007125 }
7126
7127 if (Method->isVariadic()) {
7128 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007129 Builder.AddChunk(CodeCompletionString::CK_Comma);
7130 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00007131 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007132
Douglas Gregord37c59d2010-05-28 00:57:46 +00007133 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007134 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007135 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7136 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
7137 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00007138 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007139 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007140 Builder.AddTextChunk("return");
7141 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7142 Builder.AddPlaceholderChunk("expression");
7143 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007144 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007145 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007146
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007147 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
7148 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007149 }
7150
Douglas Gregor416b5752010-08-25 01:08:01 +00007151 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007152 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00007153 Priority += CCD_InBaseClass;
7154
Douglas Gregor78254c82012-03-27 23:34:16 +00007155 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007156 }
7157
Douglas Gregor669a25a2011-02-17 00:22:45 +00007158 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
7159 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00007160 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007161 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00007162 Containers.push_back(SearchDecl);
7163
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007164 VisitedSelectorSet KnownSelectors;
7165 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7166 MEnd = KnownMethods.end();
7167 M != MEnd; ++M)
7168 KnownSelectors.insert(M->first);
7169
7170
Douglas Gregor669a25a2011-02-17 00:22:45 +00007171 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
7172 if (!IFace)
7173 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
7174 IFace = Category->getClassInterface();
7175
Aaron Ballman3fe486a2014-03-13 21:23:55 +00007176 if (IFace)
7177 for (auto *Cat : IFace->visible_categories())
7178 Containers.push_back(Cat);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007179
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007180 for (unsigned I = 0, N = Containers.size(); I != N; ++I)
Manman Rena7a8b1f2016-01-26 18:05:23 +00007181 for (auto *P : Containers[I]->instance_properties())
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007182 AddObjCKeyValueCompletions(P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007183 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007184 }
7185
Douglas Gregor636a61e2010-04-07 00:21:17 +00007186 Results.ExitScope();
7187
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007188 HandleCodeCompleteResults(this, CodeCompleter,
7189 CodeCompletionContext::CCC_Other,
7190 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007191}
Douglas Gregor95887f92010-07-08 23:20:03 +00007192
7193void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
7194 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00007195 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00007196 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007197 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00007198 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00007199 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00007200 if (ExternalSource) {
7201 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
7202 I != N; ++I) {
7203 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00007204 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00007205 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00007206
7207 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00007208 }
7209 }
7210
7211 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00007212 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007213 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007214 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007215 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00007216
7217 if (ReturnTy)
7218 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00007219
Douglas Gregor95887f92010-07-08 23:20:03 +00007220 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00007221 for (GlobalMethodPool::iterator M = MethodPool.begin(),
7222 MEnd = MethodPool.end();
7223 M != MEnd; ++M) {
7224 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
7225 &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00007226 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007227 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00007228 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007229 continue;
7230
Douglas Gregor45879692010-07-08 23:37:41 +00007231 if (AtParameterName) {
7232 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007233 unsigned NumSelIdents = SelIdents.size();
Nico Weber2e0c8f72014-12-27 03:58:08 +00007234 if (NumSelIdents &&
7235 NumSelIdents <= MethList->getMethod()->param_size()) {
7236 ParmVarDecl *Param =
7237 MethList->getMethod()->parameters()[NumSelIdents - 1];
Douglas Gregor45879692010-07-08 23:37:41 +00007238 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007239 CodeCompletionBuilder Builder(Results.getAllocator(),
7240 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007241 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007242 Param->getIdentifier()->getName()));
7243 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007244 }
7245 }
7246
7247 continue;
7248 }
Craig Topperc3ec1492014-05-26 06:22:03 +00007249
Nico Weber2e0c8f72014-12-27 03:58:08 +00007250 Result R(MethList->getMethod(),
7251 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007252 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007253 R.AllParametersAreInformative = false;
7254 R.DeclaringEntity = true;
7255 Results.MaybeAddResult(R, CurContext);
7256 }
7257 }
7258
7259 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007260 HandleCodeCompleteResults(this, CodeCompleter,
7261 CodeCompletionContext::CCC_Other,
7262 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007263}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007264
Douglas Gregorec00a262010-08-24 22:20:20 +00007265void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007266 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007267 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007268 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007269 Results.EnterNewScope();
7270
7271 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007272 CodeCompletionBuilder Builder(Results.getAllocator(),
7273 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007274 Builder.AddTypedTextChunk("if");
7275 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7276 Builder.AddPlaceholderChunk("condition");
7277 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007278
7279 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007280 Builder.AddTypedTextChunk("ifdef");
7281 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7282 Builder.AddPlaceholderChunk("macro");
7283 Results.AddResult(Builder.TakeString());
7284
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007285 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007286 Builder.AddTypedTextChunk("ifndef");
7287 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7288 Builder.AddPlaceholderChunk("macro");
7289 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007290
7291 if (InConditional) {
7292 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007293 Builder.AddTypedTextChunk("elif");
7294 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7295 Builder.AddPlaceholderChunk("condition");
7296 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007297
7298 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007299 Builder.AddTypedTextChunk("else");
7300 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007301
7302 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007303 Builder.AddTypedTextChunk("endif");
7304 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007305 }
7306
7307 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007308 Builder.AddTypedTextChunk("include");
7309 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7310 Builder.AddTextChunk("\"");
7311 Builder.AddPlaceholderChunk("header");
7312 Builder.AddTextChunk("\"");
7313 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007314
7315 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007316 Builder.AddTypedTextChunk("include");
7317 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7318 Builder.AddTextChunk("<");
7319 Builder.AddPlaceholderChunk("header");
7320 Builder.AddTextChunk(">");
7321 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007322
7323 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007324 Builder.AddTypedTextChunk("define");
7325 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7326 Builder.AddPlaceholderChunk("macro");
7327 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007328
7329 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007330 Builder.AddTypedTextChunk("define");
7331 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7332 Builder.AddPlaceholderChunk("macro");
7333 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7334 Builder.AddPlaceholderChunk("args");
7335 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7336 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007337
7338 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007339 Builder.AddTypedTextChunk("undef");
7340 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7341 Builder.AddPlaceholderChunk("macro");
7342 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007343
7344 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007345 Builder.AddTypedTextChunk("line");
7346 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7347 Builder.AddPlaceholderChunk("number");
7348 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007349
7350 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007351 Builder.AddTypedTextChunk("line");
7352 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7353 Builder.AddPlaceholderChunk("number");
7354 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7355 Builder.AddTextChunk("\"");
7356 Builder.AddPlaceholderChunk("filename");
7357 Builder.AddTextChunk("\"");
7358 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007359
7360 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007361 Builder.AddTypedTextChunk("error");
7362 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7363 Builder.AddPlaceholderChunk("message");
7364 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007365
7366 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007367 Builder.AddTypedTextChunk("pragma");
7368 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7369 Builder.AddPlaceholderChunk("arguments");
7370 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007371
David Blaikiebbafb8a2012-03-11 07:00:24 +00007372 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007373 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007374 Builder.AddTypedTextChunk("import");
7375 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7376 Builder.AddTextChunk("\"");
7377 Builder.AddPlaceholderChunk("header");
7378 Builder.AddTextChunk("\"");
7379 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007380
7381 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007382 Builder.AddTypedTextChunk("import");
7383 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7384 Builder.AddTextChunk("<");
7385 Builder.AddPlaceholderChunk("header");
7386 Builder.AddTextChunk(">");
7387 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007388 }
7389
7390 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007391 Builder.AddTypedTextChunk("include_next");
7392 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7393 Builder.AddTextChunk("\"");
7394 Builder.AddPlaceholderChunk("header");
7395 Builder.AddTextChunk("\"");
7396 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007397
7398 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007399 Builder.AddTypedTextChunk("include_next");
7400 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7401 Builder.AddTextChunk("<");
7402 Builder.AddPlaceholderChunk("header");
7403 Builder.AddTextChunk(">");
7404 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007405
7406 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007407 Builder.AddTypedTextChunk("warning");
7408 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7409 Builder.AddPlaceholderChunk("message");
7410 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007411
7412 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7413 // completions for them. And __include_macros is a Clang-internal extension
7414 // that we don't want to encourage anyone to use.
7415
7416 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7417 Results.ExitScope();
7418
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007419 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007420 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007421 Results.data(), Results.size());
7422}
7423
7424void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007425 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007426 S->getFnParent()? Sema::PCC_RecoveryInFunction
7427 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007428}
7429
Douglas Gregorec00a262010-08-24 22:20:20 +00007430void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007431 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007432 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007433 IsDefinition? CodeCompletionContext::CCC_MacroName
7434 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007435 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7436 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007437 CodeCompletionBuilder Builder(Results.getAllocator(),
7438 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007439 Results.EnterNewScope();
7440 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7441 MEnd = PP.macro_end();
7442 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007443 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007444 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007445 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7446 CCP_CodePattern,
7447 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007448 }
7449 Results.ExitScope();
7450 } else if (IsDefinition) {
7451 // FIXME: Can we detect when the user just wrote an include guard above?
7452 }
7453
Douglas Gregor0ac41382010-09-23 23:01:17 +00007454 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007455 Results.data(), Results.size());
7456}
7457
Douglas Gregorec00a262010-08-24 22:20:20 +00007458void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007459 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007460 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007461 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007462
7463 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007464 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007465
7466 // defined (<macro>)
7467 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007468 CodeCompletionBuilder Builder(Results.getAllocator(),
7469 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007470 Builder.AddTypedTextChunk("defined");
7471 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7472 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7473 Builder.AddPlaceholderChunk("macro");
7474 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7475 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007476 Results.ExitScope();
7477
7478 HandleCodeCompleteResults(this, CodeCompleter,
7479 CodeCompletionContext::CCC_PreprocessorExpression,
7480 Results.data(), Results.size());
7481}
7482
7483void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7484 IdentifierInfo *Macro,
7485 MacroInfo *MacroInfo,
7486 unsigned Argument) {
7487 // FIXME: In the future, we could provide "overload" results, much like we
7488 // do for function calls.
7489
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007490 // Now just ignore this. There will be another code-completion callback
7491 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007492}
7493
Douglas Gregor11583702010-08-25 17:04:25 +00007494void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007495 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007496 CodeCompletionContext::CCC_NaturalLanguage,
Craig Topperc3ec1492014-05-26 06:22:03 +00007497 nullptr, 0);
Douglas Gregor11583702010-08-25 17:04:25 +00007498}
7499
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007500void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007501 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007502 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007503 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7504 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007505 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7506 CodeCompletionDeclConsumer Consumer(Builder,
7507 Context.getTranslationUnitDecl());
7508 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7509 Consumer);
7510 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007511
7512 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007513 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007514
7515 Results.clear();
7516 Results.insert(Results.end(),
7517 Builder.data(), Builder.data() + Builder.size());
7518}