blob: 20a1eb1a6bc42b95f863e6c6d6cc11fad2f2d625 [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
Douglas Gregor7c208612010-01-14 00:20:49 +0000497 ND = ND->getUnderlyingDecl();
Douglas Gregor58acf322009-10-09 22:16:47 +0000498
499 // Skip unnamed entities.
Douglas Gregor7c208612010-01-14 00:20:49 +0000500 if (!ND->getDeclName())
501 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000502
503 // Friend declarations and declarations introduced due to friends are never
504 // added as results.
Richard Smith6eece292015-01-15 02:27:20 +0000505 if (ND->getFriendObjectKind() == Decl::FOK_Undeclared)
Douglas Gregor7c208612010-01-14 00:20:49 +0000506 return false;
507
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000508 // Class template (partial) specializations are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000509 if (isa<ClassTemplateSpecializationDecl>(ND) ||
510 isa<ClassTemplatePartialSpecializationDecl>(ND))
511 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000512
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000513 // Using declarations themselves are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000514 if (isa<UsingDecl>(ND))
515 return false;
516
517 // Some declarations have reserved names that we don't want to ever show.
Alp Toker034bbd52014-06-30 01:33:53 +0000518 // Filter out names reserved for the implementation if they come from a
519 // system header.
520 // TODO: Add a predicate for this.
521 if (const IdentifierInfo *Id = ND->getIdentifier())
522 if (isReservedName(Id) &&
523 (ND->getLocation().isInvalid() ||
524 SemaRef.SourceMgr.isInSystemHeader(
525 SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))))
Douglas Gregor7c208612010-01-14 00:20:49 +0000526 return false;
Douglas Gregor2927c0c2010-11-09 03:59:40 +0000527
Douglas Gregor59cab552010-08-16 23:05:20 +0000528 if (Filter == &ResultBuilder::IsNestedNameSpecifier ||
529 ((isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) &&
530 Filter != &ResultBuilder::IsNamespace &&
Douglas Gregor0ac41382010-09-23 23:01:17 +0000531 Filter != &ResultBuilder::IsNamespaceOrAlias &&
Craig Topperc3ec1492014-05-26 06:22:03 +0000532 Filter != nullptr))
Douglas Gregor59cab552010-08-16 23:05:20 +0000533 AsNestedNameSpecifier = true;
534
Douglas Gregor3545ff42009-09-21 16:56:56 +0000535 // Filter out any unwanted results.
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000536 if (Filter && !(this->*Filter)(ND)) {
537 // Check whether it is interesting as a nested-name-specifier.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000538 if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus &&
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000539 IsNestedNameSpecifier(ND) &&
540 (Filter != &ResultBuilder::IsMember ||
541 (isa<CXXRecordDecl>(ND) &&
542 cast<CXXRecordDecl>(ND)->isInjectedClassName()))) {
543 AsNestedNameSpecifier = true;
544 return true;
545 }
546
Douglas Gregor7c208612010-01-14 00:20:49 +0000547 return false;
Douglas Gregor59cab552010-08-16 23:05:20 +0000548 }
Douglas Gregor7c208612010-01-14 00:20:49 +0000549 // ... then it must be interesting!
550 return true;
551}
552
Douglas Gregore0717ab2010-01-14 00:41:07 +0000553bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000554 const NamedDecl *Hiding) {
Douglas Gregore0717ab2010-01-14 00:41:07 +0000555 // In C, there is no way to refer to a hidden name.
556 // FIXME: This isn't true; we can find a tag name hidden by an ordinary
557 // name if we introduce the tag type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000558 if (!SemaRef.getLangOpts().CPlusPlus)
Douglas Gregore0717ab2010-01-14 00:41:07 +0000559 return true;
560
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000561 const DeclContext *HiddenCtx =
562 R.Declaration->getDeclContext()->getRedeclContext();
Douglas Gregore0717ab2010-01-14 00:41:07 +0000563
564 // There is no way to qualify a name declared in a function or method.
565 if (HiddenCtx->isFunctionOrMethod())
566 return true;
567
Sebastian Redl50c68252010-08-31 00:36:30 +0000568 if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext())
Douglas Gregore0717ab2010-01-14 00:41:07 +0000569 return true;
570
571 // We can refer to the result with the appropriate qualification. Do it.
572 R.Hidden = true;
573 R.QualifierIsInformative = false;
574
575 if (!R.Qualifier)
576 R.Qualifier = getRequiredQualification(SemaRef.Context,
577 CurContext,
578 R.Declaration->getDeclContext());
579 return false;
580}
581
Douglas Gregor95887f92010-07-08 23:20:03 +0000582/// \brief A simplified classification of types used to determine whether two
583/// types are "similar enough" when adjusting priorities.
Douglas Gregor6e240332010-08-16 16:18:59 +0000584SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000585 switch (T->getTypeClass()) {
586 case Type::Builtin:
587 switch (cast<BuiltinType>(T)->getKind()) {
588 case BuiltinType::Void:
589 return STC_Void;
590
591 case BuiltinType::NullPtr:
592 return STC_Pointer;
593
594 case BuiltinType::Overload:
595 case BuiltinType::Dependent:
Douglas Gregor95887f92010-07-08 23:20:03 +0000596 return STC_Other;
597
598 case BuiltinType::ObjCId:
599 case BuiltinType::ObjCClass:
600 case BuiltinType::ObjCSel:
601 return STC_ObjectiveC;
602
603 default:
604 return STC_Arithmetic;
605 }
David Blaikie8a40f702012-01-17 06:56:22 +0000606
Douglas Gregor95887f92010-07-08 23:20:03 +0000607 case Type::Complex:
608 return STC_Arithmetic;
609
610 case Type::Pointer:
611 return STC_Pointer;
612
613 case Type::BlockPointer:
614 return STC_Block;
615
616 case Type::LValueReference:
617 case Type::RValueReference:
618 return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType());
619
620 case Type::ConstantArray:
621 case Type::IncompleteArray:
622 case Type::VariableArray:
623 case Type::DependentSizedArray:
624 return STC_Array;
625
626 case Type::DependentSizedExtVector:
627 case Type::Vector:
628 case Type::ExtVector:
629 return STC_Arithmetic;
630
631 case Type::FunctionProto:
632 case Type::FunctionNoProto:
633 return STC_Function;
634
635 case Type::Record:
636 return STC_Record;
637
638 case Type::Enum:
639 return STC_Arithmetic;
640
641 case Type::ObjCObject:
642 case Type::ObjCInterface:
643 case Type::ObjCObjectPointer:
644 return STC_ObjectiveC;
645
646 default:
647 return STC_Other;
648 }
649}
650
651/// \brief Get the type that a given expression will have if this declaration
652/// is used as an expression in its "typical" code-completion form.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000653QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000654 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
655
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000656 if (const TypeDecl *Type = dyn_cast<TypeDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000657 return C.getTypeDeclType(Type);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000658 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000659 return C.getObjCInterfaceType(Iface);
660
661 QualType T;
Alp Tokera2794f92014-01-22 07:29:52 +0000662 if (const FunctionDecl *Function = ND->getAsFunction())
Douglas Gregor603d81b2010-07-13 08:18:22 +0000663 T = Function->getCallResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000664 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Douglas Gregor603d81b2010-07-13 08:18:22 +0000665 T = Method->getSendResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000666 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000667 T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext()));
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000668 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000669 T = Property->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000670 else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000671 T = Value->getType();
672 else
673 return QualType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000674
675 // Dig through references, function pointers, and block pointers to
676 // get down to the likely type of an expression when the entity is
677 // used.
678 do {
679 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) {
680 T = Ref->getPointeeType();
681 continue;
682 }
683
684 if (const PointerType *Pointer = T->getAs<PointerType>()) {
685 if (Pointer->getPointeeType()->isFunctionType()) {
686 T = Pointer->getPointeeType();
687 continue;
688 }
689
690 break;
691 }
692
693 if (const BlockPointerType *Block = T->getAs<BlockPointerType>()) {
694 T = Block->getPointeeType();
695 continue;
696 }
697
698 if (const FunctionType *Function = T->getAs<FunctionType>()) {
Alp Toker314cc812014-01-25 16:55:45 +0000699 T = Function->getReturnType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000700 continue;
701 }
702
703 break;
704 } while (true);
705
706 return T;
Douglas Gregor95887f92010-07-08 23:20:03 +0000707}
708
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000709unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) {
710 if (!ND)
711 return CCP_Unlikely;
712
713 // Context-based decisions.
Richard Smith541b38b2013-09-20 01:15:31 +0000714 const DeclContext *LexicalDC = ND->getLexicalDeclContext();
715 if (LexicalDC->isFunctionOrMethod()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000716 // _cmd is relatively rare
717 if (const ImplicitParamDecl *ImplicitParam =
718 dyn_cast<ImplicitParamDecl>(ND))
719 if (ImplicitParam->getIdentifier() &&
720 ImplicitParam->getIdentifier()->isStr("_cmd"))
721 return CCP_ObjC_cmd;
722
723 return CCP_LocalDeclaration;
724 }
Richard Smith541b38b2013-09-20 01:15:31 +0000725
726 const DeclContext *DC = ND->getDeclContext()->getRedeclContext();
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000727 if (DC->isRecord() || isa<ObjCContainerDecl>(DC))
728 return CCP_MemberDeclaration;
729
730 // Content-based decisions.
731 if (isa<EnumConstantDecl>(ND))
732 return CCP_Constant;
733
Douglas Gregor52e0de42013-01-31 05:03:46 +0000734 // Use CCP_Type for type declarations unless we're in a statement, Objective-C
735 // message receiver, or parenthesized expression context. There, it's as
736 // likely that the user will want to write a type as other declarations.
737 if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
738 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
739 CompletionContext.getKind()
740 == CodeCompletionContext::CCC_ObjCMessageReceiver ||
741 CompletionContext.getKind()
742 == CodeCompletionContext::CCC_ParenthesizedExpression))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000743 return CCP_Type;
744
745 return CCP_Declaration;
746}
747
Douglas Gregor50832e02010-09-20 22:39:41 +0000748void ResultBuilder::AdjustResultPriorityForDecl(Result &R) {
749 // If this is an Objective-C method declaration whose selector matches our
750 // preferred selector, give it a priority boost.
751 if (!PreferredSelector.isNull())
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000752 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration))
Douglas Gregor50832e02010-09-20 22:39:41 +0000753 if (PreferredSelector == Method->getSelector())
754 R.Priority += CCD_SelectorMatch;
Douglas Gregor5fb901d2010-09-20 23:11:55 +0000755
Douglas Gregor50832e02010-09-20 22:39:41 +0000756 // If we have a preferred type, adjust the priority for results with exactly-
757 // matching or nearly-matching types.
758 if (!PreferredType.isNull()) {
759 QualType T = getDeclUsageType(SemaRef.Context, R.Declaration);
760 if (!T.isNull()) {
761 CanQualType TC = SemaRef.Context.getCanonicalType(T);
762 // Check for exactly-matching types (modulo qualifiers).
763 if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
764 R.Priority /= CCF_ExactTypeMatch;
765 // Check for nearly-matching types, based on classification of each.
766 else if ((getSimplifiedTypeClass(PreferredType)
Douglas Gregor95887f92010-07-08 23:20:03 +0000767 == getSimplifiedTypeClass(TC)) &&
Douglas Gregor50832e02010-09-20 22:39:41 +0000768 !(PreferredType->isEnumeralType() && TC->isEnumeralType()))
769 R.Priority /= CCF_SimilarTypeMatch;
770 }
771 }
Douglas Gregor95887f92010-07-08 23:20:03 +0000772}
773
Douglas Gregor0212fd72010-09-21 16:06:22 +0000774void ResultBuilder::MaybeAddConstructorResults(Result R) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000775 if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration ||
Douglas Gregor0212fd72010-09-21 16:06:22 +0000776 !CompletionContext.wantConstructorResults())
777 return;
778
779 ASTContext &Context = SemaRef.Context;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000780 const NamedDecl *D = R.Declaration;
Craig Topperc3ec1492014-05-26 06:22:03 +0000781 const CXXRecordDecl *Record = nullptr;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000782 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D))
Douglas Gregor0212fd72010-09-21 16:06:22 +0000783 Record = ClassTemplate->getTemplatedDecl();
784 else if ((Record = dyn_cast<CXXRecordDecl>(D))) {
785 // Skip specializations and partial specializations.
786 if (isa<ClassTemplateSpecializationDecl>(Record))
787 return;
788 } else {
789 // There are no constructors here.
790 return;
791 }
792
793 Record = Record->getDefinition();
794 if (!Record)
795 return;
796
797
798 QualType RecordTy = Context.getTypeDeclType(Record);
799 DeclarationName ConstructorName
800 = Context.DeclarationNames.getCXXConstructorName(
801 Context.getCanonicalType(RecordTy));
Richard Smithcf4bdde2015-02-21 02:45:19 +0000802 DeclContext::lookup_result Ctors = Record->lookup(ConstructorName);
803 for (DeclContext::lookup_iterator I = Ctors.begin(),
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000804 E = Ctors.end();
805 I != E; ++I) {
David Blaikieff7d47a2012-12-19 00:45:41 +0000806 R.Declaration = *I;
Douglas Gregor0212fd72010-09-21 16:06:22 +0000807 R.CursorKind = getCursorKindForDecl(R.Declaration);
808 Results.push_back(R);
809 }
810}
811
Douglas Gregor7c208612010-01-14 00:20:49 +0000812void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) {
813 assert(!ShadowMaps.empty() && "Must enter into a results scope");
814
815 if (R.Kind != Result::RK_Declaration) {
816 // For non-declaration results, just add the result.
817 Results.push_back(R);
818 return;
819 }
820
821 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000822 if (const UsingShadowDecl *Using =
823 dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000824 MaybeAddResult(Result(Using->getTargetDecl(),
825 getBasePriority(Using->getTargetDecl()),
826 R.Qualifier),
827 CurContext);
Douglas Gregor7c208612010-01-14 00:20:49 +0000828 return;
829 }
830
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000831 const Decl *CanonDecl = R.Declaration->getCanonicalDecl();
Douglas Gregor7c208612010-01-14 00:20:49 +0000832 unsigned IDNS = CanonDecl->getIdentifierNamespace();
833
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000834 bool AsNestedNameSpecifier = false;
835 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregor7c208612010-01-14 00:20:49 +0000836 return;
837
Douglas Gregor0212fd72010-09-21 16:06:22 +0000838 // C++ constructors are never found by name lookup.
839 if (isa<CXXConstructorDecl>(R.Declaration))
840 return;
841
Douglas Gregor3545ff42009-09-21 16:56:56 +0000842 ShadowMap &SMap = ShadowMaps.back();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000843 ShadowMapEntry::iterator I, IEnd;
844 ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
845 if (NamePos != SMap.end()) {
846 I = NamePos->second.begin();
847 IEnd = NamePos->second.end();
848 }
849
850 for (; I != IEnd; ++I) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000851 const NamedDecl *ND = I->first;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000852 unsigned Index = I->second;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000853 if (ND->getCanonicalDecl() == CanonDecl) {
854 // This is a redeclaration. Always pick the newer declaration.
Douglas Gregor3545ff42009-09-21 16:56:56 +0000855 Results[Index].Declaration = R.Declaration;
856
Douglas Gregor3545ff42009-09-21 16:56:56 +0000857 // We're done.
858 return;
859 }
860 }
861
862 // This is a new declaration in this scope. However, check whether this
863 // declaration name is hidden by a similarly-named declaration in an outer
864 // scope.
865 std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end();
866 --SMEnd;
867 for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000868 ShadowMapEntry::iterator I, IEnd;
869 ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName());
870 if (NamePos != SM->end()) {
871 I = NamePos->second.begin();
872 IEnd = NamePos->second.end();
873 }
874 for (; I != IEnd; ++I) {
Douglas Gregor3545ff42009-09-21 16:56:56 +0000875 // A tag declaration does not hide a non-tag declaration.
John McCalle87beb22010-04-23 18:46:30 +0000876 if (I->first->hasTagIdentifierNamespace() &&
Richard Smith541b38b2013-09-20 01:15:31 +0000877 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
878 Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol)))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000879 continue;
880
881 // Protocols are in distinct namespaces from everything else.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000882 if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000883 || (IDNS & Decl::IDNS_ObjCProtocol)) &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000884 I->first->getIdentifierNamespace() != IDNS)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000885 continue;
886
887 // The newly-added result is hidden by an entry in the shadow map.
Douglas Gregore0717ab2010-01-14 00:41:07 +0000888 if (CheckHiddenResult(R, CurContext, I->first))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000889 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000890
891 break;
892 }
893 }
894
895 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000896 if (!AllDeclsFound.insert(CanonDecl).second)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000897 return;
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000898
Douglas Gregore412a5a2009-09-23 22:26:46 +0000899 // If the filter is for nested-name-specifiers, then this result starts a
900 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000901 if (AsNestedNameSpecifier) {
Douglas Gregore412a5a2009-09-23 22:26:46 +0000902 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000903 R.Priority = CCP_NestedNameSpecifier;
Douglas Gregor50832e02010-09-20 22:39:41 +0000904 } else
905 AdjustResultPriorityForDecl(R);
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000906
Douglas Gregor5bf52692009-09-22 23:15:58 +0000907 // If this result is supposed to have an informative qualifier, add one.
Douglas Gregore412a5a2009-09-23 22:26:46 +0000908 if (R.QualifierIsInformative && !R.Qualifier &&
909 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000910 const DeclContext *Ctx = R.Declaration->getDeclContext();
911 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000912 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
913 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000914 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000915 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
916 false, SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregor5bf52692009-09-22 23:15:58 +0000917 else
918 R.QualifierIsInformative = false;
919 }
Douglas Gregore412a5a2009-09-23 22:26:46 +0000920
Douglas Gregor3545ff42009-09-21 16:56:56 +0000921 // Insert this result into the set of results and into the current shadow
922 // map.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000923 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
Douglas Gregor3545ff42009-09-21 16:56:56 +0000924 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +0000925
926 if (!AsNestedNameSpecifier)
927 MaybeAddConstructorResults(R);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000928}
929
Douglas Gregorc580c522010-01-14 01:09:38 +0000930void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
Douglas Gregor09bbc652010-01-14 15:47:35 +0000931 NamedDecl *Hiding, bool InBaseClass = false) {
Douglas Gregor78a21012010-01-14 16:01:26 +0000932 if (R.Kind != Result::RK_Declaration) {
933 // For non-declaration results, just add the result.
934 Results.push_back(R);
935 return;
936 }
937
Douglas Gregorc580c522010-01-14 01:09:38 +0000938 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000939 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000940 AddResult(Result(Using->getTargetDecl(),
941 getBasePriority(Using->getTargetDecl()),
942 R.Qualifier),
943 CurContext, Hiding);
Douglas Gregorc580c522010-01-14 01:09:38 +0000944 return;
945 }
946
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000947 bool AsNestedNameSpecifier = false;
948 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregorc580c522010-01-14 01:09:38 +0000949 return;
950
Douglas Gregor0212fd72010-09-21 16:06:22 +0000951 // C++ constructors are never found by name lookup.
952 if (isa<CXXConstructorDecl>(R.Declaration))
953 return;
954
Douglas Gregorc580c522010-01-14 01:09:38 +0000955 if (Hiding && CheckHiddenResult(R, CurContext, Hiding))
956 return;
Nick Lewyckyc3921482012-04-03 21:44:08 +0000957
Douglas Gregorc580c522010-01-14 01:09:38 +0000958 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000959 if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second)
Douglas Gregorc580c522010-01-14 01:09:38 +0000960 return;
961
962 // If the filter is for nested-name-specifiers, then this result starts a
963 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000964 if (AsNestedNameSpecifier) {
Douglas Gregorc580c522010-01-14 01:09:38 +0000965 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000966 R.Priority = CCP_NestedNameSpecifier;
967 }
Douglas Gregor09bbc652010-01-14 15:47:35 +0000968 else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass &&
969 isa<CXXRecordDecl>(R.Declaration->getDeclContext()
Sebastian Redl50c68252010-08-31 00:36:30 +0000970 ->getRedeclContext()))
Douglas Gregor09bbc652010-01-14 15:47:35 +0000971 R.QualifierIsInformative = true;
972
Douglas Gregorc580c522010-01-14 01:09:38 +0000973 // If this result is supposed to have an informative qualifier, add one.
974 if (R.QualifierIsInformative && !R.Qualifier &&
975 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000976 const DeclContext *Ctx = R.Declaration->getDeclContext();
977 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000978 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
979 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000980 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000981 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr, false,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000982 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregorc580c522010-01-14 01:09:38 +0000983 else
984 R.QualifierIsInformative = false;
985 }
986
Douglas Gregora2db7932010-05-26 22:00:08 +0000987 // Adjust the priority if this result comes from a base class.
988 if (InBaseClass)
989 R.Priority += CCD_InBaseClass;
990
Douglas Gregor50832e02010-09-20 22:39:41 +0000991 AdjustResultPriorityForDecl(R);
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000992
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000993 if (HasObjectTypeQualifiers)
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000994 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration))
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000995 if (Method->isInstance()) {
996 Qualifiers MethodQuals
997 = Qualifiers::fromCVRMask(Method->getTypeQualifiers());
998 if (ObjectTypeQualifiers == MethodQuals)
999 R.Priority += CCD_ObjectQualifierMatch;
1000 else if (ObjectTypeQualifiers - MethodQuals) {
1001 // The method cannot be invoked, because doing so would drop
1002 // qualifiers.
1003 return;
1004 }
1005 }
1006
Douglas Gregorc580c522010-01-14 01:09:38 +00001007 // Insert this result into the set of results.
1008 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +00001009
1010 if (!AsNestedNameSpecifier)
1011 MaybeAddConstructorResults(R);
Douglas Gregorc580c522010-01-14 01:09:38 +00001012}
1013
Douglas Gregor78a21012010-01-14 16:01:26 +00001014void ResultBuilder::AddResult(Result R) {
1015 assert(R.Kind != Result::RK_Declaration &&
1016 "Declaration results need more context");
1017 Results.push_back(R);
1018}
1019
Douglas Gregor3545ff42009-09-21 16:56:56 +00001020/// \brief Enter into a new scope.
Benjamin Kramer3204b152015-05-29 19:42:19 +00001021void ResultBuilder::EnterNewScope() { ShadowMaps.emplace_back(); }
Douglas Gregor3545ff42009-09-21 16:56:56 +00001022
1023/// \brief Exit from the current scope.
1024void ResultBuilder::ExitScope() {
Douglas Gregor05e7ca32009-12-06 20:23:50 +00001025 for (ShadowMap::iterator E = ShadowMaps.back().begin(),
1026 EEnd = ShadowMaps.back().end();
1027 E != EEnd;
1028 ++E)
1029 E->second.Destroy();
1030
Douglas Gregor3545ff42009-09-21 16:56:56 +00001031 ShadowMaps.pop_back();
1032}
1033
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001034/// \brief Determines whether this given declaration will be found by
1035/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001036bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001037 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1038
Richard Smith541b38b2013-09-20 01:15:31 +00001039 // If name lookup finds a local extern declaration, then we are in a
1040 // context where it behaves like an ordinary name.
1041 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001042 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001043 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001044 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001045 if (isa<ObjCIvarDecl>(ND))
1046 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001047 }
1048
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001049 return ND->getIdentifierNamespace() & IDNS;
1050}
1051
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001052/// \brief Determines whether this given declaration will be found by
Douglas Gregor70febae2010-05-28 00:49:12 +00001053/// ordinary name lookup but is not a type name.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001054bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001055 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1056 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
1057 return false;
1058
Richard Smith541b38b2013-09-20 01:15:31 +00001059 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001060 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001061 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001062 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001063 if (isa<ObjCIvarDecl>(ND))
1064 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001065 }
1066
Douglas Gregor70febae2010-05-28 00:49:12 +00001067 return ND->getIdentifierNamespace() & IDNS;
1068}
1069
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001070bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const {
Douglas Gregor85b50632010-07-28 21:50:18 +00001071 if (!IsOrdinaryNonTypeName(ND))
1072 return 0;
1073
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001074 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
Douglas Gregor85b50632010-07-28 21:50:18 +00001075 if (VD->getType()->isIntegralOrEnumerationType())
1076 return true;
1077
1078 return false;
1079}
1080
Douglas Gregor70febae2010-05-28 00:49:12 +00001081/// \brief Determines whether this given declaration will be found by
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001082/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001083bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001084 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1085
Richard Smith541b38b2013-09-20 01:15:31 +00001086 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001087 if (SemaRef.getLangOpts().CPlusPlus)
John McCalle87beb22010-04-23 18:46:30 +00001088 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001089
1090 return (ND->getIdentifierNamespace() & IDNS) &&
Douglas Gregor70febae2010-05-28 00:49:12 +00001091 !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) &&
1092 !isa<ObjCPropertyDecl>(ND);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001093}
1094
Douglas Gregor3545ff42009-09-21 16:56:56 +00001095/// \brief Determines whether the given declaration is suitable as the
1096/// start of a C++ nested-name-specifier, e.g., a class or namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001097bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001098 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001099 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001100 ND = ClassTemplate->getTemplatedDecl();
1101
1102 return SemaRef.isAcceptableNestedNameSpecifier(ND);
1103}
1104
1105/// \brief Determines whether the given declaration is an enumeration.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001106bool ResultBuilder::IsEnum(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001107 return isa<EnumDecl>(ND);
1108}
1109
1110/// \brief Determines whether the given declaration is a class or struct.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001111bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001112 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001113 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001114 ND = ClassTemplate->getTemplatedDecl();
Joao Matosdc86f942012-08-31 18:45:21 +00001115
1116 // For purposes of this check, interfaces match too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001117 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001118 return RD->getTagKind() == TTK_Class ||
Joao Matosdc86f942012-08-31 18:45:21 +00001119 RD->getTagKind() == TTK_Struct ||
1120 RD->getTagKind() == TTK_Interface;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001121
1122 return false;
1123}
1124
1125/// \brief Determines whether the given declaration is a union.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001126bool ResultBuilder::IsUnion(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001127 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001128 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001129 ND = ClassTemplate->getTemplatedDecl();
1130
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001131 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001132 return RD->getTagKind() == TTK_Union;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001133
1134 return false;
1135}
1136
1137/// \brief Determines whether the given declaration is a namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001138bool ResultBuilder::IsNamespace(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001139 return isa<NamespaceDecl>(ND);
1140}
1141
1142/// \brief Determines whether the given declaration is a namespace or
1143/// namespace alias.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001144bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001145 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
1146}
1147
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001148/// \brief Determines whether the given declaration is a type.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001149bool ResultBuilder::IsType(const NamedDecl *ND) const {
1150 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fa2642010-08-24 01:06:58 +00001151 ND = Using->getTargetDecl();
1152
1153 return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor3545ff42009-09-21 16:56:56 +00001154}
1155
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001156/// \brief Determines which members of a class should be visible via
1157/// "." or "->". Only value declarations, nested name specifiers, and
1158/// using declarations thereof should show up.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001159bool ResultBuilder::IsMember(const NamedDecl *ND) const {
1160 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001161 ND = Using->getTargetDecl();
1162
Douglas Gregor70788392009-12-11 18:14:22 +00001163 return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) ||
1164 isa<ObjCPropertyDecl>(ND);
Douglas Gregore412a5a2009-09-23 22:26:46 +00001165}
1166
Douglas Gregora817a192010-05-27 23:06:34 +00001167static bool isObjCReceiverType(ASTContext &C, QualType T) {
1168 T = C.getCanonicalType(T);
1169 switch (T->getTypeClass()) {
1170 case Type::ObjCObject:
1171 case Type::ObjCInterface:
1172 case Type::ObjCObjectPointer:
1173 return true;
1174
1175 case Type::Builtin:
1176 switch (cast<BuiltinType>(T)->getKind()) {
1177 case BuiltinType::ObjCId:
1178 case BuiltinType::ObjCClass:
1179 case BuiltinType::ObjCSel:
1180 return true;
1181
1182 default:
1183 break;
1184 }
1185 return false;
1186
1187 default:
1188 break;
1189 }
1190
David Blaikiebbafb8a2012-03-11 07:00:24 +00001191 if (!C.getLangOpts().CPlusPlus)
Douglas Gregora817a192010-05-27 23:06:34 +00001192 return false;
1193
1194 // FIXME: We could perform more analysis here to determine whether a
1195 // particular class type has any conversions to Objective-C types. For now,
1196 // just accept all class types.
1197 return T->isDependentType() || T->isRecordType();
1198}
1199
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001200bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const {
Douglas Gregora817a192010-05-27 23:06:34 +00001201 QualType T = getDeclUsageType(SemaRef.Context, ND);
1202 if (T.isNull())
1203 return false;
1204
1205 T = SemaRef.Context.getBaseElementType(T);
1206 return isObjCReceiverType(SemaRef.Context, T);
1207}
1208
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001209bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const {
Douglas Gregord8c61782012-02-15 15:34:24 +00001210 if (IsObjCMessageReceiver(ND))
1211 return true;
1212
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001213 const VarDecl *Var = dyn_cast<VarDecl>(ND);
Douglas Gregord8c61782012-02-15 15:34:24 +00001214 if (!Var)
1215 return false;
1216
1217 return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>();
1218}
1219
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001220bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001221 if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) ||
1222 (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND)))
Douglas Gregor68762e72010-08-23 21:17:50 +00001223 return false;
1224
1225 QualType T = getDeclUsageType(SemaRef.Context, ND);
1226 if (T.isNull())
1227 return false;
1228
1229 T = SemaRef.Context.getBaseElementType(T);
1230 return T->isObjCObjectType() || T->isObjCObjectPointerType() ||
1231 T->isObjCIdType() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001232 (SemaRef.getLangOpts().CPlusPlus && T->isRecordType());
Douglas Gregor68762e72010-08-23 21:17:50 +00001233}
Douglas Gregora817a192010-05-27 23:06:34 +00001234
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001235bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001236 return false;
1237}
1238
James Dennettf1243872012-06-17 05:33:25 +00001239/// \brief Determines whether the given declaration is an Objective-C
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001240/// instance variable.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001241bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const {
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001242 return isa<ObjCIvarDecl>(ND);
1243}
1244
Douglas Gregorc580c522010-01-14 01:09:38 +00001245namespace {
1246 /// \brief Visible declaration consumer that adds a code-completion result
1247 /// for each visible declaration.
1248 class CodeCompletionDeclConsumer : public VisibleDeclConsumer {
1249 ResultBuilder &Results;
1250 DeclContext *CurContext;
1251
1252 public:
1253 CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext)
1254 : Results(Results), CurContext(CurContext) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00001255
1256 void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1257 bool InBaseClass) override {
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001258 bool Accessible = true;
Douglas Gregor03ba1882011-11-03 16:51:37 +00001259 if (Ctx)
1260 Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx);
Craig Topperc3ec1492014-05-26 06:22:03 +00001261
1262 ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr,
1263 false, Accessible);
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001264 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +00001265 }
1266 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001267}
Douglas Gregorc580c522010-01-14 01:09:38 +00001268
Douglas Gregor3545ff42009-09-21 16:56:56 +00001269/// \brief Add type specifiers for the current language as keyword results.
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001270static void AddTypeSpecifierResults(const LangOptions &LangOpts,
Douglas Gregor3545ff42009-09-21 16:56:56 +00001271 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001272 typedef CodeCompletionResult Result;
Douglas Gregora2db7932010-05-26 22:00:08 +00001273 Results.AddResult(Result("short", CCP_Type));
1274 Results.AddResult(Result("long", CCP_Type));
1275 Results.AddResult(Result("signed", CCP_Type));
1276 Results.AddResult(Result("unsigned", CCP_Type));
1277 Results.AddResult(Result("void", CCP_Type));
1278 Results.AddResult(Result("char", CCP_Type));
1279 Results.AddResult(Result("int", CCP_Type));
1280 Results.AddResult(Result("float", CCP_Type));
1281 Results.AddResult(Result("double", CCP_Type));
1282 Results.AddResult(Result("enum", CCP_Type));
1283 Results.AddResult(Result("struct", CCP_Type));
1284 Results.AddResult(Result("union", CCP_Type));
1285 Results.AddResult(Result("const", CCP_Type));
1286 Results.AddResult(Result("volatile", CCP_Type));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001287
Douglas Gregor3545ff42009-09-21 16:56:56 +00001288 if (LangOpts.C99) {
1289 // C99-specific
Douglas Gregora2db7932010-05-26 22:00:08 +00001290 Results.AddResult(Result("_Complex", CCP_Type));
1291 Results.AddResult(Result("_Imaginary", CCP_Type));
1292 Results.AddResult(Result("_Bool", CCP_Type));
1293 Results.AddResult(Result("restrict", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001294 }
1295
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001296 CodeCompletionBuilder Builder(Results.getAllocator(),
1297 Results.getCodeCompletionTUInfo());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001298 if (LangOpts.CPlusPlus) {
1299 // C++-specific
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00001300 Results.AddResult(Result("bool", CCP_Type +
1301 (LangOpts.ObjC1? CCD_bool_in_ObjC : 0)));
Douglas Gregora2db7932010-05-26 22:00:08 +00001302 Results.AddResult(Result("class", CCP_Type));
1303 Results.AddResult(Result("wchar_t", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001304
Douglas Gregorf4c33342010-05-28 00:22:41 +00001305 // typename qualified-id
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001306 Builder.AddTypedTextChunk("typename");
1307 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1308 Builder.AddPlaceholderChunk("qualifier");
1309 Builder.AddTextChunk("::");
1310 Builder.AddPlaceholderChunk("name");
1311 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001312
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001313 if (LangOpts.CPlusPlus11) {
Douglas Gregora2db7932010-05-26 22:00:08 +00001314 Results.AddResult(Result("auto", CCP_Type));
1315 Results.AddResult(Result("char16_t", CCP_Type));
1316 Results.AddResult(Result("char32_t", CCP_Type));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001317
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001318 Builder.AddTypedTextChunk("decltype");
1319 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1320 Builder.AddPlaceholderChunk("expression");
1321 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1322 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001323 }
1324 }
1325
1326 // GNU extensions
1327 if (LangOpts.GNUMode) {
1328 // FIXME: Enable when we actually support decimal floating point.
Douglas Gregor78a21012010-01-14 16:01:26 +00001329 // Results.AddResult(Result("_Decimal32"));
1330 // Results.AddResult(Result("_Decimal64"));
1331 // Results.AddResult(Result("_Decimal128"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001332
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001333 Builder.AddTypedTextChunk("typeof");
1334 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1335 Builder.AddPlaceholderChunk("expression");
1336 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001337
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001338 Builder.AddTypedTextChunk("typeof");
1339 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1340 Builder.AddPlaceholderChunk("type");
1341 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1342 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001343 }
Douglas Gregor86b42682015-06-19 18:27:52 +00001344
1345 // Nullability
Douglas Gregoraea7afd2015-06-24 22:02:08 +00001346 Results.AddResult(Result("_Nonnull", CCP_Type));
1347 Results.AddResult(Result("_Null_unspecified", CCP_Type));
1348 Results.AddResult(Result("_Nullable", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001349}
1350
John McCallfaf5fb42010-08-26 23:41:50 +00001351static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001352 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001353 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001354 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001355 // Note: we don't suggest either "auto" or "register", because both
1356 // are pointless as storage specifiers. Elsewhere, we suggest "auto"
1357 // in C++0x as a type specifier.
Douglas Gregor78a21012010-01-14 16:01:26 +00001358 Results.AddResult(Result("extern"));
1359 Results.AddResult(Result("static"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001360}
1361
John McCallfaf5fb42010-08-26 23:41:50 +00001362static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001363 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001364 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001365 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001366 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001367 case Sema::PCC_Class:
1368 case Sema::PCC_MemberTemplate:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001369 if (LangOpts.CPlusPlus) {
Douglas Gregor78a21012010-01-14 16:01:26 +00001370 Results.AddResult(Result("explicit"));
1371 Results.AddResult(Result("friend"));
1372 Results.AddResult(Result("mutable"));
1373 Results.AddResult(Result("virtual"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001374 }
1375 // Fall through
1376
John McCallfaf5fb42010-08-26 23:41:50 +00001377 case Sema::PCC_ObjCInterface:
1378 case Sema::PCC_ObjCImplementation:
1379 case Sema::PCC_Namespace:
1380 case Sema::PCC_Template:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001381 if (LangOpts.CPlusPlus || LangOpts.C99)
Douglas Gregor78a21012010-01-14 16:01:26 +00001382 Results.AddResult(Result("inline"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001383 break;
1384
John McCallfaf5fb42010-08-26 23:41:50 +00001385 case Sema::PCC_ObjCInstanceVariableList:
1386 case Sema::PCC_Expression:
1387 case Sema::PCC_Statement:
1388 case Sema::PCC_ForInit:
1389 case Sema::PCC_Condition:
1390 case Sema::PCC_RecoveryInFunction:
1391 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001392 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001393 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001394 break;
1395 }
1396}
1397
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001398static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt);
1399static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt);
1400static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00001401 ResultBuilder &Results,
1402 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001403static void AddObjCImplementationResults(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 AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001407 ResultBuilder &Results,
1408 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001409static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt);
Douglas Gregorf1934162010-01-13 21:24:21 +00001410
Douglas Gregorf4c33342010-05-28 00:22:41 +00001411static void AddTypedefResult(ResultBuilder &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001412 CodeCompletionBuilder Builder(Results.getAllocator(),
1413 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001414 Builder.AddTypedTextChunk("typedef");
1415 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1416 Builder.AddPlaceholderChunk("type");
1417 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1418 Builder.AddPlaceholderChunk("name");
1419 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001420}
1421
John McCallfaf5fb42010-08-26 23:41:50 +00001422static bool WantTypesInContext(Sema::ParserCompletionContext CCC,
Douglas Gregor70febae2010-05-28 00:49:12 +00001423 const LangOptions &LangOpts) {
Douglas Gregor70febae2010-05-28 00:49:12 +00001424 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001425 case Sema::PCC_Namespace:
1426 case Sema::PCC_Class:
1427 case Sema::PCC_ObjCInstanceVariableList:
1428 case Sema::PCC_Template:
1429 case Sema::PCC_MemberTemplate:
1430 case Sema::PCC_Statement:
1431 case Sema::PCC_RecoveryInFunction:
1432 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001433 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001434 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor70febae2010-05-28 00:49:12 +00001435 return true;
1436
John McCallfaf5fb42010-08-26 23:41:50 +00001437 case Sema::PCC_Expression:
1438 case Sema::PCC_Condition:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001439 return LangOpts.CPlusPlus;
1440
1441 case Sema::PCC_ObjCInterface:
1442 case Sema::PCC_ObjCImplementation:
Douglas Gregor70febae2010-05-28 00:49:12 +00001443 return false;
1444
John McCallfaf5fb42010-08-26 23:41:50 +00001445 case Sema::PCC_ForInit:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001446 return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99;
Douglas Gregor70febae2010-05-28 00:49:12 +00001447 }
David Blaikie8a40f702012-01-17 06:56:22 +00001448
1449 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor70febae2010-05-28 00:49:12 +00001450}
1451
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001452static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context,
1453 const Preprocessor &PP) {
1454 PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001455 Policy.AnonymousTagLocations = false;
1456 Policy.SuppressStrongLifetime = true;
Douglas Gregor2e10cf92011-11-03 00:16:13 +00001457 Policy.SuppressUnwrittenScope = true;
Douglas Gregore5c79d52011-10-18 21:20:17 +00001458 return Policy;
1459}
1460
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001461/// \brief Retrieve a printing policy suitable for code completion.
1462static PrintingPolicy getCompletionPrintingPolicy(Sema &S) {
1463 return getCompletionPrintingPolicy(S.Context, S.PP);
1464}
1465
Douglas Gregore5c79d52011-10-18 21:20:17 +00001466/// \brief Retrieve the string representation of the given type as a string
1467/// that has the appropriate lifetime for code completion.
1468///
1469/// This routine provides a fast path where we provide constant strings for
1470/// common type names.
1471static const char *GetCompletionTypeString(QualType T,
1472 ASTContext &Context,
1473 const PrintingPolicy &Policy,
1474 CodeCompletionAllocator &Allocator) {
1475 if (!T.getLocalQualifiers()) {
1476 // Built-in type names are constant strings.
1477 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T))
Argyrios Kyrtzidisbbff3da2012-05-05 04:20:28 +00001478 return BT->getNameAsCString(Policy);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001479
1480 // Anonymous tag types are constant strings.
1481 if (const TagType *TagT = dyn_cast<TagType>(T))
1482 if (TagDecl *Tag = TagT->getDecl())
John McCall5ea95772013-03-09 00:54:27 +00001483 if (!Tag->hasNameForLinkage()) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001484 switch (Tag->getTagKind()) {
1485 case TTK_Struct: return "struct <anonymous>";
Joao Matosdc86f942012-08-31 18:45:21 +00001486 case TTK_Interface: return "__interface <anonymous>";
1487 case TTK_Class: return "class <anonymous>";
Douglas Gregore5c79d52011-10-18 21:20:17 +00001488 case TTK_Union: return "union <anonymous>";
1489 case TTK_Enum: return "enum <anonymous>";
1490 }
1491 }
1492 }
1493
1494 // Slow path: format the type as a string.
1495 std::string Result;
1496 T.getAsStringInternal(Result, Policy);
1497 return Allocator.CopyString(Result);
1498}
1499
Douglas Gregord8c61782012-02-15 15:34:24 +00001500/// \brief Add a completion for "this", if we're in a member function.
1501static void addThisCompletion(Sema &S, ResultBuilder &Results) {
1502 QualType ThisTy = S.getCurrentThisType();
1503 if (ThisTy.isNull())
1504 return;
1505
1506 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001507 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregord8c61782012-02-15 15:34:24 +00001508 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
1509 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
1510 S.Context,
1511 Policy,
1512 Allocator));
1513 Builder.AddTypedTextChunk("this");
Joao Matosdc86f942012-08-31 18:45:21 +00001514 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregord8c61782012-02-15 15:34:24 +00001515}
1516
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001517/// \brief Add language constructs that show up for "ordinary" names.
John McCallfaf5fb42010-08-26 23:41:50 +00001518static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001519 Scope *S,
1520 Sema &SemaRef,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001521 ResultBuilder &Results) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001522 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001523 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregore5c79d52011-10-18 21:20:17 +00001524 PrintingPolicy Policy = getCompletionPrintingPolicy(SemaRef);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001525
John McCall276321a2010-08-25 06:19:51 +00001526 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001527 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001528 case Sema::PCC_Namespace:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001529 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001530 if (Results.includeCodePatterns()) {
1531 // namespace <identifier> { declarations }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001532 Builder.AddTypedTextChunk("namespace");
1533 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1534 Builder.AddPlaceholderChunk("identifier");
1535 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1536 Builder.AddPlaceholderChunk("declarations");
1537 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1538 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1539 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001540 }
1541
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001542 // namespace identifier = identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001543 Builder.AddTypedTextChunk("namespace");
1544 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1545 Builder.AddPlaceholderChunk("name");
1546 Builder.AddChunk(CodeCompletionString::CK_Equal);
1547 Builder.AddPlaceholderChunk("namespace");
1548 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001549
1550 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001551 Builder.AddTypedTextChunk("using");
1552 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1553 Builder.AddTextChunk("namespace");
1554 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1555 Builder.AddPlaceholderChunk("identifier");
1556 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001557
1558 // asm(string-literal)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001559 Builder.AddTypedTextChunk("asm");
1560 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1561 Builder.AddPlaceholderChunk("string-literal");
1562 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1563 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001564
Douglas Gregorf4c33342010-05-28 00:22:41 +00001565 if (Results.includeCodePatterns()) {
1566 // Explicit template instantiation
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001567 Builder.AddTypedTextChunk("template");
1568 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1569 Builder.AddPlaceholderChunk("declaration");
1570 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001571 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001572 }
Douglas Gregorf1934162010-01-13 21:24:21 +00001573
David Blaikiebbafb8a2012-03-11 07:00:24 +00001574 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001575 AddObjCTopLevelResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001576
Douglas Gregorf4c33342010-05-28 00:22:41 +00001577 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001578 // Fall through
1579
John McCallfaf5fb42010-08-26 23:41:50 +00001580 case Sema::PCC_Class:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001581 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001582 // Using declaration
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001583 Builder.AddTypedTextChunk("using");
1584 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1585 Builder.AddPlaceholderChunk("qualifier");
1586 Builder.AddTextChunk("::");
1587 Builder.AddPlaceholderChunk("name");
1588 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001589
Douglas Gregorf4c33342010-05-28 00:22:41 +00001590 // using typename qualifier::name (only in a dependent context)
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001591 if (SemaRef.CurContext->isDependentContext()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001592 Builder.AddTypedTextChunk("using");
1593 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1594 Builder.AddTextChunk("typename");
1595 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1596 Builder.AddPlaceholderChunk("qualifier");
1597 Builder.AddTextChunk("::");
1598 Builder.AddPlaceholderChunk("name");
1599 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001600 }
1601
John McCallfaf5fb42010-08-26 23:41:50 +00001602 if (CCC == Sema::PCC_Class) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001603 AddTypedefResult(Results);
1604
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001605 // public:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001606 Builder.AddTypedTextChunk("public");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001607 if (Results.includeCodePatterns())
1608 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001609 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001610
1611 // protected:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001612 Builder.AddTypedTextChunk("protected");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001613 if (Results.includeCodePatterns())
1614 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001615 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001616
1617 // private:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001618 Builder.AddTypedTextChunk("private");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001619 if (Results.includeCodePatterns())
1620 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001621 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001622 }
1623 }
1624 // Fall through
1625
John McCallfaf5fb42010-08-26 23:41:50 +00001626 case Sema::PCC_Template:
1627 case Sema::PCC_MemberTemplate:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001628 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001629 // template < parameters >
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001630 Builder.AddTypedTextChunk("template");
1631 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1632 Builder.AddPlaceholderChunk("parameters");
1633 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1634 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001635 }
1636
David Blaikiebbafb8a2012-03-11 07:00:24 +00001637 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1638 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001639 break;
1640
John McCallfaf5fb42010-08-26 23:41:50 +00001641 case Sema::PCC_ObjCInterface:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001642 AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true);
1643 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1644 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001645 break;
1646
John McCallfaf5fb42010-08-26 23:41:50 +00001647 case Sema::PCC_ObjCImplementation:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001648 AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true);
1649 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1650 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001651 break;
1652
John McCallfaf5fb42010-08-26 23:41:50 +00001653 case Sema::PCC_ObjCInstanceVariableList:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001654 AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true);
Douglas Gregor48d46252010-01-13 21:54:15 +00001655 break;
1656
John McCallfaf5fb42010-08-26 23:41:50 +00001657 case Sema::PCC_RecoveryInFunction:
1658 case Sema::PCC_Statement: {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001659 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001660
David Blaikiebbafb8a2012-03-11 07:00:24 +00001661 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() &&
1662 SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001663 Builder.AddTypedTextChunk("try");
1664 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1665 Builder.AddPlaceholderChunk("statements");
1666 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1667 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1668 Builder.AddTextChunk("catch");
1669 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1670 Builder.AddPlaceholderChunk("declaration");
1671 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1672 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1673 Builder.AddPlaceholderChunk("statements");
1674 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1675 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1676 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001677 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001678 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001679 AddObjCStatementResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001680
Douglas Gregorf64acca2010-05-25 21:41:55 +00001681 if (Results.includeCodePatterns()) {
1682 // if (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001683 Builder.AddTypedTextChunk("if");
1684 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001685 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001686 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001687 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001688 Builder.AddPlaceholderChunk("expression");
1689 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1690 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1691 Builder.AddPlaceholderChunk("statements");
1692 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1693 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1694 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001695
Douglas Gregorf64acca2010-05-25 21:41:55 +00001696 // switch (condition) { }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001697 Builder.AddTypedTextChunk("switch");
1698 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001699 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001700 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001701 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001702 Builder.AddPlaceholderChunk("expression");
1703 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1704 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1705 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1706 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1707 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001708 }
1709
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001710 // Switch-specific statements.
John McCallaab3e412010-08-25 08:40:02 +00001711 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001712 // case expression:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001713 Builder.AddTypedTextChunk("case");
1714 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1715 Builder.AddPlaceholderChunk("expression");
1716 Builder.AddChunk(CodeCompletionString::CK_Colon);
1717 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001718
1719 // default:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001720 Builder.AddTypedTextChunk("default");
1721 Builder.AddChunk(CodeCompletionString::CK_Colon);
1722 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001723 }
1724
Douglas Gregorf64acca2010-05-25 21:41:55 +00001725 if (Results.includeCodePatterns()) {
1726 /// while (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001727 Builder.AddTypedTextChunk("while");
1728 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001729 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001730 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001731 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001732 Builder.AddPlaceholderChunk("expression");
1733 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1734 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1735 Builder.AddPlaceholderChunk("statements");
1736 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1737 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1738 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001739
1740 // do { statements } while ( expression );
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001741 Builder.AddTypedTextChunk("do");
1742 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1743 Builder.AddPlaceholderChunk("statements");
1744 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1745 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1746 Builder.AddTextChunk("while");
1747 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1748 Builder.AddPlaceholderChunk("expression");
1749 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1750 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001751
Douglas Gregorf64acca2010-05-25 21:41:55 +00001752 // for ( for-init-statement ; condition ; expression ) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001753 Builder.AddTypedTextChunk("for");
1754 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001755 if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001756 Builder.AddPlaceholderChunk("init-statement");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001757 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001758 Builder.AddPlaceholderChunk("init-expression");
1759 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1760 Builder.AddPlaceholderChunk("condition");
1761 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1762 Builder.AddPlaceholderChunk("inc-expression");
1763 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1764 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1765 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1766 Builder.AddPlaceholderChunk("statements");
1767 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1768 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1769 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001770 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001771
1772 if (S->getContinueParent()) {
1773 // continue ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001774 Builder.AddTypedTextChunk("continue");
1775 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001776 }
1777
1778 if (S->getBreakParent()) {
1779 // break ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001780 Builder.AddTypedTextChunk("break");
1781 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001782 }
1783
1784 // "return expression ;" or "return ;", depending on whether we
1785 // know the function is void or not.
1786 bool isVoid = false;
1787 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001788 isVoid = Function->getReturnType()->isVoidType();
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001789 else if (ObjCMethodDecl *Method
1790 = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001791 isVoid = Method->getReturnType()->isVoidType();
Douglas Gregor9a28e842010-03-01 23:15:13 +00001792 else if (SemaRef.getCurBlock() &&
1793 !SemaRef.getCurBlock()->ReturnType.isNull())
1794 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001795 Builder.AddTypedTextChunk("return");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001796 if (!isVoid) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001797 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1798 Builder.AddPlaceholderChunk("expression");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001799 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001800 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001801
Douglas Gregorf4c33342010-05-28 00:22:41 +00001802 // goto identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001803 Builder.AddTypedTextChunk("goto");
1804 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1805 Builder.AddPlaceholderChunk("label");
1806 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001807
Douglas Gregorf4c33342010-05-28 00:22:41 +00001808 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001809 Builder.AddTypedTextChunk("using");
1810 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1811 Builder.AddTextChunk("namespace");
1812 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1813 Builder.AddPlaceholderChunk("identifier");
1814 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001815 }
1816
1817 // Fall through (for statement expressions).
John McCallfaf5fb42010-08-26 23:41:50 +00001818 case Sema::PCC_ForInit:
1819 case Sema::PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001820 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001821 // Fall through: conditions and statements can have expressions.
1822
Douglas Gregor5e35d592010-09-14 23:59:36 +00001823 case Sema::PCC_ParenthesizedExpression:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001824 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001825 CCC == Sema::PCC_ParenthesizedExpression) {
1826 // (__bridge <type>)<expression>
1827 Builder.AddTypedTextChunk("__bridge");
1828 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1829 Builder.AddPlaceholderChunk("type");
1830 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1831 Builder.AddPlaceholderChunk("expression");
1832 Results.AddResult(Result(Builder.TakeString()));
1833
1834 // (__bridge_transfer <Objective-C type>)<expression>
1835 Builder.AddTypedTextChunk("__bridge_transfer");
1836 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1837 Builder.AddPlaceholderChunk("Objective-C type");
1838 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1839 Builder.AddPlaceholderChunk("expression");
1840 Results.AddResult(Result(Builder.TakeString()));
1841
1842 // (__bridge_retained <CF type>)<expression>
1843 Builder.AddTypedTextChunk("__bridge_retained");
1844 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1845 Builder.AddPlaceholderChunk("CF type");
1846 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1847 Builder.AddPlaceholderChunk("expression");
1848 Results.AddResult(Result(Builder.TakeString()));
1849 }
1850 // Fall through
1851
John McCallfaf5fb42010-08-26 23:41:50 +00001852 case Sema::PCC_Expression: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001853 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001854 // 'this', if we're in a non-static member function.
Douglas Gregord8c61782012-02-15 15:34:24 +00001855 addThisCompletion(SemaRef, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001856
Douglas Gregore5c79d52011-10-18 21:20:17 +00001857 // true
1858 Builder.AddResultTypeChunk("bool");
1859 Builder.AddTypedTextChunk("true");
1860 Results.AddResult(Result(Builder.TakeString()));
1861
1862 // false
1863 Builder.AddResultTypeChunk("bool");
1864 Builder.AddTypedTextChunk("false");
1865 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001866
David Blaikiebbafb8a2012-03-11 07:00:24 +00001867 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001868 // dynamic_cast < type-id > ( expression )
1869 Builder.AddTypedTextChunk("dynamic_cast");
1870 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1871 Builder.AddPlaceholderChunk("type");
1872 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1873 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1874 Builder.AddPlaceholderChunk("expression");
1875 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1876 Results.AddResult(Result(Builder.TakeString()));
1877 }
Douglas Gregorf4c33342010-05-28 00:22:41 +00001878
1879 // static_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001880 Builder.AddTypedTextChunk("static_cast");
1881 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1882 Builder.AddPlaceholderChunk("type");
1883 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1884 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1885 Builder.AddPlaceholderChunk("expression");
1886 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1887 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001888
Douglas Gregorf4c33342010-05-28 00:22:41 +00001889 // reinterpret_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001890 Builder.AddTypedTextChunk("reinterpret_cast");
1891 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1892 Builder.AddPlaceholderChunk("type");
1893 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1894 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1895 Builder.AddPlaceholderChunk("expression");
1896 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1897 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001898
Douglas Gregorf4c33342010-05-28 00:22:41 +00001899 // const_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001900 Builder.AddTypedTextChunk("const_cast");
1901 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1902 Builder.AddPlaceholderChunk("type");
1903 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1904 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1905 Builder.AddPlaceholderChunk("expression");
1906 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1907 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001908
David Blaikiebbafb8a2012-03-11 07:00:24 +00001909 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001910 // typeid ( expression-or-type )
Douglas Gregore5c79d52011-10-18 21:20:17 +00001911 Builder.AddResultTypeChunk("std::type_info");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001912 Builder.AddTypedTextChunk("typeid");
1913 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1914 Builder.AddPlaceholderChunk("expression-or-type");
1915 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1916 Results.AddResult(Result(Builder.TakeString()));
1917 }
1918
Douglas Gregorf4c33342010-05-28 00:22:41 +00001919 // new T ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001920 Builder.AddTypedTextChunk("new");
1921 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1922 Builder.AddPlaceholderChunk("type");
1923 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1924 Builder.AddPlaceholderChunk("expressions");
1925 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1926 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001927
Douglas Gregorf4c33342010-05-28 00:22:41 +00001928 // new T [ ] ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001929 Builder.AddTypedTextChunk("new");
1930 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1931 Builder.AddPlaceholderChunk("type");
1932 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1933 Builder.AddPlaceholderChunk("size");
1934 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1935 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1936 Builder.AddPlaceholderChunk("expressions");
1937 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1938 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001939
Douglas Gregorf4c33342010-05-28 00:22:41 +00001940 // delete expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001941 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001942 Builder.AddTypedTextChunk("delete");
1943 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1944 Builder.AddPlaceholderChunk("expression");
1945 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001946
Douglas Gregorf4c33342010-05-28 00:22:41 +00001947 // delete [] expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001948 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001949 Builder.AddTypedTextChunk("delete");
1950 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1951 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1952 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1953 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1954 Builder.AddPlaceholderChunk("expression");
1955 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001956
David Blaikiebbafb8a2012-03-11 07:00:24 +00001957 if (SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001958 // throw expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001959 Builder.AddResultTypeChunk("void");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001960 Builder.AddTypedTextChunk("throw");
1961 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1962 Builder.AddPlaceholderChunk("expression");
1963 Results.AddResult(Result(Builder.TakeString()));
1964 }
Douglas Gregor4205fef2011-10-18 16:29:03 +00001965
Douglas Gregora2db7932010-05-26 22:00:08 +00001966 // FIXME: Rethrow?
Douglas Gregor4205fef2011-10-18 16:29:03 +00001967
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001968 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregor4205fef2011-10-18 16:29:03 +00001969 // nullptr
Douglas Gregore5c79d52011-10-18 21:20:17 +00001970 Builder.AddResultTypeChunk("std::nullptr_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001971 Builder.AddTypedTextChunk("nullptr");
1972 Results.AddResult(Result(Builder.TakeString()));
1973
1974 // alignof
Douglas Gregore5c79d52011-10-18 21:20:17 +00001975 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001976 Builder.AddTypedTextChunk("alignof");
1977 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1978 Builder.AddPlaceholderChunk("type");
1979 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1980 Results.AddResult(Result(Builder.TakeString()));
1981
1982 // noexcept
Douglas Gregore5c79d52011-10-18 21:20:17 +00001983 Builder.AddResultTypeChunk("bool");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001984 Builder.AddTypedTextChunk("noexcept");
1985 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1986 Builder.AddPlaceholderChunk("expression");
1987 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1988 Results.AddResult(Result(Builder.TakeString()));
1989
1990 // sizeof... expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001991 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001992 Builder.AddTypedTextChunk("sizeof...");
1993 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1994 Builder.AddPlaceholderChunk("parameter-pack");
1995 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1996 Results.AddResult(Result(Builder.TakeString()));
1997 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001998 }
1999
David Blaikiebbafb8a2012-03-11 07:00:24 +00002000 if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002001 // Add "super", if we're in an Objective-C class with a superclass.
Ted Kremenek305a0a72010-05-31 21:43:10 +00002002 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
2003 // The interface can be NULL.
2004 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
Douglas Gregore5c79d52011-10-18 21:20:17 +00002005 if (ID->getSuperClass()) {
2006 std::string SuperType;
2007 SuperType = ID->getSuperClass()->getNameAsString();
2008 if (Method->isInstanceMethod())
2009 SuperType += " *";
2010
2011 Builder.AddResultTypeChunk(Allocator.CopyString(SuperType));
2012 Builder.AddTypedTextChunk("super");
2013 Results.AddResult(Result(Builder.TakeString()));
2014 }
Ted Kremenek305a0a72010-05-31 21:43:10 +00002015 }
2016
Douglas Gregorf98e6a22010-01-13 23:51:12 +00002017 AddObjCExpressionResults(Results, true);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002018 }
2019
Jordan Rose58d54722012-06-30 21:33:57 +00002020 if (SemaRef.getLangOpts().C11) {
2021 // _Alignof
2022 Builder.AddResultTypeChunk("size_t");
Richard Smith20e883e2015-04-29 23:20:19 +00002023 if (SemaRef.PP.isMacroDefined("alignof"))
Jordan Rose58d54722012-06-30 21:33:57 +00002024 Builder.AddTypedTextChunk("alignof");
2025 else
2026 Builder.AddTypedTextChunk("_Alignof");
2027 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2028 Builder.AddPlaceholderChunk("type");
2029 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2030 Results.AddResult(Result(Builder.TakeString()));
2031 }
2032
Douglas Gregorf4c33342010-05-28 00:22:41 +00002033 // sizeof expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002034 Builder.AddResultTypeChunk("size_t");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002035 Builder.AddTypedTextChunk("sizeof");
2036 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2037 Builder.AddPlaceholderChunk("expression-or-type");
2038 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2039 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002040 break;
2041 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00002042
John McCallfaf5fb42010-08-26 23:41:50 +00002043 case Sema::PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00002044 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor99fa2642010-08-24 01:06:58 +00002045 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002046 }
2047
David Blaikiebbafb8a2012-03-11 07:00:24 +00002048 if (WantTypesInContext(CCC, SemaRef.getLangOpts()))
2049 AddTypeSpecifierResults(SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002050
David Blaikiebbafb8a2012-03-11 07:00:24 +00002051 if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type)
Douglas Gregor78a21012010-01-14 16:01:26 +00002052 Results.AddResult(Result("operator"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002053}
2054
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002055/// \brief If the given declaration has an associated type, add it as a result
2056/// type chunk.
2057static void AddResultTypeChunk(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002058 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002059 const NamedDecl *ND,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002060 QualType BaseType,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002061 CodeCompletionBuilder &Result) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002062 if (!ND)
2063 return;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002064
2065 // Skip constructors and conversion functions, which have their return types
2066 // built into their names.
2067 if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND))
2068 return;
2069
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002070 // Determine the type of the declaration (if it has a type).
Alp Tokera2794f92014-01-22 07:29:52 +00002071 QualType T;
2072 if (const FunctionDecl *Function = ND->getAsFunction())
Alp Toker314cc812014-01-25 16:55:45 +00002073 T = Function->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002074 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
2075 if (!BaseType.isNull())
2076 T = Method->getSendResultType(BaseType);
2077 else
2078 T = Method->getReturnType();
2079 } else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002080 T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext()));
2081 else if (isa<UnresolvedUsingValueDecl>(ND)) {
2082 /* Do nothing: ignore unresolved using declarations*/
Douglas Gregorc3425b12015-07-07 06:20:19 +00002083 } else if (const ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
2084 if (!BaseType.isNull())
2085 T = Ivar->getUsageType(BaseType);
2086 else
2087 T = Ivar->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002088 } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002089 T = Value->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002090 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND)) {
2091 if (!BaseType.isNull())
2092 T = Property->getUsageType(BaseType);
2093 else
2094 T = Property->getType();
2095 }
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002096
2097 if (T.isNull() || Context.hasSameType(T, Context.DependentTy))
2098 return;
2099
Douglas Gregor75acd922011-09-27 23:30:47 +00002100 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
Douglas Gregor304f9b02011-02-01 21:15:40 +00002101 Result.getAllocator()));
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002102}
2103
Richard Smith20e883e2015-04-29 23:20:19 +00002104static void MaybeAddSentinel(Preprocessor &PP,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002105 const NamedDecl *FunctionOrMethod,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002106 CodeCompletionBuilder &Result) {
Douglas Gregordbb71db2010-08-23 23:51:41 +00002107 if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>())
2108 if (Sentinel->getSentinel() == 0) {
Richard Smith20e883e2015-04-29 23:20:19 +00002109 if (PP.getLangOpts().ObjC1 && PP.isMacroDefined("nil"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002110 Result.AddTextChunk(", nil");
Richard Smith20e883e2015-04-29 23:20:19 +00002111 else if (PP.isMacroDefined("NULL"))
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002112 Result.AddTextChunk(", NULL");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002113 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002114 Result.AddTextChunk(", (void*)0");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002115 }
2116}
2117
Douglas Gregor86b42682015-06-19 18:27:52 +00002118static std::string formatObjCParamQualifiers(unsigned ObjCQuals,
2119 QualType &Type) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002120 std::string Result;
2121 if (ObjCQuals & Decl::OBJC_TQ_In)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002122 Result += "in ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002123 else if (ObjCQuals & Decl::OBJC_TQ_Inout)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002124 Result += "inout ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002125 else if (ObjCQuals & Decl::OBJC_TQ_Out)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002126 Result += "out ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002127 if (ObjCQuals & Decl::OBJC_TQ_Bycopy)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002128 Result += "bycopy ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002129 else if (ObjCQuals & Decl::OBJC_TQ_Byref)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002130 Result += "byref ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002131 if (ObjCQuals & Decl::OBJC_TQ_Oneway)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002132 Result += "oneway ";
Douglas Gregor86b42682015-06-19 18:27:52 +00002133 if (ObjCQuals & Decl::OBJC_TQ_CSNullability) {
2134 if (auto nullability = AttributedType::stripOuterNullability(Type)) {
2135 switch (*nullability) {
2136 case NullabilityKind::NonNull:
2137 Result += "nonnull ";
2138 break;
2139
2140 case NullabilityKind::Nullable:
2141 Result += "nullable ";
2142 break;
2143
2144 case NullabilityKind::Unspecified:
2145 Result += "null_unspecified ";
2146 break;
2147 }
2148 }
2149 }
Douglas Gregor8f08d742011-07-30 07:55:26 +00002150 return Result;
2151}
2152
Richard Smith20e883e2015-04-29 23:20:19 +00002153static std::string FormatFunctionParameter(const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002154 const ParmVarDecl *Param,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002155 bool SuppressName = false,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002156 bool SuppressBlock = false,
2157 Optional<ArrayRef<QualType>> ObjCSubsts = None) {
Douglas Gregore90dd002010-08-24 16:15:59 +00002158 bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext());
2159 if (Param->getType()->isDependentType() ||
2160 !Param->getType()->isBlockPointerType()) {
2161 // The argument for a dependent or non-block parameter is a placeholder
2162 // containing that parameter's type.
2163 std::string Result;
2164
Douglas Gregor981a0c42010-08-29 19:47:46 +00002165 if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002166 Result = Param->getIdentifier()->getName();
2167
Douglas Gregor86b42682015-06-19 18:27:52 +00002168 QualType Type = Param->getType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002169 if (ObjCSubsts)
2170 Type = Type.substObjCTypeArgs(Param->getASTContext(), *ObjCSubsts,
2171 ObjCSubstitutionContext::Parameter);
Douglas Gregore90dd002010-08-24 16:15:59 +00002172 if (ObjCMethodParam) {
Douglas Gregor86b42682015-06-19 18:27:52 +00002173 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(),
2174 Type);
2175 Result += Type.getAsString(Policy) + ")";
Douglas Gregor981a0c42010-08-29 19:47:46 +00002176 if (Param->getIdentifier() && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002177 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002178 } else {
2179 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002180 }
2181 return Result;
2182 }
2183
2184 // The argument for a block pointer parameter is a block literal with
2185 // the appropriate type.
David Blaikie6adc78e2013-02-18 22:06:02 +00002186 FunctionTypeLoc Block;
2187 FunctionProtoTypeLoc BlockProto;
Douglas Gregore90dd002010-08-24 16:15:59 +00002188 TypeLoc TL;
2189 if (TypeSourceInfo *TSInfo = Param->getTypeSourceInfo()) {
2190 TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2191 while (true) {
2192 // Look through typedefs.
Douglas Gregord793e7c2011-10-18 04:23:19 +00002193 if (!SuppressBlock) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002194 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2195 if (TypeSourceInfo *InnerTSInfo =
2196 TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002197 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2198 continue;
2199 }
2200 }
2201
2202 // Look through qualified types
David Blaikie6adc78e2013-02-18 22:06:02 +00002203 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2204 TL = QualifiedTL.getUnqualifiedLoc();
Douglas Gregore90dd002010-08-24 16:15:59 +00002205 continue;
2206 }
Douglas Gregor4c850f32015-07-07 06:20:22 +00002207
2208 if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) {
2209 TL = AttrTL.getModifiedLoc();
2210 continue;
2211 }
Douglas Gregore90dd002010-08-24 16:15:59 +00002212 }
2213
Douglas Gregore90dd002010-08-24 16:15:59 +00002214 // Try to get the function prototype behind the block pointer type,
2215 // then we're done.
David Blaikie6adc78e2013-02-18 22:06:02 +00002216 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2217 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2218 Block = TL.getAs<FunctionTypeLoc>();
2219 BlockProto = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregore90dd002010-08-24 16:15:59 +00002220 }
2221 break;
2222 }
2223 }
2224
2225 if (!Block) {
2226 // We were unable to find a FunctionProtoTypeLoc with parameter names
2227 // for the block; just use the parameter type as a placeholder.
2228 std::string Result;
Douglas Gregord793e7c2011-10-18 04:23:19 +00002229 if (!ObjCMethodParam && Param->getIdentifier())
2230 Result = Param->getIdentifier()->getName();
2231
Douglas Gregor86b42682015-06-19 18:27:52 +00002232 QualType Type = Param->getType().getUnqualifiedType();
Douglas Gregore90dd002010-08-24 16:15:59 +00002233
2234 if (ObjCMethodParam) {
Douglas Gregor86b42682015-06-19 18:27:52 +00002235 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier(),
2236 Type);
2237 Result += Type.getAsString(Policy) + Result + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002238 if (Param->getIdentifier())
2239 Result += Param->getIdentifier()->getName();
Douglas Gregor86b42682015-06-19 18:27:52 +00002240 } else {
2241 Type.getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002242 }
2243
2244 return Result;
2245 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002246
Douglas Gregore90dd002010-08-24 16:15:59 +00002247 // We have the function prototype behind the block pointer type, as it was
2248 // written in the source.
Douglas Gregor67da50e2010-09-08 22:47:51 +00002249 std::string Result;
Alp Toker314cc812014-01-25 16:55:45 +00002250 QualType ResultType = Block.getTypePtr()->getReturnType();
Douglas Gregorc3425b12015-07-07 06:20:19 +00002251 if (ObjCSubsts)
2252 ResultType = ResultType.substObjCTypeArgs(Param->getASTContext(),
2253 *ObjCSubsts,
2254 ObjCSubstitutionContext::Result);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002255 if (!ResultType->isVoidType() || SuppressBlock)
John McCall31168b02011-06-15 23:02:42 +00002256 ResultType.getAsStringInternal(Result, Policy);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002257
2258 // Format the parameter list.
2259 std::string Params;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002260 if (!BlockProto || Block.getNumParams() == 0) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002261 if (BlockProto && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002262 Params = "(...)";
Douglas Gregoraf25cfa2010-10-02 23:49:58 +00002263 else
Douglas Gregord793e7c2011-10-18 04:23:19 +00002264 Params = "(void)";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002265 } else {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002266 Params += "(";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002267 for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002268 if (I)
Douglas Gregord793e7c2011-10-18 04:23:19 +00002269 Params += ", ";
Richard Smith20e883e2015-04-29 23:20:19 +00002270 Params += FormatFunctionParameter(Policy, Block.getParam(I),
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002271 /*SuppressName=*/false,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002272 /*SuppressBlock=*/true,
2273 ObjCSubsts);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002274
David Blaikie6adc78e2013-02-18 22:06:02 +00002275 if (I == N - 1 && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002276 Params += ", ...";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002277 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002278 Params += ")";
Douglas Gregor400f5972010-08-31 05:13:43 +00002279 }
Douglas Gregor67da50e2010-09-08 22:47:51 +00002280
Douglas Gregord793e7c2011-10-18 04:23:19 +00002281 if (SuppressBlock) {
2282 // Format as a parameter.
2283 Result = Result + " (^";
2284 if (Param->getIdentifier())
2285 Result += Param->getIdentifier()->getName();
2286 Result += ")";
2287 Result += Params;
2288 } else {
2289 // Format as a block literal argument.
2290 Result = '^' + Result;
2291 Result += Params;
2292
2293 if (Param->getIdentifier())
2294 Result += Param->getIdentifier()->getName();
2295 }
2296
Douglas Gregore90dd002010-08-24 16:15:59 +00002297 return Result;
2298}
2299
Douglas Gregor3545ff42009-09-21 16:56:56 +00002300/// \brief Add function parameter chunks to the given code completion string.
Richard Smith20e883e2015-04-29 23:20:19 +00002301static void AddFunctionParameterChunks(Preprocessor &PP,
Douglas Gregor75acd922011-09-27 23:30:47 +00002302 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002303 const FunctionDecl *Function,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002304 CodeCompletionBuilder &Result,
2305 unsigned Start = 0,
2306 bool InOptional = false) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002307 bool FirstParameter = true;
Douglas Gregor9eb77012009-11-07 00:00:49 +00002308
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002309 for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002310 const ParmVarDecl *Param = Function->getParamDecl(P);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002311
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002312 if (Param->hasDefaultArg() && !InOptional) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002313 // When we see an optional default argument, put that argument and
2314 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002315 CodeCompletionBuilder Opt(Result.getAllocator(),
2316 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002317 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002318 Opt.AddChunk(CodeCompletionString::CK_Comma);
Richard Smith20e883e2015-04-29 23:20:19 +00002319 AddFunctionParameterChunks(PP, Policy, Function, Opt, P, true);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002320 Result.AddOptionalChunk(Opt.TakeString());
2321 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002322 }
2323
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002324 if (FirstParameter)
2325 FirstParameter = false;
2326 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002327 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002328
2329 InOptional = false;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002330
2331 // Format the placeholder string.
Richard Smith20e883e2015-04-29 23:20:19 +00002332 std::string PlaceholderStr = FormatFunctionParameter(Policy, Param);
2333
Douglas Gregor400f5972010-08-31 05:13:43 +00002334 if (Function->isVariadic() && P == N - 1)
2335 PlaceholderStr += ", ...";
2336
Douglas Gregor3545ff42009-09-21 16:56:56 +00002337 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002338 Result.AddPlaceholderChunk(
2339 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002340 }
Douglas Gregorba449032009-09-22 21:42:17 +00002341
2342 if (const FunctionProtoType *Proto
2343 = Function->getType()->getAs<FunctionProtoType>())
Douglas Gregordbb71db2010-08-23 23:51:41 +00002344 if (Proto->isVariadic()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00002345 if (Proto->getNumParams() == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002346 Result.AddPlaceholderChunk("...");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002347
Richard Smith20e883e2015-04-29 23:20:19 +00002348 MaybeAddSentinel(PP, Function, Result);
Douglas Gregordbb71db2010-08-23 23:51:41 +00002349 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002350}
2351
2352/// \brief Add template parameter chunks to the given code completion string.
2353static void AddTemplateParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002354 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002355 const TemplateDecl *Template,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002356 CodeCompletionBuilder &Result,
2357 unsigned MaxParameters = 0,
2358 unsigned Start = 0,
2359 bool InDefaultArg = false) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002360 bool FirstParameter = true;
Richard Smith6eece292015-01-15 02:27:20 +00002361
2362 // Prefer to take the template parameter names from the first declaration of
2363 // the template.
2364 Template = cast<TemplateDecl>(Template->getCanonicalDecl());
2365
Douglas Gregor3545ff42009-09-21 16:56:56 +00002366 TemplateParameterList *Params = Template->getTemplateParameters();
2367 TemplateParameterList::iterator PEnd = Params->end();
2368 if (MaxParameters)
2369 PEnd = Params->begin() + MaxParameters;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002370 for (TemplateParameterList::iterator P = Params->begin() + Start;
2371 P != PEnd; ++P) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002372 bool HasDefaultArg = false;
2373 std::string PlaceholderStr;
2374 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
2375 if (TTP->wasDeclaredWithTypename())
2376 PlaceholderStr = "typename";
2377 else
2378 PlaceholderStr = "class";
2379
2380 if (TTP->getIdentifier()) {
2381 PlaceholderStr += ' ';
2382 PlaceholderStr += TTP->getIdentifier()->getName();
2383 }
2384
2385 HasDefaultArg = TTP->hasDefaultArgument();
2386 } else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002387 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002388 if (NTTP->getIdentifier())
2389 PlaceholderStr = NTTP->getIdentifier()->getName();
John McCall31168b02011-06-15 23:02:42 +00002390 NTTP->getType().getAsStringInternal(PlaceholderStr, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002391 HasDefaultArg = NTTP->hasDefaultArgument();
2392 } else {
2393 assert(isa<TemplateTemplateParmDecl>(*P));
2394 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
2395
2396 // Since putting the template argument list into the placeholder would
2397 // be very, very long, we just use an abbreviation.
2398 PlaceholderStr = "template<...> class";
2399 if (TTP->getIdentifier()) {
2400 PlaceholderStr += ' ';
2401 PlaceholderStr += TTP->getIdentifier()->getName();
2402 }
2403
2404 HasDefaultArg = TTP->hasDefaultArgument();
2405 }
2406
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002407 if (HasDefaultArg && !InDefaultArg) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002408 // When we see an optional default argument, put that argument and
2409 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002410 CodeCompletionBuilder Opt(Result.getAllocator(),
2411 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002412 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002413 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002414 AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002415 P - Params->begin(), true);
2416 Result.AddOptionalChunk(Opt.TakeString());
2417 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002418 }
2419
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002420 InDefaultArg = false;
2421
Douglas Gregor3545ff42009-09-21 16:56:56 +00002422 if (FirstParameter)
2423 FirstParameter = false;
2424 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002425 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002426
2427 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002428 Result.AddPlaceholderChunk(
2429 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002430 }
2431}
2432
Douglas Gregorf2510672009-09-21 19:57:38 +00002433/// \brief Add a qualifier to the given code-completion string, if the
2434/// provided nested-name-specifier is non-NULL.
Douglas Gregor0f622362009-12-11 18:44:16 +00002435static void
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002436AddQualifierToCompletionString(CodeCompletionBuilder &Result,
Douglas Gregor0f622362009-12-11 18:44:16 +00002437 NestedNameSpecifier *Qualifier,
2438 bool QualifierIsInformative,
Douglas Gregor75acd922011-09-27 23:30:47 +00002439 ASTContext &Context,
2440 const PrintingPolicy &Policy) {
Douglas Gregorf2510672009-09-21 19:57:38 +00002441 if (!Qualifier)
2442 return;
2443
2444 std::string PrintedNNS;
2445 {
2446 llvm::raw_string_ostream OS(PrintedNNS);
Douglas Gregor75acd922011-09-27 23:30:47 +00002447 Qualifier->print(OS, Policy);
Douglas Gregorf2510672009-09-21 19:57:38 +00002448 }
Douglas Gregor5bf52692009-09-22 23:15:58 +00002449 if (QualifierIsInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002450 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregor5bf52692009-09-22 23:15:58 +00002451 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002452 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregorf2510672009-09-21 19:57:38 +00002453}
2454
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002455static void
2456AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002457 const FunctionDecl *Function) {
Douglas Gregor0f622362009-12-11 18:44:16 +00002458 const FunctionProtoType *Proto
2459 = Function->getType()->getAs<FunctionProtoType>();
2460 if (!Proto || !Proto->getTypeQuals())
2461 return;
2462
Douglas Gregor304f9b02011-02-01 21:15:40 +00002463 // FIXME: Add ref-qualifier!
2464
2465 // Handle single qualifiers without copying
2466 if (Proto->getTypeQuals() == Qualifiers::Const) {
2467 Result.AddInformativeChunk(" const");
2468 return;
2469 }
2470
2471 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2472 Result.AddInformativeChunk(" volatile");
2473 return;
2474 }
2475
2476 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2477 Result.AddInformativeChunk(" restrict");
2478 return;
2479 }
2480
2481 // Handle multiple qualifiers.
Douglas Gregor0f622362009-12-11 18:44:16 +00002482 std::string QualsStr;
David Blaikief5697e52012-08-10 00:55:35 +00002483 if (Proto->isConst())
Douglas Gregor0f622362009-12-11 18:44:16 +00002484 QualsStr += " const";
David Blaikief5697e52012-08-10 00:55:35 +00002485 if (Proto->isVolatile())
Douglas Gregor0f622362009-12-11 18:44:16 +00002486 QualsStr += " volatile";
David Blaikief5697e52012-08-10 00:55:35 +00002487 if (Proto->isRestrict())
Douglas Gregor0f622362009-12-11 18:44:16 +00002488 QualsStr += " restrict";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002489 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
Douglas Gregor0f622362009-12-11 18:44:16 +00002490}
2491
Douglas Gregor0212fd72010-09-21 16:06:22 +00002492/// \brief Add the name of the given declaration
Douglas Gregor75acd922011-09-27 23:30:47 +00002493static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002494 const NamedDecl *ND,
2495 CodeCompletionBuilder &Result) {
Douglas Gregor0212fd72010-09-21 16:06:22 +00002496 DeclarationName Name = ND->getDeclName();
2497 if (!Name)
2498 return;
2499
2500 switch (Name.getNameKind()) {
Douglas Gregor304f9b02011-02-01 21:15:40 +00002501 case DeclarationName::CXXOperatorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002502 const char *OperatorName = nullptr;
Douglas Gregor304f9b02011-02-01 21:15:40 +00002503 switch (Name.getCXXOverloadedOperator()) {
2504 case OO_None:
2505 case OO_Conditional:
2506 case NUM_OVERLOADED_OPERATORS:
2507 OperatorName = "operator";
2508 break;
2509
2510#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2511 case OO_##Name: OperatorName = "operator" Spelling; break;
2512#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2513#include "clang/Basic/OperatorKinds.def"
2514
2515 case OO_New: OperatorName = "operator new"; break;
2516 case OO_Delete: OperatorName = "operator delete"; break;
2517 case OO_Array_New: OperatorName = "operator new[]"; break;
2518 case OO_Array_Delete: OperatorName = "operator delete[]"; break;
2519 case OO_Call: OperatorName = "operator()"; break;
2520 case OO_Subscript: OperatorName = "operator[]"; break;
2521 }
2522 Result.AddTypedTextChunk(OperatorName);
2523 break;
2524 }
2525
Douglas Gregor0212fd72010-09-21 16:06:22 +00002526 case DeclarationName::Identifier:
2527 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002528 case DeclarationName::CXXDestructorName:
2529 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002530 Result.AddTypedTextChunk(
2531 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002532 break;
2533
2534 case DeclarationName::CXXUsingDirective:
2535 case DeclarationName::ObjCZeroArgSelector:
2536 case DeclarationName::ObjCOneArgSelector:
2537 case DeclarationName::ObjCMultiArgSelector:
2538 break;
2539
2540 case DeclarationName::CXXConstructorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002541 CXXRecordDecl *Record = nullptr;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002542 QualType Ty = Name.getCXXNameType();
2543 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2544 Record = cast<CXXRecordDecl>(RecordTy->getDecl());
2545 else if (const InjectedClassNameType *InjectedTy
2546 = Ty->getAs<InjectedClassNameType>())
2547 Record = InjectedTy->getDecl();
2548 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002549 Result.AddTypedTextChunk(
2550 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002551 break;
2552 }
2553
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002554 Result.AddTypedTextChunk(
2555 Result.getAllocator().CopyString(Record->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002556 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002557 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Douglas Gregor75acd922011-09-27 23:30:47 +00002558 AddTemplateParameterChunks(Context, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002559 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002560 }
2561 break;
2562 }
2563 }
2564}
2565
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002566CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002567 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002568 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002569 CodeCompletionTUInfo &CCTUInfo,
2570 bool IncludeBriefComments) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002571 return CreateCodeCompletionString(S.Context, S.PP, CCContext, Allocator,
2572 CCTUInfo, IncludeBriefComments);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002573}
2574
Douglas Gregor3545ff42009-09-21 16:56:56 +00002575/// \brief If possible, create a new code completion string for the given
2576/// result.
2577///
2578/// \returns Either a new, heap-allocated code completion string describing
2579/// how to use this result, or NULL to indicate that the string or name of the
2580/// result is all that is needed.
2581CodeCompletionString *
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002582CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx,
2583 Preprocessor &PP,
Douglas Gregorc3425b12015-07-07 06:20:19 +00002584 const CodeCompletionContext &CCContext,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002585 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002586 CodeCompletionTUInfo &CCTUInfo,
2587 bool IncludeBriefComments) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002588 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
Douglas Gregor9eb77012009-11-07 00:00:49 +00002589
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002590 PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002591 if (Kind == RK_Pattern) {
2592 Pattern->Priority = Priority;
2593 Pattern->Availability = Availability;
Douglas Gregor78254c82012-03-27 23:34:16 +00002594
2595 if (Declaration) {
2596 Result.addParentContext(Declaration->getDeclContext());
Douglas Gregor78254c82012-03-27 23:34:16 +00002597 Pattern->ParentName = Result.getParentName();
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002598 // Provide code completion comment for self.GetterName where
2599 // GetterName is the getter method for a property with name
2600 // different from the property name (declared via a property
2601 // getter attribute.
2602 const NamedDecl *ND = Declaration;
2603 if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND))
2604 if (M->isPropertyAccessor())
2605 if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl())
2606 if (PDecl->getGetterName() == M->getSelector() &&
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002607 PDecl->getIdentifier() != M->getIdentifier()) {
2608 if (const RawComment *RC =
2609 Ctx.getRawCommentForAnyRedecl(M)) {
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002610 Result.addBriefComment(RC->getBriefText(Ctx));
2611 Pattern->BriefComment = Result.getBriefComment();
2612 }
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002613 else if (const RawComment *RC =
2614 Ctx.getRawCommentForAnyRedecl(PDecl)) {
2615 Result.addBriefComment(RC->getBriefText(Ctx));
2616 Pattern->BriefComment = Result.getBriefComment();
2617 }
2618 }
Douglas Gregor78254c82012-03-27 23:34:16 +00002619 }
2620
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002621 return Pattern;
2622 }
Douglas Gregorf09935f2009-12-01 05:55:20 +00002623
Douglas Gregorf09935f2009-12-01 05:55:20 +00002624 if (Kind == RK_Keyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002625 Result.AddTypedTextChunk(Keyword);
2626 return Result.TakeString();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002627 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002628
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002629 if (Kind == RK_Macro) {
Richard Smith20e883e2015-04-29 23:20:19 +00002630 const MacroInfo *MI = PP.getMacroInfo(Macro);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002631 Result.AddTypedTextChunk(
2632 Result.getAllocator().CopyString(Macro->getName()));
Douglas Gregorf09935f2009-12-01 05:55:20 +00002633
Ben Langmuirc28ce3a2014-09-30 20:00:18 +00002634 if (!MI || !MI->isFunctionLike())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002635 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002636
2637 // Format a function-like macro with placeholders for the arguments.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002638 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor0c505312011-07-30 08:17:44 +00002639 MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002640
2641 // C99 variadic macros add __VA_ARGS__ at the end. Skip it.
2642 if (MI->isC99Varargs()) {
2643 --AEnd;
2644
2645 if (A == AEnd) {
2646 Result.AddPlaceholderChunk("...");
2647 }
Douglas Gregor0c505312011-07-30 08:17:44 +00002648 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002649
Douglas Gregor0c505312011-07-30 08:17:44 +00002650 for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) {
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002651 if (A != MI->arg_begin())
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002652 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3aa55262012-01-21 00:43:38 +00002653
2654 if (MI->isVariadic() && (A+1) == AEnd) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002655 SmallString<32> Arg = (*A)->getName();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002656 if (MI->isC99Varargs())
2657 Arg += ", ...";
2658 else
2659 Arg += "...";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002660 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor3aa55262012-01-21 00:43:38 +00002661 break;
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002662 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002663
2664 // Non-variadic macros are simple.
2665 Result.AddPlaceholderChunk(
2666 Result.getAllocator().CopyString((*A)->getName()));
Douglas Gregor0c505312011-07-30 08:17:44 +00002667 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002668 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002669 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002670 }
2671
Douglas Gregorf64acca2010-05-25 21:41:55 +00002672 assert(Kind == RK_Declaration && "Missed a result kind?");
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002673 const NamedDecl *ND = Declaration;
Douglas Gregor78254c82012-03-27 23:34:16 +00002674 Result.addParentContext(ND->getDeclContext());
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002675
2676 if (IncludeBriefComments) {
2677 // Add documentation comment, if it exists.
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +00002678 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) {
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002679 Result.addBriefComment(RC->getBriefText(Ctx));
Fariborz Jahanian15a0b552013-02-28 17:47:14 +00002680 }
2681 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
2682 if (OMD->isPropertyAccessor())
2683 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
2684 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl))
2685 Result.addBriefComment(RC->getBriefText(Ctx));
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002686 }
2687
Douglas Gregor9eb77012009-11-07 00:00:49 +00002688 if (StartsNestedNameSpecifier) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002689 Result.AddTypedTextChunk(
2690 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002691 Result.AddTextChunk("::");
2692 return Result.TakeString();
Douglas Gregor9eb77012009-11-07 00:00:49 +00002693 }
Erik Verbruggen98ea7f62011-10-14 15:31:08 +00002694
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00002695 for (const auto *I : ND->specific_attrs<AnnotateAttr>())
2696 Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation()));
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002697
Douglas Gregorc3425b12015-07-07 06:20:19 +00002698 AddResultTypeChunk(Ctx, Policy, ND, CCContext.getBaseType(), Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002699
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002700 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002701 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002702 Ctx, Policy);
2703 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002704 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002705 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002706 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002707 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002708 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002709 }
2710
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002711 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002712 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002713 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002714 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002715 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002716
Douglas Gregor3545ff42009-09-21 16:56:56 +00002717 // Figure out which template parameters are deduced (or have default
2718 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002719 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002720 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002721 unsigned LastDeducibleArgument;
2722 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2723 --LastDeducibleArgument) {
2724 if (!Deduced[LastDeducibleArgument - 1]) {
2725 // C++0x: Figure out if the template argument has a default. If so,
2726 // the user doesn't need to type this argument.
2727 // FIXME: We need to abstract template parameters better!
2728 bool HasDefaultArg = false;
2729 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002730 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002731 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2732 HasDefaultArg = TTP->hasDefaultArgument();
2733 else if (NonTypeTemplateParmDecl *NTTP
2734 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2735 HasDefaultArg = NTTP->hasDefaultArgument();
2736 else {
2737 assert(isa<TemplateTemplateParmDecl>(Param));
2738 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002739 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002740 }
2741
2742 if (!HasDefaultArg)
2743 break;
2744 }
2745 }
2746
2747 if (LastDeducibleArgument) {
2748 // Some of the function template arguments cannot be deduced from a
2749 // function call, so we introduce an explicit template argument list
2750 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002751 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002752 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002753 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002754 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002755 }
2756
2757 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002758 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Richard Smith20e883e2015-04-29 23:20:19 +00002759 AddFunctionParameterChunks(PP, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002760 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002761 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002762 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002763 }
2764
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002765 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002766 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002767 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002768 Result.AddTypedTextChunk(
2769 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002770 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002771 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002772 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002773 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002774 }
2775
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002776 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002777 Selector Sel = Method->getSelector();
2778 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002779 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002780 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002781 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002782 }
2783
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002784 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002785 SelName += ':';
2786 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002787 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002788 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002789 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002790
2791 // If there is only one parameter, and we're past it, add an empty
2792 // typed-text chunk since there is nothing to type.
2793 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002794 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002795 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002796 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002797 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2798 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002799 P != PEnd; (void)++P, ++Idx) {
2800 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002801 std::string Keyword;
2802 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002803 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002804 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002805 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002806 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002807 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002808 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002809 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002810 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002811 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002812
2813 // If we're before the starting parameter, skip the placeholder.
2814 if (Idx < StartParameter)
2815 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002816
2817 std::string Arg;
Douglas Gregorc3425b12015-07-07 06:20:19 +00002818 QualType ParamType = (*P)->getType();
2819 Optional<ArrayRef<QualType>> ObjCSubsts;
2820 if (!CCContext.getBaseType().isNull())
2821 ObjCSubsts = CCContext.getBaseType()->getObjCSubstitutions(Method);
2822
2823 if (ParamType->isBlockPointerType() && !DeclaringEntity)
2824 Arg = FormatFunctionParameter(Policy, *P, true,
2825 /*SuppressBlock=*/false,
2826 ObjCSubsts);
Douglas Gregore90dd002010-08-24 16:15:59 +00002827 else {
Douglas Gregorc3425b12015-07-07 06:20:19 +00002828 if (ObjCSubsts)
2829 ParamType = ParamType.substObjCTypeArgs(Ctx, *ObjCSubsts,
2830 ObjCSubstitutionContext::Parameter);
Douglas Gregor86b42682015-06-19 18:27:52 +00002831 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00002832 ParamType);
2833 Arg += ParamType.getAsString(Policy) + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002834 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002835 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002836 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002837 }
2838
Douglas Gregor400f5972010-08-31 05:13:43 +00002839 if (Method->isVariadic() && (P + 1) == PEnd)
2840 Arg += ", ...";
2841
Douglas Gregor95887f92010-07-08 23:20:03 +00002842 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002843 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002844 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002845 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002846 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002847 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002848 }
2849
Douglas Gregor04c5f972009-12-23 00:21:46 +00002850 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002851 if (Method->param_size() == 0) {
2852 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002853 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002854 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002855 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002856 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002857 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002858 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002859
Richard Smith20e883e2015-04-29 23:20:19 +00002860 MaybeAddSentinel(PP, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002861 }
2862
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002863 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002864 }
2865
Douglas Gregorf09935f2009-12-01 05:55:20 +00002866 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002867 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002868 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002869
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002870 Result.AddTypedTextChunk(
2871 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002872 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002873}
2874
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002875/// \brief Add function overload parameter chunks to the given code completion
2876/// string.
2877static void AddOverloadParameterChunks(ASTContext &Context,
2878 const PrintingPolicy &Policy,
2879 const FunctionDecl *Function,
2880 const FunctionProtoType *Prototype,
2881 CodeCompletionBuilder &Result,
2882 unsigned CurrentArg,
2883 unsigned Start = 0,
2884 bool InOptional = false) {
2885 bool FirstParameter = true;
2886 unsigned NumParams = Function ? Function->getNumParams()
2887 : Prototype->getNumParams();
2888
2889 for (unsigned P = Start; P != NumParams; ++P) {
2890 if (Function && Function->getParamDecl(P)->hasDefaultArg() && !InOptional) {
2891 // When we see an optional default argument, put that argument and
2892 // the remaining default arguments into a new, optional string.
2893 CodeCompletionBuilder Opt(Result.getAllocator(),
2894 Result.getCodeCompletionTUInfo());
2895 if (!FirstParameter)
2896 Opt.AddChunk(CodeCompletionString::CK_Comma);
2897 // Optional sections are nested.
2898 AddOverloadParameterChunks(Context, Policy, Function, Prototype, Opt,
2899 CurrentArg, P, /*InOptional=*/true);
2900 Result.AddOptionalChunk(Opt.TakeString());
2901 return;
2902 }
2903
2904 if (FirstParameter)
2905 FirstParameter = false;
2906 else
2907 Result.AddChunk(CodeCompletionString::CK_Comma);
2908
2909 InOptional = false;
2910
2911 // Format the placeholder string.
2912 std::string Placeholder;
2913 if (Function)
Richard Smith20e883e2015-04-29 23:20:19 +00002914 Placeholder = FormatFunctionParameter(Policy, Function->getParamDecl(P));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002915 else
2916 Placeholder = Prototype->getParamType(P).getAsString(Policy);
2917
2918 if (P == CurrentArg)
2919 Result.AddCurrentParameterChunk(
2920 Result.getAllocator().CopyString(Placeholder));
2921 else
2922 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder));
2923 }
2924
2925 if (Prototype && Prototype->isVariadic()) {
2926 CodeCompletionBuilder Opt(Result.getAllocator(),
2927 Result.getCodeCompletionTUInfo());
2928 if (!FirstParameter)
2929 Opt.AddChunk(CodeCompletionString::CK_Comma);
2930
2931 if (CurrentArg < NumParams)
2932 Opt.AddPlaceholderChunk("...");
2933 else
2934 Opt.AddCurrentParameterChunk("...");
2935
2936 Result.AddOptionalChunk(Opt.TakeString());
2937 }
2938}
2939
Douglas Gregorf0f51982009-09-23 00:34:09 +00002940CodeCompletionString *
2941CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002942 unsigned CurrentArg, Sema &S,
2943 CodeCompletionAllocator &Allocator,
2944 CodeCompletionTUInfo &CCTUInfo,
2945 bool IncludeBriefComments) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00002946 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00002947
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002948 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002949 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002950 FunctionDecl *FDecl = getFunction();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002951 const FunctionProtoType *Proto
Douglas Gregorf0f51982009-09-23 00:34:09 +00002952 = dyn_cast<FunctionProtoType>(getFunctionType());
2953 if (!FDecl && !Proto) {
2954 // Function without a prototype. Just give the return type and a
2955 // highlighted ellipsis.
2956 const FunctionType *FT = getFunctionType();
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002957 Result.AddResultTypeChunk(Result.getAllocator().CopyString(
2958 FT->getReturnType().getAsString(Policy)));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002959 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2960 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2961 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002962 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002963 }
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002964
2965 if (FDecl) {
2966 if (IncludeBriefComments && CurrentArg < FDecl->getNumParams())
2967 if (auto RC = S.getASTContext().getRawCommentForAnyRedecl(
2968 FDecl->getParamDecl(CurrentArg)))
2969 Result.addBriefComment(RC->getBriefText(S.getASTContext()));
Douglas Gregorc3425b12015-07-07 06:20:19 +00002970 AddResultTypeChunk(S.Context, Policy, FDecl, QualType(), Result);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002971 Result.AddTextChunk(
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002972 Result.getAllocator().CopyString(FDecl->getNameAsString()));
2973 } else {
2974 Result.AddResultTypeChunk(
2975 Result.getAllocator().CopyString(
Alp Toker314cc812014-01-25 16:55:45 +00002976 Proto->getReturnType().getAsString(Policy)));
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002977 }
Alp Toker314cc812014-01-25 16:55:45 +00002978
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002979 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002980 AddOverloadParameterChunks(S.getASTContext(), Policy, FDecl, Proto, Result,
2981 CurrentArg);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002982 Result.AddChunk(CodeCompletionString::CK_RightParen);
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00002983
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002984 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002985}
2986
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002987unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002988 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00002989 bool PreferredTypeIsPointer) {
2990 unsigned Priority = CCP_Macro;
2991
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002992 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
2993 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
2994 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00002995 Priority = CCP_Constant;
2996 if (PreferredTypeIsPointer)
2997 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002998 }
2999 // Treat "YES", "NO", "true", and "false" as constants.
3000 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
3001 MacroName.equals("true") || MacroName.equals("false"))
3002 Priority = CCP_Constant;
3003 // Treat "bool" as a type.
3004 else if (MacroName.equals("bool"))
3005 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
3006
Douglas Gregor6e240332010-08-16 16:18:59 +00003007
3008 return Priority;
3009}
3010
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003011CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003012 if (!D)
3013 return CXCursor_UnexposedDecl;
3014
3015 switch (D->getKind()) {
3016 case Decl::Enum: return CXCursor_EnumDecl;
3017 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
3018 case Decl::Field: return CXCursor_FieldDecl;
3019 case Decl::Function:
3020 return CXCursor_FunctionDecl;
3021 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
3022 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003023 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00003024
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003025 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003026 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
3027 case Decl::ObjCMethod:
3028 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
3029 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
3030 case Decl::CXXMethod: return CXCursor_CXXMethod;
3031 case Decl::CXXConstructor: return CXCursor_Constructor;
3032 case Decl::CXXDestructor: return CXCursor_Destructor;
3033 case Decl::CXXConversion: return CXCursor_ConversionFunction;
3034 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00003035 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003036 case Decl::ParmVar: return CXCursor_ParmDecl;
3037 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00003038 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Sergey Kalinichev8f3b1872015-11-15 13:48:32 +00003039 case Decl::TypeAliasTemplate: return CXCursor_TypeAliasTemplateDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003040 case Decl::Var: return CXCursor_VarDecl;
3041 case Decl::Namespace: return CXCursor_Namespace;
3042 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
3043 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
3044 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
3045 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
3046 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
3047 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00003048 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003049 case Decl::ClassTemplatePartialSpecialization:
3050 return CXCursor_ClassTemplatePartialSpecialization;
3051 case Decl::UsingDirective: return CXCursor_UsingDirective;
Douglas Gregor3e653b32012-04-30 23:41:16 +00003052 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003053
3054 case Decl::Using:
3055 case Decl::UnresolvedUsingValue:
3056 case Decl::UnresolvedUsingTypename:
3057 return CXCursor_UsingDeclaration;
3058
Douglas Gregor4cd65962011-06-03 23:08:58 +00003059 case Decl::ObjCPropertyImpl:
3060 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
3061 case ObjCPropertyImplDecl::Dynamic:
3062 return CXCursor_ObjCDynamicDecl;
3063
3064 case ObjCPropertyImplDecl::Synthesize:
3065 return CXCursor_ObjCSynthesizeDecl;
3066 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00003067
3068 case Decl::Import:
3069 return CXCursor_ModuleImportDecl;
Douglas Gregor85f3f952015-07-07 03:57:15 +00003070
3071 case Decl::ObjCTypeParam: return CXCursor_TemplateTypeParameter;
3072
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003073 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00003074 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003075 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00003076 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00003077 case TTK_Struct: return CXCursor_StructDecl;
3078 case TTK_Class: return CXCursor_ClassDecl;
3079 case TTK_Union: return CXCursor_UnionDecl;
3080 case TTK_Enum: return CXCursor_EnumDecl;
3081 }
3082 }
3083 }
3084
3085 return CXCursor_UnexposedDecl;
3086}
3087
Douglas Gregor55b037b2010-07-08 20:55:51 +00003088static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00003089 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00003090 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00003091 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00003092
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003093 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003094
Douglas Gregor9eb77012009-11-07 00:00:49 +00003095 for (Preprocessor::macro_iterator M = PP.macro_begin(),
3096 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003097 M != MEnd; ++M) {
Richard Smith20e883e2015-04-29 23:20:19 +00003098 auto MD = PP.getMacroDefinition(M->first);
3099 if (IncludeUndefined || MD) {
3100 if (MacroInfo *MI = MD.getMacroInfo())
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003101 if (MI->isUsedForHeaderGuard())
3102 continue;
3103
Douglas Gregor8cb17462012-10-09 16:01:50 +00003104 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00003105 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00003106 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00003107 TargetTypeIsPointer)));
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003108 }
Douglas Gregor55b037b2010-07-08 20:55:51 +00003109 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003110
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003111 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003112
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003113}
3114
Douglas Gregorce0e8562010-08-23 21:54:33 +00003115static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3116 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003117 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003118
3119 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003120
Douglas Gregorce0e8562010-08-23 21:54:33 +00003121 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3122 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003123 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003124 Results.AddResult(Result("__func__", CCP_Constant));
3125 Results.ExitScope();
3126}
3127
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003128static void HandleCodeCompleteResults(Sema *S,
3129 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003130 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003131 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003132 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003133 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003134 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003135}
3136
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003137static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3138 Sema::ParserCompletionContext PCC) {
3139 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003140 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003141 return CodeCompletionContext::CCC_TopLevel;
3142
John McCallfaf5fb42010-08-26 23:41:50 +00003143 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003144 return CodeCompletionContext::CCC_ClassStructUnion;
3145
John McCallfaf5fb42010-08-26 23:41:50 +00003146 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003147 return CodeCompletionContext::CCC_ObjCInterface;
3148
John McCallfaf5fb42010-08-26 23:41:50 +00003149 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003150 return CodeCompletionContext::CCC_ObjCImplementation;
3151
John McCallfaf5fb42010-08-26 23:41:50 +00003152 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003153 return CodeCompletionContext::CCC_ObjCIvarList;
3154
John McCallfaf5fb42010-08-26 23:41:50 +00003155 case Sema::PCC_Template:
3156 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003157 if (S.CurContext->isFileContext())
3158 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003159 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003160 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003161 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003162
John McCallfaf5fb42010-08-26 23:41:50 +00003163 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003164 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003165
John McCallfaf5fb42010-08-26 23:41:50 +00003166 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003167 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3168 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003169 return CodeCompletionContext::CCC_ParenthesizedExpression;
3170 else
3171 return CodeCompletionContext::CCC_Expression;
3172
3173 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003174 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003175 return CodeCompletionContext::CCC_Expression;
3176
John McCallfaf5fb42010-08-26 23:41:50 +00003177 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003178 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003179
John McCallfaf5fb42010-08-26 23:41:50 +00003180 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003181 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003182
3183 case Sema::PCC_ParenthesizedExpression:
3184 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003185
3186 case Sema::PCC_LocalDeclarationSpecifiers:
3187 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003188 }
David Blaikie8a40f702012-01-17 06:56:22 +00003189
3190 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003191}
3192
Douglas Gregorac322ec2010-08-27 21:18:54 +00003193/// \brief If we're in a C++ virtual member function, add completion results
3194/// that invoke the functions we override, since it's common to invoke the
3195/// overridden function as well as adding new functionality.
3196///
3197/// \param S The semantic analysis object for which we are generating results.
3198///
3199/// \param InContext This context in which the nested-name-specifier preceding
3200/// the code-completion point
3201static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3202 ResultBuilder &Results) {
3203 // Look through blocks.
3204 DeclContext *CurContext = S.CurContext;
3205 while (isa<BlockDecl>(CurContext))
3206 CurContext = CurContext->getParent();
3207
3208
3209 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3210 if (!Method || !Method->isVirtual())
3211 return;
3212
3213 // We need to have names for all of the parameters, if we're going to
3214 // generate a forwarding call.
Aaron Ballman43b68be2014-03-07 17:50:17 +00003215 for (auto P : Method->params())
3216 if (!P->getDeclName())
Douglas Gregorac322ec2010-08-27 21:18:54 +00003217 return;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003218
Douglas Gregor75acd922011-09-27 23:30:47 +00003219 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003220 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3221 MEnd = Method->end_overridden_methods();
3222 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003223 CodeCompletionBuilder Builder(Results.getAllocator(),
3224 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003225 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003226 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3227 continue;
3228
3229 // If we need a nested-name-specifier, add one now.
3230 if (!InContext) {
3231 NestedNameSpecifier *NNS
3232 = getRequiredQualification(S.Context, CurContext,
3233 Overridden->getDeclContext());
3234 if (NNS) {
3235 std::string Str;
3236 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003237 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003238 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003239 }
3240 } else if (!InContext->Equals(Overridden->getDeclContext()))
3241 continue;
3242
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003243 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003244 Overridden->getNameAsString()));
3245 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003246 bool FirstParam = true;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003247 for (auto P : Method->params()) {
Douglas Gregorac322ec2010-08-27 21:18:54 +00003248 if (FirstParam)
3249 FirstParam = false;
3250 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003251 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003252
Aaron Ballman43b68be2014-03-07 17:50:17 +00003253 Builder.AddPlaceholderChunk(
3254 Results.getAllocator().CopyString(P->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003255 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003256 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3257 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003258 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003259 CXCursor_CXXMethod,
3260 CXAvailability_Available,
3261 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003262 Results.Ignore(Overridden);
3263 }
3264}
3265
Douglas Gregor07f43572012-01-29 18:15:03 +00003266void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3267 ModuleIdPath Path) {
3268 typedef CodeCompletionResult Result;
3269 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003270 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003271 CodeCompletionContext::CCC_Other);
3272 Results.EnterNewScope();
3273
3274 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003275 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003276 typedef CodeCompletionResult Result;
3277 if (Path.empty()) {
3278 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003279 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003280 PP.getHeaderSearchInfo().collectAllModules(Modules);
3281 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3282 Builder.AddTypedTextChunk(
3283 Builder.getAllocator().CopyString(Modules[I]->Name));
3284 Results.AddResult(Result(Builder.TakeString(),
3285 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003286 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003287 Modules[I]->isAvailable()
3288 ? CXAvailability_Available
3289 : CXAvailability_NotAvailable));
3290 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003291 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003292 // Load the named module.
3293 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3294 Module::AllVisible,
3295 /*IsInclusionDirective=*/false);
3296 // Enumerate submodules.
3297 if (Mod) {
3298 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3299 SubEnd = Mod->submodule_end();
3300 Sub != SubEnd; ++Sub) {
3301
3302 Builder.AddTypedTextChunk(
3303 Builder.getAllocator().CopyString((*Sub)->Name));
3304 Results.AddResult(Result(Builder.TakeString(),
3305 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003306 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003307 (*Sub)->isAvailable()
3308 ? CXAvailability_Available
3309 : CXAvailability_NotAvailable));
3310 }
3311 }
3312 }
3313 Results.ExitScope();
3314 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3315 Results.data(),Results.size());
3316}
3317
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003318void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003319 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003320 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003321 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003322 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003323 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003324
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003325 // Determine how to filter results, e.g., so that the names of
3326 // values (functions, enumerators, function templates, etc.) are
3327 // only allowed where we can have an expression.
3328 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003329 case PCC_Namespace:
3330 case PCC_Class:
3331 case PCC_ObjCInterface:
3332 case PCC_ObjCImplementation:
3333 case PCC_ObjCInstanceVariableList:
3334 case PCC_Template:
3335 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003336 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003337 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003338 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3339 break;
3340
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003341 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003342 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003343 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003344 case PCC_ForInit:
3345 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003346 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003347 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3348 else
3349 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003350
David Blaikiebbafb8a2012-03-11 07:00:24 +00003351 if (getLangOpts().CPlusPlus)
Craig Topperc3ec1492014-05-26 06:22:03 +00003352 MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003353 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003354
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003355 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003356 // Unfiltered
3357 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003358 }
3359
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003360 // If we are in a C++ non-static member function, check the qualifiers on
3361 // the member function to filter/prioritize the results list.
3362 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3363 if (CurMethod->isInstance())
3364 Results.setObjectTypeQualifiers(
3365 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3366
Douglas Gregorc580c522010-01-14 01:09:38 +00003367 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003368 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3369 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003370
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003371 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003372 Results.ExitScope();
3373
Douglas Gregorce0e8562010-08-23 21:54:33 +00003374 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003375 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003376 case PCC_Expression:
3377 case PCC_Statement:
3378 case PCC_RecoveryInFunction:
3379 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00003380 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003381 break;
3382
3383 case PCC_Namespace:
3384 case PCC_Class:
3385 case PCC_ObjCInterface:
3386 case PCC_ObjCImplementation:
3387 case PCC_ObjCInstanceVariableList:
3388 case PCC_Template:
3389 case PCC_MemberTemplate:
3390 case PCC_ForInit:
3391 case PCC_Condition:
3392 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003393 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003394 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003395 }
3396
Douglas Gregor9eb77012009-11-07 00:00:49 +00003397 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003398 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003399
Douglas Gregor50832e02010-09-20 22:39:41 +00003400 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003401 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003402}
3403
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003404static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3405 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003406 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003407 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003408 bool IsSuper,
3409 ResultBuilder &Results);
3410
3411void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3412 bool AllowNonIdentifiers,
3413 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003414 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003415 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003416 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003417 AllowNestedNameSpecifiers
3418 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3419 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003420 Results.EnterNewScope();
3421
3422 // Type qualifiers can come after names.
3423 Results.AddResult(Result("const"));
3424 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003425 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003426 Results.AddResult(Result("restrict"));
3427
David Blaikiebbafb8a2012-03-11 07:00:24 +00003428 if (getLangOpts().CPlusPlus) {
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003429 if (AllowNonIdentifiers) {
3430 Results.AddResult(Result("operator"));
3431 }
3432
3433 // Add nested-name-specifiers.
3434 if (AllowNestedNameSpecifiers) {
3435 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003436 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003437 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3438 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3439 CodeCompleter->includeGlobals());
Craig Topperc3ec1492014-05-26 06:22:03 +00003440 Results.setFilter(nullptr);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003441 }
3442 }
3443 Results.ExitScope();
3444
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003445 // If we're in a context where we might have an expression (rather than a
3446 // declaration), and what we've seen so far is an Objective-C type that could
3447 // be a receiver of a class message, this may be a class message send with
3448 // the initial opening bracket '[' missing. Add appropriate completions.
3449 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003450 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003451 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003452 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3453 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003454 !DS.isTypeAltiVecVector() &&
3455 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003456 (S->getFlags() & Scope::DeclScope) != 0 &&
3457 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3458 Scope::FunctionPrototypeScope |
3459 Scope::AtCatchScope)) == 0) {
3460 ParsedType T = DS.getRepAsType();
3461 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003462 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003463 }
3464
Douglas Gregor56ccce02010-08-24 04:59:56 +00003465 // Note that we intentionally suppress macro results here, since we do not
3466 // encourage using macros to produce the names of entities.
3467
Douglas Gregor0ac41382010-09-23 23:01:17 +00003468 HandleCodeCompleteResults(this, CodeCompleter,
3469 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003470 Results.data(), Results.size());
3471}
3472
Douglas Gregor68762e72010-08-23 21:17:50 +00003473struct Sema::CodeCompleteExpressionData {
3474 CodeCompleteExpressionData(QualType PreferredType = QualType())
3475 : PreferredType(PreferredType), IntegralConstantExpression(false),
3476 ObjCCollection(false) { }
3477
3478 QualType PreferredType;
3479 bool IntegralConstantExpression;
3480 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003481 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003482};
3483
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003484/// \brief Perform code-completion in an expression context when we know what
3485/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003486void Sema::CodeCompleteExpression(Scope *S,
3487 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003488 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003489 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003490 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003491 if (Data.ObjCCollection)
3492 Results.setFilter(&ResultBuilder::IsObjCCollection);
3493 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003494 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003495 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003496 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3497 else
3498 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003499
3500 if (!Data.PreferredType.isNull())
3501 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3502
3503 // Ignore any declarations that we were told that we don't care about.
3504 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3505 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003506
3507 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003508 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3509 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003510
3511 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003512 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003513 Results.ExitScope();
3514
Douglas Gregor55b037b2010-07-08 20:55:51 +00003515 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003516 if (!Data.PreferredType.isNull())
3517 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3518 || Data.PreferredType->isMemberPointerType()
3519 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003520
Douglas Gregorce0e8562010-08-23 21:54:33 +00003521 if (S->getFnParent() &&
3522 !Data.ObjCCollection &&
3523 !Data.IntegralConstantExpression)
Craig Topper12126262015-11-15 17:27:57 +00003524 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003525
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003526 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003527 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003528 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003529 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3530 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003531 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003532}
3533
Douglas Gregoreda7e542010-09-18 01:28:11 +00003534void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3535 if (E.isInvalid())
3536 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003537 else if (getLangOpts().ObjC1)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003538 CodeCompleteObjCInstanceMessage(S, E.get(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003539}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003540
Douglas Gregorb888acf2010-12-09 23:01:55 +00003541/// \brief The set of properties that have already been added, referenced by
3542/// property name.
3543typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3544
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003545/// \brief Retrieve the container definition, if any?
3546static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3547 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3548 if (Interface->hasDefinition())
3549 return Interface->getDefinition();
3550
3551 return Interface;
3552 }
3553
3554 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3555 if (Protocol->hasDefinition())
3556 return Protocol->getDefinition();
3557
3558 return Protocol;
3559 }
3560 return Container;
3561}
3562
Douglas Gregorc3425b12015-07-07 06:20:19 +00003563static void AddObjCProperties(const CodeCompletionContext &CCContext,
3564 ObjCContainerDecl *Container,
Douglas Gregor5d649882009-11-18 22:32:06 +00003565 bool AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003566 bool AllowNullaryMethods,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003567 DeclContext *CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003568 AddedPropertiesSet &AddedProperties,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003569 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003570 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003571
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003572 // Retrieve the definition.
3573 Container = getContainerDef(Container);
3574
Douglas Gregor9291bad2009-11-18 01:29:26 +00003575 // Add properties in this container.
Aaron Ballmand174edf2014-03-13 19:11:50 +00003576 for (const auto *P : Container->properties())
David Blaikie82e95a32014-11-19 07:49:47 +00003577 if (AddedProperties.insert(P->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00003578 Results.MaybeAddResult(Result(P, Results.getBasePriority(P), nullptr),
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003579 CurContext);
Craig Topperc3ec1492014-05-26 06:22:03 +00003580
Douglas Gregor95147142011-05-05 15:50:42 +00003581 // Add nullary methods
3582 if (AllowNullaryMethods) {
3583 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003584 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003585 for (auto *M : Container->methods()) {
Douglas Gregor95147142011-05-05 15:50:42 +00003586 if (M->getSelector().isUnarySelector())
3587 if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0))
David Blaikie82e95a32014-11-19 07:49:47 +00003588 if (AddedProperties.insert(Name).second) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003589 CodeCompletionBuilder Builder(Results.getAllocator(),
3590 Results.getCodeCompletionTUInfo());
Douglas Gregorc3425b12015-07-07 06:20:19 +00003591 AddResultTypeChunk(Context, Policy, M, CCContext.getBaseType(),
3592 Builder);
Douglas Gregor95147142011-05-05 15:50:42 +00003593 Builder.AddTypedTextChunk(
3594 Results.getAllocator().CopyString(Name->getName()));
3595
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003596 Results.MaybeAddResult(Result(Builder.TakeString(), M,
Douglas Gregor78254c82012-03-27 23:34:16 +00003597 CCP_MemberDeclaration + CCD_MethodAsProperty),
Douglas Gregor95147142011-05-05 15:50:42 +00003598 CurContext);
3599 }
3600 }
3601 }
3602
3603
Douglas Gregor9291bad2009-11-18 01:29:26 +00003604 // Add properties in referenced protocols.
3605 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003606 for (auto *P : Protocol->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003607 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
3608 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003609 } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){
Douglas Gregor5d649882009-11-18 22:32:06 +00003610 if (AllowCategories) {
3611 // Look through categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00003612 for (auto *Cat : IFace->known_categories())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003613 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods,
3614 CurContext, AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00003615 }
Aaron Ballman15063e12014-03-13 21:35:02 +00003616
Douglas Gregor9291bad2009-11-18 01:29:26 +00003617 // Look through protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003618 for (auto *I : IFace->all_referenced_protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003619 AddObjCProperties(CCContext, I, AllowCategories, AllowNullaryMethods,
3620 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003621
3622 // Look in the superclass.
3623 if (IFace->getSuperClass())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003624 AddObjCProperties(CCContext, IFace->getSuperClass(), AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003625 AllowNullaryMethods, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003626 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003627 } else if (const ObjCCategoryDecl *Category
3628 = dyn_cast<ObjCCategoryDecl>(Container)) {
3629 // Look through protocols.
Aaron Ballman19a41762014-03-14 12:55:57 +00003630 for (auto *P : Category->protocols())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003631 AddObjCProperties(CCContext, P, AllowCategories, AllowNullaryMethods,
3632 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003633 }
3634}
3635
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003636void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Douglas Gregor2436e712009-09-17 21:32:03 +00003637 SourceLocation OpLoc,
3638 bool IsArrow) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003639 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003640 return;
3641
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003642 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3643 if (ConvertedBase.isInvalid())
3644 return;
3645 Base = ConvertedBase.get();
3646
John McCall276321a2010-08-25 06:19:51 +00003647 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003648
Douglas Gregor2436e712009-09-17 21:32:03 +00003649 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003650
3651 if (IsArrow) {
3652 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3653 BaseType = Ptr->getPointeeType();
3654 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003655 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003656 else
3657 return;
3658 }
3659
Douglas Gregor21325842011-07-07 16:03:39 +00003660 enum CodeCompletionContext::Kind contextKind;
3661
3662 if (IsArrow) {
3663 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3664 }
3665 else {
3666 if (BaseType->isObjCObjectPointerType() ||
3667 BaseType->isObjCObjectOrInterfaceType()) {
3668 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3669 }
3670 else {
3671 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3672 }
3673 }
Douglas Gregorc3425b12015-07-07 06:20:19 +00003674
3675 CodeCompletionContext CCContext(contextKind, BaseType);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003676 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003677 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00003678 CCContext,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003679 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003680 Results.EnterNewScope();
3681 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003682 // Indicate that we are performing a member access, and the cv-qualifiers
3683 // for the base object type.
3684 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3685
Douglas Gregor9291bad2009-11-18 01:29:26 +00003686 // Access to a C/C++ class, struct, or union.
Douglas Gregor6ae4c522010-01-14 03:21:49 +00003687 Results.allowNestedNameSpecifiers();
Douglas Gregor09bbc652010-01-14 15:47:35 +00003688 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003689 LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer,
3690 CodeCompleter->includeGlobals());
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003691
David Blaikiebbafb8a2012-03-11 07:00:24 +00003692 if (getLangOpts().CPlusPlus) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003693 if (!Results.empty()) {
3694 // The "template" keyword can follow "->" or "." in the grammar.
3695 // However, we only want to suggest the template keyword if something
3696 // is dependent.
3697 bool IsDependent = BaseType->isDependentType();
3698 if (!IsDependent) {
3699 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00003700 if (DeclContext *Ctx = DepScope->getEntity()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003701 IsDependent = Ctx->isDependentContext();
3702 break;
3703 }
3704 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003705
Douglas Gregor9291bad2009-11-18 01:29:26 +00003706 if (IsDependent)
Douglas Gregor78a21012010-01-14 16:01:26 +00003707 Results.AddResult(Result("template"));
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003708 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003709 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003710 } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) {
3711 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003712 AddedPropertiesSet AddedProperties;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003713
3714 // Add property results based on our interface.
3715 const ObjCObjectPointerType *ObjCPtr
3716 = BaseType->getAsObjCInterfacePointerType();
3717 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
Douglas Gregorc3425b12015-07-07 06:20:19 +00003718 AddObjCProperties(CCContext, ObjCPtr->getInterfaceDecl(), true,
Douglas Gregor95147142011-05-05 15:50:42 +00003719 /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003720 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003721
3722 // Add properties from the protocols in a qualified interface.
Aaron Ballman83731462014-03-17 16:14:00 +00003723 for (auto *I : ObjCPtr->quals())
Douglas Gregorc3425b12015-07-07 06:20:19 +00003724 AddObjCProperties(CCContext, I, true, /*AllowNullaryMethods=*/true,
3725 CurContext, AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003726 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003727 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003728 // Objective-C instance variable access.
Craig Topperc3ec1492014-05-26 06:22:03 +00003729 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003730 if (const ObjCObjectPointerType *ObjCPtr
3731 = BaseType->getAs<ObjCObjectPointerType>())
3732 Class = ObjCPtr->getInterfaceDecl();
3733 else
John McCall8b07ec22010-05-15 11:32:37 +00003734 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003735
3736 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003737 if (Class) {
3738 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3739 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003740 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3741 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00003742 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003743 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003744
3745 // FIXME: How do we cope with isa?
3746
3747 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003748
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003749 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003750 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003751 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003752 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00003753}
3754
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003755void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
3756 if (!CodeCompleter)
3757 return;
Craig Topperc3ec1492014-05-26 06:22:03 +00003758
3759 ResultBuilder::LookupFilter Filter = nullptr;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003760 enum CodeCompletionContext::Kind ContextKind
3761 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003762 switch ((DeclSpec::TST)TagSpec) {
3763 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003764 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003765 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003766 break;
3767
3768 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003769 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003770 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003771 break;
3772
3773 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003774 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00003775 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003776 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003777 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003778 break;
3779
3780 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003781 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003782 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003783
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003784 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
3785 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00003786 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00003787
3788 // First pass: look for tags.
3789 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00003790 LookupVisibleDecls(S, LookupTagName, Consumer,
3791 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00003792
Douglas Gregor39982192010-08-15 06:18:01 +00003793 if (CodeCompleter->includeGlobals()) {
3794 // Second pass: look for nested name specifiers.
3795 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
3796 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
3797 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003798
Douglas Gregor0ac41382010-09-23 23:01:17 +00003799 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003800 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003801}
3802
Douglas Gregor28c78432010-08-27 17:35:51 +00003803void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003804 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003805 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003806 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00003807 Results.EnterNewScope();
3808 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
3809 Results.AddResult("const");
3810 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
3811 Results.AddResult("volatile");
David Blaikiebbafb8a2012-03-11 07:00:24 +00003812 if (getLangOpts().C99 &&
Douglas Gregor28c78432010-08-27 17:35:51 +00003813 !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
3814 Results.AddResult("restrict");
Richard Smith8e1ac332013-03-28 01:55:44 +00003815 if (getLangOpts().C11 &&
3816 !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
3817 Results.AddResult("_Atomic");
Douglas Gregor28c78432010-08-27 17:35:51 +00003818 Results.ExitScope();
3819 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003820 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00003821 Results.data(), Results.size());
3822}
3823
Douglas Gregord328d572009-09-21 18:10:23 +00003824void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00003825 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00003826 return;
John McCall5939b162011-08-06 07:30:58 +00003827
John McCallaab3e412010-08-25 08:40:02 +00003828 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00003829 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
3830 if (!type->isEnumeralType()) {
3831 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00003832 Data.IntegralConstantExpression = true;
3833 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00003834 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00003835 }
Douglas Gregord328d572009-09-21 18:10:23 +00003836
3837 // Code-complete the cases of a switch statement over an enumeration type
3838 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00003839 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003840 if (EnumDecl *Def = Enum->getDefinition())
3841 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00003842
3843 // Determine which enumerators we have already seen in the switch statement.
3844 // FIXME: Ideally, we would also be able to look *past* the code-completion
3845 // token, in case we are code-completing in the middle of the switch and not
3846 // at the end. However, we aren't able to do so at the moment.
3847 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Craig Topperc3ec1492014-05-26 06:22:03 +00003848 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregord328d572009-09-21 18:10:23 +00003849 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
3850 SC = SC->getNextSwitchCase()) {
3851 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
3852 if (!Case)
3853 continue;
3854
3855 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
3856 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
3857 if (EnumConstantDecl *Enumerator
3858 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3859 // We look into the AST of the case statement to determine which
3860 // enumerator was named. Alternatively, we could compute the value of
3861 // the integral constant expression, then compare it against the
3862 // values of each enumerator. However, value-based approach would not
3863 // work as well with C++ templates where enumerators declared within a
3864 // template are type- and value-dependent.
3865 EnumeratorsSeen.insert(Enumerator);
3866
Douglas Gregorf2510672009-09-21 19:57:38 +00003867 // If this is a qualified-id, keep track of the nested-name-specifier
3868 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00003869 //
3870 // switch (TagD.getKind()) {
3871 // case TagDecl::TK_enum:
3872 // break;
3873 // case XXX
3874 //
Douglas Gregorf2510672009-09-21 19:57:38 +00003875 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00003876 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
3877 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00003878 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00003879 }
3880 }
3881
David Blaikiebbafb8a2012-03-11 07:00:24 +00003882 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00003883 // If there are no prior enumerators in C++, check whether we have to
3884 // qualify the names of the enumerators that we suggest, because they
3885 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00003886 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00003887 }
3888
Douglas Gregord328d572009-09-21 18:10:23 +00003889 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003890 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003891 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003892 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00003893 Results.EnterNewScope();
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003894 for (auto *E : Enum->enumerators()) {
3895 if (EnumeratorsSeen.count(E))
Douglas Gregord328d572009-09-21 18:10:23 +00003896 continue;
3897
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003898 CodeCompletionResult R(E, CCP_EnumInCase, Qualifier);
Craig Topperc3ec1492014-05-26 06:22:03 +00003899 Results.AddResult(R, CurContext, nullptr, false);
Douglas Gregord328d572009-09-21 18:10:23 +00003900 }
3901 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00003902
Douglas Gregor21325842011-07-07 16:03:39 +00003903 //We need to make sure we're setting the right context,
3904 //so only say we include macros if the code completer says we do
3905 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
3906 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00003907 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00003908 kind = CodeCompletionContext::CCC_OtherWithMacros;
3909 }
3910
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003911 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00003912 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003913 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00003914}
3915
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003916static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003917 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003918 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003919
3920 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003921 if (!Args[I])
3922 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003923
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003924 return false;
3925}
3926
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003927typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
3928
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003929static void mergeCandidatesWithResults(Sema &SemaRef,
3930 SmallVectorImpl<ResultCandidate> &Results,
3931 OverloadCandidateSet &CandidateSet,
3932 SourceLocation Loc) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003933 if (!CandidateSet.empty()) {
3934 // Sort the overload candidate set by placing the best overloads first.
3935 std::stable_sort(
3936 CandidateSet.begin(), CandidateSet.end(),
3937 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
3938 return isBetterOverloadCandidate(SemaRef, X, Y, Loc);
3939 });
3940
3941 // Add the remaining viable overload candidates as code-completion results.
3942 for (auto &Candidate : CandidateSet)
3943 if (Candidate.Viable)
3944 Results.push_back(ResultCandidate(Candidate.Function));
3945 }
3946}
3947
3948/// \brief Get the type of the Nth parameter from a given set of overload
3949/// candidates.
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003950static QualType getParamType(Sema &SemaRef,
3951 ArrayRef<ResultCandidate> Candidates,
3952 unsigned N) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003953
3954 // Given the overloads 'Candidates' for a function call matching all arguments
3955 // up to N, return the type of the Nth parameter if it is the same for all
3956 // overload candidates.
3957 QualType ParamType;
3958 for (auto &Candidate : Candidates) {
3959 if (auto FType = Candidate.getFunctionType())
3960 if (auto Proto = dyn_cast<FunctionProtoType>(FType))
3961 if (N < Proto->getNumParams()) {
3962 if (ParamType.isNull())
3963 ParamType = Proto->getParamType(N);
3964 else if (!SemaRef.Context.hasSameUnqualifiedType(
3965 ParamType.getNonReferenceType(),
3966 Proto->getParamType(N).getNonReferenceType()))
3967 // Otherwise return a default-constructed QualType.
3968 return QualType();
3969 }
3970 }
3971
3972 return ParamType;
3973}
3974
Francisco Lopes da Silva8cafefa2015-01-29 05:54:59 +00003975static void CodeCompleteOverloadResults(Sema &SemaRef, Scope *S,
3976 MutableArrayRef<ResultCandidate> Candidates,
3977 unsigned CurrentArg,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00003978 bool CompleteExpressionWithCurrentArg = true) {
3979 QualType ParamType;
3980 if (CompleteExpressionWithCurrentArg)
3981 ParamType = getParamType(SemaRef, Candidates, CurrentArg);
3982
3983 if (ParamType.isNull())
3984 SemaRef.CodeCompleteOrdinaryName(S, Sema::PCC_Expression);
3985 else
3986 SemaRef.CodeCompleteExpression(S, ParamType);
3987
3988 if (!Candidates.empty())
3989 SemaRef.CodeCompleter->ProcessOverloadCandidates(SemaRef, CurrentArg,
3990 Candidates.data(),
3991 Candidates.size());
3992}
3993
3994void Sema::CodeCompleteCall(Scope *S, Expr *Fn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00003995 if (!CodeCompleter)
3996 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003997
3998 // When we're code-completing for a call, we fall back to ordinary
3999 // name code-completion whenever we can't produce specific
4000 // results. We may want to revisit this strategy in the future,
4001 // e.g., by merging the two kinds of results.
4002
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004003 // FIXME: Provide support for variadic template functions.
Douglas Gregor3ef59522009-12-11 19:06:04 +00004004
Douglas Gregorcabea402009-09-22 15:41:20 +00004005 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004006 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
4007 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004008 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00004009 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00004010 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004011
John McCall57500772009-12-16 12:17:52 +00004012 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00004013 SourceLocation Loc = Fn->getExprLoc();
Richard Smith100b24a2014-04-17 01:52:14 +00004014 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
John McCall57500772009-12-16 12:17:52 +00004015
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004016 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00004017
John McCall57500772009-12-16 12:17:52 +00004018 Expr *NakedFn = Fn->IgnoreParenCasts();
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004019 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00004020 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004021 /*PartialOverloading=*/true);
4022 else if (auto UME = dyn_cast<UnresolvedMemberExpr>(NakedFn)) {
4023 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = nullptr;
4024 if (UME->hasExplicitTemplateArgs()) {
4025 UME->copyTemplateArgumentsInto(TemplateArgsBuffer);
4026 TemplateArgs = &TemplateArgsBuffer;
Douglas Gregorff59f672010-01-21 15:46:19 +00004027 }
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004028 SmallVector<Expr *, 12> ArgExprs(1, UME->getBase());
4029 ArgExprs.append(Args.begin(), Args.end());
4030 UnresolvedSet<8> Decls;
4031 Decls.append(UME->decls_begin(), UME->decls_end());
4032 AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs,
4033 /*SuppressUsedConversions=*/false,
4034 /*PartialOverloading=*/true);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004035 } else {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004036 FunctionDecl *FD = nullptr;
4037 if (auto MCE = dyn_cast<MemberExpr>(NakedFn))
4038 FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl());
4039 else if (auto DRE = dyn_cast<DeclRefExpr>(NakedFn))
4040 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004041 if (FD) { // We check whether it's a resolved function declaration.
Francisco Lopes da Silva0c010cd2015-01-28 14:17:22 +00004042 if (!getLangOpts().CPlusPlus ||
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004043 !FD->getType()->getAs<FunctionProtoType>())
4044 Results.push_back(ResultCandidate(FD));
4045 else
4046 AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()),
4047 Args, CandidateSet,
4048 /*SuppressUsedConversions=*/false,
4049 /*PartialOverloading=*/true);
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004050
4051 } else if (auto DC = NakedFn->getType()->getAsCXXRecordDecl()) {
4052 // If expression's type is CXXRecordDecl, it may overload the function
4053 // call operator, so we check if it does and add them as candidates.
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004054 // A complete type is needed to lookup for member function call operators.
Francisco Lopes da Silva1a4f8552015-01-25 17:00:47 +00004055 if (!RequireCompleteType(Loc, NakedFn->getType(), 0)) {
Francisco Lopes da Silvaa349a8a2015-01-25 08:47:59 +00004056 DeclarationName OpName = Context.DeclarationNames
4057 .getCXXOperatorName(OO_Call);
4058 LookupResult R(*this, OpName, Loc, LookupOrdinaryName);
4059 LookupQualifiedName(R, DC);
4060 R.suppressDiagnostics();
4061 SmallVector<Expr *, 12> ArgExprs(1, NakedFn);
4062 ArgExprs.append(Args.begin(), Args.end());
4063 AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet,
4064 /*ExplicitArgs=*/nullptr,
4065 /*SuppressUsedConversions=*/false,
4066 /*PartialOverloading=*/true);
4067 }
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004068 } else {
4069 // Lastly we check whether expression's type is function pointer or
4070 // function.
4071 QualType T = NakedFn->getType();
4072 if (!T->getPointeeType().isNull())
4073 T = T->getPointeeType();
4074
4075 if (auto FP = T->getAs<FunctionProtoType>()) {
4076 if (!TooManyArguments(FP->getNumParams(), Args.size(),
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004077 /*PartialOverloading=*/true) ||
4078 FP->isVariadic())
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004079 Results.push_back(ResultCandidate(FP));
4080 } else if (auto FT = T->getAs<FunctionType>())
Francisco Lopes da Silva62a9a4f2015-01-23 13:17:51 +00004081 // No prototype and declaration, it may be a K & R style function.
Francisco Lopes da Silvac6ccc4f2015-01-22 21:14:08 +00004082 Results.push_back(ResultCandidate(FT));
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004083 }
Douglas Gregorcabea402009-09-22 15:41:20 +00004084 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00004085
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004086 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4087 CodeCompleteOverloadResults(*this, S, Results, Args.size(),
4088 !CandidateSet.empty());
4089}
4090
4091void Sema::CodeCompleteConstructor(Scope *S, QualType Type, SourceLocation Loc,
4092 ArrayRef<Expr *> Args) {
4093 if (!CodeCompleter)
4094 return;
4095
4096 // A complete type is needed to lookup for constructors.
4097 if (RequireCompleteType(Loc, Type, 0))
4098 return;
4099
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004100 CXXRecordDecl *RD = Type->getAsCXXRecordDecl();
4101 if (!RD) {
4102 CodeCompleteExpression(S, Type);
4103 return;
4104 }
4105
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004106 // FIXME: Provide support for member initializers.
4107 // FIXME: Provide support for variadic template constructors.
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004108
4109 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
4110
Argyrios Kyrtzidisee1d76f2015-03-13 07:39:30 +00004111 for (auto C : LookupConstructors(RD)) {
Francisco Lopes da Silva975a9f62015-01-21 16:24:11 +00004112 if (auto FD = dyn_cast<FunctionDecl>(C)) {
4113 AddOverloadCandidate(FD, DeclAccessPair::make(FD, C->getAccess()),
4114 Args, CandidateSet,
4115 /*SuppressUsedConversions=*/false,
4116 /*PartialOverloading=*/true);
4117 } else if (auto FTD = dyn_cast<FunctionTemplateDecl>(C)) {
4118 AddTemplateOverloadCandidate(FTD,
4119 DeclAccessPair::make(FTD, C->getAccess()),
4120 /*ExplicitTemplateArgs=*/nullptr,
4121 Args, CandidateSet,
4122 /*SuppressUsedConversions=*/false,
4123 /*PartialOverloading=*/true);
4124 }
4125 }
4126
4127 SmallVector<ResultCandidate, 8> Results;
4128 mergeCandidatesWithResults(*this, Results, CandidateSet, Loc);
4129 CodeCompleteOverloadResults(*this, S, Results, Args.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00004130}
4131
John McCall48871652010-08-21 09:40:31 +00004132void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
4133 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004134 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004135 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004136 return;
4137 }
4138
4139 CodeCompleteExpression(S, VD->getType());
4140}
4141
4142void Sema::CodeCompleteReturn(Scope *S) {
4143 QualType ResultType;
4144 if (isa<BlockDecl>(CurContext)) {
4145 if (BlockScopeInfo *BSI = getCurBlock())
4146 ResultType = BSI->ReturnType;
4147 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004148 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004149 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00004150 ResultType = Method->getReturnType();
4151
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004152 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004153 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004154 else
4155 CodeCompleteExpression(S, ResultType);
4156}
4157
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004158void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004159 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004160 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004161 mapCodeCompletionContext(*this, PCC_Statement));
4162 Results.setFilter(&ResultBuilder::IsOrdinaryName);
4163 Results.EnterNewScope();
4164
4165 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4166 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4167 CodeCompleter->includeGlobals());
4168
4169 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
4170
4171 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004172 CodeCompletionBuilder Builder(Results.getAllocator(),
4173 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004174 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004175 if (Results.includeCodePatterns()) {
4176 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4177 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4178 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4179 Builder.AddPlaceholderChunk("statements");
4180 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4181 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4182 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004183 Results.AddResult(Builder.TakeString());
4184
4185 // "else if" block
4186 Builder.AddTypedTextChunk("else");
4187 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4188 Builder.AddTextChunk("if");
4189 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4190 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00004191 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004192 Builder.AddPlaceholderChunk("condition");
4193 else
4194 Builder.AddPlaceholderChunk("expression");
4195 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004196 if (Results.includeCodePatterns()) {
4197 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4198 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4199 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4200 Builder.AddPlaceholderChunk("statements");
4201 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4202 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4203 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004204 Results.AddResult(Builder.TakeString());
4205
4206 Results.ExitScope();
4207
4208 if (S->getFnParent())
Craig Topper12126262015-11-15 17:27:57 +00004209 AddPrettyFunctionResults(getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004210
4211 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004212 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004213
4214 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4215 Results.data(),Results.size());
4216}
4217
Richard Trieu2bd04012011-09-09 02:00:50 +00004218void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004219 if (LHS)
4220 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4221 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004222 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004223}
4224
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004225void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004226 bool EnteringContext) {
4227 if (!SS.getScopeRep() || !CodeCompleter)
4228 return;
4229
Douglas Gregor3545ff42009-09-21 16:56:56 +00004230 DeclContext *Ctx = computeDeclContext(SS, EnteringContext);
4231 if (!Ctx)
4232 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004233
4234 // Try to instantiate any non-dependent declaration contexts before
4235 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004236 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004237 return;
4238
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004239 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004240 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004241 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004242 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004243
Douglas Gregor3545ff42009-09-21 16:56:56 +00004244 // The "template" keyword can follow "::" in the grammar, but only
4245 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004246 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004247 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004248 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004249
4250 // Add calls to overridden virtual functions, if there are any.
4251 //
4252 // FIXME: This isn't wonderful, because we don't know whether we're actually
4253 // in a context that permits expressions. This is a general issue with
4254 // qualified-id completions.
4255 if (!EnteringContext)
4256 MaybeAddOverrideCalls(*this, Ctx, Results);
4257 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004258
Douglas Gregorac322ec2010-08-27 21:18:54 +00004259 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4260 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer);
4261
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004262 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004263 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004264 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004265}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004266
4267void Sema::CodeCompleteUsing(Scope *S) {
4268 if (!CodeCompleter)
4269 return;
4270
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004271 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004272 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004273 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4274 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004275 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004276
4277 // If we aren't in class scope, we could see the "namespace" keyword.
4278 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004279 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004280
4281 // After "using", we can see anything that would start a
4282 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004283 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004284 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4285 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004286 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004287
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004288 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004289 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004290 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004291}
4292
4293void Sema::CodeCompleteUsingDirective(Scope *S) {
4294 if (!CodeCompleter)
4295 return;
4296
Douglas Gregor3545ff42009-09-21 16:56:56 +00004297 // After "using namespace", we expect to see a namespace name or namespace
4298 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004299 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004300 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004301 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004302 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004303 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004304 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004305 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4306 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004307 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004308 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004309 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004310 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004311}
4312
4313void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4314 if (!CodeCompleter)
4315 return;
4316
Ted Kremenekc37877d2013-10-08 17:08:03 +00004317 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004318 if (!S->getParent())
4319 Ctx = Context.getTranslationUnitDecl();
4320
Douglas Gregor0ac41382010-09-23 23:01:17 +00004321 bool SuppressedGlobalResults
4322 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4323
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004324 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004325 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004326 SuppressedGlobalResults
4327 ? CodeCompletionContext::CCC_Namespace
4328 : CodeCompletionContext::CCC_Other,
4329 &ResultBuilder::IsNamespace);
4330
4331 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004332 // We only want to see those namespaces that have already been defined
4333 // within this scope, because its likely that the user is creating an
4334 // extended namespace declaration. Keep track of the most recent
4335 // definition of each namespace.
4336 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4337 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4338 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4339 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004340 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004341
4342 // Add the most recent definition (or extended definition) of each
4343 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004344 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004345 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004346 NS = OrigToLatest.begin(),
4347 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004348 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004349 Results.AddResult(CodeCompletionResult(
Craig Topperc3ec1492014-05-26 06:22:03 +00004350 NS->second, Results.getBasePriority(NS->second),
4351 nullptr),
4352 CurContext, nullptr, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004353 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004354 }
4355
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004356 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004357 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004358 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004359}
4360
4361void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4362 if (!CodeCompleter)
4363 return;
4364
Douglas Gregor3545ff42009-09-21 16:56:56 +00004365 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004366 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004367 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004368 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004369 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004370 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004371 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4372 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004373 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004374 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004375 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004376}
4377
Douglas Gregorc811ede2009-09-18 20:05:18 +00004378void Sema::CodeCompleteOperatorName(Scope *S) {
4379 if (!CodeCompleter)
4380 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004381
John McCall276321a2010-08-25 06:19:51 +00004382 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004383 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004384 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004385 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004386 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004387 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004388
Douglas Gregor3545ff42009-09-21 16:56:56 +00004389 // Add the names of overloadable operators.
4390#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4391 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004392 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004393#include "clang/Basic/OperatorKinds.def"
4394
4395 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004396 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004397 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004398 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4399 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004400
4401 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004402 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004403 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004404
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004405 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004406 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004407 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004408}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004409
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004410void Sema::CodeCompleteConstructorInitializer(
4411 Decl *ConstructorD,
4412 ArrayRef <CXXCtorInitializer *> Initializers) {
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004413 if (!ConstructorD)
4414 return;
4415
4416 AdjustDeclIfTemplate(ConstructorD);
4417
4418 CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004419 if (!Constructor)
4420 return;
4421
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004422 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004423 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004424 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004425 Results.EnterNewScope();
4426
4427 // Fill in any already-initialized fields or base classes.
4428 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4429 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004430 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004431 if (Initializers[I]->isBaseInitializer())
4432 InitializedBases.insert(
4433 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4434 else
Francois Pichetd583da02010-12-04 09:14:42 +00004435 InitializedFields.insert(cast<FieldDecl>(
4436 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004437 }
4438
4439 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004440 CodeCompletionBuilder Builder(Results.getAllocator(),
4441 Results.getCodeCompletionTUInfo());
Benjamin Kramera4f8df02015-07-09 15:31:10 +00004442 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004443 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004444 CXXRecordDecl *ClassDecl = Constructor->getParent();
Aaron Ballman574705e2014-03-13 15:41:46 +00004445 for (const auto &Base : ClassDecl->bases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004446 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4447 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004448 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004449 = !Initializers.empty() &&
4450 Initializers.back()->isBaseInitializer() &&
Aaron Ballman574705e2014-03-13 15:41:46 +00004451 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004452 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004453 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004454 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004455
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004456 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004457 Results.getAllocator().CopyString(
Aaron Ballman574705e2014-03-13 15:41:46 +00004458 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004459 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4460 Builder.AddPlaceholderChunk("args");
4461 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4462 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004463 SawLastInitializer? CCP_NextInitializer
4464 : CCP_MemberDeclaration));
4465 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004466 }
4467
4468 // Add completions for virtual base classes.
Aaron Ballman445a9392014-03-13 16:15:17 +00004469 for (const auto &Base : ClassDecl->vbases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004470 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4471 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004472 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004473 = !Initializers.empty() &&
4474 Initializers.back()->isBaseInitializer() &&
Aaron Ballman445a9392014-03-13 16:15:17 +00004475 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004476 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004477 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004478 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004479
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004480 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004481 Builder.getAllocator().CopyString(
Aaron Ballman445a9392014-03-13 16:15:17 +00004482 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004483 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4484 Builder.AddPlaceholderChunk("args");
4485 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4486 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004487 SawLastInitializer? CCP_NextInitializer
4488 : CCP_MemberDeclaration));
4489 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004490 }
4491
4492 // Add completions for members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004493 for (auto *Field : ClassDecl->fields()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004494 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))
4495 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004496 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004497 = !Initializers.empty() &&
4498 Initializers.back()->isAnyMemberInitializer() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004499 Initializers.back()->getAnyMember() == Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004500 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004501 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004502
4503 if (!Field->getDeclName())
4504 continue;
4505
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004506 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004507 Field->getIdentifier()->getName()));
4508 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4509 Builder.AddPlaceholderChunk("args");
4510 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4511 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004512 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004513 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004514 CXCursor_MemberRef,
4515 CXAvailability_Available,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004516 Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004517 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004518 }
4519 Results.ExitScope();
4520
Douglas Gregor0ac41382010-09-23 23:01:17 +00004521 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004522 Results.data(), Results.size());
4523}
4524
Douglas Gregord8c61782012-02-15 15:34:24 +00004525/// \brief Determine whether this scope denotes a namespace.
4526static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004527 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004528 if (!DC)
4529 return false;
4530
4531 return DC->isFileContext();
4532}
4533
4534void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4535 bool AfterAmpersand) {
4536 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004537 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004538 CodeCompletionContext::CCC_Other);
4539 Results.EnterNewScope();
4540
4541 // Note what has already been captured.
4542 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4543 bool IncludedThis = false;
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004544 for (const auto &C : Intro.Captures) {
4545 if (C.Kind == LCK_This) {
Douglas Gregord8c61782012-02-15 15:34:24 +00004546 IncludedThis = true;
4547 continue;
4548 }
4549
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004550 Known.insert(C.Id);
Douglas Gregord8c61782012-02-15 15:34:24 +00004551 }
4552
4553 // Look for other capturable variables.
4554 for (; S && !isNamespaceScope(S); S = S->getParent()) {
Aaron Ballman35c54952014-03-17 16:55:25 +00004555 for (const auto *D : S->decls()) {
4556 const auto *Var = dyn_cast<VarDecl>(D);
Douglas Gregord8c61782012-02-15 15:34:24 +00004557 if (!Var ||
4558 !Var->hasLocalStorage() ||
4559 Var->hasAttr<BlocksAttr>())
4560 continue;
4561
David Blaikie82e95a32014-11-19 07:49:47 +00004562 if (Known.insert(Var->getIdentifier()).second)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004563 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
Craig Topperc3ec1492014-05-26 06:22:03 +00004564 CurContext, nullptr, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004565 }
4566 }
4567
4568 // Add 'this', if it would be valid.
4569 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4570 addThisCompletion(*this, Results);
4571
4572 Results.ExitScope();
4573
4574 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4575 Results.data(), Results.size());
4576}
4577
James Dennett596e4752012-06-14 03:11:41 +00004578/// Macro that optionally prepends an "@" to the string literal passed in via
4579/// Keyword, depending on whether NeedAt is true or false.
4580#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4581
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004582static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004583 ResultBuilder &Results,
4584 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004585 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004586 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004587 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004588
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004589 CodeCompletionBuilder Builder(Results.getAllocator(),
4590 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004591 if (LangOpts.ObjC2) {
4592 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004593 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004594 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4595 Builder.AddPlaceholderChunk("property");
4596 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004597
4598 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004599 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004600 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4601 Builder.AddPlaceholderChunk("property");
4602 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004603 }
4604}
4605
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004606static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004607 ResultBuilder &Results,
4608 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004609 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004610
4611 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004612 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004613
4614 if (LangOpts.ObjC2) {
4615 // @property
James Dennett596e4752012-06-14 03:11:41 +00004616 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004617
4618 // @required
James Dennett596e4752012-06-14 03:11:41 +00004619 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004620
4621 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004622 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004623 }
4624}
4625
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004626static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004627 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004628 CodeCompletionBuilder Builder(Results.getAllocator(),
4629 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004630
4631 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004632 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004633 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4634 Builder.AddPlaceholderChunk("name");
4635 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004636
Douglas Gregorf4c33342010-05-28 00:22:41 +00004637 if (Results.includeCodePatterns()) {
4638 // @interface name
4639 // FIXME: Could introduce the whole pattern, including superclasses and
4640 // such.
James Dennett596e4752012-06-14 03:11:41 +00004641 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004642 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4643 Builder.AddPlaceholderChunk("class");
4644 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004645
Douglas Gregorf4c33342010-05-28 00:22:41 +00004646 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004647 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004648 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4649 Builder.AddPlaceholderChunk("protocol");
4650 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004651
4652 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004653 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004654 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4655 Builder.AddPlaceholderChunk("class");
4656 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004657 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004658
4659 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004660 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004661 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4662 Builder.AddPlaceholderChunk("alias");
4663 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4664 Builder.AddPlaceholderChunk("class");
4665 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004666
4667 if (Results.getSema().getLangOpts().Modules) {
4668 // @import name
4669 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4670 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4671 Builder.AddPlaceholderChunk("module");
4672 Results.AddResult(Result(Builder.TakeString()));
4673 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004674}
4675
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004676void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004677 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004678 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004679 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004680 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004681 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00004682 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004683 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004684 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00004685 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004686 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004687 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004688 HandleCodeCompleteResults(this, CodeCompleter,
4689 CodeCompletionContext::CCC_Other,
4690 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00004691}
4692
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004693static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004694 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004695 CodeCompletionBuilder Builder(Results.getAllocator(),
4696 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004697
4698 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004699 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00004700 if (Results.getSema().getLangOpts().CPlusPlus ||
4701 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00004702 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00004703 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00004704 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004705 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4706 Builder.AddPlaceholderChunk("type-name");
4707 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4708 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004709
4710 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004711 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00004712 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004713 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4714 Builder.AddPlaceholderChunk("protocol-name");
4715 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4716 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004717
4718 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004719 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00004720 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004721 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4722 Builder.AddPlaceholderChunk("selector");
4723 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4724 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004725
4726 // @"string"
4727 Builder.AddResultTypeChunk("NSString *");
4728 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
4729 Builder.AddPlaceholderChunk("string");
4730 Builder.AddTextChunk("\"");
4731 Results.AddResult(Result(Builder.TakeString()));
4732
Douglas Gregor951de302012-07-17 23:24:47 +00004733 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00004734 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00004735 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004736 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004737 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
4738 Results.AddResult(Result(Builder.TakeString()));
4739
Douglas Gregor951de302012-07-17 23:24:47 +00004740 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00004741 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00004742 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004743 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004744 Builder.AddChunk(CodeCompletionString::CK_Colon);
4745 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4746 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004747 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4748 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004749
Douglas Gregor951de302012-07-17 23:24:47 +00004750 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00004751 Builder.AddResultTypeChunk("id");
4752 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00004753 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00004754 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4755 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004756}
4757
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004758static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004759 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004760 CodeCompletionBuilder Builder(Results.getAllocator(),
4761 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004762
Douglas Gregorf4c33342010-05-28 00:22:41 +00004763 if (Results.includeCodePatterns()) {
4764 // @try { statements } @catch ( declaration ) { statements } @finally
4765 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00004766 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004767 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4768 Builder.AddPlaceholderChunk("statements");
4769 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4770 Builder.AddTextChunk("@catch");
4771 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4772 Builder.AddPlaceholderChunk("parameter");
4773 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4774 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4775 Builder.AddPlaceholderChunk("statements");
4776 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4777 Builder.AddTextChunk("@finally");
4778 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4779 Builder.AddPlaceholderChunk("statements");
4780 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4781 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004782 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004783
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004784 // @throw
James Dennett596e4752012-06-14 03:11:41 +00004785 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004786 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4787 Builder.AddPlaceholderChunk("expression");
4788 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004789
Douglas Gregorf4c33342010-05-28 00:22:41 +00004790 if (Results.includeCodePatterns()) {
4791 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00004792 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004793 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4794 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4795 Builder.AddPlaceholderChunk("expression");
4796 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4797 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4798 Builder.AddPlaceholderChunk("statements");
4799 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4800 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004801 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004802}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004803
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004804static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00004805 ResultBuilder &Results,
4806 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004807 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00004808 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4809 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4810 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004811 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00004812 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004813}
4814
4815void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004816 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004817 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004818 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00004819 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004820 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00004821 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004822 HandleCodeCompleteResults(this, CodeCompleter,
4823 CodeCompletionContext::CCC_Other,
4824 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00004825}
4826
4827void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004828 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004829 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004830 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00004831 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004832 AddObjCStatementResults(Results, false);
4833 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004834 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004835 HandleCodeCompleteResults(this, CodeCompleter,
4836 CodeCompletionContext::CCC_Other,
4837 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004838}
4839
4840void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004841 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004842 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004843 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004844 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004845 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004846 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004847 HandleCodeCompleteResults(this, CodeCompleter,
4848 CodeCompletionContext::CCC_Other,
4849 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004850}
4851
Douglas Gregore6078da2009-11-19 00:14:45 +00004852/// \brief Determine whether the addition of the given flag to an Objective-C
4853/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00004854static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00004855 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00004856 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00004857 return true;
4858
Bill Wendling44426052012-12-20 19:22:21 +00004859 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00004860
4861 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00004862 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4863 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00004864 return true;
4865
Jordan Rose53cb2f32012-08-20 20:01:13 +00004866 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00004867 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00004868 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00004869 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00004870 ObjCDeclSpec::DQ_PR_retain |
4871 ObjCDeclSpec::DQ_PR_strong |
4872 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00004873 if (AssignCopyRetMask &&
4874 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00004875 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00004876 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00004877 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00004878 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
4879 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00004880 return true;
4881
4882 return false;
4883}
4884
Douglas Gregor36029f42009-11-18 23:08:07 +00004885void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00004886 if (!CodeCompleter)
4887 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004888
Bill Wendling44426052012-12-20 19:22:21 +00004889 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00004890
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004891 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004892 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004893 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00004894 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00004895 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00004896 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00004897 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00004898 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00004899 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00004900 ObjCDeclSpec::DQ_PR_unsafe_unretained))
4901 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00004902 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00004903 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00004904 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00004905 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00004906 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00004907 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00004908 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00004909 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00004910 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00004911 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00004912 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00004913 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00004914
4915 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall460ce582015-10-22 18:38:17 +00004916 if (getLangOpts().ObjCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00004917 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00004918 Results.AddResult(CodeCompletionResult("weak"));
4919
Bill Wendling44426052012-12-20 19:22:21 +00004920 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004921 CodeCompletionBuilder Setter(Results.getAllocator(),
4922 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004923 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004924 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004925 Setter.AddPlaceholderChunk("method");
4926 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004927 }
Bill Wendling44426052012-12-20 19:22:21 +00004928 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004929 CodeCompletionBuilder Getter(Results.getAllocator(),
4930 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004931 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004932 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004933 Getter.AddPlaceholderChunk("method");
4934 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004935 }
Douglas Gregor86b42682015-06-19 18:27:52 +00004936 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nullability)) {
4937 Results.AddResult(CodeCompletionResult("nonnull"));
4938 Results.AddResult(CodeCompletionResult("nullable"));
4939 Results.AddResult(CodeCompletionResult("null_unspecified"));
4940 Results.AddResult(CodeCompletionResult("null_resettable"));
4941 }
Steve Naroff936354c2009-10-08 21:55:05 +00004942 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004943 HandleCodeCompleteResults(this, CodeCompleter,
4944 CodeCompletionContext::CCC_Other,
4945 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00004946}
Steve Naroffeae65032009-11-07 02:08:14 +00004947
James Dennettf1243872012-06-17 05:33:25 +00004948/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00004949/// via code completion.
4950enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00004951 MK_Any, ///< Any kind of method, provided it means other specified criteria.
4952 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
4953 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00004954};
4955
Douglas Gregor67c692c2010-08-26 15:07:07 +00004956static bool isAcceptableObjCSelector(Selector Sel,
4957 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004958 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004959 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004960 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00004961 if (NumSelIdents > Sel.getNumArgs())
4962 return false;
4963
4964 switch (WantKind) {
4965 case MK_Any: break;
4966 case MK_ZeroArgSelector: return Sel.isUnarySelector();
4967 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
4968 }
4969
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004970 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
4971 return false;
4972
Douglas Gregor67c692c2010-08-26 15:07:07 +00004973 for (unsigned I = 0; I != NumSelIdents; ++I)
4974 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
4975 return false;
4976
4977 return true;
4978}
4979
Douglas Gregorc8537c52009-11-19 07:41:15 +00004980static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
4981 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004982 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004983 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00004984 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004985 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004986}
Douglas Gregor1154e272010-09-16 16:06:31 +00004987
4988namespace {
4989 /// \brief A set of selectors, which is used to avoid introducing multiple
4990 /// completions with the same selector into the result set.
4991 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
4992}
4993
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004994/// \brief Add all of the Objective-C methods in the given Objective-C
4995/// container to the set of results.
4996///
4997/// The container will be a class, protocol, category, or implementation of
4998/// any of the above. This mether will recurse to include methods from
4999/// the superclasses of classes along with their categories, protocols, and
5000/// implementations.
5001///
5002/// \param Container the container in which we'll look to find methods.
5003///
James Dennett596e4752012-06-14 03:11:41 +00005004/// \param WantInstanceMethods Whether to add instance methods (only); if
5005/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005006///
5007/// \param CurContext the context in which we're performing the lookup that
5008/// finds methods.
5009///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005010/// \param AllowSameLength Whether we allow a method to be added to the list
5011/// when it has the same number of parameters as we have selector identifiers.
5012///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005013/// \param Results the structure into which we'll add results.
5014static void AddObjCMethods(ObjCContainerDecl *Container,
5015 bool WantInstanceMethods,
Douglas Gregorc8537c52009-11-19 07:41:15 +00005016 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005017 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005018 DeclContext *CurContext,
Douglas Gregor1154e272010-09-16 16:06:31 +00005019 VisitedSelectorSet &Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005020 bool AllowSameLength,
Douglas Gregor416b5752010-08-25 01:08:01 +00005021 ResultBuilder &Results,
5022 bool InOriginalClass = true) {
John McCall276321a2010-08-25 06:19:51 +00005023 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005024 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00005025 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
5026 bool isRootClass = IFace && !IFace->getSuperClass();
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005027 for (auto *M : Container->methods()) {
Douglas Gregor41778c32013-01-30 06:58:39 +00005028 // The instance methods on the root class can be messaged via the
5029 // metaclass.
5030 if (M->isInstanceMethod() == WantInstanceMethods ||
5031 (isRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00005032 // Check whether the selector identifiers we've been given are a
5033 // subset of the identifiers for this particular method.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00005034 if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00005035 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00005036
David Blaikie82e95a32014-11-19 07:49:47 +00005037 if (!Selectors.insert(M->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005038 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005039
5040 Result R = Result(M, Results.getBasePriority(M), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005041 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00005042 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00005043 if (!InOriginalClass)
5044 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00005045 Results.MaybeAddResult(R, CurContext);
5046 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005047 }
5048
Douglas Gregorf37c9492010-09-16 15:34:59 +00005049 // Visit the protocols of protocols.
5050 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00005051 if (Protocol->hasDefinition()) {
5052 const ObjCList<ObjCProtocolDecl> &Protocols
5053 = Protocol->getReferencedProtocols();
5054 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5055 E = Protocols.end();
5056 I != E; ++I)
5057 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005058 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregore6e48b12012-01-01 19:29:29 +00005059 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00005060 }
5061
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00005062 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005063 return;
5064
5065 // Add methods in protocols.
Aaron Ballmana49c5062014-03-13 20:29:09 +00005066 for (auto *I : IFace->protocols())
5067 AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005068 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005069
5070 // Add methods in categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00005071 for (auto *CatDecl : IFace->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005072 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005073 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005074 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005075
5076 // Add a categories protocol methods.
5077 const ObjCList<ObjCProtocolDecl> &Protocols
5078 = CatDecl->getReferencedProtocols();
5079 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
5080 E = Protocols.end();
5081 I != E; ++I)
Douglas Gregorc8537c52009-11-19 07:41:15 +00005082 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005083 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005084 Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005085
5086 // Add methods in category implementations.
5087 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005088 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005089 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005090 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005091 }
5092
5093 // Add methods in superclass.
5094 if (IFace->getSuperClass())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005095 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005096 SelIdents, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005097 AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005098
5099 // Add methods in our implementation, if any.
5100 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00005101 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005102 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005103 Results, InOriginalClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005104}
5105
5106
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005107void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005108 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005109 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005110 if (!Class) {
5111 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005112 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005113 Class = Category->getClassInterface();
5114
5115 if (!Class)
5116 return;
5117 }
5118
5119 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005120 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005121 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005122 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005123 Results.EnterNewScope();
5124
Douglas Gregor1154e272010-09-16 16:06:31 +00005125 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005126 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005127 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005128 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005129 HandleCodeCompleteResults(this, CodeCompleter,
5130 CodeCompletionContext::CCC_Other,
5131 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00005132}
5133
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005134void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00005135 // Try to find the interface where setters might live.
5136 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005137 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005138 if (!Class) {
5139 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005140 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00005141 Class = Category->getClassInterface();
5142
5143 if (!Class)
5144 return;
5145 }
5146
5147 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005148 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005149 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005150 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005151 Results.EnterNewScope();
5152
Douglas Gregor1154e272010-09-16 16:06:31 +00005153 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005154 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005155 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00005156
5157 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005158 HandleCodeCompleteResults(this, CodeCompleter,
5159 CodeCompletionContext::CCC_Other,
5160 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005161}
5162
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005163void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
5164 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005165 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005166 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005167 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005168 Results.EnterNewScope();
5169
5170 // Add context-sensitive, Objective-C parameter-passing keywords.
5171 bool AddedInOut = false;
5172 if ((DS.getObjCDeclQualifier() &
5173 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
5174 Results.AddResult("in");
5175 Results.AddResult("inout");
5176 AddedInOut = true;
5177 }
5178 if ((DS.getObjCDeclQualifier() &
5179 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
5180 Results.AddResult("out");
5181 if (!AddedInOut)
5182 Results.AddResult("inout");
5183 }
5184 if ((DS.getObjCDeclQualifier() &
5185 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
5186 ObjCDeclSpec::DQ_Oneway)) == 0) {
5187 Results.AddResult("bycopy");
5188 Results.AddResult("byref");
5189 Results.AddResult("oneway");
5190 }
Douglas Gregor86b42682015-06-19 18:27:52 +00005191 if ((DS.getObjCDeclQualifier() & ObjCDeclSpec::DQ_CSNullability) == 0) {
5192 Results.AddResult("nonnull");
5193 Results.AddResult("nullable");
5194 Results.AddResult("null_unspecified");
5195 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00005196
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005197 // If we're completing the return type of an Objective-C method and the
5198 // identifier IBAction refers to a macro, provide a completion item for
5199 // an action, e.g.,
5200 // IBAction)<#selector#>:(id)sender
5201 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
Richard Smith20e883e2015-04-29 23:20:19 +00005202 PP.isMacroDefined("IBAction")) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005203 CodeCompletionBuilder Builder(Results.getAllocator(),
5204 Results.getCodeCompletionTUInfo(),
5205 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005206 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005207 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005208 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005209 Builder.AddChunk(CodeCompletionString::CK_Colon);
5210 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005211 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005212 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005213 Builder.AddTextChunk("sender");
5214 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
5215 }
Douglas Gregored1f5972013-01-30 07:11:43 +00005216
5217 // If we're completing the return type, provide 'instancetype'.
5218 if (!IsParameter) {
5219 Results.AddResult(CodeCompletionResult("instancetype"));
5220 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005221
Douglas Gregor99fa2642010-08-24 01:06:58 +00005222 // Add various builtin type names and specifiers.
5223 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5224 Results.ExitScope();
5225
5226 // Add the various type names
5227 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5228 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5229 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5230 CodeCompleter->includeGlobals());
5231
5232 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005233 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005234
5235 HandleCodeCompleteResults(this, CodeCompleter,
5236 CodeCompletionContext::CCC_Type,
5237 Results.data(), Results.size());
5238}
5239
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005240/// \brief When we have an expression with type "id", we may assume
5241/// that it has some more-specific class type based on knowledge of
5242/// common uses of Objective-C. This routine returns that class type,
5243/// or NULL if no better result could be determined.
5244static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005245 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005246 if (!Msg)
Craig Topperc3ec1492014-05-26 06:22:03 +00005247 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005248
5249 Selector Sel = Msg->getSelector();
5250 if (Sel.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00005251 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005252
5253 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5254 if (!Id)
Craig Topperc3ec1492014-05-26 06:22:03 +00005255 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005256
5257 ObjCMethodDecl *Method = Msg->getMethodDecl();
5258 if (!Method)
Craig Topperc3ec1492014-05-26 06:22:03 +00005259 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005260
5261 // Determine the class that we're sending the message to.
Craig Topperc3ec1492014-05-26 06:22:03 +00005262 ObjCInterfaceDecl *IFace = nullptr;
Douglas Gregor9a129192010-04-21 00:45:42 +00005263 switch (Msg->getReceiverKind()) {
5264 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005265 if (const ObjCObjectType *ObjType
5266 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5267 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005268 break;
5269
5270 case ObjCMessageExpr::Instance: {
5271 QualType T = Msg->getInstanceReceiver()->getType();
5272 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5273 IFace = Ptr->getInterfaceDecl();
5274 break;
5275 }
5276
5277 case ObjCMessageExpr::SuperInstance:
5278 case ObjCMessageExpr::SuperClass:
5279 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005280 }
5281
5282 if (!IFace)
Craig Topperc3ec1492014-05-26 06:22:03 +00005283 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005284
5285 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5286 if (Method->isInstanceMethod())
5287 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5288 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005289 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005290 .Case("autorelease", IFace)
5291 .Case("copy", IFace)
5292 .Case("copyWithZone", IFace)
5293 .Case("mutableCopy", IFace)
5294 .Case("mutableCopyWithZone", IFace)
5295 .Case("awakeFromCoder", IFace)
5296 .Case("replacementObjectFromCoder", IFace)
5297 .Case("class", IFace)
5298 .Case("classForCoder", IFace)
5299 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005300 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005301
5302 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5303 .Case("new", IFace)
5304 .Case("alloc", IFace)
5305 .Case("allocWithZone", IFace)
5306 .Case("class", IFace)
5307 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005308 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005309}
5310
Douglas Gregor6fc04132010-08-27 15:10:57 +00005311// Add a special completion for a message send to "super", which fills in the
5312// most likely case of forwarding all of our arguments to the superclass
5313// function.
5314///
5315/// \param S The semantic analysis object.
5316///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005317/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005318/// the "super" keyword. Otherwise, we just need to provide the arguments.
5319///
5320/// \param SelIdents The identifiers in the selector that have already been
5321/// provided as arguments for a send to "super".
5322///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005323/// \param Results The set of results to augment.
5324///
5325/// \returns the Objective-C method declaration that would be invoked by
5326/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005327static ObjCMethodDecl *AddSuperSendCompletion(
5328 Sema &S, bool NeedSuperKeyword,
5329 ArrayRef<IdentifierInfo *> SelIdents,
5330 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005331 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5332 if (!CurMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005333 return nullptr;
5334
Douglas Gregor6fc04132010-08-27 15:10:57 +00005335 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5336 if (!Class)
Craig Topperc3ec1492014-05-26 06:22:03 +00005337 return nullptr;
5338
Douglas Gregor6fc04132010-08-27 15:10:57 +00005339 // Try to find a superclass method with the same selector.
Craig Topperc3ec1492014-05-26 06:22:03 +00005340 ObjCMethodDecl *SuperMethod = nullptr;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005341 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5342 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005343 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5344 CurMethod->isInstanceMethod());
5345
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005346 // Check in categories or class extensions.
5347 if (!SuperMethod) {
Aaron Ballman15063e12014-03-13 21:35:02 +00005348 for (const auto *Cat : Class->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005349 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005350 CurMethod->isInstanceMethod())))
5351 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005352 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005353 }
5354 }
5355
Douglas Gregor6fc04132010-08-27 15:10:57 +00005356 if (!SuperMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005357 return nullptr;
5358
Douglas Gregor6fc04132010-08-27 15:10:57 +00005359 // Check whether the superclass method has the same signature.
5360 if (CurMethod->param_size() != SuperMethod->param_size() ||
5361 CurMethod->isVariadic() != SuperMethod->isVariadic())
Craig Topperc3ec1492014-05-26 06:22:03 +00005362 return nullptr;
5363
Douglas Gregor6fc04132010-08-27 15:10:57 +00005364 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5365 CurPEnd = CurMethod->param_end(),
5366 SuperP = SuperMethod->param_begin();
5367 CurP != CurPEnd; ++CurP, ++SuperP) {
5368 // Make sure the parameter types are compatible.
5369 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5370 (*SuperP)->getType()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005371 return nullptr;
5372
Douglas Gregor6fc04132010-08-27 15:10:57 +00005373 // Make sure we have a parameter name to forward!
5374 if (!(*CurP)->getIdentifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00005375 return nullptr;
Douglas Gregor6fc04132010-08-27 15:10:57 +00005376 }
5377
5378 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005379 CodeCompletionBuilder Builder(Results.getAllocator(),
5380 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005381
5382 // Give this completion a return type.
Douglas Gregorc3425b12015-07-07 06:20:19 +00005383 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5384 Results.getCompletionContext().getBaseType(),
Douglas Gregor75acd922011-09-27 23:30:47 +00005385 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005386
5387 // If we need the "super" keyword, add it (plus some spacing).
5388 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005389 Builder.AddTypedTextChunk("super");
5390 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005391 }
5392
5393 Selector Sel = CurMethod->getSelector();
5394 if (Sel.isUnarySelector()) {
5395 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005396 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005397 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005398 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005399 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005400 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005401 } else {
5402 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5403 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005404 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005405 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005406
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005407 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005408 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005409 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005410 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005411 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005412 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005413 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005414 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005415 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005416 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005417 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005418 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005419 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005420 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005421 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005422 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005423 }
5424 }
5425 }
5426
Douglas Gregor78254c82012-03-27 23:34:16 +00005427 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5428 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005429 return SuperMethod;
5430}
5431
Douglas Gregora817a192010-05-27 23:06:34 +00005432void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005433 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005434 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005435 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005436 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005437 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005438 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5439 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005440
Douglas Gregora817a192010-05-27 23:06:34 +00005441 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5442 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005443 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5444 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005445
5446 // If we are in an Objective-C method inside a class that has a superclass,
5447 // add "super" as an option.
5448 if (ObjCMethodDecl *Method = getCurMethodDecl())
5449 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005450 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005451 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005452
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005453 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005454 }
Douglas Gregora817a192010-05-27 23:06:34 +00005455
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005456 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005457 addThisCompletion(*this, Results);
5458
Douglas Gregora817a192010-05-27 23:06:34 +00005459 Results.ExitScope();
5460
5461 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005462 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005463 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005464 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005465
5466}
5467
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005468void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005469 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005470 bool AtArgumentExpression) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005471 ObjCInterfaceDecl *CDecl = nullptr;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005472 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5473 // Figure out which interface we're in.
5474 CDecl = CurMethod->getClassInterface();
5475 if (!CDecl)
5476 return;
5477
5478 // Find the superclass of this class.
5479 CDecl = CDecl->getSuperClass();
5480 if (!CDecl)
5481 return;
5482
5483 if (CurMethod->isInstanceMethod()) {
5484 // We are inside an instance method, which means that the message
5485 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005486 // current object.
Craig Topperc3ec1492014-05-26 06:22:03 +00005487 return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005488 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005489 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005490 }
5491
5492 // Fall through to send to the superclass in CDecl.
5493 } else {
5494 // "super" may be the name of a type or variable. Figure out which
5495 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005496 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005497 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5498 LookupOrdinaryName);
5499 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5500 // "super" names an interface. Use it.
5501 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005502 if (const ObjCObjectType *Iface
5503 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5504 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005505 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5506 // "super" names an unresolved type; we can't be more specific.
5507 } else {
5508 // Assume that "super" names some kind of value and parse that way.
5509 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005510 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005511 UnqualifiedId id;
5512 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005513 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5514 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005515 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005516 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005517 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005518 }
5519
5520 // Fall through
5521 }
5522
John McCallba7bf592010-08-24 05:47:05 +00005523 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005524 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005525 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005526 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005527 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005528 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005529}
5530
Douglas Gregor74661272010-09-21 00:03:25 +00005531/// \brief Given a set of code-completion results for the argument of a message
5532/// send, determine the preferred type (if any) for that argument expression.
5533static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5534 unsigned NumSelIdents) {
5535 typedef CodeCompletionResult Result;
5536 ASTContext &Context = Results.getSema().Context;
5537
5538 QualType PreferredType;
5539 unsigned BestPriority = CCP_Unlikely * 2;
5540 Result *ResultsData = Results.data();
5541 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5542 Result &R = ResultsData[I];
5543 if (R.Kind == Result::RK_Declaration &&
5544 isa<ObjCMethodDecl>(R.Declaration)) {
5545 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005546 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005547 if (NumSelIdents <= Method->param_size()) {
Alp Toker03376dc2014-07-07 09:02:20 +00005548 QualType MyPreferredType = Method->parameters()[NumSelIdents - 1]
Douglas Gregor74661272010-09-21 00:03:25 +00005549 ->getType();
5550 if (R.Priority < BestPriority || PreferredType.isNull()) {
5551 BestPriority = R.Priority;
5552 PreferredType = MyPreferredType;
5553 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5554 MyPreferredType)) {
5555 PreferredType = QualType();
5556 }
5557 }
5558 }
5559 }
5560 }
5561
5562 return PreferredType;
5563}
5564
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005565static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5566 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005567 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005568 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005569 bool IsSuper,
5570 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005571 typedef CodeCompletionResult Result;
Craig Topperc3ec1492014-05-26 06:22:03 +00005572 ObjCInterfaceDecl *CDecl = nullptr;
5573
Douglas Gregor8ce33212009-11-17 17:59:40 +00005574 // If the given name refers to an interface type, retrieve the
5575 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005576 if (Receiver) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005577 QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005578 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005579 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5580 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005581 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005582
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005583 // Add all of the factory methods in this Objective-C class, its protocols,
5584 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005585 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005586
Douglas Gregor6fc04132010-08-27 15:10:57 +00005587 // If this is a send-to-super, try to add the special "super" send
5588 // completion.
5589 if (IsSuper) {
5590 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005591 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005592 Results.Ignore(SuperMethod);
5593 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005594
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005595 // If we're inside an Objective-C method definition, prefer its selector to
5596 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005597 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005598 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005599
Douglas Gregor1154e272010-09-16 16:06:31 +00005600 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005601 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005602 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005603 SemaRef.CurContext, Selectors, AtArgumentExpression,
5604 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005605 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005606 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005607
Douglas Gregord720daf2010-04-06 17:30:22 +00005608 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005609 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005610 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005611 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005612 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005613 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005614 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005615 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005616 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005617
5618 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005619 }
5620 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005621
5622 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5623 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005624 M != MEnd; ++M) {
5625 for (ObjCMethodList *MethList = &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005626 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005627 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005628 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005629 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005630
Nico Weber2e0c8f72014-12-27 03:58:08 +00005631 Result R(MethList->getMethod(),
5632 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005633 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005634 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005635 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005636 }
5637 }
5638 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005639
5640 Results.ExitScope();
5641}
Douglas Gregor6285f752010-04-06 16:40:00 +00005642
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005643void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005644 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005645 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005646 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005647
5648 QualType T = this->GetTypeFromParser(Receiver);
5649
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005650 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005651 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005652 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005653 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005654
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005655 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005656 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005657
5658 // If we're actually at the argument expression (rather than prior to the
5659 // selector), we're actually performing code completion for an expression.
5660 // Determine whether we have a single, best method. If so, we can
5661 // code-complete the expression using the corresponding parameter type as
5662 // our preferred type, improving completion results.
5663 if (AtArgumentExpression) {
5664 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005665 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005666 if (PreferredType.isNull())
5667 CodeCompleteOrdinaryName(S, PCC_Expression);
5668 else
5669 CodeCompleteExpression(S, PreferredType);
5670 return;
5671 }
5672
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005673 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005674 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005675 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005676}
5677
Richard Trieu2bd04012011-09-09 02:00:50 +00005678void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005679 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005680 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005681 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00005682 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00005683
5684 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00005685
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005686 // If necessary, apply function/array conversion to the receiver.
5687 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00005688 if (RecExpr) {
5689 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
5690 if (Conv.isInvalid()) // conversion failed. bail.
5691 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005692 RecExpr = Conv.get();
John Wiegley01296292011-04-08 18:41:53 +00005693 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00005694 QualType ReceiverType = RecExpr? RecExpr->getType()
5695 : Super? Context.getObjCObjectPointerType(
5696 Context.getObjCInterfaceType(Super))
5697 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00005698
Douglas Gregordc520b02010-11-08 21:12:30 +00005699 // If we're messaging an expression with type "id" or "Class", check
5700 // whether we know something special about the receiver that allows
5701 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00005702 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00005703 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
5704 if (ReceiverType->isObjCClassType())
5705 return CodeCompleteObjCClassMessage(S,
5706 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005707 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00005708 AtArgumentExpression, Super);
5709
5710 ReceiverType = Context.getObjCObjectPointerType(
5711 Context.getObjCInterfaceType(IFace));
5712 }
Anders Carlsson382ba412014-02-28 19:07:22 +00005713 } else if (RecExpr && getLangOpts().CPlusPlus) {
5714 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
5715 if (Conv.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005716 RecExpr = Conv.get();
Anders Carlsson382ba412014-02-28 19:07:22 +00005717 ReceiverType = RecExpr->getType();
5718 }
5719 }
Douglas Gregordc520b02010-11-08 21:12:30 +00005720
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005721 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005722 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005723 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005724 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005725 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005726
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005727 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005728
Douglas Gregor6fc04132010-08-27 15:10:57 +00005729 // If this is a send-to-super, try to add the special "super" send
5730 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00005731 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005732 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005733 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005734 Results.Ignore(SuperMethod);
5735 }
5736
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005737 // If we're inside an Objective-C method definition, prefer its selector to
5738 // others.
5739 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5740 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005741
Douglas Gregor1154e272010-09-16 16:06:31 +00005742 // Keep track of the selectors we've already added.
5743 VisitedSelectorSet Selectors;
5744
Douglas Gregora3329fa2009-11-18 00:06:18 +00005745 // Handle messages to Class. This really isn't a message to an instance
5746 // method, so we treat it the same way we would treat a message send to a
5747 // class method.
5748 if (ReceiverType->isObjCClassType() ||
5749 ReceiverType->isObjCQualifiedClassType()) {
5750 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5751 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005752 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005753 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005754 }
5755 }
5756 // Handle messages to a qualified ID ("id<foo>").
5757 else if (const ObjCObjectPointerType *QualID
5758 = ReceiverType->getAsObjCQualifiedIdType()) {
5759 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005760 for (auto *I : QualID->quals())
5761 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005762 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005763 }
5764 // Handle messages to a pointer to interface type.
5765 else if (const ObjCObjectPointerType *IFacePtr
5766 = ReceiverType->getAsObjCInterfacePointerType()) {
5767 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005768 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005769 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005770 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005771
5772 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005773 for (auto *I : IFacePtr->quals())
5774 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005775 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005776 }
Douglas Gregor6285f752010-04-06 16:40:00 +00005777 // Handle messages to "id".
5778 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00005779 // We're messaging "id", so provide all instance methods we know
5780 // about as code-completion results.
5781
5782 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005783 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00005784 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00005785 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5786 I != N; ++I) {
5787 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00005788 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005789 continue;
5790
Sebastian Redl75d8a322010-08-02 23:18:59 +00005791 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005792 }
5793 }
5794
Sebastian Redl75d8a322010-08-02 23:18:59 +00005795 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5796 MEnd = MethodPool.end();
5797 M != MEnd; ++M) {
5798 for (ObjCMethodList *MethList = &M->second.first;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005799 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005800 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005801 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005802 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00005803
Nico Weber2e0c8f72014-12-27 03:58:08 +00005804 if (!Selectors.insert(MethList->getMethod()->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005805 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005806
Nico Weber2e0c8f72014-12-27 03:58:08 +00005807 Result R(MethList->getMethod(),
5808 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005809 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005810 R.AllParametersAreInformative = false;
5811 Results.MaybeAddResult(R, CurContext);
5812 }
5813 }
5814 }
Steve Naroffeae65032009-11-07 02:08:14 +00005815 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00005816
5817
5818 // If we're actually at the argument expression (rather than prior to the
5819 // selector), we're actually performing code completion for an expression.
5820 // Determine whether we have a single, best method. If so, we can
5821 // code-complete the expression using the corresponding parameter type as
5822 // our preferred type, improving completion results.
5823 if (AtArgumentExpression) {
5824 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005825 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005826 if (PreferredType.isNull())
5827 CodeCompleteOrdinaryName(S, PCC_Expression);
5828 else
5829 CodeCompleteExpression(S, PreferredType);
5830 return;
5831 }
5832
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005833 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005834 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005835 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005836}
Douglas Gregorbaf69612009-11-18 04:19:12 +00005837
Douglas Gregor68762e72010-08-23 21:17:50 +00005838void Sema::CodeCompleteObjCForCollection(Scope *S,
5839 DeclGroupPtrTy IterationVar) {
5840 CodeCompleteExpressionData Data;
5841 Data.ObjCCollection = true;
5842
5843 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00005844 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00005845 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
5846 if (*I)
5847 Data.IgnoreDecls.push_back(*I);
5848 }
5849 }
5850
5851 CodeCompleteExpression(S, Data);
5852}
5853
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005854void Sema::CodeCompleteObjCSelector(Scope *S,
5855 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005856 // If we have an external source, load the entire class method
5857 // pool from the AST file.
5858 if (ExternalSource) {
5859 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5860 I != N; ++I) {
5861 Selector Sel = ExternalSource->GetExternalSelector(I);
5862 if (Sel.isNull() || MethodPool.count(Sel))
5863 continue;
5864
5865 ReadMethodPool(Sel);
5866 }
5867 }
5868
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005869 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005870 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005871 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00005872 Results.EnterNewScope();
5873 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5874 MEnd = MethodPool.end();
5875 M != MEnd; ++M) {
5876
5877 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005878 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00005879 continue;
5880
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005881 CodeCompletionBuilder Builder(Results.getAllocator(),
5882 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005883 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005884 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005885 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005886 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005887 continue;
5888 }
5889
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005890 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00005891 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005892 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005893 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005894 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005895 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005896 Accumulator.clear();
5897 }
5898 }
5899
Benjamin Kramer632500c2011-07-26 16:59:25 +00005900 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005901 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00005902 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005903 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005904 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005905 }
5906 Results.ExitScope();
5907
5908 HandleCodeCompleteResults(this, CodeCompleter,
5909 CodeCompletionContext::CCC_SelectorName,
5910 Results.data(), Results.size());
5911}
5912
Douglas Gregorbaf69612009-11-18 04:19:12 +00005913/// \brief Add all of the protocol declarations that we find in the given
5914/// (translation unit) context.
5915static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005916 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00005917 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005918 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00005919
Aaron Ballman629afae2014-03-07 19:56:05 +00005920 for (const auto *D : Ctx->decls()) {
Douglas Gregorbaf69612009-11-18 04:19:12 +00005921 // Record any protocols we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005922 if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00005923 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Craig Topperc3ec1492014-05-26 06:22:03 +00005924 Results.AddResult(Result(Proto, Results.getBasePriority(Proto),nullptr),
5925 CurContext, nullptr, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005926 }
5927}
5928
5929void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
5930 unsigned NumProtocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005931 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005932 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005933 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005934
Douglas Gregora3b23b02010-12-09 21:44:02 +00005935 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5936 Results.EnterNewScope();
5937
5938 // Tell the result set to ignore all of the protocols we have
5939 // already seen.
5940 // FIXME: This doesn't work when caching code-completion results.
5941 for (unsigned I = 0; I != NumProtocols; ++I)
5942 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first,
5943 Protocols[I].second))
5944 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005945
Douglas Gregora3b23b02010-12-09 21:44:02 +00005946 // Add all protocols.
5947 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
5948 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005949
Douglas Gregora3b23b02010-12-09 21:44:02 +00005950 Results.ExitScope();
5951 }
5952
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005953 HandleCodeCompleteResults(this, CodeCompleter,
5954 CodeCompletionContext::CCC_ObjCProtocolName,
5955 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005956}
5957
5958void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005959 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005960 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005961 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005962
Douglas Gregora3b23b02010-12-09 21:44:02 +00005963 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5964 Results.EnterNewScope();
5965
5966 // Add all protocols.
5967 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
5968 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005969
Douglas Gregora3b23b02010-12-09 21:44:02 +00005970 Results.ExitScope();
5971 }
5972
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005973 HandleCodeCompleteResults(this, CodeCompleter,
5974 CodeCompletionContext::CCC_ObjCProtocolName,
5975 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00005976}
Douglas Gregor49c22a72009-11-18 16:26:39 +00005977
5978/// \brief Add all of the Objective-C interface declarations that we find in
5979/// the given (translation unit) context.
5980static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
5981 bool OnlyForwardDeclarations,
5982 bool OnlyUnimplemented,
5983 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005984 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00005985
Aaron Ballman629afae2014-03-07 19:56:05 +00005986 for (const auto *D : Ctx->decls()) {
Douglas Gregor1c283312010-08-11 12:19:30 +00005987 // Record any interfaces we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005988 if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00005989 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00005990 (!OnlyUnimplemented || !Class->getImplementation()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005991 Results.AddResult(Result(Class, Results.getBasePriority(Class),nullptr),
5992 CurContext, nullptr, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005993 }
5994}
5995
5996void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005997 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005998 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005999 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006000 Results.EnterNewScope();
6001
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006002 if (CodeCompleter->includeGlobals()) {
6003 // Add all classes.
6004 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6005 false, Results);
6006 }
6007
Douglas Gregor49c22a72009-11-18 16:26:39 +00006008 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006009
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006010 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006011 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006012 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006013}
6014
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006015void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
6016 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006017 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006018 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006019 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006020 Results.EnterNewScope();
6021
6022 // Make sure that we ignore the class we're currently defining.
6023 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006024 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006025 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00006026 Results.Ignore(CurClass);
6027
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006028 if (CodeCompleter->includeGlobals()) {
6029 // Add all classes.
6030 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6031 false, Results);
6032 }
6033
Douglas Gregor49c22a72009-11-18 16:26:39 +00006034 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006035
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006036 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006037 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006038 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006039}
6040
6041void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006042 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006043 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006044 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00006045 Results.EnterNewScope();
6046
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006047 if (CodeCompleter->includeGlobals()) {
6048 // Add all unimplemented classes.
6049 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
6050 true, Results);
6051 }
6052
Douglas Gregor49c22a72009-11-18 16:26:39 +00006053 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006054
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006055 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00006056 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006057 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00006058}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006059
6060void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006061 IdentifierInfo *ClassName,
6062 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006063 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006064
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006065 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006066 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006067 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006068
6069 // Ignore any categories we find that have already been implemented by this
6070 // interface.
6071 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6072 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006073 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006074 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006075 for (const auto *Cat : Class->visible_categories())
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006076 CategoryNames.insert(Cat->getIdentifier());
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006077 }
6078
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006079 // Add all of the categories we know about.
6080 Results.EnterNewScope();
6081 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Aaron Ballman629afae2014-03-07 19:56:05 +00006082 for (const auto *D : TU->decls())
6083 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
David Blaikie82e95a32014-11-19 07:49:47 +00006084 if (CategoryNames.insert(Category->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006085 Results.AddResult(Result(Category, Results.getBasePriority(Category),
6086 nullptr),
6087 CurContext, nullptr, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006088 Results.ExitScope();
6089
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006090 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006091 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006092 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006093}
6094
6095void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006096 IdentifierInfo *ClassName,
6097 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00006098 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006099
6100 // Find the corresponding interface. If we couldn't find the interface, the
6101 // program itself is ill-formed. However, we'll try to be helpful still by
6102 // providing the list of all of the categories we know about.
6103 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006104 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006105 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
6106 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006107 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006108
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006109 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006110 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00006111 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006112
6113 // Add all of the categories that have have corresponding interface
6114 // declarations in this class and any of its superclasses, except for
6115 // already-implemented categories in the class itself.
6116 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
6117 Results.EnterNewScope();
6118 bool IgnoreImplemented = true;
6119 while (Class) {
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006120 for (const auto *Cat : Class->visible_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006121 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
David Blaikie82e95a32014-11-19 07:49:47 +00006122 CategoryNames.insert(Cat->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00006123 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr),
6124 CurContext, nullptr, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006125 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006126
6127 Class = Class->getSuperClass();
6128 IgnoreImplemented = false;
6129 }
6130 Results.ExitScope();
6131
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006132 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00006133 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006134 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00006135}
Douglas Gregor5d649882009-11-18 22:32:06 +00006136
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006137void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorc3425b12015-07-07 06:20:19 +00006138 CodeCompletionContext CCContext(CodeCompletionContext::CCC_Other);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006139 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006140 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorc3425b12015-07-07 06:20:19 +00006141 CCContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006142
6143 // Figure out where this @synthesize lives.
6144 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006145 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006146 if (!Container ||
6147 (!isa<ObjCImplementationDecl>(Container) &&
6148 !isa<ObjCCategoryImplDecl>(Container)))
6149 return;
6150
6151 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006152 Container = getContainerDef(Container);
Aaron Ballman629afae2014-03-07 19:56:05 +00006153 for (const auto *D : Container->decls())
6154 if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregor5d649882009-11-18 22:32:06 +00006155 Results.Ignore(PropertyImpl->getPropertyDecl());
6156
6157 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00006158 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00006159 Results.EnterNewScope();
6160 if (ObjCImplementationDecl *ClassImpl
6161 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregorc3425b12015-07-07 06:20:19 +00006162 AddObjCProperties(CCContext, ClassImpl->getClassInterface(), false,
Douglas Gregor95147142011-05-05 15:50:42 +00006163 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00006164 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006165 else
Douglas Gregorc3425b12015-07-07 06:20:19 +00006166 AddObjCProperties(CCContext,
6167 cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00006168 false, /*AllowNullaryMethods=*/false, CurContext,
6169 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006170 Results.ExitScope();
6171
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006172 HandleCodeCompleteResults(this, CodeCompleter,
6173 CodeCompletionContext::CCC_Other,
6174 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006175}
6176
6177void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006178 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00006179 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006180 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006181 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006182 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00006183
6184 // Figure out where this @synthesize lives.
6185 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006186 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006187 if (!Container ||
6188 (!isa<ObjCImplementationDecl>(Container) &&
6189 !isa<ObjCCategoryImplDecl>(Container)))
6190 return;
6191
6192 // Figure out which interface we're looking into.
Craig Topperc3ec1492014-05-26 06:22:03 +00006193 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor5d649882009-11-18 22:32:06 +00006194 if (ObjCImplementationDecl *ClassImpl
6195 = dyn_cast<ObjCImplementationDecl>(Container))
6196 Class = ClassImpl->getClassInterface();
6197 else
6198 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
6199 ->getClassInterface();
6200
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006201 // Determine the type of the property we're synthesizing.
6202 QualType PropertyType = Context.getObjCIdType();
6203 if (Class) {
6204 if (ObjCPropertyDecl *Property
6205 = Class->FindPropertyDeclaration(PropertyName)) {
6206 PropertyType
6207 = Property->getType().getNonReferenceType().getUnqualifiedType();
6208
6209 // Give preference to ivars
6210 Results.setPreferredType(PropertyType);
6211 }
6212 }
6213
Douglas Gregor5d649882009-11-18 22:32:06 +00006214 // Add all of the instance variables in this class and its superclasses.
6215 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00006216 bool SawSimilarlyNamedIvar = false;
6217 std::string NameWithPrefix;
6218 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00006219 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00006220 std::string NameWithSuffix = PropertyName->getName().str();
6221 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006222 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006223 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6224 Ivar = Ivar->getNextIvar()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006225 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr),
6226 CurContext, nullptr, false);
6227
Douglas Gregor331faa02011-04-18 14:13:53 +00006228 // Determine whether we've seen an ivar with a name similar to the
6229 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006230 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006231 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006232 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006233 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006234
6235 // Reduce the priority of this result by one, to give it a slight
6236 // advantage over other results whose names don't match so closely.
6237 if (Results.size() &&
6238 Results.data()[Results.size() - 1].Kind
6239 == CodeCompletionResult::RK_Declaration &&
6240 Results.data()[Results.size() - 1].Declaration == Ivar)
6241 Results.data()[Results.size() - 1].Priority--;
6242 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006243 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006244 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006245
6246 if (!SawSimilarlyNamedIvar) {
6247 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006248 // an ivar of the appropriate type.
6249 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006250 typedef CodeCompletionResult Result;
6251 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006252 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6253 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006254
Douglas Gregor75acd922011-09-27 23:30:47 +00006255 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006256 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006257 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006258 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6259 Results.AddResult(Result(Builder.TakeString(), Priority,
6260 CXCursor_ObjCIvarDecl));
6261 }
6262
Douglas Gregor5d649882009-11-18 22:32:06 +00006263 Results.ExitScope();
6264
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006265 HandleCodeCompleteResults(this, CodeCompleter,
6266 CodeCompletionContext::CCC_Other,
6267 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006268}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006269
Douglas Gregor416b5752010-08-25 01:08:01 +00006270// Mapping from selectors to the methods that implement that selector, along
6271// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006272typedef llvm::DenseMap<
6273 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006274
6275/// \brief Find all of the methods that reside in the given container
6276/// (and its superclasses, protocols, etc.) that meet the given
6277/// criteria. Insert those methods into the map of known methods,
6278/// indexed by selector so they can be easily found.
6279static void FindImplementableMethods(ASTContext &Context,
6280 ObjCContainerDecl *Container,
6281 bool WantInstanceMethods,
6282 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006283 KnownMethodsMap &KnownMethods,
6284 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006285 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006286 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006287 if (!IFace->hasDefinition())
6288 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006289
6290 IFace = IFace->getDefinition();
6291 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006292
Douglas Gregor636a61e2010-04-07 00:21:17 +00006293 const ObjCList<ObjCProtocolDecl> &Protocols
6294 = IFace->getReferencedProtocols();
6295 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006296 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006297 I != E; ++I)
6298 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006299 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006300
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006301 // Add methods from any class extensions and categories.
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006302 for (auto *Cat : IFace->visible_categories()) {
6303 FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006304 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006305 }
6306
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006307 // Visit the superclass.
6308 if (IFace->getSuperClass())
6309 FindImplementableMethods(Context, IFace->getSuperClass(),
6310 WantInstanceMethods, ReturnType,
6311 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006312 }
6313
6314 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6315 // Recurse into protocols.
6316 const ObjCList<ObjCProtocolDecl> &Protocols
6317 = Category->getReferencedProtocols();
6318 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006319 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006320 I != E; ++I)
6321 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006322 KnownMethods, InOriginalClass);
6323
6324 // If this category is the original class, jump to the interface.
6325 if (InOriginalClass && Category->getClassInterface())
6326 FindImplementableMethods(Context, Category->getClassInterface(),
6327 WantInstanceMethods, ReturnType, KnownMethods,
6328 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006329 }
6330
6331 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006332 // Make sure we have a definition; that's what we'll walk.
6333 if (!Protocol->hasDefinition())
6334 return;
6335 Protocol = Protocol->getDefinition();
6336 Container = Protocol;
6337
6338 // Recurse into protocols.
6339 const ObjCList<ObjCProtocolDecl> &Protocols
6340 = Protocol->getReferencedProtocols();
6341 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6342 E = Protocols.end();
6343 I != E; ++I)
6344 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6345 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006346 }
6347
6348 // Add methods in this container. This operation occurs last because
6349 // we want the methods from this container to override any methods
6350 // we've previously seen with the same selector.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006351 for (auto *M : Container->methods()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006352 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006353 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006354 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006355 continue;
6356
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006357 KnownMethods[M->getSelector()] =
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006358 KnownMethodsMap::mapped_type(M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006359 }
6360 }
6361}
6362
Douglas Gregor669a25a2011-02-17 00:22:45 +00006363/// \brief Add the parenthesized return or parameter type chunk to a code
6364/// completion string.
6365static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006366 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006367 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006368 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006369 CodeCompletionBuilder &Builder) {
6370 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor86b42682015-06-19 18:27:52 +00006371 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals, Type);
Douglas Gregor29979142012-04-10 18:35:07 +00006372 if (!Quals.empty())
6373 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006374 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006375 Builder.getAllocator()));
6376 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6377}
6378
6379/// \brief Determine whether the given class is or inherits from a class by
6380/// the given name.
6381static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006382 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006383 if (!Class)
6384 return false;
6385
6386 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6387 return true;
6388
6389 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6390}
6391
6392/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6393/// Key-Value Observing (KVO).
6394static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6395 bool IsInstanceMethod,
6396 QualType ReturnType,
6397 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006398 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006399 ResultBuilder &Results) {
6400 IdentifierInfo *PropName = Property->getIdentifier();
6401 if (!PropName || PropName->getLength() == 0)
6402 return;
6403
Douglas Gregor75acd922011-09-27 23:30:47 +00006404 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6405
Douglas Gregor669a25a2011-02-17 00:22:45 +00006406 // Builder that will create each code completion.
6407 typedef CodeCompletionResult Result;
6408 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006409 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006410
6411 // The selector table.
6412 SelectorTable &Selectors = Context.Selectors;
6413
6414 // The property name, copied into the code completion allocation region
6415 // on demand.
6416 struct KeyHolder {
6417 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006418 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006419 const char *CopiedKey;
Craig Topperc3ec1492014-05-26 06:22:03 +00006420
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006421 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Craig Topperc3ec1492014-05-26 06:22:03 +00006422 : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {}
6423
Douglas Gregor669a25a2011-02-17 00:22:45 +00006424 operator const char *() {
6425 if (CopiedKey)
6426 return CopiedKey;
6427
6428 return CopiedKey = Allocator.CopyString(Key);
6429 }
6430 } Key(Allocator, PropName->getName());
6431
6432 // The uppercased name of the property name.
6433 std::string UpperKey = PropName->getName();
6434 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006435 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006436
6437 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6438 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6439 Property->getType());
6440 bool ReturnTypeMatchesVoid
6441 = ReturnType.isNull() || ReturnType->isVoidType();
6442
6443 // Add the normal accessor -(type)key.
6444 if (IsInstanceMethod &&
David Blaikie82e95a32014-11-19 07:49:47 +00006445 KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006446 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6447 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006448 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6449 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006450
6451 Builder.AddTypedTextChunk(Key);
6452 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6453 CXCursor_ObjCInstanceMethodDecl));
6454 }
6455
6456 // If we have an integral or boolean property (or the user has provided
6457 // an integral or boolean return type), add the accessor -(type)isKey.
6458 if (IsInstanceMethod &&
6459 ((!ReturnType.isNull() &&
6460 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6461 (ReturnType.isNull() &&
6462 (Property->getType()->isIntegerType() ||
6463 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006464 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006465 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006466 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6467 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006468 if (ReturnType.isNull()) {
6469 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6470 Builder.AddTextChunk("BOOL");
6471 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6472 }
6473
6474 Builder.AddTypedTextChunk(
6475 Allocator.CopyString(SelectorId->getName()));
6476 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6477 CXCursor_ObjCInstanceMethodDecl));
6478 }
6479 }
6480
6481 // Add the normal mutator.
6482 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6483 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006484 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006485 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006486 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006487 if (ReturnType.isNull()) {
6488 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6489 Builder.AddTextChunk("void");
6490 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6491 }
6492
6493 Builder.AddTypedTextChunk(
6494 Allocator.CopyString(SelectorId->getName()));
6495 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006496 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6497 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006498 Builder.AddTextChunk(Key);
6499 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6500 CXCursor_ObjCInstanceMethodDecl));
6501 }
6502 }
6503
6504 // Indexed and unordered accessors
6505 unsigned IndexedGetterPriority = CCP_CodePattern;
6506 unsigned IndexedSetterPriority = CCP_CodePattern;
6507 unsigned UnorderedGetterPriority = CCP_CodePattern;
6508 unsigned UnorderedSetterPriority = CCP_CodePattern;
6509 if (const ObjCObjectPointerType *ObjCPointer
6510 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6511 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6512 // If this interface type is not provably derived from a known
6513 // collection, penalize the corresponding completions.
6514 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6515 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6516 if (!InheritsFromClassNamed(IFace, "NSArray"))
6517 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6518 }
6519
6520 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6521 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6522 if (!InheritsFromClassNamed(IFace, "NSSet"))
6523 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6524 }
6525 }
6526 } else {
6527 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6528 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6529 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6530 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6531 }
6532
6533 // Add -(NSUInteger)countOf<key>
6534 if (IsInstanceMethod &&
6535 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006536 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006537 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006538 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6539 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006540 if (ReturnType.isNull()) {
6541 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6542 Builder.AddTextChunk("NSUInteger");
6543 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6544 }
6545
6546 Builder.AddTypedTextChunk(
6547 Allocator.CopyString(SelectorId->getName()));
6548 Results.AddResult(Result(Builder.TakeString(),
6549 std::min(IndexedGetterPriority,
6550 UnorderedGetterPriority),
6551 CXCursor_ObjCInstanceMethodDecl));
6552 }
6553 }
6554
6555 // Indexed getters
6556 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6557 if (IsInstanceMethod &&
6558 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006559 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006560 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006561 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006562 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006563 if (ReturnType.isNull()) {
6564 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6565 Builder.AddTextChunk("id");
6566 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6567 }
6568
6569 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6570 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6571 Builder.AddTextChunk("NSUInteger");
6572 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6573 Builder.AddTextChunk("index");
6574 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6575 CXCursor_ObjCInstanceMethodDecl));
6576 }
6577 }
6578
6579 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6580 if (IsInstanceMethod &&
6581 (ReturnType.isNull() ||
6582 (ReturnType->isObjCObjectPointerType() &&
6583 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6584 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6585 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006586 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006587 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006588 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006589 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006590 if (ReturnType.isNull()) {
6591 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6592 Builder.AddTextChunk("NSArray *");
6593 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6594 }
6595
6596 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6597 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6598 Builder.AddTextChunk("NSIndexSet *");
6599 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6600 Builder.AddTextChunk("indexes");
6601 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6602 CXCursor_ObjCInstanceMethodDecl));
6603 }
6604 }
6605
6606 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6607 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006608 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006609 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006610 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006611 &Context.Idents.get("range")
6612 };
6613
David Blaikie82e95a32014-11-19 07:49:47 +00006614 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006615 if (ReturnType.isNull()) {
6616 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6617 Builder.AddTextChunk("void");
6618 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6619 }
6620
6621 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6622 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6623 Builder.AddPlaceholderChunk("object-type");
6624 Builder.AddTextChunk(" **");
6625 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6626 Builder.AddTextChunk("buffer");
6627 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6628 Builder.AddTypedTextChunk("range:");
6629 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6630 Builder.AddTextChunk("NSRange");
6631 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6632 Builder.AddTextChunk("inRange");
6633 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6634 CXCursor_ObjCInstanceMethodDecl));
6635 }
6636 }
6637
6638 // Mutable indexed accessors
6639
6640 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6641 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006642 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006643 IdentifierInfo *SelectorIds[2] = {
6644 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006645 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006646 };
6647
David Blaikie82e95a32014-11-19 07:49:47 +00006648 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006649 if (ReturnType.isNull()) {
6650 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6651 Builder.AddTextChunk("void");
6652 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6653 }
6654
6655 Builder.AddTypedTextChunk("insertObject:");
6656 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6657 Builder.AddPlaceholderChunk("object-type");
6658 Builder.AddTextChunk(" *");
6659 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6660 Builder.AddTextChunk("object");
6661 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6662 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6663 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6664 Builder.AddPlaceholderChunk("NSUInteger");
6665 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6666 Builder.AddTextChunk("index");
6667 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6668 CXCursor_ObjCInstanceMethodDecl));
6669 }
6670 }
6671
6672 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6673 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006674 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006675 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006676 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006677 &Context.Idents.get("atIndexes")
6678 };
6679
David Blaikie82e95a32014-11-19 07:49:47 +00006680 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006681 if (ReturnType.isNull()) {
6682 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6683 Builder.AddTextChunk("void");
6684 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6685 }
6686
6687 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6688 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6689 Builder.AddTextChunk("NSArray *");
6690 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6691 Builder.AddTextChunk("array");
6692 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6693 Builder.AddTypedTextChunk("atIndexes:");
6694 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6695 Builder.AddPlaceholderChunk("NSIndexSet *");
6696 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6697 Builder.AddTextChunk("indexes");
6698 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6699 CXCursor_ObjCInstanceMethodDecl));
6700 }
6701 }
6702
6703 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
6704 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006705 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006706 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006707 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006708 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006709 if (ReturnType.isNull()) {
6710 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6711 Builder.AddTextChunk("void");
6712 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6713 }
6714
6715 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6716 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6717 Builder.AddTextChunk("NSUInteger");
6718 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6719 Builder.AddTextChunk("index");
6720 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6721 CXCursor_ObjCInstanceMethodDecl));
6722 }
6723 }
6724
6725 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
6726 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006727 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006728 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006729 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006730 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006731 if (ReturnType.isNull()) {
6732 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6733 Builder.AddTextChunk("void");
6734 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6735 }
6736
6737 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6738 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6739 Builder.AddTextChunk("NSIndexSet *");
6740 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6741 Builder.AddTextChunk("indexes");
6742 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6743 CXCursor_ObjCInstanceMethodDecl));
6744 }
6745 }
6746
6747 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
6748 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006749 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006750 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006751 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006752 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006753 &Context.Idents.get("withObject")
6754 };
6755
David Blaikie82e95a32014-11-19 07:49:47 +00006756 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006757 if (ReturnType.isNull()) {
6758 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6759 Builder.AddTextChunk("void");
6760 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6761 }
6762
6763 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6764 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6765 Builder.AddPlaceholderChunk("NSUInteger");
6766 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6767 Builder.AddTextChunk("index");
6768 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6769 Builder.AddTypedTextChunk("withObject:");
6770 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6771 Builder.AddTextChunk("id");
6772 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6773 Builder.AddTextChunk("object");
6774 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6775 CXCursor_ObjCInstanceMethodDecl));
6776 }
6777 }
6778
6779 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
6780 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006781 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006782 = (Twine("replace") + UpperKey + "AtIndexes").str();
6783 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006784 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006785 &Context.Idents.get(SelectorName1),
6786 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006787 };
6788
David Blaikie82e95a32014-11-19 07:49:47 +00006789 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006790 if (ReturnType.isNull()) {
6791 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6792 Builder.AddTextChunk("void");
6793 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6794 }
6795
6796 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
6797 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6798 Builder.AddPlaceholderChunk("NSIndexSet *");
6799 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6800 Builder.AddTextChunk("indexes");
6801 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6802 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
6803 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6804 Builder.AddTextChunk("NSArray *");
6805 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6806 Builder.AddTextChunk("array");
6807 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6808 CXCursor_ObjCInstanceMethodDecl));
6809 }
6810 }
6811
6812 // Unordered getters
6813 // - (NSEnumerator *)enumeratorOfKey
6814 if (IsInstanceMethod &&
6815 (ReturnType.isNull() ||
6816 (ReturnType->isObjCObjectPointerType() &&
6817 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6818 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6819 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006820 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006821 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006822 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6823 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006824 if (ReturnType.isNull()) {
6825 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6826 Builder.AddTextChunk("NSEnumerator *");
6827 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6828 }
6829
6830 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6831 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6832 CXCursor_ObjCInstanceMethodDecl));
6833 }
6834 }
6835
6836 // - (type *)memberOfKey:(type *)object
6837 if (IsInstanceMethod &&
6838 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006839 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006840 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006841 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006842 if (ReturnType.isNull()) {
6843 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6844 Builder.AddPlaceholderChunk("object-type");
6845 Builder.AddTextChunk(" *");
6846 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6847 }
6848
6849 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6850 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6851 if (ReturnType.isNull()) {
6852 Builder.AddPlaceholderChunk("object-type");
6853 Builder.AddTextChunk(" *");
6854 } else {
6855 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006856 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006857 Builder.getAllocator()));
6858 }
6859 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6860 Builder.AddTextChunk("object");
6861 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6862 CXCursor_ObjCInstanceMethodDecl));
6863 }
6864 }
6865
6866 // Mutable unordered accessors
6867 // - (void)addKeyObject:(type *)object
6868 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006869 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006870 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006871 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006872 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006873 if (ReturnType.isNull()) {
6874 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6875 Builder.AddTextChunk("void");
6876 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6877 }
6878
6879 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6880 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6881 Builder.AddPlaceholderChunk("object-type");
6882 Builder.AddTextChunk(" *");
6883 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6884 Builder.AddTextChunk("object");
6885 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6886 CXCursor_ObjCInstanceMethodDecl));
6887 }
6888 }
6889
6890 // - (void)addKey:(NSSet *)objects
6891 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006892 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006893 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006894 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006895 if (ReturnType.isNull()) {
6896 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6897 Builder.AddTextChunk("void");
6898 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6899 }
6900
6901 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6902 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6903 Builder.AddTextChunk("NSSet *");
6904 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6905 Builder.AddTextChunk("objects");
6906 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6907 CXCursor_ObjCInstanceMethodDecl));
6908 }
6909 }
6910
6911 // - (void)removeKeyObject:(type *)object
6912 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006913 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006914 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006915 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006916 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006917 if (ReturnType.isNull()) {
6918 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6919 Builder.AddTextChunk("void");
6920 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6921 }
6922
6923 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6924 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6925 Builder.AddPlaceholderChunk("object-type");
6926 Builder.AddTextChunk(" *");
6927 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6928 Builder.AddTextChunk("object");
6929 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6930 CXCursor_ObjCInstanceMethodDecl));
6931 }
6932 }
6933
6934 // - (void)removeKey:(NSSet *)objects
6935 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006936 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006937 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006938 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006939 if (ReturnType.isNull()) {
6940 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6941 Builder.AddTextChunk("void");
6942 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6943 }
6944
6945 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6946 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6947 Builder.AddTextChunk("NSSet *");
6948 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6949 Builder.AddTextChunk("objects");
6950 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6951 CXCursor_ObjCInstanceMethodDecl));
6952 }
6953 }
6954
6955 // - (void)intersectKey:(NSSet *)objects
6956 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006957 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006958 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006959 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006960 if (ReturnType.isNull()) {
6961 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6962 Builder.AddTextChunk("void");
6963 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6964 }
6965
6966 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6967 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6968 Builder.AddTextChunk("NSSet *");
6969 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6970 Builder.AddTextChunk("objects");
6971 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6972 CXCursor_ObjCInstanceMethodDecl));
6973 }
6974 }
6975
6976 // Key-Value Observing
6977 // + (NSSet *)keyPathsForValuesAffectingKey
6978 if (!IsInstanceMethod &&
6979 (ReturnType.isNull() ||
6980 (ReturnType->isObjCObjectPointerType() &&
6981 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6982 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6983 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006984 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006985 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006986 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006987 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6988 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006989 if (ReturnType.isNull()) {
6990 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6991 Builder.AddTextChunk("NSSet *");
6992 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6993 }
6994
6995 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6996 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00006997 CXCursor_ObjCClassMethodDecl));
6998 }
6999 }
7000
7001 // + (BOOL)automaticallyNotifiesObserversForKey
7002 if (!IsInstanceMethod &&
7003 (ReturnType.isNull() ||
7004 ReturnType->isIntegerType() ||
7005 ReturnType->isBooleanType())) {
7006 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007007 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00007008 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00007009 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
7010 .second) {
Douglas Gregor857bcda2011-06-02 04:02:27 +00007011 if (ReturnType.isNull()) {
7012 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7013 Builder.AddTextChunk("BOOL");
7014 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7015 }
7016
7017 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
7018 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
7019 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00007020 }
7021 }
7022}
7023
Douglas Gregor636a61e2010-04-07 00:21:17 +00007024void Sema::CodeCompleteObjCMethodDecl(Scope *S,
7025 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007026 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007027 // Determine the return type of the method we're declaring, if
7028 // provided.
7029 QualType ReturnType = GetTypeFromParser(ReturnTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00007030 Decl *IDecl = nullptr;
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00007031 if (CurContext->isObjCContainer()) {
7032 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
7033 IDecl = cast<Decl>(OCD);
7034 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007035 // Determine where we should start searching for methods.
Craig Topperc3ec1492014-05-26 06:22:03 +00007036 ObjCContainerDecl *SearchDecl = nullptr;
Douglas Gregor636a61e2010-04-07 00:21:17 +00007037 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00007038 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007039 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
7040 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007041 IsInImplementation = true;
7042 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007043 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007044 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00007045 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007046 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00007047 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007048 }
7049
7050 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00007051 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00007052 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007053 }
7054
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007055 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007056 HandleCodeCompleteResults(this, CodeCompleter,
7057 CodeCompletionContext::CCC_Other,
Craig Topperc3ec1492014-05-26 06:22:03 +00007058 nullptr, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007059 return;
7060 }
7061
7062 // Find all of the methods that we could declare/implement here.
7063 KnownMethodsMap KnownMethods;
7064 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00007065 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007066
Douglas Gregor636a61e2010-04-07 00:21:17 +00007067 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00007068 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007069 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007070 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007071 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007072 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00007073 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007074 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7075 MEnd = KnownMethods.end();
7076 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007077 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007078 CodeCompletionBuilder Builder(Results.getAllocator(),
7079 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007080
7081 // If the result type was not already provided, add it to the
7082 // pattern as (type).
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007083 if (ReturnType.isNull()) {
7084 QualType ResTy = Method->getSendResultType().stripObjCKindOfType(Context);
7085 AttributedType::stripOuterNullability(ResTy);
7086 AddObjCPassingTypeChunk(ResTy,
Alp Toker314cc812014-01-25 16:55:45 +00007087 Method->getObjCDeclQualifier(), Context, Policy,
7088 Builder);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007089 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007090
7091 Selector Sel = Method->getSelector();
7092
7093 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007094 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007095 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007096
7097 // Add parameters to the pattern.
7098 unsigned I = 0;
7099 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
7100 PEnd = Method->param_end();
7101 P != PEnd; (void)++P, ++I) {
7102 // Add the part of the selector name.
7103 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007104 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007105 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007106 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7107 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00007108 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007109 } else
7110 break;
7111
7112 // Add the parameter type.
Douglas Gregor86b42682015-06-19 18:27:52 +00007113 QualType ParamType;
7114 if ((*P)->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
7115 ParamType = (*P)->getType();
7116 else
7117 ParamType = (*P)->getOriginalType();
Douglas Gregor9b7b3e92015-07-07 06:20:27 +00007118 ParamType = ParamType.substObjCTypeArgs(Context, {},
7119 ObjCSubstitutionContext::Parameter);
Argyrios Kyrtzidisf0917ab2015-07-24 17:00:19 +00007120 AttributedType::stripOuterNullability(ParamType);
Douglas Gregor86b42682015-06-19 18:27:52 +00007121 AddObjCPassingTypeChunk(ParamType,
Douglas Gregor29979142012-04-10 18:35:07 +00007122 (*P)->getObjCDeclQualifier(),
7123 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00007124 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007125
7126 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007127 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007128 }
7129
7130 if (Method->isVariadic()) {
7131 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007132 Builder.AddChunk(CodeCompletionString::CK_Comma);
7133 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00007134 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00007135
Douglas Gregord37c59d2010-05-28 00:57:46 +00007136 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007137 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007138 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7139 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
7140 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00007141 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00007142 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007143 Builder.AddTextChunk("return");
7144 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7145 Builder.AddPlaceholderChunk("expression");
7146 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007147 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007148 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00007149
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007150 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
7151 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00007152 }
7153
Douglas Gregor416b5752010-08-25 01:08:01 +00007154 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00007155 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00007156 Priority += CCD_InBaseClass;
7157
Douglas Gregor78254c82012-03-27 23:34:16 +00007158 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00007159 }
7160
Douglas Gregor669a25a2011-02-17 00:22:45 +00007161 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
7162 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00007163 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007164 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00007165 Containers.push_back(SearchDecl);
7166
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007167 VisitedSelectorSet KnownSelectors;
7168 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
7169 MEnd = KnownMethods.end();
7170 M != MEnd; ++M)
7171 KnownSelectors.insert(M->first);
7172
7173
Douglas Gregor669a25a2011-02-17 00:22:45 +00007174 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
7175 if (!IFace)
7176 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
7177 IFace = Category->getClassInterface();
7178
Aaron Ballman3fe486a2014-03-13 21:23:55 +00007179 if (IFace)
7180 for (auto *Cat : IFace->visible_categories())
7181 Containers.push_back(Cat);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007182
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007183 for (unsigned I = 0, N = Containers.size(); I != N; ++I)
Aaron Ballmand174edf2014-03-13 19:11:50 +00007184 for (auto *P : Containers[I]->properties())
Aaron Ballmandc4bea42014-03-13 18:47:37 +00007185 AddObjCKeyValueCompletions(P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007186 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007187 }
7188
Douglas Gregor636a61e2010-04-07 00:21:17 +00007189 Results.ExitScope();
7190
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007191 HandleCodeCompleteResults(this, CodeCompleter,
7192 CodeCompletionContext::CCC_Other,
7193 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007194}
Douglas Gregor95887f92010-07-08 23:20:03 +00007195
7196void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
7197 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00007198 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00007199 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007200 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00007201 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00007202 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00007203 if (ExternalSource) {
7204 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
7205 I != N; ++I) {
7206 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00007207 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00007208 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00007209
7210 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00007211 }
7212 }
7213
7214 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00007215 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007216 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007217 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007218 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00007219
7220 if (ReturnTy)
7221 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00007222
Douglas Gregor95887f92010-07-08 23:20:03 +00007223 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00007224 for (GlobalMethodPool::iterator M = MethodPool.begin(),
7225 MEnd = MethodPool.end();
7226 M != MEnd; ++M) {
7227 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
7228 &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00007229 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007230 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00007231 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007232 continue;
7233
Douglas Gregor45879692010-07-08 23:37:41 +00007234 if (AtParameterName) {
7235 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007236 unsigned NumSelIdents = SelIdents.size();
Nico Weber2e0c8f72014-12-27 03:58:08 +00007237 if (NumSelIdents &&
7238 NumSelIdents <= MethList->getMethod()->param_size()) {
7239 ParmVarDecl *Param =
7240 MethList->getMethod()->parameters()[NumSelIdents - 1];
Douglas Gregor45879692010-07-08 23:37:41 +00007241 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007242 CodeCompletionBuilder Builder(Results.getAllocator(),
7243 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007244 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007245 Param->getIdentifier()->getName()));
7246 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007247 }
7248 }
7249
7250 continue;
7251 }
Craig Topperc3ec1492014-05-26 06:22:03 +00007252
Nico Weber2e0c8f72014-12-27 03:58:08 +00007253 Result R(MethList->getMethod(),
7254 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007255 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007256 R.AllParametersAreInformative = false;
7257 R.DeclaringEntity = true;
7258 Results.MaybeAddResult(R, CurContext);
7259 }
7260 }
7261
7262 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007263 HandleCodeCompleteResults(this, CodeCompleter,
7264 CodeCompletionContext::CCC_Other,
7265 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007266}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007267
Douglas Gregorec00a262010-08-24 22:20:20 +00007268void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007269 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007270 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007271 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007272 Results.EnterNewScope();
7273
7274 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007275 CodeCompletionBuilder Builder(Results.getAllocator(),
7276 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007277 Builder.AddTypedTextChunk("if");
7278 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7279 Builder.AddPlaceholderChunk("condition");
7280 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007281
7282 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007283 Builder.AddTypedTextChunk("ifdef");
7284 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7285 Builder.AddPlaceholderChunk("macro");
7286 Results.AddResult(Builder.TakeString());
7287
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007288 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007289 Builder.AddTypedTextChunk("ifndef");
7290 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7291 Builder.AddPlaceholderChunk("macro");
7292 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007293
7294 if (InConditional) {
7295 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007296 Builder.AddTypedTextChunk("elif");
7297 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7298 Builder.AddPlaceholderChunk("condition");
7299 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007300
7301 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007302 Builder.AddTypedTextChunk("else");
7303 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007304
7305 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007306 Builder.AddTypedTextChunk("endif");
7307 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007308 }
7309
7310 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007311 Builder.AddTypedTextChunk("include");
7312 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7313 Builder.AddTextChunk("\"");
7314 Builder.AddPlaceholderChunk("header");
7315 Builder.AddTextChunk("\"");
7316 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007317
7318 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007319 Builder.AddTypedTextChunk("include");
7320 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7321 Builder.AddTextChunk("<");
7322 Builder.AddPlaceholderChunk("header");
7323 Builder.AddTextChunk(">");
7324 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007325
7326 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007327 Builder.AddTypedTextChunk("define");
7328 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7329 Builder.AddPlaceholderChunk("macro");
7330 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007331
7332 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007333 Builder.AddTypedTextChunk("define");
7334 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7335 Builder.AddPlaceholderChunk("macro");
7336 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7337 Builder.AddPlaceholderChunk("args");
7338 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7339 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007340
7341 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007342 Builder.AddTypedTextChunk("undef");
7343 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7344 Builder.AddPlaceholderChunk("macro");
7345 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007346
7347 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007348 Builder.AddTypedTextChunk("line");
7349 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7350 Builder.AddPlaceholderChunk("number");
7351 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007352
7353 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007354 Builder.AddTypedTextChunk("line");
7355 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7356 Builder.AddPlaceholderChunk("number");
7357 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7358 Builder.AddTextChunk("\"");
7359 Builder.AddPlaceholderChunk("filename");
7360 Builder.AddTextChunk("\"");
7361 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007362
7363 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007364 Builder.AddTypedTextChunk("error");
7365 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7366 Builder.AddPlaceholderChunk("message");
7367 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007368
7369 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007370 Builder.AddTypedTextChunk("pragma");
7371 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7372 Builder.AddPlaceholderChunk("arguments");
7373 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007374
David Blaikiebbafb8a2012-03-11 07:00:24 +00007375 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007376 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007377 Builder.AddTypedTextChunk("import");
7378 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7379 Builder.AddTextChunk("\"");
7380 Builder.AddPlaceholderChunk("header");
7381 Builder.AddTextChunk("\"");
7382 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007383
7384 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007385 Builder.AddTypedTextChunk("import");
7386 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7387 Builder.AddTextChunk("<");
7388 Builder.AddPlaceholderChunk("header");
7389 Builder.AddTextChunk(">");
7390 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007391 }
7392
7393 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007394 Builder.AddTypedTextChunk("include_next");
7395 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7396 Builder.AddTextChunk("\"");
7397 Builder.AddPlaceholderChunk("header");
7398 Builder.AddTextChunk("\"");
7399 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007400
7401 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007402 Builder.AddTypedTextChunk("include_next");
7403 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7404 Builder.AddTextChunk("<");
7405 Builder.AddPlaceholderChunk("header");
7406 Builder.AddTextChunk(">");
7407 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007408
7409 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007410 Builder.AddTypedTextChunk("warning");
7411 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7412 Builder.AddPlaceholderChunk("message");
7413 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007414
7415 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7416 // completions for them. And __include_macros is a Clang-internal extension
7417 // that we don't want to encourage anyone to use.
7418
7419 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7420 Results.ExitScope();
7421
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007422 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007423 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007424 Results.data(), Results.size());
7425}
7426
7427void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007428 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007429 S->getFnParent()? Sema::PCC_RecoveryInFunction
7430 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007431}
7432
Douglas Gregorec00a262010-08-24 22:20:20 +00007433void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007434 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007435 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007436 IsDefinition? CodeCompletionContext::CCC_MacroName
7437 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007438 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7439 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007440 CodeCompletionBuilder Builder(Results.getAllocator(),
7441 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007442 Results.EnterNewScope();
7443 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7444 MEnd = PP.macro_end();
7445 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007446 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007447 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007448 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7449 CCP_CodePattern,
7450 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007451 }
7452 Results.ExitScope();
7453 } else if (IsDefinition) {
7454 // FIXME: Can we detect when the user just wrote an include guard above?
7455 }
7456
Douglas Gregor0ac41382010-09-23 23:01:17 +00007457 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007458 Results.data(), Results.size());
7459}
7460
Douglas Gregorec00a262010-08-24 22:20:20 +00007461void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007462 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007463 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007464 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007465
7466 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007467 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007468
7469 // defined (<macro>)
7470 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007471 CodeCompletionBuilder Builder(Results.getAllocator(),
7472 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007473 Builder.AddTypedTextChunk("defined");
7474 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7475 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7476 Builder.AddPlaceholderChunk("macro");
7477 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7478 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007479 Results.ExitScope();
7480
7481 HandleCodeCompleteResults(this, CodeCompleter,
7482 CodeCompletionContext::CCC_PreprocessorExpression,
7483 Results.data(), Results.size());
7484}
7485
7486void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7487 IdentifierInfo *Macro,
7488 MacroInfo *MacroInfo,
7489 unsigned Argument) {
7490 // FIXME: In the future, we could provide "overload" results, much like we
7491 // do for function calls.
7492
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007493 // Now just ignore this. There will be another code-completion callback
7494 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007495}
7496
Douglas Gregor11583702010-08-25 17:04:25 +00007497void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007498 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007499 CodeCompletionContext::CCC_NaturalLanguage,
Craig Topperc3ec1492014-05-26 06:22:03 +00007500 nullptr, 0);
Douglas Gregor11583702010-08-25 17:04:25 +00007501}
7502
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007503void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007504 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007505 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007506 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7507 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007508 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7509 CodeCompletionDeclConsumer Consumer(Builder,
7510 Context.getTranslationUnitDecl());
7511 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7512 Consumer);
7513 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007514
7515 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007516 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007517
7518 Results.clear();
7519 Results.insert(Results.end(),
7520 Builder.data(), Builder.data() + Builder.size());
7521}